    /* ════════════════════════════════════════════════════════════════════
       THE VANTAGE SUITE · v2 marketing page
       Near-black, Supabase-grade, gold-accented. One page, one story.
       ════════════════════════════════════════════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg:        #070c0d;
      --bg-2:      #0a1112;
      --bg-3:      #0d1617;
      --card:      rgba(255,255,255,0.024);
      --card-2:    rgba(255,255,255,0.05);
      --border:    rgba(255,255,255,0.07);
      --border-2:  rgba(255,255,255,0.14);
      --text:      #f2f6f6;
      --text-2:    #a9b8b8;
      --text-3:    #647676;
      --gold:      #d4af37;
      --gold-dim:  rgba(212,175,55,0.55);
      --gold-bg:   rgba(212,175,55,0.09);
      --gold-bd:   rgba(212,175,55,0.28);
      --green:     #34d399;
      --red:       #f87171;
      --blue:      #60a5fa;
      --mono:      'JetBrains Mono', ui-monospace, 'SF Mono', monospace;
    }

    html { scroll-behavior: smooth; background: var(--bg); overflow-x: hidden; }
    body {
      font-family: 'Inter', system-ui, sans-serif;
      background: transparent;
      color: var(--text);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }

    #dot-grid-canvas {
      position: fixed; top: 0; left: 0;
      width: 100vw; height: 100vh;
      pointer-events: none; z-index: -1;
    }

    .container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

    /* ── Type primitives ── */
    .eyebrow {
      font-family: var(--mono);
      font-size: 12px; font-weight: 500;
      letter-spacing: 2.5px; text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 18px;
    }
    .sec-title {
      font-size: clamp(30px, 4.4vw, 50px);
      font-weight: 800; letter-spacing: -0.035em; line-height: 1.08;
      margin-bottom: 18px;
    }
    .sec-title .dim { color: var(--text-3); }
    .sec-sub { font-size: 17px; color: var(--text-2); max-width: 640px; }

    /* ── Buttons ── */
    .btn-primary {
      display: inline-flex; align-items: center; gap: 9px;
      font-size: 15px; font-weight: 650; color: #0a0a08;
      background: var(--gold); padding: 13px 26px; border-radius: 10px;
      border: none; cursor: pointer;
      transition: filter 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 0 0 rgba(212,175,55,0);
    }
    .btn-primary:hover { filter: brightness(1.12); transform: translateY(-1px); box-shadow: 0 10px 34px rgba(212,175,55,0.22); }
    .btn-primary:active { transform: translateY(0); }
    .btn-white {
      display: inline-flex; align-items: center; gap: 9px;
      font-size: 15px; font-weight: 650; color: #0c1112;
      background: var(--text); padding: 13px 26px; border-radius: 10px;
      border: none; cursor: pointer; transition: background 0.2s, transform 0.15s;
    }
    .btn-white:hover { background: #cfd8d8; transform: translateY(-1px); }
    .btn-outline {
      display: inline-flex; align-items: center; gap: 9px;
      font-size: 15px; font-weight: 600; color: var(--text-2);
      background: transparent; padding: 13px 26px; border-radius: 10px;
      border: 1px solid var(--border-2); cursor: pointer;
      transition: border-color 0.2s, color 0.2s, background 0.2s;
    }
    .btn-outline:hover { border-color: rgba(255,255,255,0.3); color: var(--text); background: rgba(255,255,255,0.04); }

    /* ── Scroll reveal ── */
    .rv { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .rv.in { opacity: 1; transform: none; }
    @media (prefers-reduced-motion: reduce) {
      .rv { opacity: 1; transform: none; transition: none; }
    }

    /* ── Nav ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(5,9,10,0.82);
      backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
    }
    .nav-inner {
      max-width: 1160px; margin: 0 auto; padding: 0 28px;
      height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
    }
    .nav-logo img { height: 40px; width: auto; }
    .nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
    .nav-links a {
      font-size: 14px; font-weight: 520; color: var(--text-2);
      padding: 8px 13px; border-radius: 8px;
      transition: color 0.2s, background 0.2s;
    }
    .nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
    .nav-actions { display: flex; align-items: center; gap: 14px; }
    .nav-login { font-size: 14px; font-weight: 550; color: var(--text-2); transition: color 0.2s; }
    .nav-login:hover { color: var(--text); }
    .nav-cta {
      font-size: 14px; font-weight: 650; color: #0a0a08;
      background: var(--gold); padding: 9px 18px; border-radius: 9px;
      transition: filter 0.2s;
    }
    .nav-cta:hover { filter: brightness(1.12); }
    .nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
    .nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
    .nav-mobile {
      display: none; position: fixed; top: 68px; left: 0; right: 0; z-index: 99;
      background: rgba(5,9,10,0.97); backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border); padding: 18px 28px 26px;
    }
    .nav-mobile.open { display: block; }
    .nav-mobile a { display: block; padding: 13px 4px; font-size: 16px; font-weight: 550; color: var(--text-2); border-bottom: 1px solid var(--border); }
    .nav-mobile a:last-child { border-bottom: none; }
    .nav-mobile .nav-mobile-cta { color: var(--gold); font-weight: 700; }

    /* ── Hero ── */
    .hero {
      position: relative; padding: 170px 0 80px; text-align: center; overflow: hidden;
    }
    .hero-glow {
      position: absolute; border-radius: 50%; filter: blur(110px); pointer-events: none;
    }
    .hero-glow-1 { width: 720px; height: 480px; left: 50%; top: -180px; transform: translateX(-50%); background: rgba(212,175,55,0.07); }
    .hero-glow-2 { width: 460px; height: 380px; left: -160px; top: 280px; background: rgba(52,211,153,0.045); }
    .hero-glow-3 { width: 460px; height: 380px; right: -160px; top: 200px; background: rgba(96,165,250,0.05); }
    .hero-kicker {
      display: inline-flex; align-items: center; gap: 10px;
      font-family: var(--mono); font-size: 12px; font-weight: 500;
      letter-spacing: 2px; text-transform: uppercase; color: var(--text-2);
      padding: 7px 16px; border-radius: 100px;
      background: var(--card-2); border: 1px solid var(--border-2);
      margin-bottom: 34px;
    }
    .hero-kicker .pulse {
      width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
      box-shadow: 0 0 0 0 rgba(212,175,55,0.6); animation: pulse 2.2s infinite;
    }
    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(212,175,55,0.55); }
      70% { box-shadow: 0 0 0 9px rgba(212,175,55,0); }
      100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); }
    }
    .hero h1 {
      font-size: clamp(42px, 6.6vw, 78px);
      font-weight: 850; letter-spacing: -0.045em; line-height: 1.02;
      max-width: 980px; margin: 0 auto 26px;
    }
    .hero h1 .gold { color: var(--gold); }
    .hero-sub {
      font-size: clamp(16px, 2vw, 19px); color: var(--text-2);
      max-width: 660px; margin: 0 auto 38px; line-height: 1.65;
    }
    .hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 26px; }
    .hero-note { font-family: var(--mono); font-size: 12px; color: var(--text-3); letter-spacing: 0.5px; }

    /* ── Live ticker ── */
    .ticker-wrap {
      max-width: 760px; margin: 64px auto 0;
      border: 1px solid var(--border); border-radius: 14px;
      background: rgba(7,12,13,0.72); backdrop-filter: blur(6px);
      overflow: hidden; text-align: left;
    }
    .ticker-head {
      display: flex; align-items: center; gap: 8px;
      padding: 10px 16px; border-bottom: 1px solid var(--border);
      font-family: var(--mono); font-size: 11px; letter-spacing: 1.8px;
      text-transform: uppercase; color: var(--text-3);
    }
    .ticker-head .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
    .ticker-body { padding: 14px 18px; min-height: 52px; display: flex; align-items: center; }
    .ticker-line {
      font-family: var(--mono); font-size: 13px; color: var(--text-2);
      opacity: 0; transform: translateY(6px);
      transition: opacity 0.45s ease, transform 0.45s ease;
      line-height: 1.5;
    }
    .ticker-line.show { opacity: 1; transform: none; }
    .ticker-line .t { color: var(--text-3); margin-right: 10px; }
    .ticker-line .ok { color: var(--green); }
    .ticker-line .warn { color: var(--red); }
    .ticker-line .au { color: var(--gold); }

    /* ── Problem section ── */
    .section-problem { padding: 110px 0 90px; }
    .problem-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
      margin-top: 48px;
    }
    .problem-card {
      border: 1px solid var(--border); border-radius: 12px;
      background: var(--card); padding: 22px 22px 20px;
      transition: border-color 0.25s, background 0.25s;
    }
    .problem-card:hover { border-color: var(--border-2); background: var(--card-2); }
    .problem-tool {
      font-family: var(--mono); font-size: 12px; color: var(--text-3);
      letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px;
      display: flex; align-items: center; gap: 8px;
    }
    .problem-tool::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--red); opacity: 0.8; }
    .problem-head { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 6px; }
    .problem-body { font-size: 14px; color: var(--text-2); line-height: 1.55; }
    .problem-pivot {
      margin-top: 64px; text-align: center;
      padding: 52px 32px; border: 1px solid var(--gold-bd); border-radius: 18px;
      background: linear-gradient(180deg, var(--gold-bg), rgba(212,175,55,0.025));
      position: relative; overflow: hidden;
    }
    .problem-pivot h3 {
      font-size: clamp(24px, 3.4vw, 38px); font-weight: 800;
      letter-spacing: -0.03em; line-height: 1.12; margin-bottom: 14px;
    }
    .problem-pivot h3 .gold { color: var(--gold); }
    .problem-pivot p { font-size: 16px; color: var(--text-2); max-width: 620px; margin: 0 auto; }

    /* ── Act sections ── */
    .act { padding: 110px 0; border-top: 1px solid var(--border); position: relative; }
    .act-alt { background: var(--bg-2); }
    .act-head { max-width: 720px; margin-bottom: 56px; }
    .act-num {
      font-family: var(--mono); font-size: 13px; font-weight: 600;
      color: var(--gold); letter-spacing: 3px; text-transform: uppercase;
      display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
    }
    .act-num::after { content: ''; height: 1px; width: 64px; background: var(--gold-bd); }
    .act-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
    .act-grid.flip .act-copy { order: 2; }
    .act-grid.flip .act-visual { order: 1; }
    .act-feature-list { list-style: none; margin-top: 30px; display: grid; gap: 14px; }
    .act-feature-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 15px; color: var(--text-2); line-height: 1.55; }
    .act-feature-list li strong { color: var(--text); font-weight: 650; }
    .act-feature-list .fi {
      flex: 0 0 auto; width: 22px; height: 22px; margin-top: 2px;
      border-radius: 6px; background: var(--gold-bg); border: 1px solid var(--gold-bd);
      display: flex; align-items: center; justify-content: center;
    }
    .act-feature-list .fi svg { width: 11px; height: 11px; stroke: var(--gold); }
    .act-cta-row { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }

    /* ── Shared UI vignette frame ── */
    .ui-frame {
      border: 1px solid var(--border-2); border-radius: 14px;
      background: #0a1011; overflow: hidden;
      box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.02);
    }
    .ui-chrome {
      display: flex; align-items: center; gap: 8px;
      padding: 10px 14px; border-bottom: 1px solid var(--border);
      background: rgba(255,255,255,0.018);
    }
    .ui-chrome .cd { width: 9px; height: 9px; border-radius: 50%; }
    .ui-chrome .cd:nth-child(1) { background: #ff5f57; }
    .ui-chrome .cd:nth-child(2) { background: #febc2e; }
    .ui-chrome .cd:nth-child(3) { background: #28c840; }
    .ui-chrome .ui-url {
      font-family: var(--mono); font-size: 11px; color: var(--text-3);
      margin-left: 10px; letter-spacing: 0.4px;
    }
    .ui-body { padding: 18px; }
    .ui-label {
      font-family: var(--mono); font-size: 10px; letter-spacing: 1.6px;
      text-transform: uppercase; color: var(--text-3); margin-bottom: 10px;
    }

    /* ── Consistent Act layout: title + bullets on top, full-width app demo below ── */
    .act-top { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; margin-bottom: 48px; }
    .act-top .act-head { max-width: none; margin-bottom: 0; }
    .act-top .act-copy { padding-top: 4px; }
    .act-top .act-feature-list { margin-top: 0; }
    .act-demo .ui-frame { width: 100%; }
    .act-demo-frame { position: relative; width: 100%; height: 660px; background: #0a1011; }
    .act-demo-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; display: block; }
    @media (max-width: 900px) {
      .act-top { grid-template-columns: 1fr; gap: 30px; margin-bottom: 30px; }
      .act-demo-frame { height: 560px; }
    }

    /* Act 1 vignette: plan + proposal */
    .v-design { display: grid; grid-template-columns: 1.15fr 1fr; gap: 14px; }
    .v-plan {
      position: relative; border: 1px solid var(--border); border-radius: 10px;
      background:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: 26px 26px; min-height: 270px; overflow: hidden;
    }
    .v-room {
      position: absolute; border: 1px solid rgba(255,255,255,0.16); border-radius: 3px;
    }
    .v-room span {
      position: absolute; top: 5px; left: 7px;
      font-family: var(--mono); font-size: 9px; letter-spacing: 1px;
      text-transform: uppercase; color: var(--text-3);
    }
    .v-dev {
      position: absolute; width: 14px; height: 14px; border-radius: 50%;
      transform: translate(-50%, -50%); cursor: default;
    }
    .v-dev::after {
      content: ''; position: absolute; inset: -5px; border-radius: 50%;
      border: 1px solid currentColor; opacity: 0.45;
      animation: devping 2.6s ease-out infinite;
    }
    @keyframes devping {
      0% { transform: scale(0.6); opacity: 0.55; }
      80% { transform: scale(1.6); opacity: 0; }
      100% { opacity: 0; }
    }
    .v-dev.gold { background: var(--gold); color: var(--gold); }
    .v-dev.blue { background: var(--blue); color: var(--blue); }
    .v-dev.red  { background: var(--red);  color: var(--red); }
    .v-dev.green{ background: var(--green);color: var(--green); }
    .v-heat {
      position: absolute; border-radius: 50%; pointer-events: none;
      background: radial-gradient(circle, rgba(96,165,250,0.20) 0%, rgba(96,165,250,0.06) 55%, transparent 75%);
    }
    .v-fov {
      position: absolute; width: 0; height: 0; pointer-events: none; opacity: 0.5;
      border-left: 38px solid transparent; border-right: 38px solid transparent;
      border-bottom: 86px solid rgba(248,113,113,0.13);
      transform-origin: 50% 0;
    }
    .v-proposal { border: 1px solid var(--border); border-radius: 10px; background: rgba(255,255,255,0.015); padding: 14px; display: flex; flex-direction: column; }
    .v-prop-row {
      display: flex; justify-content: space-between; align-items: center; gap: 10px;
      padding: 9px 10px; border-radius: 7px; font-size: 12.5px;
      color: var(--text-2); border: 1px solid transparent;
      opacity: 0; animation: proprow 0.5s ease forwards;
    }
    .v-prop-row:nth-child(odd) { background: rgba(255,255,255,0.02); }
    .v-prop-row .nm { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
    .v-prop-row .nm b { color: var(--text); font-weight: 600; font-size: 12.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .v-prop-row .nm i { font-style: normal; font-family: var(--mono); font-size: 10px; color: var(--text-3); }
    .v-prop-row .pr { font-family: var(--mono); font-size: 12px; color: var(--text-2); white-space: nowrap; }
    @keyframes proprow { from { opacity: 0; transform: translateX(10px); } to { opacity: 1; transform: none; } }
    .v-prop-total {
      margin-top: auto; padding: 11px 10px 2px; border-top: 1px solid var(--border);
      display: flex; justify-content: space-between; font-family: var(--mono); font-size: 12.5px;
    }
    .v-prop-total b { color: var(--gold); }

    /* Act 2 vignette: schedule + reconcile */
    .v-run { display: grid; gap: 14px; }
    .v-gantt { border: 1px solid var(--border); border-radius: 10px; padding: 16px 14px 14px; background: rgba(255,255,255,0.015); }
    .v-g-row { display: grid; grid-template-columns: 110px 1fr; align-items: center; gap: 12px; margin-bottom: 11px; }
    .v-g-row:last-child { margin-bottom: 0; }
    .v-g-name { font-size: 12px; color: var(--text-2); font-weight: 550; white-space: nowrap; }
    .v-g-track { position: relative; height: 16px; background: rgba(255,255,255,0.03); border-radius: 5px; }
    .v-g-bar { position: absolute; top: 0; bottom: 0; border-radius: 5px; }
    .v-g-bar.done { background: rgba(52,211,153,0.5); }
    .v-g-bar.active {
      background: repeating-linear-gradient(45deg, rgba(212,175,55,0.65) 0 6px, rgba(212,175,55,0.4) 6px 12px);
      background-size: 200% 100%; animation: barslide 14s linear infinite;
    }
    .v-g-bar.todo { background: rgba(255,255,255,0.1); }
    @keyframes barslide { from { background-position: 0 0; } to { background-position: -400px 0; } }
    .v-recon {
      display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
    }
    .v-card { border: 1px solid var(--border); border-radius: 10px; padding: 14px; background: rgba(255,255,255,0.015); }
    .v-match-rows { display: grid; gap: 7px; }
    .v-match-row { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 11.5px; color: var(--text-2); }
    .v-match-row .ok { color: var(--green); }
    .v-clock { display: flex; flex-direction: column; gap: 8px; }
    .v-clock-row { display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; color: var(--text-2); padding: 7px 9px; border-radius: 7px; background: rgba(255,255,255,0.02); }
    .v-clock-row b { color: var(--text); font-weight: 600; font-size: 12px; }
    .v-chip { font-family: var(--mono); font-size: 10px; padding: 3px 9px; border-radius: 100px; letter-spacing: 0.6px; }
    .v-chip.in { background: rgba(52,211,153,0.12); color: var(--green); border: 1px solid rgba(52,211,153,0.3); }
    .v-chip.appr { background: var(--gold-bg); color: var(--gold); border: 1px solid var(--gold-bd); }

    /* Act 3 vignette: monitoring + vault */
    .v-support { display: grid; gap: 14px; }
    .v-site-row {
      display: flex; align-items: center; gap: 12px;
      padding: 11px 12px; border-radius: 8px; border: 1px solid var(--border);
      background: rgba(255,255,255,0.015); font-size: 12.5px; color: var(--text-2);
      margin-bottom: 8px;
    }
    .v-site-row:last-child { margin-bottom: 0; }
    .v-site-row .sd { width: 8px; height: 8px; border-radius: 50%; flex: 0 0 auto; }
    .v-site-row .sd.up { background: var(--green); box-shadow: 0 0 8px rgba(52,211,153,0.5); }
    .v-site-row .sd.down { background: var(--red); box-shadow: 0 0 8px rgba(248,113,113,0.6); animation: blink 1.4s ease infinite; }
    @keyframes blink { 50% { opacity: 0.35; } }
    .v-site-row b { color: var(--text); font-weight: 600; }
    .v-site-row .right { margin-left: auto; font-family: var(--mono); font-size: 10.5px; color: var(--text-3); display: flex; gap: 8px; align-items: center; }
    .v-site-row.alert { border-color: rgba(248,113,113,0.35); background: rgba(248,113,113,0.05); }
    .v-vault-row {
      display: flex; align-items: center; gap: 12px;
      padding: 10px 12px; border-radius: 8px; background: rgba(255,255,255,0.02);
      font-size: 12.5px; color: var(--text-2); margin-bottom: 7px;
    }
    .v-vault-row:last-child { margin-bottom: 0; }
    .v-vault-row .ic { font-family: var(--mono); font-size: 10px; color: var(--gold); border: 1px solid var(--gold-bd); background: var(--gold-bg); border-radius: 5px; padding: 2px 7px; }
    .v-vault-row b { color: var(--text); font-weight: 600; }
    .v-vault-row .pw { margin-left: auto; font-family: var(--mono); font-size: 11px; color: var(--text-3); letter-spacing: 2px; }

    /* ── Customer list strip ── */
    .section-sync { padding: 90px 0; border-top: 1px solid var(--border); text-align: center; }
    .sync-flow {
      display: flex; align-items: center; justify-content: center; gap: 18px;
      flex-wrap: wrap; margin-top: 44px;
    }
    .sync-hub {
      font-weight: 750; font-size: 15px; letter-spacing: -0.01em;
      padding: 16px 28px; border-radius: 14px;
      background: var(--gold-bg); border: 1px solid var(--gold-bd); color: var(--gold);
    }
    .sync-arrow { font-family: var(--mono); color: var(--text-3); font-size: 16px; }
    .sync-targets { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
    .sync-pill {
      font-size: 13.5px; font-weight: 550; color: var(--text-2);
      padding: 10px 18px; border-radius: 100px;
      border: 1px solid var(--border-2); background: var(--card);
    }

    /* ── Demo ── */
    .section-demo { padding: 110px 0; border-top: 1px solid var(--border); }
    .demo-head { text-align: center; max-width: 700px; margin: 0 auto 44px; }
    .demo-head .eyebrow { justify-content: center; }
    .demo-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 22px; }
    .demo-tab {
      font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.6px;
      padding: 9px 20px; border-radius: 100px; cursor: pointer;
      background: var(--card); border: 1px solid var(--border-2); color: var(--text-2);
      transition: all 0.2s;
    }
    .demo-tab.active { background: var(--gold-bg); border-color: var(--gold-bd); color: var(--gold); }
    .demo-stage {
      border: 1px solid var(--border-2); border-radius: 16px; overflow: hidden;
      background: #0a1011; box-shadow: 0 40px 100px rgba(0,0,0,0.55);
    }
    .demo-stage .ui-chrome { padding: 12px 16px; }
    .demo-iframe-wrap { position: relative; width: 100%; aspect-ratio: 16 / 9.6; background: #0a1011; }
    .demo-iframe-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
    .demo-expand {
      margin-left: auto; display: inline-flex; align-items: center; gap: 7px;
      font-family: var(--mono); font-size: 11px; color: var(--text-2);
      background: rgba(255,255,255,0.05); border: 1px solid var(--border-2);
      border-radius: 7px; padding: 5px 12px; cursor: pointer; transition: all 0.2s;
    }
    .demo-expand:hover { color: var(--text); border-color: rgba(255,255,255,0.3); }
    .demo-stage.fullscreen {
      position: fixed; inset: 0; z-index: 300; border-radius: 0; border: none;
    }
    .demo-stage.fullscreen .demo-iframe-wrap { aspect-ratio: auto; height: calc(100% - 45px); }
    .demo-caption { text-align: center; margin-top: 18px; font-family: var(--mono); font-size: 12px; color: var(--text-3); }
    .demo-caption .au { color: var(--gold); }

    /* ── Modules ── */
    .section-modules { padding: 110px 0; border-top: 1px solid var(--border); background: var(--bg-2); }
    .modules-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 52px; }
    .module-card {
      border: 1px solid var(--border); border-radius: 14px; background: var(--card);
      padding: 26px 24px; transition: border-color 0.25s, background 0.25s, transform 0.25s;
      position: relative; overflow: hidden;
    }
    .module-card:hover { border-color: var(--gold-bd); background: var(--card-2); transform: translateY(-3px); }
    .module-tag {
      font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 1.6px;
      color: var(--gold); background: var(--gold-bg); border: 1px solid var(--gold-bd);
      display: inline-block; padding: 4px 11px; border-radius: 6px; margin-bottom: 16px;
    }
    .module-name { font-size: 18px; font-weight: 750; letter-spacing: -0.015em; margin-bottom: 8px; }
    .module-desc { font-size: 14px; color: var(--text-2); line-height: 1.6; }
    .module-desc b { color: var(--text); font-weight: 600; }

    /* ── VTools interactive carousel (VMEET) ── */
    .vt-hero { border: 1px solid var(--border); border-radius: 22px; background: var(--card); padding: 40px 44px; margin-top: 44px; }
    .vt-tag { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 1.6px; color: var(--gold);
      background: var(--gold-bg); border: 1px solid var(--gold-bd); display: inline-block; padding: 4px 11px; border-radius: 6px; margin-bottom: 18px; }
    .vt-name { font-size: 28px; font-weight: 800; letter-spacing: -0.025em; line-height: 1.14; margin-bottom: 13px; }
    .vt-lead { font-size: 15.5px; color: var(--text-2); line-height: 1.65; max-width: 760px; }
    .vt-lead b { color: var(--text); font-weight: 600; }
    .vt-main { display: grid; grid-template-columns: 288px 1fr; gap: 58px; margin-top: 40px; align-items: start; }
    .vt-stage { display: flex; flex-direction: column; align-items: center; }
    .vt-device { width: 252px; padding: 9px; background: #0a0a0b; border-radius: 48px; box-shadow: inset 0 0 0 2px #26282b, 0 26px 64px -22px rgba(0,0,0,.85); }
    .vt-screen { width: 234px; height: 509px; border-radius: 40px; overflow: hidden; background: #000; position: relative; }
    .vt-track { display: flex; height: 509px; transition: transform .6s cubic-bezier(.55,.1,.25,1); }
    .vt-slide { width: 234px; flex: 0 0 234px; height: 509px; }
    .vt-slide img { width: 234px; height: 509px; object-fit: cover; object-position: top; display: block; }
    .vt-slider { width: 252px; margin-top: 26px; }
    .vt-strack { position: relative; height: 6px; background: rgba(255,255,255,.1); border-radius: 3px; cursor: pointer; }
    .vt-sfill { position: absolute; left: 0; top: 0; height: 6px; background: var(--gold); border-radius: 3px; width: 0; transition: width .55s cubic-bezier(.55,.1,.25,1); }
    .vt-tick { position: absolute; top: 50%; width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.35); transform: translate(-50%,-50%); }
    .vt-sthumb { position: absolute; top: 50%; left: 0; width: 15px; height: 15px; border-radius: 50%; background: var(--gold);
      box-shadow: 0 0 0 4px rgba(212,175,55,.16); transform: translate(-50%,-50%); transition: left .55s cubic-bezier(.55,.1,.25,1); }
    .vt-smeta { display: flex; justify-content: space-between; margin-top: 14px; font-family: var(--mono); font-size: 11px; letter-spacing: 1px; color: var(--text-3); white-space: nowrap; }
    .vt-now { color: var(--gold); }
    .vt-steps { display: flex; flex-direction: column; gap: 7px; }
    .vt-step { display: flex; gap: 16px; text-align: left; width: 100%; padding: 15px 17px; border-radius: 13px; cursor: pointer;
      background: transparent; border: 1px solid transparent; opacity: .5; transition: opacity .3s, background .3s, border-color .3s; }
    .vt-step:hover { opacity: .85; }
    .vt-step.on { opacity: 1; background: var(--card-2); border-color: var(--gold-bd); }
    .vt-num { flex: 0 0 32px; width: 32px; height: 32px; border-radius: 9px; border: 1px solid var(--border-2);
      display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 13px; font-weight: 600; color: var(--text-3); transition: .3s; }
    .vt-step.on .vt-num { background: var(--gold); border-color: var(--gold); color: #0a0a08; }
    .vt-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
    .vt-lab { font-family: var(--mono); font-size: 10px; letter-spacing: 1.4px; color: var(--text-3); transition: .3s; }
    .vt-step.on .vt-lab { color: var(--gold); }
    .vt-ti { font-size: 15px; font-weight: 700; color: var(--text-2); letter-spacing: -0.01em; transition: .3s; }
    .vt-step.on .vt-ti { color: var(--text); }
    .vt-de { font-size: 13px; color: var(--text-3); line-height: 1.55; }
    .vt-step.on .vt-de { color: var(--text-2); }
    @media (max-width: 860px) {
      .vt-hero { padding: 30px 22px; }
      .vt-main { grid-template-columns: 1fr; gap: 36px; justify-items: center; }
      .vt-de { max-width: 380px; }
    }

    /* ── Portal ── */
    .section-portal { padding: 110px 0; border-top: 1px solid var(--border); background: var(--bg-2); }
    .portal-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
    .portal-mock-side { display: flex; flex-direction: column; gap: 14px; }
    .p-side { display: grid; grid-template-columns: 132px 1fr; min-height: 300px; }
    .p-nav { border-right: 1px solid var(--border); padding: 12px 0; background: rgba(255,255,255,0.012); }
    .p-nav-item {
      font-size: 11.5px; font-weight: 550; color: var(--text-3);
      padding: 8px 14px; display: flex; align-items: center; gap: 8px;
    }
    .p-nav-item.on { color: var(--gold); background: var(--gold-bg); border-right: 2px solid var(--gold); }
    .p-main { padding: 14px; }
    .p-card {
      border: 1px solid var(--border); border-radius: 9px; padding: 11px 13px;
      background: rgba(255,255,255,0.018); margin-bottom: 9px;
      display: flex; justify-content: space-between; align-items: center; gap: 10px;
      font-size: 12px; color: var(--text-2);
    }
    .p-card b { color: var(--text); font-weight: 600; font-size: 12.5px; }
    .gc-note {
      margin-top: 56px; border: 1px solid var(--border-2); border-radius: 14px;
      background: var(--card); padding: 28px 30px;
      display: flex; gap: 22px; align-items: flex-start;
    }
    .gc-note .gi {
      flex: 0 0 auto; font-family: var(--mono); font-size: 11px; font-weight: 600;
      letter-spacing: 1.6px; color: var(--blue);
      border: 1px solid rgba(96,165,250,0.35); background: rgba(96,165,250,0.08);
      padding: 5px 12px; border-radius: 7px; margin-top: 2px;
    }
    .gc-note h4 { font-size: 17px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.01em; }
    .gc-note p { font-size: 14.5px; color: var(--text-2); }

    /* ── Integrations ── */
    .section-integrations { padding: 100px 0; border-top: 1px solid var(--border); }
    .integ-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 48px; }
    .integ-card {
      border: 1px solid var(--border); border-radius: 12px; background: var(--card);
      padding: 20px 22px; transition: border-color 0.25s;
      display: flex; align-items: center; gap: 16px;
    }
    .integ-card:hover { border-color: var(--border-2); }
    .integ-body { flex: 1 1 auto; min-width: 0; }
    /* Invisible right column (~1/5 of the card) reserved for the brand logo. */
    .integ-logo { flex: 0 0 20%; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px; }
    .integ-logo img { max-width: 100%; max-height: 44px; object-fit: contain; opacity: 0.9;
      /* Tint partner logos toward the site gold while keeping their internal
         light/dark detail (grayscale -> gold). Muted to match the header button. */
      filter: grayscale(1) sepia(1) saturate(2.1) hue-rotate(1deg) brightness(0.98) contrast(0.98); }
    .integ-logo.multi img { max-height: 26px; max-width: 46%; }
    .integ-name { font-size: 15px; font-weight: 700; margin-bottom: 5px; display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
    .integ-name .soon {
      font-family: var(--mono); font-size: 9px; letter-spacing: 1.2px; color: var(--gold);
      border: 1px solid var(--gold-bd); border-radius: 4px; padding: 2px 6px;
    }
    .integ-name .soon-red { color: #ff5a5a; border-color: rgba(255,90,90,0.5); }
    .integ-desc { font-size: 13px; color: var(--text-2); line-height: 1.55; }

    /* ── Mobile ── */
    .section-mobile { padding: 110px 0; border-top: 1px solid var(--border); background: var(--bg-2); }
    .mobile-grid { display: grid; grid-template-columns: 1fr 0.8fr; gap: 64px; align-items: center; }
    .phone {
      width: 250px; margin: 0 auto; border-radius: 36px;
      border: 1px solid var(--border-2); background: #0a1011;
      box-shadow: 0 40px 90px rgba(0,0,0,0.55);
      padding: 12px 12px 16px; position: relative;
    }
    .phone-notch { width: 86px; height: 18px; border-radius: 100px; background: #050809; margin: 2px auto 12px; }
    .phone-screen { border-radius: 22px; overflow: hidden; border: 1px solid var(--border); background: #0c1314; padding: 12px 11px; min-height: 380px; }
    .ph-greet { font-size: 13px; font-weight: 700; margin-bottom: 2px; }
    .ph-sub { font-family: var(--mono); font-size: 9px; color: var(--text-3); margin-bottom: 12px; letter-spacing: 0.8px; }
    .ph-card {
      border: 1px solid var(--border); border-radius: 9px; padding: 9px 10px;
      background: rgba(255,255,255,0.02); margin-bottom: 8px; font-size: 10.5px; color: var(--text-2);
    }
    .ph-card b { color: var(--text); font-size: 11px; display: block; margin-bottom: 1px; }
    .ph-tabbar {
      display: flex; justify-content: space-between; align-items: center;
      margin-top: 12px; padding: 8px 10px 2px; border-top: 1px solid var(--border);
      font-family: var(--mono); font-size: 7.5px; letter-spacing: 0.4px; color: var(--text-3); text-transform: uppercase;
    }
    .ph-fab {
      width: 30px; height: 30px; border-radius: 50%; background: var(--gold);
      color: #0a0a08; display: flex; align-items: center; justify-content: center;
      font-size: 15px; font-weight: 800; margin-top: -18px;
      box-shadow: 0 6px 18px rgba(212,175,55,0.35);
    }
    .mobile-points { list-style: none; display: grid; gap: 18px; }
    .mobile-points li { display: flex; gap: 14px; font-size: 15px; color: var(--text-2); line-height: 1.55; }
    .mobile-points li strong { color: var(--text); font-weight: 650; }

    /* ── Tiers ── */
    .section-tiers { padding: 110px 0; border-top: 1px solid var(--border); }
    .tiers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
    .tier-card {
      border: 1px solid var(--border); border-radius: 16px; background: var(--card);
      padding: 30px 28px; display: flex; flex-direction: column;
      transition: border-color 0.25s, transform 0.25s;
    }
    .tier-card:hover { transform: translateY(-3px); }
    .tier-card.featured { border-color: var(--gold-bd); background: linear-gradient(180deg, var(--gold-bg), var(--card)); position: relative; }
    .tier-badge {
      position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
      font-family: var(--mono); font-size: 10px; letter-spacing: 1.6px; text-transform: uppercase;
      background: var(--gold); color: #0a0a08; font-weight: 700;
      padding: 4px 14px; border-radius: 100px; white-space: nowrap;
    }
    .tier-name { font-size: 21px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 4px; }
    .tier-for { font-size: 13.5px; color: var(--text-2); margin-bottom: 20px; min-height: 42px; }
    .tier-divider { font-family: var(--mono); font-size: 10px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--text-3); margin: 4px 0 14px; }
    .tier-list { list-style: none; display: grid; gap: 10px; font-size: 14px; color: var(--text-2); }
    .tier-list li { display: flex; gap: 10px; align-items: flex-start; line-height: 1.45; }
    .tier-list li svg { flex: 0 0 auto; width: 13px; height: 13px; margin-top: 4px; stroke: var(--gold); }
    .tier-list li strong { color: var(--text); font-weight: 650; }
    .tiers-note {
      margin-top: 40px; text-align: center; font-size: 15px; color: var(--text-2);
      max-width: 660px; margin-left: auto; margin-right: auto;
    }
    .tiers-note b { color: var(--gold); font-weight: 650; }

    /* ── Final CTA ── */
    .section-cta { padding: 130px 0 120px; border-top: 1px solid var(--border); text-align: center; position: relative; overflow: hidden; }
    .cta-glow { position: absolute; width: 760px; height: 420px; left: 50%; bottom: -240px; transform: translateX(-50%); background: rgba(212,175,55,0.08); filter: blur(120px); border-radius: 50%; pointer-events: none; }
    .section-cta h2 {
      font-size: clamp(30px, 4.6vw, 54px); font-weight: 850; letter-spacing: -0.04em;
      line-height: 1.06; max-width: 820px; margin: 0 auto 20px;
    }
    .section-cta h2 .gold { color: var(--gold); }
    .section-cta p { font-size: 17px; color: var(--text-2); max-width: 560px; margin: 0 auto 36px; }
    .cta-note { margin-top: 22px; font-family: var(--mono); font-size: 12px; color: var(--text-3); }

    /* ── Footer ── */
    footer { border-top: 1px solid var(--border); padding: 64px 0 40px; background: var(--bg-2); }
    .footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
    .footer-brand-desc { font-size: 13.5px; color: var(--text-3); max-width: 280px; margin-top: 14px; line-height: 1.6; }
    .footer-col-title { font-family: var(--mono); font-size: 11px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--text-3); margin-bottom: 16px; }
    .footer-links { list-style: none; display: grid; gap: 10px; }
    .footer-links a { font-size: 14px; color: var(--text-2); transition: color 0.2s; }
    .footer-links a:hover { color: var(--text); }
    .footer-bottom {
      border-top: 1px solid var(--border); padding-top: 26px;
      display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
    }
    .footer-bottom-text { font-family: var(--mono); font-size: 12px; color: var(--text-3); }

    /* ── Responsive ── */
    @media (max-width: 980px) {
      .problem-grid { grid-template-columns: 1fr 1fr; }
      .act-grid, .portal-grid, .mobile-grid { grid-template-columns: 1fr; gap: 40px; }
      .act-grid.flip .act-copy { order: 1; }
      .act-grid.flip .act-visual { order: 2; }
      .modules-grid, .integ-grid, .tiers-grid { grid-template-columns: 1fr 1fr; }
      .footer-inner { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 700px) {
      .nav-links { display: none; }
      .nav-actions .nav-login { display: none; }
      .nav-hamburger { display: block; }
      .hero { padding: 140px 0 60px; }
      .problem-grid, .modules-grid, .integ-grid, .tiers-grid { grid-template-columns: 1fr; }
      .v-design { grid-template-columns: 1fr; }
      .v-recon { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr; gap: 28px; }
      .gc-note { flex-direction: column; gap: 14px; }
      .act { padding: 80px 0; }
      .demo-iframe-wrap { aspect-ratio: 4 / 5; }
    }
