/* Mouflon marketing site. Extracted from the design artifact; the artifact
   runtime provided a minimal reset, restored here so standalone rendering
   matches the published design. */
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; }
img, svg, video { max-width: 100%; }
button, input, select, textarea { font: inherit; }

  :root {
    --navy-950: #081321;
    --navy-900: #0b192c;
    --navy-850: #0e2035;
    --navy-800: #12263f;
    --navy-750: #16304f;
    --line: #1e3e62;
    --line-soft: rgba(148, 178, 216, 0.12);
    --text: #eaf1fb;
    --text-dim: #aebfd8;
    --text-mute: #7f93b2;
    --accent: #ff6500;
    --accent-600: #e65a00;
    --accent-soft: rgba(255, 101, 0, 0.12);
    --accent-line: rgba(255, 101, 0, 0.4);
    --good: #34d27b;
    --gold: #f2b33d;
    --radius: 14px;
    --radius-lg: 22px;
    --maxw: 1180px;
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-mono: ui-monospace, "SF Mono", "JetBrains Mono", "Cascadia Code", "Roboto Mono", Consolas, monospace;
    color-scheme: dark;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

  body {
    margin: 0;
    background:
      radial-gradient(1100px 700px at 80% -10%, rgba(255, 101, 0, 0.10), transparent 60%),
      radial-gradient(900px 600px at 0% 5%, rgba(30, 62, 98, 0.55), transparent 55%),
      var(--navy-950);
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  h1, h2, h3, h4 { margin: 0; text-wrap: balance; letter-spacing: -0.02em; line-height: 1.08; font-weight: 800; }
  p { margin: 0; }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; }
  button { font-family: inherit; cursor: pointer; }
  :focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

  .wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
  .eyebrow {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 9px;
  }
  .eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--accent-line); display: inline-block; }
  .mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
  .muted { color: var(--text-mute); }

  /* ---- buttons ---- */
  .btn {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 13px 22px; border-radius: 999px; font-weight: 650; font-size: 0.98rem;
    border: 1px solid transparent; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
    white-space: nowrap;
  }
  .btn-primary { background: var(--accent); color: #0a1626; box-shadow: 0 10px 30px -8px var(--accent); font-weight: 750; }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -8px var(--accent); background: #ff7519; }
  .btn-ghost { background: rgba(255,255,255,0.03); color: var(--text); border-color: var(--line); }
  .btn-ghost:hover { transform: translateY(-2px); border-color: var(--accent-line); background: rgba(255,101,0,0.06); }
  .btn-sm { padding: 9px 16px; font-size: 0.9rem; }

  /* ---- header ---- */
  header.nav {
    position: sticky; top: 0; z-index: 50;
    backdrop-filter: blur(14px);
    background: linear-gradient(to bottom, rgba(8,19,33,0.92), rgba(8,19,33,0.72));
    border-bottom: 1px solid var(--line-soft);
  }
  .nav-inner { display: flex; align-items: center; gap: 22px; height: 68px; }
  .brand { display: flex; align-items: center; gap: 11px; font-weight: 800; letter-spacing: -0.02em; font-size: 1.14rem; }
  .brand .mark { width: 30px; height: 30px; flex: none; }
  .brand small { display:block; font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.14em; color: var(--text-mute); font-weight: 500; margin-top: 1px; }
  .nav-links { display: flex; gap: 4px; margin-left: 14px; }
  .nav-links a {
    padding: 8px 12px; border-radius: 8px; font-size: 0.95rem; color: var(--text-dim);
    position: relative; transition: color .15s ease, background .15s ease;
  }
  .nav-links a:hover { color: var(--text); background: rgba(148,178,216,0.06); }
  .nav-right { margin-left: auto; display: flex; align-items: center; gap: 12px; }
  .lang {
    display: inline-flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; font-family: var(--font-mono); font-size: 0.8rem;
  }
  .lang button { background: transparent; color: var(--text-mute); border: 0; padding: 7px 13px; transition: background .15s ease, color .15s ease; }
  .lang button[aria-pressed="true"] { background: var(--accent); color: #0a1626; font-weight: 700; }
  .menu-btn { display: none; background: transparent; border: 1px solid var(--line); border-radius: 10px; color: var(--text); padding: 8px 10px; }

  /* ---- section scaffolding ---- */
  section { padding: 96px 0; position: relative; }
  .sec-head { max-width: 660px; margin-bottom: 46px; }
  .sec-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.85rem); margin: 16px 0 14px; }
  .sec-head p { color: var(--text-dim); font-size: 1.08rem; }
  .divider { border: 0; border-top: 1px solid var(--line-soft); margin: 0; }

  /* reveal */
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
  .reveal.in { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

  /* ---- hero ---- */
  .hero { padding: 66px 0 70px; overflow: hidden; }
  #ambient { position: absolute; inset: -10% 0 auto auto; width: min(760px, 90vw); height: 760px; z-index: 0; opacity: 0.5; pointer-events: none; right: -120px; top: -140px; }
  .hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
  .hero h1 { font-size: clamp(2.5rem, 5.4vw, 4.3rem); margin: 20px 0 20px; }
  .hero h1 .hot { color: var(--accent); }
  .hero-sub { font-size: 1.18rem; color: var(--text-dim); max-width: 34ch; }
  .hero-cta { display: flex; gap: 14px; margin: 30px 0 26px; flex-wrap: wrap; }
  .trust { display: flex; flex-wrap: wrap; gap: 8px 18px; font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-mute); }
  .trust span { display: inline-flex; align-items: center; gap: 7px; }
  .trust span::before { content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--accent); }

  /* device stage */
  .stage { position: relative; height: 460px; }
  .device { position: absolute; border-radius: 20px; background: var(--navy-850); border: 1px solid var(--line); box-shadow: 0 40px 80px -30px rgba(0,0,0,0.75); overflow: hidden; }
  .device .screen { background: linear-gradient(180deg, var(--navy-900), var(--navy-950)); height: 100%; }
  .laptop { width: 460px; height: 288px; right: 4%; top: 8px; }
  .laptop .bezel { height: 24px; background: var(--navy-800); border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 6px; padding: 0 12px; }
  .laptop .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--line); }
  .phone { width: 176px; height: 360px; left: 0; bottom: 0; border-radius: 30px; z-index: 3; }
  .phone .notch { height: 26px; display: flex; justify-content: center; }
  .phone .notch::after { content: ""; width: 64px; height: 15px; background: var(--navy-950); border-radius: 0 0 12px 12px; }
  .tablet { width: 250px; height: 190px; right: 0; bottom: 6px; z-index: 2; opacity: 0.96; }

  /* mock UI bits */
  .mui { padding: 12px; display: flex; flex-direction: column; gap: 9px; height: 100%; }
  .mui-row { display: flex; gap: 8px; }
  .mui-side { width: 34%; display: flex; flex-direction: column; gap: 6px; }
  .mui-main { flex: 1; display: flex; flex-direction: column; gap: 8px; }
  .chip { height: 9px; border-radius: 4px; background: rgba(148,178,216,0.16); }
  .chip.a { background: var(--accent-soft); }
  .chip.o { background: var(--accent); width: 40%; }
  .tile { background: var(--navy-800); border: 1px solid var(--line); border-radius: 8px; padding: 8px; flex: 1; }
  .tile .big { font-family: var(--font-mono); font-size: 1rem; font-weight: 700; color: var(--text); }
  .tile .lbl { font-size: 0.5rem; color: var(--text-mute); font-family: var(--font-mono); letter-spacing: 0.06em; }
  .bars { display: flex; align-items: flex-end; gap: 5px; height: 54px; padding-top: 6px; }
  .bars i { flex: 1; background: linear-gradient(var(--accent), var(--accent-600)); border-radius: 3px 3px 0 0; display: block; opacity: 0.85; }
  .score-hero { text-align: center; padding: 14px 0 6px; }
  .score-hero .n { font-family: var(--font-mono); font-size: 2.5rem; font-weight: 800; color: var(--accent); line-height: 1; letter-spacing: -0.02em; }
  .score-hero .c { font-size: 0.55rem; font-family: var(--font-mono); color: var(--text-mute); letter-spacing: 0.12em; }
  .ring-mini { width: 74px; height: 74px; margin: 8px auto; display: block; }
  .slotgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px; padding: 4px 2px; }
  .slot { aspect-ratio: 1; border-radius: 6px; border: 1px solid var(--line); background: var(--navy-800); }
  .slot.free { border-color: rgba(52,210,123,0.5); background: rgba(52,210,123,0.10); }
  .slot.sel { border-color: var(--accent); background: var(--accent-soft); }
  .rosterline { display: flex; align-items: center; gap: 6px; }
  .av { width: 14px; height: 14px; border-radius: 999px; background: var(--navy-750); border: 1px solid var(--line); flex: none; }
  .av.on { background: var(--accent); border-color: var(--accent); }

  /* ---- audience tabs ---- */
  .tabs { display: inline-flex; gap: 6px; padding: 6px; background: var(--navy-850); border: 1px solid var(--line); border-radius: 999px; margin-bottom: 34px; flex-wrap: wrap; }
  .tab { border: 0; background: transparent; color: var(--text-dim); padding: 11px 20px; border-radius: 999px; font-weight: 600; font-size: 0.98rem; transition: background .18s ease, color .18s ease; }
  .tab[aria-selected="true"] { background: var(--accent); color: #0a1626; font-weight: 750; }
  .tab:hover:not([aria-selected="true"]) { color: var(--text); }
  .panel { display: none; }
  .panel.active { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: center; animation: fade .45s ease; }
  @keyframes fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
  @media (prefers-reduced-motion: reduce) { .panel.active { animation: none; } }
  .panel h3 { font-size: 1.9rem; margin-bottom: 8px; }
  .panel .who { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.12em; color: var(--accent); margin-bottom: 12px; }
  .panel > div > p.lead { color: var(--text-dim); font-size: 1.08rem; margin-bottom: 22px; }
  .flist { display: flex; flex-direction: column; gap: 14px; margin: 0; padding: 0; list-style: none; }
  .flist li { display: flex; gap: 13px; align-items: flex-start; }
  .flist .ic { width: 30px; height: 30px; flex: none; border-radius: 8px; background: var(--accent-soft); border: 1px solid var(--accent-line); display: grid; place-items: center; margin-top: 2px; }
  .flist .ic svg { width: 16px; height: 16px; stroke: var(--accent); }
  .flist b { font-weight: 650; display: block; }
  .flist span { color: var(--text-mute); font-size: 0.96rem; }
  .showcase { background: linear-gradient(160deg, var(--navy-800), var(--navy-900)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; min-height: 340px; }

  /* ---- generic cards ---- */
  .grid { display: grid; gap: 22px; }
  .g3 { grid-template-columns: repeat(3, 1fr); }
  .g2 { grid-template-columns: repeat(2, 1fr); }
  .card {
    background: linear-gradient(180deg, rgba(18,38,63,0.7), rgba(11,25,44,0.7));
    border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  }
  .card:hover { transform: translateY(-4px); border-color: var(--accent-line); box-shadow: 0 24px 50px -30px rgba(255,101,0,0.4); }
  .card .ic { width: 42px; height: 42px; border-radius: 11px; background: var(--accent-soft); border: 1px solid var(--accent-line); display: grid; place-items: center; margin-bottom: 16px; }
  .card .ic svg { width: 21px; height: 21px; stroke: var(--accent); }
  .card h3 { font-size: 1.22rem; margin-bottom: 9px; }
  .card p { color: var(--text-mute); font-size: 0.98rem; }
  .tag { display: inline-block; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em; color: var(--gold); border: 1px solid rgba(242,179,61,0.4); background: rgba(242,179,61,0.08); padding: 3px 9px; border-radius: 999px; margin-bottom: 14px; }

  .tech { background: var(--navy-950); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }

  /* ---- pricing ---- */
  .price-ctrls { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 34px; }
  .cur { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 0.85rem; color: var(--text-dim); }
  .cur select { font-family: var(--font-mono); background: var(--navy-850); color: var(--text); border: 1px solid var(--line); border-radius: 9px; padding: 8px 11px; }
  .ptable { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
  .plan { background: linear-gradient(180deg, var(--navy-800), var(--navy-900)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 26px; display: flex; flex-direction: column; position: relative; }
  .plan.pop { border-color: var(--accent); box-shadow: 0 30px 70px -34px var(--accent); }
  .plan.pop::before { content: attr(data-pop); position: absolute; top: -13px; left: 26px; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; background: var(--accent); color: #0a1626; padding: 5px 12px; border-radius: 999px; font-weight: 700; }
  .plan h3 { font-size: 1.32rem; }
  .plan .desc { color: var(--text-mute); font-size: 0.94rem; margin: 8px 0 20px; min-height: 40px; }
  .plan .amt { font-family: var(--font-mono); font-variant-numeric: tabular-nums; display: flex; align-items: baseline; gap: 4px; }
  .plan .amt .val { font-size: 2.7rem; font-weight: 800; letter-spacing: -0.03em; }
  .plan .amt .per { color: var(--text-mute); font-size: 0.85rem; }
  .plan .amt.custom .val { font-size: 1.9rem; }
  .plan ul { list-style: none; margin: 22px 0 26px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
  .plan li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.95rem; color: var(--text-dim); }
  .plan li svg { width: 17px; height: 17px; flex: none; margin-top: 3px; stroke: var(--accent); }
  .plan .btn { justify-content: center; margin-top: auto; }
  .price-foot { margin-top: 20px; font-size: 0.88rem; }

  /* ---- guides ---- */
  .guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .guide { background: var(--navy-850); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
  .guide .who { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.12em; color: var(--accent); }
  .guide h3 { font-size: 1.3rem; margin: 6px 0 18px; }
  .steps { list-style: none; margin: 0; padding: 0; counter-reset: s; display: flex; flex-direction: column; gap: 16px; }
  .steps li { display: flex; gap: 14px; counter-increment: s; }
  .steps li::before {
    content: counter(s); font-family: var(--font-mono); font-weight: 700; color: var(--accent);
    width: 28px; height: 28px; flex: none; border: 1px solid var(--accent-line); background: var(--accent-soft);
    border-radius: 8px; display: grid; place-items: center; font-size: 0.85rem;
  }
  .steps b { display: block; font-weight: 650; }
  .steps span { color: var(--text-mute); font-size: 0.92rem; }

  /* ---- CTA band ---- */
  .band { background: linear-gradient(120deg, rgba(255,101,0,0.14), rgba(18,38,63,0.4)); border: 1px solid var(--accent-line); border-radius: var(--radius-lg); padding: 52px; text-align: center; }
  .band h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 14px; }
  .band p { color: var(--text-dim); max-width: 52ch; margin: 0 auto 26px; }

  /* ---- footer ---- */
  footer { border-top: 1px solid var(--line-soft); padding: 60px 0 40px; background: var(--navy-950); }
  .foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 34px; }
  .foot h5 { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; color: var(--text-mute); margin: 0 0 14px; font-weight: 600; }
  .foot a { display: block; color: var(--text-dim); font-size: 0.94rem; padding: 5px 0; transition: color .15s ease; }
  .foot a:hover { color: var(--accent); }
  .foot-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line-soft); color: var(--text-mute); font-size: 0.85rem; }

  /* ---- sub views ---- */
  .subview { display: none; padding-top: 56px; }
  .subview.active { display: block; }
  .home-hidden { display: none !important; }
  .backlink { font-family: var(--font-mono); font-size: 0.85rem; color: var(--accent); display: inline-flex; gap: 8px; align-items: center; margin-bottom: 22px; }
  .prose { max-width: 760px; }
  .prose h1 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 10px; }
  .prose .lede { font-size: 1.15rem; color: var(--text-dim); margin: 14px 0 30px; }
  .prose h3 { font-size: 1.2rem; margin: 30px 0 8px; }
  .prose p { color: var(--text-dim); margin-bottom: 12px; }
  .prose ul { color: var(--text-dim); padding-left: 20px; }
  .prose li { margin-bottom: 8px; }

  /* forms */
  .form { display: grid; gap: 16px; max-width: 560px; }
  .field { display: grid; gap: 6px; }
  .field label { font-size: 0.85rem; color: var(--text-dim); font-weight: 600; }
  .field input, .field textarea, .field select {
    background: var(--navy-850); border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; color: var(--text); font-family: inherit; font-size: 1rem;
  }
  .field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); }
  .field textarea { min-height: 120px; resize: vertical; }
  .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .toast { display: none; align-items: center; gap: 10px; background: rgba(52,210,123,0.1); border: 1px solid rgba(52,210,123,0.5); color: var(--good); padding: 12px 16px; border-radius: 10px; font-size: 0.92rem; }
  .toast.show { display: flex; }

  /* status */
  .status-panel { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; max-width: 620px; }
  .status-top { background: rgba(52,210,123,0.08); border-bottom: 1px solid var(--line); padding: 18px 22px; display: flex; align-items: center; gap: 12px; }
  .pulse { width: 11px; height: 11px; border-radius: 999px; background: var(--good); box-shadow: 0 0 0 0 rgba(52,210,123,0.6); animation: pulse 2.2s infinite; }
  @keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(52,210,123,0.55);} 70% { box-shadow: 0 0 0 10px rgba(52,210,123,0);} 100% { box-shadow: 0 0 0 0 rgba(52,210,123,0);} }
  @media (prefers-reduced-motion: reduce) { .pulse { animation: none; } }
  .status-row { display: flex; align-items: center; justify-content: space-between; padding: 15px 22px; border-bottom: 1px solid var(--line-soft); }
  .status-row:last-child { border-bottom: 0; }
  .status-row .up { font-family: var(--font-mono); color: var(--good); font-size: 0.9rem; }
  .featurecard { border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; display: flex; gap: 16px; align-items: center; }
  .upvote { display: flex; flex-direction: column; align-items: center; gap: 2px; border: 1px solid var(--line); background: var(--navy-850); border-radius: 10px; padding: 8px 12px; color: var(--text-dim); transition: border-color .15s ease, color .15s ease; min-width: 54px; }
  .upvote:hover { border-color: var(--accent); color: var(--accent); }
  .upvote .v { font-family: var(--font-mono); font-weight: 700; font-size: 1.05rem; }
  .upvote.voted { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }

  /* ---- capabilities grid ---- */
  .caps { background: var(--navy-950); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
  .cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .cap {
    position: relative; overflow: hidden;
    background: linear-gradient(180deg, rgba(18,38,63,0.6), rgba(11,25,44,0.55));
    border: 1px solid var(--line); border-radius: var(--radius); padding: 24px;
    transition: transform .22s cubic-bezier(.2,.7,.2,1), border-color .22s ease, box-shadow .22s ease;
  }
  .cap::after {
    content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
    background: radial-gradient(320px 130px at 50% -20%, rgba(255,101,0,0.13), transparent 70%);
    opacity: 0; transition: opacity .3s ease;
  }
  .cap:hover { transform: translateY(-4px); border-color: var(--accent-line); box-shadow: 0 24px 50px -30px rgba(255,101,0,0.35); }
  .cap:hover::after { opacity: 1; }
  .cap .ic { width: 42px; height: 42px; border-radius: 11px; background: var(--accent-soft); border: 1px solid var(--accent-line); display: grid; place-items: center; margin-bottom: 15px; }
  .cap .ic svg { width: 21px; height: 21px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .cap h3 { font-size: 1.12rem; margin-bottom: 7px; }
  .cap p { color: var(--text-mute); font-size: 0.93rem; line-height: 1.55; }
  .cap .kv { margin-top: 13px; display: flex; flex-wrap: wrap; gap: 6px; }
  .cap .kv span { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.03em; border: 1px solid var(--line); border-radius: 999px; padding: 3px 9px; color: var(--text-mute); }

  /* ---- stat strip (animated counters) ---- */
  .statstrip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 42px; }
  .statstrip .s { text-align: center; padding: 22px 10px; border: 1px solid var(--line-soft); border-radius: var(--radius); background: rgba(18,38,63,0.34); }
  .statstrip .num { font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 800; color: var(--accent); letter-spacing: -0.02em; line-height: 1; }
  .statstrip .num .u { color: var(--text-dim); font-size: 0.55em; margin-left: 1px; }
  .statstrip .cap-l { font-size: 0.82rem; color: var(--text-mute); margin-top: 8px; }

  /* ---- motion: staggered reveal children ---- */
  .stagger > .reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1); }
  .stagger > .reveal.in { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) { .stagger > .reveal { opacity: 1; transform: none; transition: none; } }

  /* ---- motion: floating hero devices ---- */
  @media (prefers-reduced-motion: no-preference) {
    .device.laptop { animation: floatA 7s ease-in-out infinite; }
    .device.phone  { animation: floatB 6s ease-in-out infinite; }
    .device.tablet { animation: floatA 8.5s ease-in-out infinite; }
  }
  @keyframes floatA { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
  @keyframes floatB { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(7px); } }

  /* ---- motion: bars grow + chart draw on reveal ---- */
  .bars[data-grow] i { transform: scaleY(0); transform-origin: bottom; transition: transform .85s cubic-bezier(.2,.7,.2,1); }
  .bars[data-grow].grown i { transform: scaleY(1); }
  .draw { stroke-dasharray: 1; stroke-dashoffset: 1; }
  .draw.drawn { animation: draw 1.5s cubic-bezier(.4,.1,.2,1) forwards; }
  @keyframes draw { to { stroke-dashoffset: 0; } }
  @media (prefers-reduced-motion: reduce) {
    .bars[data-grow] i { transform: none; transition: none; }
    .draw { stroke-dashoffset: 0; animation: none; }
  }

  /* responsive */
  @media (max-width: 1040px) {
    .cap-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 960px) {
    .hero-grid, .panel.active, .foot-grid { grid-template-columns: 1fr; }
    .g3, .ptable, .guide-grid { grid-template-columns: 1fr; }
    .g2 { grid-template-columns: 1fr; }
    .stage { height: 400px; margin-top: 10px; }
    .laptop { width: 380px; height: 238px; right: 0; }
    .foot-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
    .statstrip { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 720px) {
    .wrap { padding: 0 20px; }
    .nav-links { display: none; }
    .menu-btn { display: inline-flex; }
    section { padding: 66px 0; }
    .band { padding: 34px 22px; }
    .row2 { grid-template-columns: 1fr; }
    .cap-grid { grid-template-columns: 1fr; }
    .stage { height: 360px; }
    .laptop { width: 300px; height: 190px; top: 0; }
    .tablet { display: none; }
    .phone { width: 158px; height: 320px; }
  }
  @media (max-width: 540px) {
    .hero { padding: 40px 0 54px; }
    .hero h1 { margin: 16px 0; }
    .hero-cta .btn { flex: 1; justify-content: center; }
    .stage { height: 320px; transform: scale(0.92); transform-origin: top left; }
    .laptop { width: 260px; height: 165px; }
    .phone { width: 138px; height: 280px; }
    .foot-grid { grid-template-columns: 1fr; }
    .statstrip { grid-template-columns: 1fr 1fr; gap: 12px; }
    .band { padding: 30px 18px; }
    .tabs { width: 100%; }
    .tab { flex: 1; text-align: center; padding: 11px 12px; }
  }
  /* mobile drawer */
  .drawer { display: none; }
  .drawer.open { display: block; position: fixed; inset: 68px 0 0; background: rgba(8,19,33,0.98); z-index: 40; padding: 24px; }
  .drawer a { display: block; padding: 16px 6px; font-size: 1.15rem; border-bottom: 1px solid var(--line-soft); color: var(--text); }
