    /* ══════════════════════════════════════
       CSS RESET + TOKENS
    ══════════════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

    :root {
      --brand:       #000000;
      --brand-dark:  #1a1a1a;
      --brand-light: #f0f0f0;
      --brand-mid:   #d0d0d0;
      --accent:      #f97316;
      --text:        #0f172a;
      --text-2:      #475569;
      --text-3:      #94a3b8;
      --bg:          #ffffff;
      --bg-soft:     #f8fafc;
      --bg-hero:     #f0f9ff;
      --border:      #e2e8f0;
      --border-soft: #f1f5f9;
      --nav-bg:      rgba(255,255,255,0.92);
      --radius:      14px;
      --radius-sm:   8px;
      --shadow:      0 1px 3px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.06);
      --shadow-lg:   0 8px 40px rgba(0,0,0,.10);
      --font: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
      --footer-bg:   #0f172a;
    }
    [data-theme="dark"] {
      --brand:       #ffffff;
      --brand-dark:  #e0e0e0;
      --brand-mid:   rgba(255,255,255,0.20);
      --accent:      #f97316;
      --bg:          #080a0f;
      --bg-soft:     #0e1016;
      --bg-hero:     #080c14;
      --text:        #f0f9ff;
      --text-2:      #94a3b8;
      --text-3:      #475569;
      --border:      rgba(255,255,255,0.09);
      --border-soft: rgba(255,255,255,0.04);
      --nav-bg:      rgba(12, 14, 20, 0.85);
      --brand-light: #1a1d27;
      --footer-bg:   #0a0d08;
      --shadow:      0 1px 3px rgba(0,0,0,.3), 0 4px 16px rgba(0,0,0,.25);
      --shadow-lg:   0 8px 40px rgba(0,0,0,.4);
    }

    /* Dark mode text overrides */
    [data-theme="dark"] h1,
    [data-theme="dark"] h2,
    [data-theme="dark"] h3,
    [data-theme="dark"] .hero h1,
    [data-theme="dark"] .hero-sub,
    [data-theme="dark"] .section-head h2,
    [data-theme="dark"] .split-text h2 {
      color: var(--text) !important;
    }
    [data-theme="dark"] .section-head p,
    [data-theme="dark"] .split-text p,
    [data-theme="dark"] .hero-sub {
      color: var(--text-2) !important;
    }

    /* Dark mode hero + section backgrounds */
    [data-theme="dark"] .hero {
      background: linear-gradient(160deg, #0d1520 0%, #0a0f1a 60%);
    }
    [data-theme="dark"] .section-hero-bg {
      background: linear-gradient(180deg, #0d1520 0%, #0d0f16 100%);
    }

    /* Dark mode card surfaces */
    [data-theme="dark"] .hero-card,
    [data-theme="dark"] .unlim-card,
    [data-theme="dark"] .product-card,
    [data-theme="dark"] .step-card,
    [data-theme="dark"] .faq-item,
    [data-theme="dark"] .tool-item,
    [data-theme="dark"] .float-card,
    [data-theme="dark"] .aud-tag,
    [data-theme="dark"] .review-card,
    [data-theme="dark"] .oss-card {
      background: #0d0f16;
      border-color: rgba(255,255,255,0.08);
    }
    [data-theme="dark"] .hero-card-header,
    [data-theme="dark"] .mock-panel-bar,
    [data-theme="dark"] .stat-box,
    [data-theme="dark"] .mock-panel {
      background: #12141c;
      border-color: rgba(255,255,255,0.06);
    }
    [data-theme="dark"] .pb {
      background: rgba(255,255,255,0.15);
    }
    [data-theme="dark"] .perf-bar-wrap {
      background: #0c0f18;
    }
    [data-theme="dark"] .stat-box .s-val,
    [data-theme="dark"] .mpb-title,
    [data-theme="dark"] .perf-bar-header span {
      color: rgba(255,255,255,0.7);
    }

    /* Dark mode pill override */
    [data-theme="dark"] .pill {
      background: #1e293b !important;
      color: #94a3b8 !important;
    }

    /* Dark mode hardcoded icon backgrounds */
    [data-theme="dark"] .ti-blue,
    [data-theme="dark"] .ti-green,
    [data-theme="dark"] .ti-orange,
    [data-theme="dark"] .ti-purple {
      background: #1e293b;
    }
    [data-theme="dark"] .ts-live {
      background: rgba(34,197,94,0.15);
      color: #4ade80;
    }
    [data-theme="dark"] .pc-badge.live {
      background: rgba(34,197,94,0.15);
      color: #4ade80;
    }
    [data-theme="dark"] .oss-logo { background: var(--bg-soft) !important; }
    [data-theme="dark"] .oss-promise-icon { color: #0a0f1a; }

    body { transition: background .2s, color .2s; }

    body {
      font-family: var(--font);
      font-size: 16px;
      line-height: 1.6;
      color: var(--text);
      background: var(--bg);
      -webkit-font-smoothing: antialiased;
    }

    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* ══════════════════════════════════════
       UTILITIES
    ══════════════════════════════════════ */
    .container {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .sr-only {
      position: absolute; width:1px; height:1px;
      padding:0; margin:-1px; overflow:hidden;
      clip:rect(0,0,0,0); white-space:nowrap; border:0;
    }

    /* First content under nav: consistent 88px top spacing */
    main > *:first-child { padding-top: 88px; }
    .pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--brand-light);
      color: var(--brand-dark);
      font-size: 0.78rem;
      font-weight: 600;
      padding: 5px 14px;
      border-radius: 100px;
      letter-spacing: 0.01em;
    }
    .text-brand { color: var(--brand); }
    .text-accent { color: var(--accent); }

    /* ══════════════════════════════════════
       NAV
    ══════════════════════════════════════ */
    .nav {
      position: sticky;
      top: 0;
      z-index: 200;
      width: 100%;
      background: var(--nav-bg);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
    }
    .nav .container,
    .nav-inner {
      width: 100%;
      max-width: 1160px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 24px;
      padding-right: 24px;
      box-sizing: border-box;
    }
    .nav-inner {
      display: grid;
      grid-template-columns: minmax(0, 5fr) auto minmax(0, 7fr);
      align-items: center;
      height: 76px;
      padding-left: 24px;
      padding-right: 24px;
    }
    .nav-logo {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
      flex-shrink: 0;
      line-height: 1;
      justify-self: start;
    }
    .nav-logo-inner { display: block; width: 160px; }
    .nav-logo svg { display: block; width: 100%; height: auto; }
    [data-theme="dark"] .nav-logo .logo-pod-bg { fill: rgba(255,255,255,0.1); }
    [data-theme="dark"] .nav-logo .logo-text-dark { fill: #f0f9ff; }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
      justify-content: center;
      justify-self: center;
    }
    .nav-links a {
      font-size: 0.88rem;
      font-weight: 500;
      color: var(--text-2);
      padding: 6px 12px;
      border-radius: var(--radius-sm);
      transition: color .15s, background .15s;
    }
    .nav-links a:hover { color: var(--text); background: var(--bg-soft); }

    /* ── Dropdown ── */
    .nav-item { position: relative; list-style: none; }
    .nav-item > button {
      font-family: var(--font); font-size: .88rem; font-weight: 500; color: var(--text-2);
      padding: 6px 12px; border-radius: var(--radius-sm);
      background: none; border: none; cursor: pointer;
      display: flex; align-items: center; gap: 5px;
      transition: color .15s, background .15s;
    }
    .nav-item > button:hover,
    .nav-item.open > button { color: var(--text); background: var(--bg-soft); }
    .nav-item > button svg { transition: transform .2s; }
    .nav-item.open > button svg { transform: rotate(180deg); }

    .dropdown {
      position: absolute; top: calc(100% + 8px); left: 0;
      background: var(--bg); border: 1.5px solid var(--border);
      border-radius: var(--radius); box-shadow: 0 8px 32px rgba(0,0,0,.10);
      min-width: 220px; padding: 8px;
      opacity: 0; visibility: hidden; transform: translateY(-6px);
      transition: opacity .18s, transform .18s, visibility .18s;
      z-index: 200;
    }
    .nav-item.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

    .dropdown-item {
      display: flex; align-items: flex-start; gap: 12px;
      padding: 10px 12px; border-radius: var(--radius-sm);
      transition: background .15s; cursor: pointer;
    }
    .dropdown-item:hover { background: var(--bg-soft); }
    .dropdown-item-icon {
      width: 32px; height: 32px; border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; margin-top: 1px;
    }
    .dropdown-item-name { font-size: .86rem; font-weight: 700; color: var(--text); }
    .dropdown-item-desc { font-size: .76rem; color: var(--text-3); margin-top: 1px; line-height: 1.4; }
    .dropdown-badge {
      font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
      padding: 1px 5px; border-radius: 4px; vertical-align: middle; margin-left: 5px;
    }
    .dropdown-badge.live { background: #22c55e; color: #fff; }
    .dropdown-badge.soon { background: var(--bg-soft); color: var(--text-3); border: 1px solid var(--border); }
    .dropdown-divider { height: 1px; background: var(--border); margin: 6px 0; }
    .nav-badge {
      background: #22c55e;
      color: #fff;
      font-size: 0.6rem;
      font-weight: 700;
      padding: 1px 6px;
      border-radius: 4px;
      text-transform: uppercase;
      letter-spacing: .05em;
      vertical-align: middle;
      margin-left: 4px;
    }
    .nav-actions { display: flex; align-items: center; gap: 8px; justify-content: flex-end; justify-self: end; }

    /* ── Theme Switcher ── */
    .theme-toggle {
      height: 38px;
      padding: 0 10px;
      border-radius: var(--radius-sm);
      border: 1.5px solid var(--border);
      background: var(--bg-soft);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      font-size: 1rem;
      line-height: 1;
      transition: border-color .15s, background .15s;
      flex-shrink: 0;
    }
    .theme-toggle:hover { border-color: var(--brand); background: var(--brand-light); }

    /* ── Hamburger ── */
    .nav-hamburger {
      display: none;
      width: 36px; height: 36px;
      border-radius: var(--radius-sm);
      border: 1.5px solid var(--border);
      background: var(--bg-soft);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      cursor: pointer;
      transition: border-color .15s;
      flex-shrink: 0;
    }
    .nav-hamburger:hover { border-color: var(--brand); }
    .nav-hamburger span {
      display: block;
      width: 18px; height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: transform .25s, opacity .25s;
    }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── Mobile Menu ── */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 76px; left: 0; right: 0;
      background: var(--bg);
      border-bottom: 1px solid var(--border);
      z-index: 199;
      padding: 16px 24px 24px;
      box-shadow: var(--shadow-lg);
      transform: translateY(-8px);
      opacity: 0;
      transition: transform .25s, opacity .25s;
    }
    .mobile-menu.open {
      transform: translateY(0);
      opacity: 1;
    }
    .mobile-menu-links {
      display: flex;
      flex-direction: column;
      gap: 2px;
      margin-bottom: 16px;
    }
    .mobile-menu-links a {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text-2);
      padding: 12px 14px;
      border-radius: var(--radius-sm);
      transition: background .15s, color .15s;
    }
    .mobile-menu-links a:hover { background: var(--bg-soft); color: var(--text); }
    .mobile-menu-actions {
      display: flex;
      flex-direction: column;
      gap: 10px;
      padding-top: 12px;
      border-top: 1px solid var(--border);
    }
    .mobile-menu-actions .btn-nav-ghost,
    .mobile-menu-actions .btn-nav-cta {
      text-align: center;
      justify-content: center;
      padding: 12px;
      font-size: 0.95rem;
    }
    .mobile-theme-row {
      display: flex; align-items: center; justify-content: space-between;
      padding: 10px 14px;
      border-radius: var(--radius-sm);
      background: var(--bg-soft);
      border: 1.5px solid var(--border);
    }
    .mobile-theme-label { font-size: .88rem; font-weight: 600; color: var(--text-2); display: flex; align-items: center; gap: 8px; }
    .mobile-theme-toggle {
      display: flex; gap: 4px;
      background: var(--border); border-radius: 6px; padding: 3px;
    }
    .mtt-btn {
      font-family: var(--font); font-size: .72rem; font-weight: 700;
      padding: 4px 10px; border-radius: 4px; border: none; cursor: pointer;
      background: none; color: var(--text-3); transition: background .15s, color .15s;
    }
    .mtt-btn.active { background: var(--bg); color: var(--text); box-shadow: 0 1px 3px rgba(0,0,0,.1); }

    .btn-nav-ghost {
      height: 38px;
      display: inline-flex;
      align-items: center;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--text);
      padding: 0 18px;
      border: 1.5px solid var(--border);
      border-radius: var(--radius-sm);
      transition: border-color .15s, background .15s;
    }
    .btn-nav-ghost:hover { border-color: var(--brand); background: var(--brand-light); }
    .btn-nav-cta {
      font-size: 0.88rem;
      font-weight: 700;
      color: #fff;
      background: var(--brand);
      padding: 9px 22px;
      border-radius: var(--radius-sm);
      transition: background .15s, transform .15s;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .btn-nav-cta:hover { background: var(--brand-dark); transform: translateY(-1px); }

    /* ══════════════════════════════════════
       HERO
    ══════════════════════════════════════ */
    .hero {
      background: linear-gradient(160deg, var(--bg-hero) 0%, var(--bg) 60%);
      padding: 88px 0 72px;
    }
    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .hero-eyebrow { margin-bottom: 20px; }
    .hero h1 {
      font-size: clamp(2.4rem, 4vw, 3.6rem);
      font-weight: 800;
      line-height: 1.08;
      letter-spacing: -0.035em;
      margin-bottom: 20px;
      color: var(--text);
    }
    .hero-sub {
      font-size: 1.05rem;
      color: var(--text-2);
      line-height: 1.7;
      margin-bottom: 36px;
      max-width: 460px;
    }
    .hero-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--brand);
      color: #fff;
      font-weight: 700;
      font-size: 0.95rem;
      padding: 13px 28px;
      border-radius: var(--radius-sm);
      box-shadow: 0 4px 16px rgba(0,0,0,.25);
      transition: background .15s, transform .15s, box-shadow .15s;
    }
    .btn-primary:hover {
      background: var(--brand-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,0,0,.3);
    }
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--bg);
      color: var(--text);
      font-weight: 600;
      font-size: 0.95rem;
      padding: 13px 28px;
      border-radius: var(--radius-sm);
      border: 1.5px solid var(--border);
      transition: border-color .15s, background .15s, color .15s;
    }
    .btn-secondary:hover { border-color: var(--brand); background: var(--brand-light); color: var(--brand-dark); }
    .hero-social {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .avatars {
      display: flex;
    }
    .avatar {
      width: 36px; height: 36px;
      border-radius: 50%;
      border: 2px solid #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      font-weight: 700;
      color: #fff;
      margin-left: -10px;
    }
    .avatar:first-child { margin-left: 0; }
    .hero-social p { font-size: 0.88rem; color: var(--text-2); font-weight: 500; }
    .hero-social strong { color: var(--text); }

    /* Hero Visual */
    .hero-visual { position: relative; }
    .hero-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px;
      box-shadow: var(--shadow-lg);
      position: relative;
    }
    .hero-card-header {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 20px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--border-soft);
    }
    .hch-dot { width: 10px; height: 10px; border-radius: 50%; }
    .hch-dot.r { background: #f87171; }
    .hch-dot.y { background: #fbbf24; }
    .hch-dot.g { background: #4ade80; }
    .hch-title { font-size: 0.8rem; font-weight: 600; color: var(--text-2); margin-left: 4px; }
    .tool-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    .tool-item {
      background: var(--bg-soft);
      border: 1px solid var(--border-soft);
      border-radius: var(--radius-sm);
      padding: 14px;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: border-color .2s;
    }
    .tool-item:hover { border-color: var(--brand-mid); }
    .tool-icon {
      width: 36px; height: 36px;
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }
    .ti-blue { background: #f0f0f0; }
    .ti-green { background: #dcfce7; }
    .ti-orange { background: #ffedd5; }
    .ti-purple { background: #ede9fe; }
    .tool-name { font-size: 0.8rem; font-weight: 700; color: var(--text); }
    .tool-status {
      font-size: 0.68rem;
      font-weight: 600;
      padding: 2px 7px;
      border-radius: 4px;
    }
    .ts-live { background: #dcfce7; color: #16a34a; }
    .ts-soon { background: #f1f5f9; color: var(--text-3); }

    /* Float stat cards */
    .float-card {
      position: absolute;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 10px 16px;
      box-shadow: var(--shadow);
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.82rem;
    }
    .float-card .fc-icon {
      width: 30px; height: 30px;
      border-radius: 7px;
      display: flex; align-items: center; justify-content: center;
    }
    .float-card strong { display: block; font-weight: 700; color: var(--text); font-size: 0.9rem; }
    .float-card span { color: var(--text-2); font-size: 0.75rem; }
    .fc-1 { top: -20px; right: -20px; }
    .fc-2 { bottom: 20px; left: -24px; }

    /* ══════════════════════════════════════
       AUDIENCE BAR
    ══════════════════════════════════════ */
    .audience-bar {
      background: var(--bg-soft);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 56px 0;
    }
    .audience-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 28px;
      text-align: center;
    }
    .audience-label {
      font-size: 0.72rem; font-weight: 700; letter-spacing: .14em;
      text-transform: uppercase; color: var(--text-3);
    }
    .audience-tags {
      display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
    }
    .aud-tag {
      display: flex; align-items: center; gap: 10px;
      font-size: 0.92rem; font-weight: 600; color: var(--text);
      padding: 14px 24px; border-radius: var(--radius);
      background: var(--bg); border: 1.5px solid var(--border);
      transition: border-color .2s, box-shadow .2s, transform .2s, color .2s;
      cursor: default;
    }
    .aud-tag:hover {
      border-color: var(--brand-mid);
      box-shadow: var(--shadow);
      transform: translateY(-2px);
      color: var(--brand-dark);
    }
    .aud-tag .at-icon { display:flex; align-items:center; flex-shrink:0; color:var(--text-2); }

    /* ══════════════════════════════════════
       SECTION BASE
    ══════════════════════════════════════ */
    .section { padding: 88px 0; }
    .section-soft { background: var(--bg-soft); }
    .section-hero-bg {
      background: linear-gradient(180deg, var(--bg-hero) 0%, var(--bg-soft) 100%);
    }
    .section-head {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 56px;
    }
    .section-head .pill { margin-bottom: 16px; }
    .section-head h2 {
      font-size: clamp(1.9rem, 3.5vw, 2.8rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.1;
      margin-bottom: 14px;
    }
    .section-head p {
      font-size: 1rem;
      color: var(--text-2);
      line-height: 1.7;
    }

    /* ══════════════════════════════════════
       WHY — UNLIMITED GRID
    ══════════════════════════════════════ */
    .unlimited-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .unlim-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px 24px;
      transition: box-shadow .2s, transform .2s;
    }
    .unlim-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-3px);
    }
    .unlim-icon {
      width: 48px; height: 48px;
      border-radius: var(--radius-sm);
      background: var(--brand-light);
      color: var(--brand);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px;
    }
    .unlim-card h3 {
      font-size: 0.95rem;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--text);
    }
    .unlim-card p {
      font-size: 0.875rem;
      color: var(--text-2);
      line-height: 1.6;
    }

    /* ══════════════════════════════════════
       PRODUCTS SECTION
    ══════════════════════════════════════ */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .product-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px 28px;
      transition: box-shadow .2s, transform .2s, border-color .2s;
    }
    .product-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
      border-color: var(--brand-mid);
    }
    .product-card.featured {
      border-color: var(--brand);
      box-shadow: 0 0 0 3px var(--brand-light);
    }
    .pc-badge {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .06em;
      padding: 3px 10px;
      border-radius: 5px;
      margin-bottom: 18px;
    }
    .pc-badge.live { background: #dcfce7; color: #16a34a; }
    .pc-badge.soon { background: var(--bg-soft); color: var(--text-3); }
    .product-card h3 {
      font-size: 1.2rem;
      font-weight: 800;
      margin-bottom: 10px;
      letter-spacing: -0.02em;
    }
    .product-card p {
      font-size: 0.88rem;
      color: var(--text-2);
      line-height: 1.65;
      margin-bottom: 20px;
    }
    .pc-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--brand);
      transition: gap .15s;
    }
    .pc-link:hover { gap: 10px; }

    /* ══════════════════════════════════════
       SPLIT SECTION (performance)
    ══════════════════════════════════════ */
    .split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      overflow: visible;
    }
    .split.reverse { direction: rtl; }
    .split.reverse > * { direction: ltr; }
    .split-text .pill { margin-bottom: 16px; }
    .split-text h2 {
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.1;
      margin-bottom: 16px;
    }
    .split-text p {
      font-size: 0.98rem;
      color: var(--text-2);
      line-height: 1.75;
      margin-bottom: 24px;
    }
    .check-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .check-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--text);
    }
    .check-icon {
      width: 24px; height: 24px;
      background: var(--brand-light);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      color: var(--brand);
    }

    /* Split Visual — mock panel */
    .mock-panel {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow-lg);
      overflow: hidden;
    }
    .mock-panel-bar {
      background: var(--bg-soft);
      border-bottom: 1px solid var(--border);
      padding: 12px 16px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .mpb-dot { width: 10px; height: 10px; border-radius: 50%; }
    .mpb-dot.r { background: #fca5a5; }
    .mpb-dot.y { background: #fde68a; }
    .mpb-dot.g { background: #86efac; }
    .mpb-title { font-size: 0.78rem; font-weight: 600; color: var(--text-3); margin-left: 4px; }
    .mock-panel-body { padding: 20px; }
    .stat-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-bottom: 16px;
    }
    .stat-box {
      background: var(--bg-soft);
      border: 1px solid var(--border-soft);
      border-radius: var(--radius-sm);
      padding: 14px;
    }
    .stat-box .s-val {
      display:flex; align-items:center; justify-content:center;
      font-weight: 800;
      color: var(--text);
      letter-spacing: -0.03em;
      display: block;
    }
    .stat-box .s-label {
      font-size: 0.72rem;
      color: var(--text-3);
      font-weight: 500;
      margin-top: 2px;
    }
    .perf-bar-wrap { background: var(--bg-soft); border-radius: var(--radius-sm); padding: 16px; }
    .perf-bar-header { display: flex; justify-content: space-between; margin-bottom: 12px; }
    .perf-bar-header span { font-size: 0.8rem; font-weight: 600; color: var(--text-2); }
    .perf-bars {
      display: flex;
      gap: 5px;
      align-items: flex-end;
      height: 60px;
    }
    .pb { flex: 1; background: var(--brand-light); border-radius: 3px 3px 0 0; }

    /* ══════════════════════════════════════
       HOW IT WORKS
    ══════════════════════════════════════ */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .step-card {
      background: var(--bg);
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      padding: 32px 28px;
      display: flex; flex-direction: column; gap: 20px;
      transition: box-shadow .2s, transform .2s, border-color .2s;
    }
    .step-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--brand-mid); }
    .step-num {
      width: 40px; height: 40px;
      border-radius: var(--radius-sm);
      background: var(--brand);
      color: #fff;
      font-size: .82rem;
      font-weight: 800;
      font-family: 'JetBrains Mono', monospace;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      letter-spacing: .04em;
    }
    .step-card h3 {
      font-size: 1.05rem; font-weight: 800;
      color: var(--text); margin: 0;
    }
    .step-card p {
      font-size: 0.88rem; color: var(--text-2); line-height: 1.7; margin: 0;
    }
    .step-arrow {
      margin-top: auto; font-size: .82rem; font-weight: 700;
      color: var(--brand); display: flex; align-items: center; gap: 6px;
    }

    /* ══════════════════════════════════════
       OUR VALUES (cards-4)
    ══════════════════════════════════════ */
    .cards-4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .val-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 28px 24px;
      transition: box-shadow .2s, transform .2s;
    }
    .val-card:hover {
      box-shadow: 0 8px 40px rgba(0,0,0,.10);
      transform: translateY(-3px);
    }
    .val-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: var(--bg-soft);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      color: var(--text);
    }
    .val-title {
      font-size: .95rem;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 8px;
    }
    .val-desc {
      font-size: .875rem;
      color: var(--text-2);
      line-height: 1.7;
    }
    @media (max-width: 1024px) {
      .cards-4 { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 480px) {
      .cards-4 { grid-template-columns: 1fr; }
    }

    /* ══════════════════════════════════════
       CTA BANNER
    ══════════════════════════════════════ */
    .cta-banner {
      background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
      border-radius: var(--radius);
      padding: 64px 56px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap;
    }
    .cta-banner h2 {
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 800;
      color: #fff;
      letter-spacing: -0.03em;
      line-height: 1.2;
      margin-bottom: 8px;
    }
    .cta-banner p { color: rgba(255,255,255,.8); font-size: 0.95rem; line-height: 1.6; }
    .btn-white {
      background: #fff;
      color: #0a0f1a;
      font-weight: 700;
      font-size: 0.95rem;
      padding: 13px 28px;
      border-radius: var(--radius-sm);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: transform .15s, box-shadow .15s;
      white-space: nowrap;
    }
    .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.15); }

    /* ══════════════════════════════════════
       FOOTER
    ══════════════════════════════════════ */
    /* ══════════════════════════════════════
       REVIEWS
    ══════════════════════════════════════ */
    /* ══════════════════════════════════════
       OPEN SOURCE
    ══════════════════════════════════════ */
    .oss-section { padding: 96px 0; background: var(--bg); }
    .oss-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
      margin-top: 48px;
    }
    .oss-card {
      background: var(--bg-soft); border: 1.5px solid var(--border);
      border-radius: var(--radius); padding: 28px 24px;
      display: flex; flex-direction: column; gap: 14px;
      transition: box-shadow .2s, transform .2s;
    }
    .oss-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
    .oss-logo {
      width: 44px; height: 44px; border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: .78rem; font-weight: 800; letter-spacing: -.03em;
      flex-shrink: 0;
    }
    .oss-card h3 { font-size: .98rem; font-weight: 800; color: var(--text); }
    .oss-card p { font-size: .86rem; color: var(--text-2); line-height: 1.65; flex: 1; }
    .oss-link {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: .8rem; font-weight: 700; color: var(--text-3);
      transition: color .15s;
    }
    .oss-link:hover { color: var(--text); }
    .oss-promise {
      margin-top: 48px; background: var(--bg-soft); border: 1.5px solid var(--border);
      border-radius: var(--radius); padding: 32px 36px;
      display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
    }
    .oss-promise-icon {
      width: 48px; height: 48px; border-radius: 12px;
      background: var(--brand); color: #fff;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .oss-promise-text h3 { font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: 6px; }
    .oss-promise-text p { font-size: .88rem; color: var(--text-2); line-height: 1.65; }

    /* ══════════════════════════════════════
       FAQ
    ══════════════════════════════════════ */
    .faq-section { padding: 96px 0; background: var(--bg-soft); }
    .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }
    .faq-item {
      background: var(--bg); border: 1.5px solid var(--border);
      border-radius: var(--radius); padding: 24px 28px;
    }
    .faq-item h3 { font-size: .95rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
    .faq-item p { font-size: .88rem; color: var(--text-2); line-height: 1.65; }
    .faq-item p a { color: var(--text); font-weight: 600; }
    .faq-item p a:hover { text-decoration: underline; }

    .reviews-section { background: var(--bg-soft); padding: 96px 0; }
    [data-theme="dark"] .reviews-section { background: var(--bg-soft); }
    .trustpilot-badge {
      display: inline-flex; align-items: center; gap: 8px;
      border: 1.5px solid var(--border); border-radius: 100px;
      padding: 6px 16px; background: var(--bg);
      font-size: .82rem; font-weight: 600; color: var(--text-2);
      margin-bottom: 24px;
    }
    .tp-stars { display: flex; gap: 2px; }
    .tp-star { color: #22c55e; font-size: .9rem; }
    .tp-star.half { color: #d1d5db; }
    .tp-score { color: var(--text); font-weight: 800; }
    .reviews-header { text-align: center; margin-bottom: 56px; }
    .reviews-header h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.1; margin-bottom: 12px; }
    .reviews-header p { font-size: .82rem; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: .1em; }
    .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .review-card {
      background: var(--bg); border: 1.5px solid var(--border); border-radius: 16px;
      padding: 28px 26px; display: flex; flex-direction: column; gap: 16px;
      transition: box-shadow .2s, transform .2s, border-color .2s;
    }
    .review-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
    .reviewer { display: flex; align-items: center; gap: 12px; }
    .reviewer-avatar {
      width: 44px; height: 44px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: .85rem; font-weight: 800; color: #fff; flex-shrink: 0;
    }
    .reviewer-name { font-size: .95rem; font-weight: 800; color: var(--text); }
    .reviewer-role { font-size: .78rem; color: var(--text-3); font-weight: 500; margin-top: 1px; }
    .review-quote { font-size: .88rem; color: var(--text-2); line-height: 1.75; flex: 1; }
    .review-stars { display: flex; gap: 2px; color: #f59e0b; font-size: 1rem; }
    .rv-plan {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
      padding: 3px 10px; border-radius: 100px;
      background: var(--brand-light); color: var(--brand-dark); border: 1px solid var(--brand-mid);
      width: fit-content;
    }
    .rv-plan-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--brand); }
    .rv-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

    .footer {
      background: var(--footer-bg);
      color: rgba(255,255,255,.7);
      padding: 56px 0 32px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 28px;
    }
    .footer-brand .nav-logo { color: #fff; margin-bottom: 12px; display: block; }
    .footer-brand p { font-size: 0.88rem; line-height: 1.65; max-width: 280px; }
    .footer-col h4 { color: #fff; font-size: 0.85rem; font-weight: 700; margin-bottom: 16px; letter-spacing: .02em; }
    .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer-col a {
      font-size: 0.85rem;
      color: rgba(255,255,255,.6);
      transition: color .15s;
    }
    .footer-col a:hover { color: #fff; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.1);
      padding-top: 16px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-bottom p { font-size: 0.82rem; }
    .footer-bottom-links { display: flex; gap: 20px; }
    .footer-bottom-links a { font-size: 0.82rem; color: rgba(255,255,255,.5); transition: color .15s; }
    .footer-bottom-links a:hover { color: #fff; }

    /* ══════════════════════════════════════
       ANIMATIONS
    ══════════════════════════════════════ */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .anim { animation: fadeUp .6s ease forwards; }
    .d1 { animation-delay: .05s; opacity: 0; }
    .d2 { animation-delay: .15s; opacity: 0; }
    .d3 { animation-delay: .25s; opacity: 0; }
    .d4 { animation-delay: .35s; opacity: 0; }

    [data-theme="dark"] .cta-banner { background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%); }

    /* ══════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════ */
    @media (max-width: 1024px) {
      .unlimited-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .nav-inner { display: flex; justify-content: space-between; }
      .nav-links { display: none !important; }
      .btn-nav-ghost { display: none; }
      .btn-nav-cta { display: none; }
      .theme-toggle { display: none; }
      .nav-hamburger { display: flex; }
      .mobile-menu { display: block; }
      .hero-inner { grid-template-columns: 1fr; }
      .hero-visual { display: none; }
      .audience-tags { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
      .aud-tag { aspect-ratio: 1; flex-direction: column; justify-content: center; text-align: center; padding: 16px; }
      .split { grid-template-columns: 1fr; gap: 40px; }
      .split.reverse { direction: ltr; }
      .products-grid { grid-template-columns: 1fr; }
      .unlimited-grid { grid-template-columns: 1fr; }
      .steps-grid { grid-template-columns: 1fr; gap: 24px; }
      .steps-grid::after { display: none; }
      .cta-banner { padding: 40px 28px; flex-direction: column; }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }
