  :root {
    --ink: #1c1322;
    --ink-soft: #2e2138;
    --paper: #fdfbfe;
    --brand: #7809a5;
    --brand-deep: #56067a;
    --lilac: #f5eafb;
    --lilac-line: #e8d7f1;
    --muted: #675c70;
    --granted: #0fa36b;
    --granted-bg: #0c8f60;
    --denied: #e5484d;
    --amber: #e8930c;
    --font-display: 'Sora', 'Avenir Next', 'Segoe UI Variable Display', system-ui, sans-serif;
    --font-body: 'Instrument Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-mono: ui-monospace, 'SF Mono', 'Cascadia Mono', Menlo, monospace;
    --radius: 16px;
    --maxw: 1120px;
  }

  html { scroll-behavior: smooth; }
  body {
    font-family: var(--font-body);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  h1, h2, h3 { font-family: var(--font-display); letter-spacing: -0.02em; text-wrap: balance; line-height: 1.12; }
  a { color: inherit; }
  .wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }

  .eyebrow {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-deep);
    display: flex; align-items: center; gap: 0.6rem;
  }
  .eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--brand); }

  /* ---------- nav ---------- */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    transition: background 0.25s ease, box-shadow 0.25s ease;
  }
  .nav.scrolled { background: rgba(251,250,254,0.88); backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--lilac-line); }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; padding-block: 0.9rem; }
  .logo { font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; text-decoration: none; color: var(--ink); display: inline-flex; align-items: center; gap: 0.45rem; }
  .logo img { height: 26px; width: auto; display: block; }
  .logo b { color: var(--brand); }
  .nav-links { display: flex; align-items: center; gap: 1.4rem; font-size: 0.9rem; font-weight: 500; }
  .nav-links a { text-decoration: none; color: var(--muted); }
  .nav-links a:hover { color: var(--ink); }
  .nav-links .btn-solid, .nav-links .btn-solid:hover { color: #fff; }
  .nav-links .only-wide { display: none; }
  @media (min-width: 760px) { .nav-links .only-wide { display: inline; } }

  .lang-btn {
    font: 600 0.8rem var(--font-display);
    border: 1px solid var(--lilac-line); background: #fff; color: var(--ink);
    padding: 0.4rem 0.75rem; border-radius: 999px; cursor: pointer;
  }
  .lang-btn:hover { border-color: var(--brand); }
  .btn {
    display: inline-block; text-decoration: none; font: 600 0.95rem var(--font-display);
    padding: 0.8rem 1.5rem; border-radius: 12px; transition: transform 0.15s ease, box-shadow 0.15s ease;
  }
  .btn:focus-visible, .lang-btn:focus-visible, a:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; }
  .btn-solid { background: var(--brand); color: #fff; }
  .btn-solid:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(120,9,165,0.3); }
  .btn-ghost { border: 1.5px solid var(--lilac-line); color: var(--ink); background: #fff; }
  .btn-ghost:hover { border-color: var(--brand); }
  .btn-sm { padding: 0.55rem 1.1rem; font-size: 0.85rem; }

  /* ---------- hero ---------- */
  .hero { padding: clamp(7rem, 14vh, 9.5rem) 0 clamp(3rem, 6vw, 5rem); position: relative; }
  .hero::before {
    content: ""; position: absolute; inset: 0 0 auto 0; height: 130%;
    background:
      radial-gradient(56rem 30rem at 85% -10%, rgba(120,9,165,0.10), transparent 60%),
      radial-gradient(40rem 24rem at -10% 20%, rgba(120,9,165,0.06), transparent 60%);
    pointer-events: none;
  }
  .hero-grid { position: relative; display: grid; gap: 3rem; align-items: center; }
  @media (min-width: 900px) { .hero-grid { grid-template-columns: 1.15fr 0.85fr; } }
  .hero h1 { font-size: clamp(2.4rem, 5.6vw, 3.9rem); font-weight: 800; margin: 1.1rem 0 1.2rem; }
  .hero h1 .accent { color: var(--brand); }
  .hero .lede { font-size: clamp(1.05rem, 2vw, 1.2rem); color: var(--muted); max-width: 34em; margin-bottom: 2rem; }
  .hero-ctas { display: flex; gap: 0.9rem; flex-wrap: wrap; }

  .hero-stats {
    position: relative;
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
    background: var(--lilac-line); border: 1px solid var(--lilac-line); border-radius: var(--radius);
    overflow: hidden; margin-top: clamp(3rem, 6vw, 4.5rem);
  }
  @media (min-width: 760px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }
  .stat { background: #fff; padding: 1.2rem 1.4rem; }
  .stat b { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; font-variant-numeric: tabular-nums; }
  .stat span { font-size: 0.85rem; color: var(--muted); }

  /* ---------- hero tap scene ---------- */
  .tap-scene { position: relative; display: grid; place-items: center; min-height: 380px; overflow: clip; }
  .reader {
    width: min(300px, 80vw); background: var(--ink); border-radius: 26px;
    padding: 1.2rem 1.2rem 1.4rem; color: #fff;
    box-shadow: 0 30px 60px -20px rgba(23,19,31,0.45);
    position: relative; z-index: 2;
  }
  .reader-head { display: flex; justify-content: space-between; align-items: center; }
  .reader-head span { display: flex; align-items: center; }
  .reader-logo { height: 11px; width: auto; margin-right: 5px; filter: brightness(0) invert(1); opacity: 0.9; }
  .reader-head { font: 600 0.7rem var(--font-mono); color: #a48fae; letter-spacing: 0.08em; margin-bottom: 0.9rem; }
  .reader-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--granted); display: inline-block; margin-right: 5px; }
  .reader-screen { background: var(--ink-soft); border-radius: 16px; padding: 1.3rem 1.1rem; min-height: 168px; position: relative; overflow: hidden; }
  .state { position: absolute; inset: 1.3rem 1.1rem; transition: opacity 0.3s; }
  .state-idle { opacity: 1; }
  .state-ok { opacity: 0; }
  .state .big { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }
  .state-idle .big { color: #c8b4d1; }
  .state-idle .sub { color: #927e9c; font-size: 0.85rem; margin-top: 0.35rem; }
  .pulse-ring { width: 54px; height: 54px; border: 2px solid #b16fd6; border-radius: 50%; margin-top: 1.1rem; position: relative; display: grid; place-items: center; }
  .pulse-ring svg { width: 22px; height: 22px; }
  .check-badge { width: 46px; height: 46px; border-radius: 50%; background: var(--granted); display: grid; place-items: center; margin-bottom: 0.7rem; }
  .check-badge svg { width: 22px; height: 22px; }
  .state-ok .big { color: #fff; }
  .receipt-line { display: flex; justify-content: space-between; font: 500 0.82rem var(--font-mono); color: #c8b4d1; margin-top: 0.7rem; font-variant-numeric: tabular-nums; }
  .latency { display: inline-block; margin-top: 0.75rem; font: 600 0.7rem var(--font-mono); color: var(--granted); background: rgba(15,163,107,0.14); padding: 0.25rem 0.6rem; border-radius: 999px; }

  .band {
    position: absolute; z-index: 3; right: calc(50% - 210px); top: 46%;
    width: 150px; height: 44px; border-radius: 999px;
    background: linear-gradient(100deg, var(--brand) 0%, var(--brand-deep) 100%);
    box-shadow: 0 14px 30px -8px rgba(86,6,122,0.5);
    display: flex; align-items: center; padding-left: 14px; gap: 8px;
  }
  .band .chip { width: 20px; height: 15px; border-radius: 3px; background: linear-gradient(135deg, #f5d78d, #d9ae55); }
  .band .wave { color: rgba(255,255,255,0.85); font: 700 0.7rem var(--font-mono); letter-spacing: 0.1em; }
  .ripple { position: absolute; z-index: 1; left: 50%; top: 50%; width: min(340px, 82vw); height: min(340px, 82vw); border-radius: 50%; border: 2px solid var(--brand); opacity: 0; transform: translate(-50%, -50%) scale(0.03); }

  @media (prefers-reduced-motion: no-preference) {
    .state-idle { animation: idleCycle 5.2s infinite; }
    .state-ok { animation: okCycle 5.2s infinite; }
    .band { animation: tapMove 5.2s infinite ease-in-out; }
    .ripple { animation: rip 5.2s infinite; }
    .ripple.r2 { animation-delay: 0.25s; }
    .pulse-ring::after {
      content: ""; position: absolute; inset: -2px; border-radius: 50%;
      border: 2px solid rgba(177,111,214,0.6); animation: ping 1.6s infinite;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .state-idle { opacity: 0; }
    .state-ok { opacity: 1; }
  }
  @keyframes ping { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.8); opacity: 0; } }
  @keyframes tapMove {
    0%, 12% { transform: translate(130px, -30px) rotate(8deg); opacity: 0; }
    26%, 55% { transform: translate(36px, 0) rotate(0); opacity: 1; }
    72%, 100% { transform: translate(150px, -40px) rotate(10deg); opacity: 0; }
  }
  @keyframes idleCycle { 0%, 30% { opacity: 1; } 38%, 82% { opacity: 0; } 92%, 100% { opacity: 1; } }
  @keyframes okCycle { 0%, 30% { opacity: 0; } 38%, 82% { opacity: 1; } 92%, 100% { opacity: 0; } }
  @keyframes rip {
    0%, 28% { transform: translate(-50%, -50%) scale(0.03); opacity: 0; }
    34% { opacity: 0.55; }
    52%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
  }

  /* ---------- surfaces strip ---------- */
  .surfaces { padding-block: clamp(1rem, 3vw, 2rem) clamp(3rem, 7vw, 5rem); }
  .surface-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 0.8rem; margin-top: 1.6rem; }
  .surface {
    background: #fff; border: 1px solid var(--lilac-line); border-radius: 14px;
    padding: 1.1rem 1.2rem; text-decoration: none; transition: border-color 0.15s, transform 0.15s;
  }
  .surface:hover { border-color: var(--brand); transform: translateY(-2px); }
  .surface b { font-family: var(--font-display); font-size: 0.98rem; display: block; margin-bottom: 0.2rem; }
  .surface span { font-size: 0.83rem; color: var(--muted); }
  .surface .tag { display: inline-block; font: 600 0.62rem var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand-deep); background: var(--lilac); border-radius: 999px; padding: 0.15rem 0.55rem; margin-bottom: 0.6rem; }

  /* ---------- how it works ---------- */
  .how { padding-block: clamp(3rem, 7vw, 5rem); border-top: 1px solid var(--lilac-line); }
  .how h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-top: 1rem; }
  .steps { display: grid; gap: 1rem; margin-top: 2.2rem; }
  @media (min-width: 820px) { .steps { grid-template-columns: repeat(3, 1fr); } }
  .step { background: #fff; border: 1px solid var(--lilac-line); border-radius: var(--radius); padding: 1.5rem; }
  .step-n { font: 800 0.9rem var(--font-display); color: var(--brand); }
  .step h3 { font-size: 1.1rem; margin: 0.5rem 0 0.4rem; }
  .step p { font-size: 0.92rem; color: var(--muted); }

  /* ---------- feature sections ---------- */
  .feature-sec { padding-block: clamp(3.5rem, 8vw, 5.5rem); border-top: 1px solid var(--lilac-line); }
  .feature-grid { display: grid; gap: 2.5rem; align-items: start; }
  @media (min-width: 940px) {
    .feature-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
    .feature-grid.flip .feature-copy { order: 2; }
    .feature-grid .sticky-shot { position: sticky; top: 6rem; }
  }
  .feature-sec h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin: 1rem 0 0.8rem; }
  .feature-sec .lead { color: var(--muted); font-size: 1.02rem; max-width: 32em; }
  .feat-list { display: grid; gap: 0.4rem; margin-top: 1.8rem; }
  .feat {
    display: grid; grid-template-columns: 34px 1fr; gap: 0.9rem;
    padding: 0.85rem 0.9rem; border-radius: 12px;
  }
  .feat:hover { background: var(--lilac); }
  .feat-ic {
    width: 34px; height: 34px; border-radius: 10px; background: var(--lilac);
    display: grid; place-items: center; color: var(--brand-deep);
  }
  .feat:hover .feat-ic { background: #fff; }
  .feat-ic svg { width: 17px; height: 17px; }
  .feat b { font-family: var(--font-display); font-size: 0.94rem; font-weight: 600; display: block; }
  .feat span { font-size: 0.88rem; color: var(--muted); }

  /* ---------- device frames / screenshot slots ---------- */
  figure.shot { margin: 0; display: grid; justify-items: center; gap: 0.8rem; }
  figure.shot figcaption { font: 500 0.78rem var(--font-mono); color: var(--muted); letter-spacing: 0.04em; }
  .phone {
    width: min(280px, 78vw); background: var(--ink); border-radius: 34px; padding: 10px;
    box-shadow: 0 30px 60px -22px rgba(23,19,31,0.4);
  }
  .phone-screen { border-radius: 26px; overflow: hidden; background: #fff; aspect-ratio: 9 / 17.5; display: flex; flex-direction: column; }
  .browser {
    width: 100%; background: #fff; border: 1px solid var(--lilac-line); border-radius: 14px; overflow: hidden;
    box-shadow: 0 24px 50px -24px rgba(23,19,31,0.28);
  }
  .browser-bar { display: flex; align-items: center; gap: 6px; padding: 9px 12px; border-bottom: 1px solid var(--lilac-line); background: #f6f4fc; }
  .browser-bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--lilac-line); }
  .browser-bar .url { margin-left: 8px; font: 500 0.66rem var(--font-mono); color: var(--muted); background: #fff; border-radius: 6px; padding: 2px 10px; }

  /* mock UI bits (replaced by real screenshots later) */
  .m-head { padding: 12px 14px 8px; display: flex; justify-content: space-between; align-items: center; }
  .m-head b { font: 700 0.78rem var(--font-display); }
  .m-pill { font: 600 0.55rem var(--font-mono); color: var(--granted); background: rgba(15,163,107,0.12); padding: 2px 8px; border-radius: 999px; }
  .m-pill.off { color: var(--amber); background: rgba(232,147,12,0.12); }
  .m-chiprow { display: flex; gap: 6px; padding: 4px 14px 10px; }
  .m-chip { font: 600 0.58rem var(--font-body); padding: 4px 10px; border-radius: 999px; background: var(--lilac); color: var(--brand-deep); }
  .m-chip.on { background: var(--brand); color: #fff; }
  .m-prods { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 0 14px; }
  .m-prod { border: 1px solid var(--lilac-line); border-radius: 10px; padding: 9px 10px; }
  .m-prod i { font-style: normal; font-size: 1rem; }
  .m-prod b { display: block; font: 600 0.62rem var(--font-body); margin-top: 3px; }
  .m-prod span { font: 600 0.6rem var(--font-mono); color: var(--muted); font-variant-numeric: tabular-nums; }
  .m-cart { margin-top: auto; background: var(--brand); color: #fff; padding: 12px 16px; display: flex; justify-content: space-between; align-items: center; }
  .m-cart b { font: 700 0.72rem var(--font-display); }
  .m-cart span { font: 600 0.62rem var(--font-mono); font-variant-numeric: tabular-nums; }

  .gate-screen { background: var(--granted-bg); color: #fff; flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 18px; }
  .gate-check { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,0.18); display: grid; place-items: center; margin-bottom: 12px; }
  .gate-check svg { width: 28px; height: 28px; }
  .gate-screen b { font: 700 0.95rem var(--font-display); letter-spacing: 0.04em; }
  .gate-screen .area { margin-top: 8px; font: 600 0.62rem var(--font-mono); background: rgba(255,255,255,0.16); padding: 3px 12px; border-radius: 999px; letter-spacing: 0.08em; }
  .gate-screen .who { margin-top: 12px; font-size: 0.7rem; opacity: 0.85; }
  .gate-foot { background: #08130e; color: #8fd9bc; font: 500 0.56rem var(--font-mono); padding: 9px 14px; display: flex; justify-content: space-between; }

  .m-dash { display: grid; grid-template-columns: 92px 1fr; min-height: 300px; }
  .m-side { border-right: 1px solid var(--lilac-line); padding: 12px 10px; background: #faf9fe; }
  .m-side .logo-dot { height: 15px; width: auto; display: block; margin-bottom: 12px; }
  .m-nav-item { height: 7px; border-radius: 4px; background: var(--lilac); margin-bottom: 8px; }
  .m-nav-item.on { background: var(--brand); }
  .m-main { padding: 12px; }
  .m-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .m-kpi { border: 1px solid var(--lilac-line); border-radius: 8px; padding: 8px 9px; }
  .m-kpi span { font: 500 0.5rem var(--font-body); color: var(--muted); display: block; }
  .m-kpi b { font: 700 0.72rem var(--font-display); font-variant-numeric: tabular-nums; }
  .m-chart { border: 1px solid var(--lilac-line); border-radius: 8px; margin-top: 8px; padding: 10px 9px 0; }
  .m-chart span { font: 500 0.5rem var(--font-body); color: var(--muted); }
  .m-bars { display: flex; align-items: flex-end; gap: 4px; height: 64px; padding-top: 6px; }
  .m-bars i { flex: 1; background: linear-gradient(180deg, var(--brand), var(--brand-deep)); border-radius: 3px 3px 0 0; opacity: 0.85; }
  .m-rows { margin-top: 8px; display: grid; gap: 5px; }
  .m-row { display: flex; justify-content: space-between; font: 500 0.52rem var(--font-mono); color: var(--muted); border: 1px solid var(--lilac-line); border-radius: 6px; padding: 5px 8px; font-variant-numeric: tabular-nums; }

  .kiosk-screen { background: linear-gradient(160deg, #360f45, #1c1322); color: #fff; flex: 1; display: flex; flex-direction: column; padding: 20px 16px; text-align: center; }
  .kiosk-logo { height: 22px; width: auto; margin: 0 auto 4px; filter: brightness(0) invert(1); opacity: 0.95; }
  .kiosk-screen h4 { font: 700 0.9rem var(--font-display); margin-top: 10px; }
  .kiosk-screen p { font-size: 0.62rem; color: #c8b4d1; margin-top: 4px; }
  .kiosk-btns { display: grid; gap: 10px; margin-top: 18px; }
  .kiosk-btn { border-radius: 14px; padding: 16px 10px; font: 700 0.78rem var(--font-display); }
  .kiosk-btn.a { background: var(--brand); }
  .kiosk-btn.b { background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.18); }
  .kiosk-amounts { display: flex; gap: 6px; justify-content: center; margin-top: 16px; }
  .kiosk-amounts i { font: 600 0.6rem var(--font-mono); background: rgba(255,255,255,0.08); border-radius: 999px; padding: 4px 10px; font-style: normal; color: #d9c4e2; }

  .eng-grid { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 12px; background: #17131f; }
  .eng-tile { border-radius: 10px; min-height: 62px; position: relative; overflow: hidden; }
  .eng-tile .heart { position: absolute; right: 6px; bottom: 5px; font: 600 0.52rem var(--font-mono); color: #fff; background: rgba(0,0,0,0.35); border-radius: 999px; padding: 2px 7px; }
  .eng-foot { background: #2a1834; color: #d9c4e2; padding: 10px 14px; display: flex; gap: 8px; align-items: center; }
  .eng-foot .bubble { background: #3d2249; border-radius: 10px; padding: 6px 10px; font-size: 0.58rem; }

  /* ---------- dark platform band ---------- */
  .platform { background: var(--ink); color: #fff; padding-block: clamp(3.5rem, 8vw, 5.5rem); }
  .platform .eyebrow { color: #d09ae6; }
  .platform h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin: 1rem 0 0.8rem; }
  .platform .lead { color: #c8b4d1; max-width: 36em; }
  .plat-grid { display: grid; gap: 1rem; margin-top: 2.4rem; }
  @media (min-width: 700px) { .plat-grid { grid-template-columns: 1fr 1fr; } }
  @media (min-width: 1000px) { .plat-grid { grid-template-columns: repeat(3, 1fr); } }
  .plat {
    background: var(--ink-soft); border: 1px solid #453055; border-radius: var(--radius); padding: 1.4rem 1.4rem 1.5rem;
  }
  .plat .feat-ic { background: rgba(168,60,210,0.20); color: #dbaaf0; margin-bottom: 0.8rem; }
  .plat b { font-family: var(--font-display); font-size: 1rem; display: block; margin-bottom: 0.3rem; }
  .plat p { font-size: 0.88rem; color: #c8b4d1; }

  /* ---------- CTA ---------- */
  .cta { padding-block: clamp(4rem, 9vw, 6.5rem); text-align: center; }
  .cta-logo { height: 88px; width: auto; margin-bottom: 1.5rem; }
  .cta h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
  .cta p { color: var(--muted); max-width: 34em; margin: 1rem auto 2rem; }
  .cta .hero-ctas { justify-content: center; }

  /* ---------- footer ---------- */
  footer { border-top: 1px solid var(--lilac-line); padding-block: 2.2rem; }
  .foot { display: flex; flex-wrap: wrap; gap: 1.2rem; justify-content: space-between; align-items: center; font-size: 0.85rem; color: var(--muted); }
  .foot a { color: var(--muted); text-decoration: none; }
  .foot a:hover { color: var(--brand-deep); }
  .foot-links { display: flex; gap: 1.4rem; flex-wrap: wrap; }

  /* ---------- reveal ---------- */
  @media (prefers-reduced-motion: no-preference) {
    .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .reveal.in { opacity: 1; transform: none; }
  }

  /* ---------- subpages ---------- */
  .page-head { padding: clamp(7.5rem, 13vh, 9rem) 0 clamp(2rem, 4vw, 3rem); }
  .page-head h1 { font-size: clamp(2rem, 4.6vw, 3rem); font-weight: 800; margin-top: 1rem; }
  .page-head .lede { color: var(--muted); font-size: 1.08rem; max-width: 36em; margin-top: 1rem; }
  .page-body { padding-bottom: clamp(3.5rem, 8vw, 6rem); }
  .prose { max-width: 65ch; }
  .prose h2 { font-size: 1.22rem; margin-top: 2.4rem; }
  .prose p, .prose li { color: var(--muted); font-size: 0.97rem; margin-top: 0.6rem; }
  .prose ul { margin: 0.6rem 0 0 1.2rem; }
  .updated { font: 500 0.78rem var(--font-mono); color: var(--muted); letter-spacing: 0.04em; }

  .contact-grid { display: grid; gap: 1.5rem; align-items: start; }
  @media (min-width: 880px) { .contact-grid { grid-template-columns: 0.9fr 1.1fr; gap: 3rem; } }
  .contact-card { background: #fff; border: 1px solid var(--lilac-line); border-radius: var(--radius); padding: 1.6rem; }
  .contact-card + .contact-card { margin-top: 1rem; }
  .contact-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
  .contact-card p { font-size: 0.92rem; color: var(--muted); }
  .contact-card .big-link { display: inline-block; margin-top: 0.6rem; font: 600 1.05rem var(--font-display); color: var(--brand-deep); text-decoration: none; }
  .contact-card .big-link:hover { text-decoration: underline; }
  .contact-links { display: grid; gap: 0.5rem; margin-top: 0.8rem; }
  .contact-links a { font-size: 0.92rem; color: var(--brand-deep); text-decoration: none; }
  .contact-links a:hover { text-decoration: underline; }

  .cform { background: #fff; border: 1px solid var(--lilac-line); border-radius: var(--radius); padding: 1.8rem; display: grid; gap: 1rem; }
  .cform .row2 { display: grid; gap: 1rem; }
  @media (min-width: 640px) { .cform .row2 { grid-template-columns: 1fr 1fr; } }
  .field label { display: block; font: 600 0.85rem var(--font-body); margin-bottom: 0.35rem; }
  .field input, .field select, .field textarea {
    width: 100%; padding: 0.72rem 0.9rem; border: 1.5px solid var(--lilac-line); border-radius: 10px;
    font: 400 0.95rem var(--font-body); color: var(--ink); background: #fff;
  }
  .field textarea { min-height: 140px; resize: vertical; }
  .field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(120,9,165,0.12); }
  .form-note { font-size: 0.8rem; color: var(--muted); }
  .cform .btn { justify-self: start; border: 0; cursor: pointer; }

  /* ---------- real screenshots in device frames ---------- */
  .phone-screen img.real { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
  .browser img.real { width: 100%; display: block; }

/* ============================================================
   RESTRUCTURE ADDITIONS (Fluus ecosystem: products, features, benefits, use cases)
   ============================================================ */

/* --- nav: products dropdown + mobile menu --- */
.nav-drop { position: relative; }
.nav-dropbtn { font: inherit; font-size: 0.95rem; color: var(--ink); background: none; border: 0; cursor: pointer; padding: 0; display: inline-flex; align-items: center; gap: 0.3rem; }
.nav-dropbtn::after { content: "▾"; font-size: 0.7rem; opacity: 0.6; }
.nav-menu { position: absolute; top: 140%; left: 0; min-width: 250px; background: #fff; border: 1px solid var(--lilac-line); border-radius: 14px; box-shadow: 0 18px 50px rgba(60,20,90,0.14); padding: 0.5rem; opacity: 0; visibility: hidden; transform: translateY(6px); transition: 0.18s; z-index: 40; }
.nav-drop:hover .nav-menu, .nav-drop:focus-within .nav-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-menu a { display: block; padding: 0.6rem 0.7rem; border-radius: 10px; text-decoration: none; }
.nav-menu a:hover { background: var(--lilac); }
.nav-menu a b { display: block; font-family: var(--font-display); font-size: 0.95rem; color: var(--ink); }
.nav-menu a span { font-size: 0.82rem; color: var(--muted); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.2s; }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0.2rem; background: #fff; border-bottom: 1px solid var(--lilac-line); box-shadow: 0 20px 40px rgba(60,20,90,0.12); padding: 0.8rem 1.2rem 1.2rem; max-height: 0; overflow: hidden; opacity: 0; pointer-events: none; transition: 0.22s; }
  .nav-links.open { max-height: 90vh; opacity: 1; pointer-events: auto; }
  .nav-links > a, .nav-dropbtn { padding: 0.7rem 0.2rem; border-bottom: 1px solid var(--lilac-line); }
  .nav-drop { width: 100%; }
  .nav-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0.2rem 0 0.4rem 0.6rem; min-width: 0; }
  .nav-links .btn { margin-top: 0.6rem; text-align: center; }
  .only-wide { display: block !important; }
}

/* --- footer (multi-column) --- */
footer { border-top: 1px solid var(--lilac-line); background: #fff; padding: 3rem 0 1.5rem; }
.foot { display: grid; grid-template-columns: 1.4fr 2fr; gap: 2.5rem; align-items: start; }
.foot-brand p { color: var(--muted); font-size: 0.9rem; margin-top: 0.7rem; max-width: 34ch; line-height: 1.6; }
.foot-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.foot-col h4 { font-family: var(--font-display); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 0.7rem; }
.foot-col a { display: block; color: var(--ink-soft); text-decoration: none; font-size: 0.92rem; padding: 0.22rem 0; }
.foot-col a:hover { color: var(--brand); }
.foot-bottom { display: flex; justify-content: space-between; color: var(--muted); font-size: 0.82rem; margin-top: 2.5rem; padding-top: 1.2rem; border-top: 1px solid var(--lilac-line); }
@media (max-width: 720px) { .foot { grid-template-columns: 1fr; gap: 1.8rem; } .foot-cols { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .foot-cols { grid-template-columns: 1fr 1fr; } }

/* --- section lead + how CTA --- */
.section-lead { color: var(--muted); font-size: 1.05rem; max-width: 60ch; margin: 0.6rem 0 0; line-height: 1.6; }
.how-cta { text-align: center; margin-top: 2.2rem; }

/* --- product cards (home) --- */
.products { padding: 4.5rem 0; }
.prod-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2.2rem; }
.prod-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--lilac-line); border-radius: var(--radius); padding: 1.6rem; text-decoration: none; color: var(--ink); transition: 0.2s; }
.prod-card:hover { transform: translateY(-4px); box-shadow: 0 22px 50px rgba(60,20,90,0.12); border-color: transparent; }
.prod-ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; color: #fff; margin-bottom: 1rem; }
.prod-ic svg { width: 26px; height: 26px; }
.prod-ic.sm { width: 40px; height: 40px; border-radius: 11px; margin: 0; } .prod-ic.sm svg { width: 21px; height: 21px; }
.pc-a { background: linear-gradient(135deg, #7809a5, #a21caf); }
.pc-b { background: linear-gradient(135deg, #56067a, #7809a5); }
.pc-c { background: linear-gradient(135deg, #8f16bd, #c026d3); }
.prod-card h3 { font-family: var(--font-display); font-size: 1.3rem; }
.prod-card > p { color: var(--muted); font-size: 0.94rem; line-height: 1.6; margin: 0.5rem 0 1rem; flex: 1; }
.prod-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.prod-tags i { font-style: normal; font-size: 0.72rem; font-weight: 600; background: var(--lilac); color: var(--brand-deep); padding: 0.2rem 0.6rem; border-radius: 999px; }
.prod-go { font-family: var(--font-display); font-weight: 700; color: var(--brand); font-size: 0.95rem; }
@media (max-width: 900px) { .prod-cards { grid-template-columns: 1fr; } }

/* --- benefits teaser + who it's for (home) --- */
.benefits-teaser { padding: 4rem 0; background: var(--lilac); }
.bt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.bt-card { background: #fff; border-radius: var(--radius); padding: 1.6rem; border: 1px solid var(--lilac-line); }
.bt-num, .bf-num { font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--brand); display: block; }
.bt-card b { display: block; font-family: var(--font-display); font-size: 1.05rem; margin: 0.2rem 0 0.5rem; }
.bt-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }
.bt-note, .prose .bt-note { text-align: center; color: var(--muted); font-size: 0.8rem; margin-top: 1.4rem; font-style: italic; }
.usefor { padding: 4rem 0; }
.usefor-row { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.4rem; }
.usefor-chip { text-decoration: none; font-weight: 600; color: var(--ink-soft); background: #fff; border: 1px solid var(--lilac-line); border-radius: 999px; padding: 0.6rem 1.1rem; font-size: 0.92rem; transition: 0.15s; }
.usefor-chip:hover { border-color: var(--brand); color: var(--brand); }
@media (max-width: 900px) { .bt-grid { grid-template-columns: 1fr; } }

/* --- breadcrumbs + product hero --- */
.crumbs { border-bottom: 1px solid var(--lilac-line); background: #fff; }
.crumbs .wrap { padding: 0.8rem 2rem; font-size: 0.85rem; color: var(--muted); }
.crumbs a { color: var(--muted); text-decoration: none; } .crumbs a:hover { color: var(--brand); }
.crumbs b { color: var(--ink); } .crumbs span { opacity: 0.5; margin: 0 0.2rem; }
.prod-hero { padding: 3.5rem 0 2rem; }
.prod-hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }
.prod-sub { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; color: var(--brand-deep); margin: 0.4rem 0 0.8rem; }
@media (max-width: 900px) { .prod-hero-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* --- feature grid (product pages) --- */
.feature-sec.alt { background: var(--lilac); }
.grid-feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2rem; }
.gf { background: #fff; border: 1px solid var(--lilac-line); border-radius: 14px; padding: 1.3rem; }
.gf .feat-ic { margin-bottom: 0.8rem; }
.gf b { display: block; font-family: var(--font-display); font-size: 1rem; margin-bottom: 0.3rem; }
.gf p { color: var(--muted); font-size: 0.9rem; line-height: 1.55; }
@media (max-width: 900px) { .grid-feats { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .grid-feats { grid-template-columns: 1fr; } }

/* --- phone demo screens (pay + wallet) --- */
.paydemo, .walletdemo { height: 100%; display: flex; flex-direction: column; background: #faf7fc; font-family: var(--font-body); }
.pd-top, .wd-top { display: flex; align-items: center; gap: 0.5rem; background: var(--brand); color: #fff; padding: 0.8rem 0.9rem; }
.pd-top img, .wd-top img { width: 18px; } .pd-top b { font-size: 0.95rem; } .pd-chip { margin-left: auto; font-size: 0.65rem; background: rgba(255,255,255,0.2); padding: 0.15rem 0.5rem; border-radius: 999px; }
.pd-cat { display: flex; gap: 0.4rem; padding: 0.7rem; } .pd-cat i { font-style: normal; font-size: 0.72rem; font-weight: 600; padding: 0.3rem 0.7rem; border-radius: 999px; background: #fff; border: 1px solid var(--lilac-line); color: var(--muted); } .pd-cat i.on { background: var(--brand); color: #fff; border-color: var(--brand); }
.pd-items { padding: 0 0.7rem; display: grid; gap: 0.4rem; flex: 1; }
.pd-item { display: flex; justify-content: space-between; background: #fff; border: 1px solid var(--lilac-line); border-radius: 10px; padding: 0.6rem 0.7rem; font-size: 0.82rem; }
.pd-cart { display: flex; justify-content: space-between; align-items: center; margin: 0.7rem; padding: 0.7rem; background: var(--lilac); border-radius: 10px; }
.pd-cart b { font-size: 0.85rem; } .pd-cart small { display: block; color: var(--muted); font-size: 0.7rem; } .pd-cart span { font-family: var(--font-display); font-weight: 800; }
.pd-pay { margin: 0 0.7rem 0.9rem; background: var(--brand); color: #fff; text-align: center; padding: 0.8rem; border-radius: 12px; font-weight: 700; }
.wd-bal { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; text-align: center; padding: 1.2rem 0 0.5rem; color: var(--brand-deep); }
.wd-btns { display: flex; gap: 0.5rem; padding: 0 0.9rem 0.8rem; } .wd-btns i { flex: 1; text-align: center; font-style: normal; font-size: 0.8rem; font-weight: 600; padding: 0.6rem; border-radius: 10px; background: #fff; border: 1px solid var(--lilac-line); color: var(--muted); } .wd-btns i.on { background: var(--brand); color: #fff; border-color: var(--brand); }
.wd-list { padding: 0 0.9rem; display: grid; gap: 0.4rem; }
.wd-row { display: flex; justify-content: space-between; font-size: 0.8rem; background: #fff; border: 1px solid var(--lilac-line); border-radius: 10px; padding: 0.55rem 0.7rem; }
.wd-row .neg { color: var(--denied); font-weight: 600; } .wd-row .pos { color: var(--granted); font-weight: 600; }

/* --- features index --- */
.feat-index { padding: 3.5rem 0; }
.feat-index.alt2 { background: var(--lilac); }
.fi-head { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.4rem; }
.fi-head h2 { font-size: 1.5rem; }
.fi-more { margin-left: auto; color: var(--brand); text-decoration: none; font-weight: 700; font-size: 0.9rem; }
.fi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.fi-card { background: #fff; border: 1px solid var(--lilac-line); border-radius: 12px; padding: 1.1rem; text-decoration: none; transition: 0.18s; }
.fi-card:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(60,20,90,0.1); border-color: transparent; }
.fi-card b { display: block; font-family: var(--font-display); font-size: 0.95rem; color: var(--ink); margin-bottom: 0.25rem; }
.fi-card span { color: var(--muted); font-size: 0.82rem; line-height: 1.5; }
@media (max-width: 900px) { .fi-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .fi-grid { grid-template-columns: 1fr; } }

/* --- benefits page --- */
.benefits-full { padding: 3.5rem 0 4rem; }
.bf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.bf { background: #fff; border: 1px solid var(--lilac-line); border-radius: var(--radius); padding: 1.6rem; }
.bf-ic { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: var(--lilac); color: var(--brand); margin-bottom: 0.7rem; } .bf-ic svg { width: 23px; height: 23px; }
.bf b { display: block; font-family: var(--font-display); font-size: 1.1rem; margin: 0.2rem 0 0.5rem; }
.bf p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }
@media (max-width: 900px) { .bf-grid { grid-template-columns: 1fr; } }

/* --- use cases page --- */
.uc-list { padding: 2.5rem 0 4rem; }
.uc { background: #fff; border: 1px solid var(--lilac-line); border-radius: var(--radius); padding: 1.8rem; margin-bottom: 1.1rem; scroll-margin-top: 90px; }
.uc-body h2 { font-size: 1.4rem; }
.uc-body > p { color: var(--muted); font-size: 0.98rem; line-height: 1.6; margin: 0.5rem 0 0.8rem; max-width: 70ch; }
.uc-prod, .uc-feat { font-size: 0.86rem; color: var(--ink-soft); margin: 0.2rem 0; } .uc-prod b, .uc-feat b { color: var(--muted); }
.uc-body .btn { margin-top: 0.9rem; }

/* --- about page --- */
.about-body { padding: 2.5rem 0 4rem; }
.about-body h2 { font-size: 1.35rem; margin: 1.8rem 0 0.5rem; }
.about-body p { color: var(--ink-soft); line-height: 1.7; max-width: 70ch; }

/* --- feature detail pages --- */
.fd-hero { padding: 3rem 0 2.5rem; }
.fd-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: center; }
.fd-body { padding: 0 0 3.5rem; }
.fd-body .prose { max-width: 760px; }
.fd-body h2 { font-size: 1.35rem; margin: 2rem 0 0.6rem; }
.fd-body p { color: var(--ink-soft); line-height: 1.75; }
.fd-list { margin: 0.8rem 0 0; padding-left: 0; list-style: none; display: grid; gap: 0.5rem; }
.fd-list li { position: relative; padding-left: 1.7rem; color: var(--ink-soft); line-height: 1.5; }
.fd-list li::before { content: ""; position: absolute; left: 0; top: 0.35em; width: 16px; height: 16px; border-radius: 50%; background: var(--lilac); box-shadow: inset 0 0 0 2px var(--brand); }
.fd-list li::after { content: ""; position: absolute; left: 5px; top: 0.55em; width: 6px; height: 3px; border-left: 2px solid var(--brand); border-bottom: 2px solid var(--brand); transform: rotate(-45deg); }
.fd-example { margin-top: 2rem; background: var(--lilac); border-left: 4px solid var(--brand); border-radius: 12px; padding: 1.2rem 1.4rem; }
.fd-example b { display: block; font-family: var(--font-display); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--brand-deep); margin-bottom: 0.4rem; }
.fd-example p { color: var(--ink-soft); }

/* --- illustration placeholder (branded, holds recommended-image prompts) --- */
.illus-ph { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 0.5rem; min-height: 300px; padding: 2rem; border-radius: var(--radius); border: 2px dashed var(--lilac-line); background: linear-gradient(160deg, #fff, var(--lilac)); }
.illus-ic { width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, #7809a5, #a21caf); margin-bottom: 0.3rem; }
.illus-ic svg { width: 30px; height: 30px; }
.illus-ph b { font-family: var(--font-display); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--brand); }
.illus-desc { color: var(--muted); font-size: 0.88rem; max-width: 32ch; line-height: 1.5; }
@media (max-width: 900px) { .fd-hero-grid { grid-template-columns: 1fr; gap: 2rem; } .illus-ph { min-height: 220px; } }
