:root {
      --black: #070707;
      --dark: #0d0d0d;
      --card: #141414;
      --card2: #1a1a1a;
      --card3: #202020;
      --gold: #C9A84C;
      --gold-lt: #F0C84A;
      --gold-dk: #8B6914;
      --gold-dim: rgba(201, 168, 76, 0.07);
      --gold-dim2: rgba(201, 168, 76, 0.14);
      --gold-glow: rgba(201, 168, 76, 0.25);
      --white: #FFFFFF;
      --off: #EAE3D6;
      --grey: #7A7A7A;
      --grey-lt: #BBBBBB;
      --border: rgba(255, 255, 255, 0.055);
      --border-g: rgba(201, 168, 76, 0.18);
      --green: #22C55E;
      --green-dim: rgba(34, 197, 94, 0.12);
      --red: #EF4444;
      --red-dim: rgba(239, 68, 68, 0.1);
      --amber: #F59E0B;
      --amber-dim: rgba(245, 158, 11, 0.1);
      --font-display: 'Playfair Display', Georgia, serif;
      --font-body: 'Source Serif 4', Georgia, serif;
      --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
      --font-num: 'Barlow Condensed', sans-serif;
    }

    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      background: var(--black);
      color: var(--white);
      font-family: var(--font-body);
      font-weight: 400;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      transition: background 0.5s ease, color 0.5s ease;
    }

    body::after {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 9999;
      opacity: .025;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
    }

    ::-webkit-scrollbar {
      width: 4px;
    }

    ::-webkit-scrollbar-track {
      background: var(--dark);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--gold-dk);
      border-radius: 2px;
    }

    ::selection {
      background: var(--gold-dim2);
      color: var(--gold-lt);
    }

    /* NAV */
    nav {
      position: relative;
      z-index: 1000;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 clamp(20px, 5%, 80px);
      background: rgba(7, 7, 7, 0.9);
      backdrop-filter: blur(24px) saturate(160%);
      border-bottom: 1px solid var(--border-g);
      transition: background 0.5s ease, border-color 0.5s ease;
    }

    nav.scrolled {
      border-bottom-color: rgba(201, 168, 76, 0.28);
    }

    body.light-mode {
      --black: #FDFBF7;
      --dark: #F5F2EA;
      --card: #FFFFFF;
      --card2: #FDFBF7;
      --card3: #F0EDE5;
      --white: #070707;
      --off: #1A1A1A;
      --grey: #5A5A5A;
      --grey-lt: #3A3A3A;
      --border: rgba(0, 0, 0, 0.08);
      --border-g: rgba(201, 168, 76, 0.35);
      --gold-glow: rgba(201, 168, 76, 0.15);
      --gold-dim: rgba(201, 168, 76, 0.12);
      --gold-dim2: rgba(201, 168, 76, 0.2);
    }

    body.light-mode nav {
      background: rgba(253, 251, 247, 0.9);
    }

    body.light-mode .btn-gold,
    body.light-mode .nav-cta,
    body.light-mode .pr-cta.filled {
      color: #070707 !important;
    }

    body.light-mode .nav-links a:hover {
      color: var(--gold);
    }

    @media (max-width: 768px) {
      body.light-mode .nav-links a {
        color: var(--off);
        font-weight: 600;
      }
    }

    /* LIGHT MODE: Alert chip */
    body.light-mode .alert-chip {
      background: rgba(220, 38, 38, 0.08);
      border-color: rgba(220, 38, 38, 0.4);
      color: #B91C1C;
    }

    /* LIGHT MODE: Why box */
    body.light-mode .why-box {
      background: rgba(201, 168, 76, 0.1);
      border-color: rgba(201, 168, 76, 0.5);
    }

    /* LIGHT MODE: Verdict bands */
    body.light-mode .vb[style*="59,130,246"] {
      background: rgba(59, 130, 246, 0.12) !important;
      border-color: rgba(59, 130, 246, 0.5) !important;
    }
    body.light-mode .vb[style*="59,130,246"] .vb-label { color: #1D4ED8 !important; }
    body.light-mode .vb[style*="59,130,246"] .vb-score { color: #1E40AF !important; }

    body.light-mode .vb[style*="201,168,76"] {
      background: rgba(201, 168, 76, 0.12) !important;
      border-color: rgba(201, 168, 76, 0.55) !important;
    }
    body.light-mode .vb[style*="201,168,76"] .vb-label { color: #92680A !important; }
    body.light-mode .vb[style*="201,168,76"] .vb-score { color: #78540A !important; }

    body.light-mode .vb[style*="148,163,184"] {
      background: rgba(100, 116, 139, 0.1) !important;
      border-color: rgba(100, 116, 139, 0.45) !important;
    }
    body.light-mode .vb[style*="148,163,184"] .vb-label { color: #334155 !important; }
    body.light-mode .vb[style*="148,163,184"] .vb-score { color: #1E293B !important; }

    body.light-mode .vb[style*="34,197,94"] {
      background: rgba(34, 197, 94, 0.1) !important;
      border-color: rgba(34, 197, 94, 0.45) !important;
    }
    body.light-mode .vb[style*="34,197,94"] .vb-label { color: #15803D !important; }
    body.light-mode .vb[style*="34,197,94"] .vb-score { color: #166534 !important; }

    body.light-mode .vb[style*="245,158,11"] {
      background: rgba(245, 158, 11, 0.1) !important;
      border-color: rgba(245, 158, 11, 0.45) !important;
    }
    body.light-mode .vb[style*="245,158,11"] .vb-label { color: #B45309 !important; }
    body.light-mode .vb[style*="245,158,11"] .vb-score { color: #92400E !important; }

    body.light-mode .vb[style*="239,68,68"] {
      background: rgba(239, 68, 68, 0.1) !important;
      border-color: rgba(239, 68, 68, 0.45) !important;
    }
    body.light-mode .vb[style*="239,68,68"] .vb-label { color: #B91C1C !important; }
    body.light-mode .vb[style*="239,68,68"] .vb-score { color: #991B1B !important; }

    body.light-mode .vb-desc { color: #374151; }

    body.light-mode .hero-grid-bg {
      background-image: linear-gradient(rgba(201, 168, 76, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 168, 76, 0.1) 1px, transparent 1px);
    }

    body.light-mode #home::before {
      background: radial-gradient(ellipse 60% 70% at 15% 50%, rgba(201, 168, 76, 0.1) 0%, transparent 60%), radial-gradient(ellipse 40% 50% at 75% 30%, rgba(201, 168, 76, 0.05) 0%, transparent 55%);
    }

    /* THEME TOGGLE */
    .theme-toggle {
      background: none;
      border: 1px solid var(--border-g);
      color: var(--gold);
      width: 34px;
      height: 34px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s ease;
      flex-shrink: 0;
      position: relative;
      z-index: 1001;
      margin: 0 5px;
    }

    .theme-toggle:hover {
      background: var(--gold-dim2);
      transform: translateY(-1px);
    }

    .theme-toggle svg {
      width: 18px;
      height: 18px;
    }

    .theme-toggle .sun-icon {
      display: none;
    }

    body.light-mode .theme-toggle .sun-icon {
      display: block;
    }

    body.light-mode .theme-toggle .moon-icon {
      display: none;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      flex-shrink: 0;
    }

    .nav-logo img {
      width: 28px;
      height: 28px;
      border-radius: 7px;
    }

    .nav-brand {
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1;
    }

    .nav-brand .w {
      color: var(--white);
    }

    .nav-brand .g {
      color: var(--gold);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.6rem;
      list-style: none;
      margin-left: auto;
      margin-right: 1.6rem;
    }

    .nav-links a {
      font-family: var(--font-body);
      color: var(--grey);
      text-decoration: none;
      font-size: 0.82rem;
      font-weight: 400;
      letter-spacing: .025em;
      transition: color .2s;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      right: 0;
      height: 1px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .25s ease;
    }

    .nav-links a:hover {
      color: var(--off);
    }

    .nav-links a:hover::after {
      transform: scaleX(1);
    }

    .nav-cta {
      display: inline-flex !important;
      align-items: center !important;
      gap: 5px !important;
      background: var(--gold) !important;
      color: var(--black) !important;
      padding: 7px 16px !important;
      border-radius: 5px !important;
      font-family: var(--font-mono) !important;
      font-weight: 600 !important;
      font-size: 0.72rem !important;
      letter-spacing: .06em !important;
      text-transform: uppercase !important;
      white-space: nowrap !important;
      transition: all .2s !important;
    }

    .nav-cta::after {
      display: none !important;
    }

    .nav-cta:hover {
      background: var(--gold-lt) !important;
      transform: translateY(-1px) !important;
      box-shadow: 0 4px 20px var(--gold-glow) !important;
    }

    .nav-cta svg {
      width: 12px;
      height: 12px;
      flex-shrink: 0;
    }

    .burger {
      display: none;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
      flex-direction: column;
      gap: 5px;
    }

    .burger span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--grey-lt);
      border-radius: 2px;
      transition: all .3s;
    }

    /* HERO */
    #home {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: 100px clamp(20px, 5%, 80px) 60px;
      position: relative;
      overflow: visible;
    }

    #home::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 70% at 15% 50%, rgba(201, 168, 76, 0.055) 0%, transparent 60%), radial-gradient(ellipse 40% 50% at 75% 30%, rgba(201, 168, 76, 0.035) 0%, transparent 55%);
      pointer-events: none;
    }

    .hero-grid-bg {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(201, 168, 76, 0.032) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 168, 76, 0.032) 1px, transparent 1px);
      background-size: 64px 64px;
      mask-image: radial-gradient(ellipse 70% 90% at 20% 50%, black 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-left {
      position: relative;
      z-index: 2;
      padding-right: 40px;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--gold-dim2);
      border: 1px solid var(--border-g);
      padding: 5px 14px;
      border-radius: 100px;
      font-family: var(--font-mono);
      font-size: 0.68rem;
      font-weight: 500;
      color: var(--gold);
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-bottom: 28px;
      animation: slideIn .7s ease both;
    }

    .hero-eyebrow .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
      animation: blink 2.2s ease-in-out infinite;
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: .4;
        transform: scale(1.3);
      }
    }

    .hero-h1 {
      font-family: var(--font-display);
      font-size: clamp(2.6rem, 4.5vw, 4rem);
      font-weight: 700;
      line-height: 1.06;
      letter-spacing: -0.025em;
      margin-bottom: 20px;
      animation: slideIn .7s .08s ease both;
    }

    .hero-h1 em {
      font-style: normal;
      font-weight: 900;
      background: linear-gradient(135deg, var(--gold-lt) 0%, var(--gold) 50%, var(--gold-dk) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-p {
      font-size: 1.05rem;
      line-height: 1.8;
      color: var(--grey-lt);
      font-weight: 400;
      max-width: 500px;
      margin-bottom: 36px;
      animation: slideIn .7s .16s ease both;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      animation: slideIn .7s .24s ease both;
    }

    .btn-gold {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: var(--gold);
      color: var(--black);
      padding: 10px 22px;
      border-radius: 6px;
      font-family: var(--font-mono);
      font-weight: 600;
      font-size: 0.75rem;
      letter-spacing: .05em;
      text-transform: uppercase;
      text-decoration: none;
      transition: all .25s;
      white-space: nowrap;
    }

    .btn-gold svg {
      width: 13px;
      height: 13px;
      flex-shrink: 0;
    }

    .btn-gold:hover {
      background: var(--gold-lt);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px var(--gold-glow);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: transparent;
      color: var(--grey-lt);
      padding: 10px 22px;
      border-radius: 6px;
      font-family: var(--font-mono);
      font-weight: 500;
      font-size: 0.75rem;
      letter-spacing: .05em;
      text-transform: uppercase;
      text-decoration: none;
      border: 1px solid var(--border);
      transition: all .25s;
      white-space: nowrap;
    }

    .btn-ghost:hover {
      border-color: var(--border-g);
      color: var(--gold);
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      margin-top: 52px;
      padding-top: 40px;
      border-top: 1px solid var(--border);
      animation: slideIn .7s .32s ease both;
    }

    .hero-stat {
      padding-right: 20px;
    }

    .hero-stat-n {
      font-family: var(--font-num);
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 5px;
      letter-spacing: .01em;
    }

    .hero-stat-l {
      font-family: var(--font-mono);
      font-size: 0.68rem;
      color: var(--grey);
      letter-spacing: .03em;
      line-height: 1.5;
      text-transform: uppercase;
    }

    @keyframes slideIn {
      from {
        opacity: 0;
        transform: translateY(22px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* HERO RIGHT */
    .hero-right {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: visible;
    }

    .audit-demo {
      position: relative;
      width: 100%;
      max-width: 380px;
      animation: slideIn .7s .2s ease both;
      margin: 0 100px;
    }

    .float-card {
      position: absolute;
      background: var(--card2);
      border: 1px solid var(--border-g);
      border-radius: 10px;
      padding: 12px 16px;
      font-family: var(--font-mono);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
      animation: floatY 4s ease-in-out infinite;
      z-index: 10;
      min-width: 100px;
    }

    .float-card-1 {
      top: 12px;
      right: -112px;
      animation-delay: 0s;
    }

    .float-card-2 {
      bottom: 60px;
      left: -112px;
      animation-delay: 2s;
    }

    @keyframes floatY {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-8px);
      }
    }

    .float-num {
      font-family: var(--font-num);
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
      letter-spacing: .01em;
    }

    .float-lbl {
      font-size: 0.65rem;
      color: var(--grey);
      margin-top: 3px;
      text-transform: uppercase;
      letter-spacing: .06em;
    }

    .audit-card {
      background: var(--card);
      border: 1px solid var(--border-g);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px var(--border);
      position: relative;
    }

    .audit-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

    .ac-header {
      background: var(--card2);
      padding: 14px 18px;
      display: flex;
      align-items: center;
      gap: 10px;
      border-bottom: 1px solid var(--border);
    }

    .ac-dots {
      display: flex;
      gap: 5px;
    }

    .ac-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
    }

    .ac-dot-r {
      background: #EF4444;
      opacity: .8;
    }

    .ac-dot-y {
      background: #F59E0B;
      opacity: .8;
    }

    .ac-dot-g {
      background: #22C55E;
      opacity: .8;
    }

    .ac-url {
      flex: 1;
      background: var(--card3);
      border: 1px solid var(--border);
      border-radius: 5px;
      padding: 5px 12px;
      font-family: var(--font-mono);
      font-size: 0.7rem;
      color: var(--grey-lt);
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .ac-body {
      padding: 20px;
    }

    .scan-bar-wrap {
      margin-bottom: 16px;
    }

    .scan-label {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 7px;
    }

    .scan-label span:first-child {
      font-family: var(--font-mono);
      font-size: 0.68rem;
      color: var(--grey);
      text-transform: uppercase;
      letter-spacing: .06em;
    }

    .scan-pct {
      font-family: var(--font-mono);
      font-size: 0.72rem;
      font-weight: 600;
      color: var(--gold);
      transition: all .3s;
    }

    .scan-track {
      height: 3px;
      background: var(--card3);
      border-radius: 2px;
      overflow: hidden;
    }

    .scan-fill {
      height: 100%;
      width: 0%;
      border-radius: 2px;
      background: linear-gradient(90deg, var(--gold-dk), var(--gold-lt));
      transition: width .05s linear;
    }

    .checks-list {
      display: flex;
      flex-direction: column;
      gap: 7px;
      margin-bottom: 16px;
    }

    .check-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px 10px;
      border-radius: 7px;
      background: var(--card3);
      border: 1px solid transparent;
      font-size: 0.8rem;
      color: var(--grey-lt);
      font-family: var(--font-body);
      font-weight: 400;
      opacity: 0;
      transition: opacity .3s, border-color .3s, background .3s;
    }

    .check-item.visible {
      opacity: 1;
    }

    .check-item.fail {
      border-color: rgba(239, 68, 68, .25);
      background: rgba(239, 68, 68, .06);
    }

    .check-item.pass {
      border-color: rgba(34, 197, 94, .2);
      background: rgba(34, 197, 94, .05);
    }

    .ci-icon {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 4px;
    }

    .ci-icon.fail {
      color: var(--red);
      background: var(--red-dim);
    }

    .ci-icon.pass {
      color: var(--green);
      background: var(--green-dim);
    }

    .ci-icon.pending {
      color: var(--grey);
    }

    .ci-icon svg {
      width: 11px;
      height: 11px;
    }

    .verdict-box {
      border-radius: 10px;
      padding: 16px;
      display: flex;
      align-items: center;
      gap: 14px;
      opacity: 0;
      transition: opacity .5s;
      background: var(--red-dim);
      border: 1px solid rgba(239, 68, 68, .3);
    }

    .verdict-box.visible {
      opacity: 1;
    }

    .verdict-score {
      font-family: var(--font-num);
      font-size: 2.6rem;
      font-weight: 800;
      color: var(--red);
      line-height: 1;
      min-width: 52px;
      text-align: center;
      letter-spacing: -0.02em;
    }

    .verdict-right {
      flex: 1;
    }

    .verdict-label {
      font-family: var(--font-mono);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 3px;
    }

    .verdict-sub {
      font-size: 0.75rem;
      color: var(--grey-lt);
      font-family: var(--font-body);
      font-weight: 400;
    }

    /* SECTIONS */
    section {
      padding: 96px clamp(20px, 5%, 80px);
      position: relative;
    }

    .s-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-mono);
      font-size: 0.68rem;
      font-weight: 500;
      color: var(--gold);
      letter-spacing: .12em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .s-eyebrow::before {
      content: '';
      width: 28px;
      height: 1px;
      background: var(--gold-dk);
    }

    .s-title {
      font-family: var(--font-display);
      font-size: clamp(1.9rem, 3.5vw, 2.8rem);
      font-weight: 700;
      line-height: 1.12;
      letter-spacing: -0.025em;
      margin-bottom: 14px;
    }

    .problem-num {
      font-family: var(--font-num);
      font-weight: 800;
      font-style: normal;
      font-size: 1.1em;
    }

    .s-title em {
      font-style: normal;
      color: var(--gold);
    }

    .s-sub {
      font-size: 1rem;
      line-height: 1.8;
      color: var(--grey-lt);
      font-weight: 400;
      max-width: 540px;
      margin-bottom: 52px;
    }

    .gold-rule {
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, var(--gold-dk) 20%, var(--gold) 50%, var(--gold-dk) 80%, transparent 100%);
      opacity: .4;
      margin: 0;
    }

    /* REVEAL */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .75s ease, transform .75s ease;
    }

    .reveal.left {
      transform: translateX(-28px);
    }

    .reveal.right {
      transform: translateX(28px);
    }

    .reveal.scale {
      transform: scale(0.95);
    }

    .reveal.visible {
      opacity: 1 !important;
      transform: translate(0, 0) scale(1) !important;
    }

    .delay-1 {
      transition-delay: .08s !important;
    }

    .delay-2 {
      transition-delay: .16s !important;
    }

    .delay-3 {
      transition-delay: .24s !important;
    }

    .delay-4 {
      transition-delay: .32s !important;
    }

    .delay-5 {
      transition-delay: .40s !important;
    }

    .delay-6 {
      transition-delay: .48s !important;
    }

    /* PROBLEM */
    #problem {
      background: var(--dark);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .problem-grid {
      display: grid;
      grid-template-columns: 5fr 4fr;
      gap: 72px;
      align-items: start;
    }

    .problem-body {
      font-size: 1rem;
      line-height: 1.85;
      color: var(--grey-lt);
      font-weight: 400;
      margin-bottom: 24px;
    }

    .problem-body strong {
      color: var(--off);
      font-weight: 600;
    }

    .stat-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 36px;
    }

    .stat-c {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 22px;
      transition: border-color .3s;
      position: relative;
      overflow: hidden;
    }

    .stat-c::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 0;
      transition: opacity .3s;
    }

    .stat-c:hover {
      border-color: var(--border-g);
    }

    .stat-c:hover::before {
      opacity: 1;
    }

    .stat-c-n {
      font-family: var(--font-num);
      font-size: 2.1rem;
      font-weight: 800;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 6px;
      letter-spacing: .01em;
    }

    .stat-c-l {
      font-size: 0.8rem;
      color: var(--grey);
      line-height: 1.5;
      font-weight: 400;
    }

    .problem-quote-card {
      background: var(--card2);
      border: 1px solid var(--border-g);
      border-radius: 18px;
      padding: 40px 36px;
      position: sticky;
      top: 90px;
    }

    .pq-icon {
      width: 46px;
      height: 46px;
      background: var(--gold-dim2);
      border: 1px solid var(--border-g);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      margin-bottom: 22px;
    }

    .pq-icon svg {
      width: 22px;
      height: 22px;
    }

    .pq-text {
      font-family: var(--font-display);
      font-size: 1.35rem;
      font-style: italic;
      line-height: 1.6;
      color: var(--off);
      margin-bottom: 20px;
    }

    .pq-body {
      font-size: 0.88rem;
      line-height: 1.8;
      color: var(--grey);
      font-weight: 400;
      margin-bottom: 28px;
    }

    .alert-chip {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: var(--red-dim);
      border: 1px solid rgba(239, 68, 68, .28);
      color: #FCA5A5;
      padding: 8px 14px;
      border-radius: 100px;
      font-family: var(--font-mono);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: .04em;
    }

    .alert-chip svg {
      width: 12px;
      height: 12px;
    }

    .why-box {
      margin-top: 24px;
      background: var(--gold-dim);
      border: 1px solid var(--border-g);
      border-radius: 10px;
      padding: 20px;
    }

    .why-box-title {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 8px;
    }

    .why-box p {
      font-size: 0.84rem;
      line-height: 1.7;
      color: var(--grey-lt);
      font-weight: 400;
    }

    /* HOW IT WORKS */
    .steps-wrap {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      margin-top: 48px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: 18px;
      overflow: hidden;
    }

    .step {
      background: var(--dark);
      padding: 40px 32px;
      position: relative;
      transition: background .3s;
    }

    .step:hover {
      background: var(--card);
    }

    .step-num {
      font-family: var(--font-display);
      font-size: 3.5rem;
      font-weight: 900;
      color: var(--border);
      line-height: 1;
      margin-bottom: 16px;
      transition: color .3s;
      -webkit-text-stroke: 1px rgba(201, 168, 76, 0.2);
    }

    .step:hover .step-num {
      color: var(--gold-dim2);
    }

    .step-icon {
      width: 44px;
      height: 44px;
      background: var(--gold-dim2);
      border: 1px solid var(--border-g);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      margin-bottom: 18px;
    }

    .step-icon svg {
      width: 20px;
      height: 20px;
    }

    .step h3 {
      font-family: var(--font-display);
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 10px;
      color: var(--off);
    }

    .step p {
      font-size: 0.88rem;
      line-height: 1.75;
      color: var(--grey);
      font-weight: 400;
    }

    .verdict-bands {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 8px;
      margin-top: 32px;
    }

    .vb {
      border-radius: 10px;
      padding: 14px 10px;
      text-align: center;
      border: 1px solid;
      transition: transform .2s;
    }

    .vb:hover {
      transform: translateY(-3px);
    }

    .vb-label {
      font-family: var(--font-mono);
      font-size: 0.62rem;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 5px;
    }

    .vb-score {
      font-family: var(--font-num);
      font-size: 1.3rem;
      font-weight: 700;
    }

    .vb-desc {
      font-size: 0.68rem;
      color: var(--grey);
      margin-top: 4px;
      font-family: var(--font-mono);
    }

    /* WHO IT'S FOR */
    #who-its-for {
      background: var(--dark);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .audience-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 48px;
    }

    .aud-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 30px 24px;
      transition: all .3s;
      position: relative;
      overflow: hidden;
    }

    .aud-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 0;
      transition: opacity .3s;
    }

    .aud-card:hover {
      border-color: var(--border-g);
      background: var(--card2);
    }

    .aud-card:hover::after {
      opacity: 1;
    }

    .aud-icon {
      width: 46px;
      height: 46px;
      background: var(--gold-dim2);
      border: 1px solid var(--border-g);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      margin-bottom: 18px;
    }

    .aud-icon svg {
      width: 22px;
      height: 22px;
    }

    .aud-card h3 {
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--off);
      margin-bottom: 10px;
    }

    .aud-card p {
      font-size: 0.84rem;
      line-height: 1.7;
      color: var(--grey);
      font-weight: 400;
    }

    .aud-use {
      margin-top: 16px;
      padding-top: 14px;
      border-top: 1px solid var(--border);
      font-family: var(--font-mono);
      font-size: 0.7rem;
      color: var(--gold);
      font-weight: 500;
      line-height: 1.5;
    }

    /* BENEFITS */
    .ben-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 48px;
    }

    .ben-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 30px;
      transition: all .3s;
    }

    .ben-card:hover {
      border-color: var(--border-g);
      transform: translateY(-3px);
      box-shadow: 0 16px 48px rgba(0, 0, 0, .4);
    }

    .ben-icon {
      width: 46px;
      height: 46px;
      background: var(--gold-dim2);
      border: 1px solid var(--border-g);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      margin-bottom: 18px;
    }

    .ben-icon svg {
      width: 20px;
      height: 20px;
    }

    .ben-card h3 {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 600;
      color: var(--gold-lt);
      margin-bottom: 10px;
    }

    .ben-card p {
      font-size: 0.86rem;
      line-height: 1.75;
      color: var(--grey);
      font-weight: 400;
    }

    /* PRICING */
    #pricing {
      background: var(--dark);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 48px;
      align-items: start;
    }

    .pr-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 36px 30px;
      position: relative;
      transition: all .3s;
    }

    .pr-card.featured {
      background: var(--card2);
      border-color: var(--gold);
      transform: scale(1.025);
      box-shadow: 0 0 80px rgba(201, 168, 76, 0.1);
    }

    .pr-card.featured::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      border-radius: 20px 20px 0 0;
      background: linear-gradient(90deg, var(--gold-dk), var(--gold-lt), var(--gold-dk));
    }

    .pr-badge {
      display: inline-block;
      font-family: var(--font-mono);
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 4px 11px;
      border-radius: 100px;
      background: var(--gold-dim2);
      border: 1px solid var(--border-g);
      color: var(--gold);
      margin-bottom: 16px;
    }

    .pr-card.featured .pr-badge {
      background: var(--gold);
      color: var(--black);
      border-color: var(--gold);
    }

    .pr-name {
      font-family: var(--font-display);
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--off);
      margin-bottom: 4px;
    }

    .pr-price {
      font-family: var(--font-num);
      font-size: 2.6rem;
      font-weight: 800;
      color: var(--gold);
      line-height: 1;
      margin: 16px 0 4px;
      letter-spacing: -0.01em;
    }

    .pr-price span {
      font-family: var(--font-body);
      font-size: 0.95rem;
      color: var(--grey);
      font-weight: 400;
    }

    .pr-alt {
      font-family: var(--font-mono);
      font-size: 0.72rem;
      color: var(--grey);
      margin-bottom: 22px;
      padding-bottom: 22px;
      border-bottom: 1px solid var(--border);
    }

    .pr-features {
      list-style: none;
      margin-bottom: 30px;
    }

    .pr-features li {
      display: flex;
      align-items: flex-start;
      gap: 9px;
      padding: 8px 0;
      border-bottom: 1px solid var(--border);
      font-size: 0.86rem;
      color: var(--grey-lt);
      line-height: 1.5;
      font-weight: 400;
    }

    .pr-features li:last-child {
      border: none;
    }

    .pr-check {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--green);
      margin-top: 1px;
    }

    .pr-check svg {
      width: 13px;
      height: 13px;
    }

    /* Progress Box & Pills */
    .pr-progress-box {
      background: rgba(0, 0, 0, 0.2);
      border: 1px solid var(--border-g);
      border-radius: 12px;
      padding: 14px 18px;
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 24px;
    }

    .pr-progress-icon {
      color: var(--gold);
      flex-shrink: 0;
      display: flex;
    }

    .pr-progress-bar-bg {
      flex-grow: 1;
      height: 3px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 4px;
      position: relative;
    }

    .pr-progress-bar-fill {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      background: var(--gold);
      width: 60%;
      border-radius: 4px;
      box-shadow: 0 0 8px rgba(201, 168, 76, 0.3);
    }

    .pr-progress-text {
      font-family: var(--font-mono);
      font-size: 0.72rem;
      color: var(--gold-lt);
      letter-spacing: 0.02em;
    }

    .pr-pill {
      font-family: var(--font-mono);
      font-size: 0.62rem;
      padding: 3px 8px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 4px;
      color: var(--grey-lt);
      margin-left: auto;
      letter-spacing: 0.05em;
    }

    .pr-cta {
      display: block;
      text-align: center;
      padding: 13px;
      border-radius: 9px;
      font-family: var(--font-mono);
      font-weight: 600;
      font-size: 0.78rem;
      letter-spacing: .05em;
      text-transform: uppercase;
      text-decoration: none;
      transition: all .25s;
    }

    .pr-cta.outline {
      border: 1px solid var(--border-g);
      color: var(--gold);
    }

    .pr-cta.outline:hover {
      background: var(--gold-dim2);
    }

    .pr-cta.filled {
      background: var(--gold);
      color: var(--black);
    }

    .pr-cta.filled:hover {
      background: var(--gold-lt);
      box-shadow: 0 6px 24px var(--gold-glow);
    }

    .pricing-note {
      text-align: center;
      margin-top: 28px;
      font-family: var(--font-body);
      font-size: 0.88rem;
      color: var(--grey);
    }

    .pricing-note strong {
      color: var(--gold);
      font-weight: 600;
    }

    /* BILLING TOGGLE */
    .billing-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      margin: 0 0 40px;
    }

    .billing-label {
      font-family: var(--font-mono);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--grey-lt);
      cursor: pointer;
      transition: color 0.2s;
      user-select: none;
    }

    .billing-label.active {
      color: var(--off);
    }

    .toggle-switch {
      width: 48px;
      height: 26px;
      background: var(--card2);
      border: 1px solid var(--border-g);
      border-radius: 13px;
      position: relative;
      cursor: pointer;
      transition: background 0.25s;
      flex-shrink: 0;
    }

    .toggle-switch.yearly {
      background: var(--gold-dim2);
    }

    .toggle-knob {
      position: absolute;
      top: 3px;
      left: 3px;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--grey-lt);
      transition: transform 0.25s cubic-bezier(.4, 0, .2, 1), background 0.25s;
    }

    .toggle-switch.yearly .toggle-knob {
      transform: translateX(22px);
      background: var(--gold);
    }

    .save-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-family: var(--font-mono);
      font-size: 0.6rem;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 20px;
      background: rgba(76, 175, 125, 0.12);
      border: 1px solid rgba(76, 175, 125, 0.25);
      color: var(--green);
      transition: opacity 0.3s;
    }

    .save-badge::before {
      content: 'â˜…';
      font-size: 0.55rem;
    }

    .save-badge.hidden {
      opacity: 0;
      pointer-events: none;
    }

    .pr-annual-note {
      font-family: var(--font-mono);
      font-size: 0.66rem;
      color: var(--green);
      margin-top: 4px;
      min-height: 16px;
      transition: opacity 0.2s;
      letter-spacing: .02em;
    }

    .pr-annual-note.hidden {
      opacity: 0;
    }

    .pr-was {
      font-family: var(--font-mono);
      font-size: 0.68rem;
      color: var(--grey);
      text-decoration: line-through;
      margin-left: 6px;
      transition: opacity 0.2s;
    }

    .pr-was.hidden {
      opacity: 0;
    }

    .pr-price .pr-amount {
      transition: opacity 0.2s, transform 0.2s;
      display: inline-block;
    }

    /* CTA BANNER */
    #cta-banner {
      padding: 100px clamp(20px, 5%, 80px);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    #cta-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201, 168, 76, 0.055) 0%, transparent 65%);
    }

    .cta-t {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4.5vw, 3.5rem);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -0.025em;
      margin-bottom: 18px;
      position: relative;
    }

    .cta-t em {
      font-style: normal;
      font-weight: 700;
      color: var(--gold);
    }

    .cta-sub {
      font-size: 1rem;
      line-height: 1.8;
      color: var(--grey-lt);
      font-weight: 400;
      max-width: 480px;
      margin: 0 auto 36px;
      position: relative;
    }

    .cta-btns {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
    }

    /* FOOTER */
    footer {
      background: var(--dark);
      border-top: 1px solid var(--border-g);
      padding: 64px clamp(20px, 5%, 80px) 30px;
    }

    .foot-grid {
      display: grid;
      grid-template-columns: 2fr 0.8fr 0.8fr 1fr 1fr;
      gap: 52px;
      margin-bottom: 52px;
    }

    .foot-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      margin-bottom: 16px;
    }

    .foot-logo img {
      width: 32px;
      height: 32px;
      border-radius: 8px;
    }

    .foot-logo-txt {
      font-family: var(--font-display);
      font-size: 1.4rem;
      font-weight: 700;
    }

    .foot-logo-txt .w {
      color: var(--white);
    }

    .foot-logo-txt .g {
      color: var(--gold);
    }

    .foot-desc {
      font-size: 0.85rem;
      line-height: 1.75;
      color: var(--grey);
      font-weight: 300;
      max-width: 270px;
      margin-bottom: 22px;
    }

    .foot-contact {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .foot-contact a {
      display: flex;
      align-items: center;
      gap: 9px;
      font-size: 0.84rem;
      color: var(--grey);
      text-decoration: none;
      transition: color .2s;
    }

    .foot-contact a:hover {
      color: var(--gold);
    }

    .fc-icon {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      color: var(--gold-dk);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .fc-icon svg {
      width: 16px;
      height: 16px;
    }

    .foot-col h4 {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }

    .foot-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .foot-links a {
      font-size: 0.86rem;
      color: var(--grey);
      text-decoration: none;
      transition: color .2s;
      font-weight: 300;
    }

    .foot-links a:hover {
      color: var(--off);
    }

    .foot-qr h4 {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }

    .foot-qr-frame {
      background: var(--white);
      border-radius: 10px;
      padding: 10px;
      display: inline-block;
      margin-bottom: 10px;
    }

    .foot-qr-frame img {
      width: 96px;
      height: 96px;
      display: block;
    }

    .foot-qr-txt {
      font-size: 0.75rem;
      color: var(--grey);
      line-height: 1.6;
      font-weight: 400;
    }

    .foot-trust-strip {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      padding: 16px 0 20px;
      border-top: 1px solid var(--border);
      flex-wrap: wrap;
    }
    .foot-trust-strip img {
      height: 34px;
      width: auto;
      opacity: 0.82;
    }
    .foot-trust-label {
      font-size: 0.68rem;
      color: var(--grey);
      letter-spacing: 0.09em;
      text-transform: uppercase;
      font-weight: 500;
      white-space: nowrap;
    }
    .foot-trust-divider {
      width: 1px;
      height: 20px;
      background: var(--border);
      display: inline-block;
    }
    .foot-pay-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
      width: 100%;
      padding: 6px 0 0;
    }
    .foot-pay-row img {
      height: 20px;
      width: auto;
      opacity: 0.5;
      filter: grayscale(20%);
    }
    .foot-pay-label {
      font-size: 0.66rem;
      color: var(--grey);
      opacity: 0.65;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .foot-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 28px;
      border-top: 1px solid var(--border);
      flex-wrap: wrap;
      gap: 10px;
    }

    .foot-copy {
      font-size: 0.78rem;
      color: var(--grey);
      font-weight: 400;
    }

    .foot-right {
      display: flex;
      gap: 24px;
    }

    .foot-right a {
      font-size: 0.78rem;
      color: var(--grey);
      text-decoration: none;
      transition: color .2s;
    }

    .foot-right a:hover {
      color: var(--gold);
    }

    /* SCROLL TO TOP */
    #scrollTop {
      position: fixed;
      bottom: 32px;
      right: 28px;
      z-index: 150;
      width: 44px;
      height: 44px;
      background: var(--card2);
      border: 1px solid var(--border-g);
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      opacity: 0;
      pointer-events: none;
      transform: translateY(8px);
      transition: all .3s;
      box-shadow: 0 4px 24px rgba(0, 0, 0, .5);
    }

    #scrollTop.visible {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    #scrollTop:hover {
      background: var(--gold);
      color: var(--black);
      box-shadow: 0 6px 24px var(--gold-glow);
    }

    #scrollTop svg {
      width: 18px;
      height: 18px;
    }

    /* RESPONSIVE */
    @media(max-width:1024px) {
      #home {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-bottom: 80px;
      }

      .hero-right {
        display: flex;
        justify-content: center;
        margin-top: 60px;
      }

      .audit-demo {
        max-width: 380px;
        margin: 0 80px;
      }

      .float-card-1 {
        top: -20px;
        right: -90px;
      }

      .float-card-2 {
        bottom: 40px;
        left: -90px;
      }

      .problem-grid {
        grid-template-columns: 1fr;
      }

      .problem-quote-card {
        position: static;
      }

      .steps-wrap {
        grid-template-columns: 1fr;
        border-radius: 14px;
      }

      .verdict-bands {
        grid-template-columns: repeat(3, 1fr);
      }

      .audience-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .ben-grid {
        grid-template-columns: 1fr 1fr;
      }

      .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 48px auto 0;
      }

      .pr-card.featured {
        transform: scale(1);
      }

      .foot-grid {
        grid-template-columns: 1fr 1fr;
      }

      .foot-brand {
        grid-column: span 2;
      }
    }

    @media(max-width:768px) {
      .nav-links {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(7, 7, 7, 0.98);
        backdrop-filter: blur(20px);
        padding: 28px 20px 32px;
        border-bottom: 1px solid rgba(201, 168, 76, 0.2);
        z-index: 99998;
        margin: 0;
        box-sizing: border-box;
      }

      body.light-mode .nav-links {
        background: rgba(253, 251, 247, 0.98);
        border-bottom: 1px solid rgba(201, 168, 76, 0.3);
      }

      .nav-links.mobile-active {
        display: flex;
        animation: slideInMenu 0.3s ease forwards;
      }

      .nav-links li {
        width: 100%;
        display: flex;
        justify-content: center;
      }

      .burger {
        display: flex;
        margin-left: 10px;
        z-index: 1002;
      }

      @keyframes slideInMenu {
        from {
          opacity: 0;
          transform: translateY(-10px);
        }

        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .theme-toggle {
        margin-left: auto;
      }

      .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }

      .audience-grid {
        grid-template-columns: 1fr;
      }

      .ben-grid {
        grid-template-columns: 1fr;
      }

      .verdict-bands {
        grid-template-columns: repeat(2, 1fr);
      }

      .float-card-1,
      .float-card-2 {
        display: none;
      }

      .foot-grid {
        grid-template-columns: 1fr;
      }

      .foot-brand {
        grid-column: span 1;
      }

      #home {
        padding-top: 80px;
      }

      .hero-left {
        padding-right: 0;
        text-align: center;
      }

      .hero-eyebrow {
        margin-inline: auto;
      }

      .hero-h1 {
        font-size: 2.4rem;
        text-align: center;
      }

      .hero-p {
        text-align: center;
        margin-inline: auto;
      }

      .hero-actions {
        justify-content: center;
      }

      .hero-stat {
        padding-right: 0;
      }

      .audit-demo {
        margin: 0 auto;
        width: 100%;
      }

      .audit-card {
        width: 100%;
      }
    }

    @media(max-width:480px) {
      .hero-h1 {
        font-size: 2.1rem;
      }

      .hero-stats {
        grid-template-columns: repeat(2, 1fr);
      }

      .verdict-bands {
        grid-template-columns: 1fr;
      }

      .ac-url {
        font-size: 0.6rem;
      }

      .verdict-score {
        font-size: 2rem;
      }

      .foot-bottom {
        flex-direction: column;
        text-align: center;
      }

      .foot-right {
        justify-content: center;
        margin-top: 10px;
      }
    }

    /* â”€â”€ STATS SECTION â”€â”€ */
    .stats-section {
      width: 100%;
      max-width: 1080px;
      margin: 80px auto;
      padding: 0 20px;
    }

    .stats-header {
      text-align: center;
      margin-bottom: 52px;
    }

    .stats-eyebrow {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--gold-dk);
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }

    .stats-eyebrow::before,
    .stats-eyebrow::after {
      content: '';
      width: 40px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold-dk));
    }

    .stats-eyebrow::after {
      background: linear-gradient(90deg, var(--gold-dk), transparent);
    }

    .stats-title {
      font-family: var(--font-display);
      font-size: clamp(1.9rem, 3.5vw, 3rem);
      font-weight: 700;
      letter-spacing: -0.025em;
      color: var(--off);
      line-height: 1.1;
      margin-bottom: 14px;
    }

    .stats-title em {
      font-style: normal;
      color: var(--gold);
    }

    .stats-sub {
      font-size: 0.92rem;
      color: var(--grey);
      font-weight: 300;
      max-width: 480px;
      margin: 0 auto;
      line-height: 1.7;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: rgba(201, 168, 76, 0.08);
      border: 1px solid rgba(201, 168, 76, 0.15);
      border-radius: 16px;
      overflow: hidden;
    }

    .stat-card {
      background: var(--dark);
      padding: 36px 28px 32px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
      transition: background 0.25s;
      cursor: default;
    }

    .stat-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .stat-card:hover {
      background: var(--card2);
    }

    .stat-card:hover::before {
      opacity: 1;
    }

    .stat-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 20%;
      right: 20%;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .stat-card:hover::after {
      opacity: 1;
    }

    .stat-icon {
      width: 38px;
      height: 38px;
      background: rgba(201, 168, 76, 0.08);
      border: 1px solid rgba(201, 168, 76, 0.18);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      color: var(--gold);
      flex-shrink: 0;
    }

    .stat-icon svg {
      width: 17px;
      height: 17px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .stat-num {
      font-family: var(--font-num);
      font-size: clamp(2.4rem, 4vw, 3.4rem);
      font-weight: 800;
      line-height: 1;
      margin-bottom: 8px;
      background: linear-gradient(135deg, #F0C84A 0%, #C9A84C 55%, #8B6914 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: -0.02em;
    }

    .stat-num .stat-suffix {
      font-size: 0.55em;
      font-weight: 700;
      letter-spacing: 0;
    }

    .stat-label {
      font-family: var(--font-mono);
      font-size: 0.66rem;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--grey-lt);
      margin-bottom: 6px;
      line-height: 1.4;
    }

    .stat-note {
      font-size: 0.76rem;
      color: #555;
      font-weight: 300;
      line-height: 1.4;
      font-family: var(--font-body);
    }

    /* COMPARISON SECTION */
    .comp-toggle-wrapper {
      padding: 0 clamp(20px, 5%, 80px) 80px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .comp-trigger-container {
      text-align: center;
      margin-bottom: 0;
      transition: margin-bottom 0.4s;
    }

    .comp-trigger-container.active {
      margin-bottom: 60px;
    }

    .comp-trigger-btn {
      background: var(--card);
      border: 1px solid var(--border-g);
      padding: 16px 32px;
      border-radius: 100px;
      color: var(--off);
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 700;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      transition: all 0.3s;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    .comp-trigger-btn:hover {
      background: var(--card2);
      border-color: var(--gold);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(201, 168, 76, 0.15);
    }

    .trigger-icon {
      width: 16px;
      height: 16px;
      transition: transform 0.4s;
    }

    .comp-trigger-container.active .trigger-icon {
      transform: rotate(180deg);
    }

    .comp-trigger-tip {
      font-size: 0.8rem;
      color: var(--grey);
      margin-top: 12px;
      font-family: var(--font-body);
      font-weight: 500;
      letter-spacing: 0.02em;
    }

    .comp-expandable-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s;
      opacity: 0;
    }

    .comp-expandable-content.active {
      max-height: 5000px;
      opacity: 1;
    }

    .comp-section {
      max-width: 1100px;
      margin: 0 auto;
    }

    .comp-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .comp-eyebrow {
      font-family: var(--font-body);
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--gold-dk);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
    }

    .comp-eyebrow::before,
    .comp-eyebrow::after {
      content: '';
      width: 36px;
      height: 1px;
      background: var(--gold-dk);
      opacity: 0.5;
    }

    .comp-title {
      font-family: var(--font-display);
      font-size: clamp(1.6rem, 2.8vw, 2.2rem);
      font-weight: 700;
      color: var(--off);
      letter-spacing: -0.025em;
      line-height: 1.1;
      margin-bottom: 10px;
    }

    .comp-title em {
      font-style: normal;
      color: var(--gold);
    }

    .comp-sub {
      font-size: 0.88rem;
      color: var(--grey-lt);
      font-weight: 300;
      line-height: 1.7;
      font-family: var(--font-body);
    }

    .comp-table-wrap {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
    }

    .comp-table {
      width: 100%;
      border-collapse: collapse;
    }

    .comp-table thead tr {
      background: var(--dark);
      border-bottom: 1px solid var(--border-g);
    }

    .comp-table thead th {
      padding: 20px 20px;
      text-align: left;
      font-family: var(--font-display);
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--grey-lt);
      vertical-align: bottom;
    }

    .comp-table thead th:first-child {
      color: var(--grey);
      font-size: 0.6rem;
      width: 36%;
    }

    .th-plan-name {
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-weight: 700;
      display: block;
      margin-bottom: 4px;
      letter-spacing: -0.01em;
    }

    .th-plan-price {
      display: block;
      font-family: var(--font-num);
      font-size: 0.95rem;
      font-weight: 700;
      letter-spacing: .02em;
    }

    .th-plan-sub {
      display: block;
      font-family: var(--font-body);
      font-size: 0.6rem;
      font-weight: 600;
      letter-spacing: .02em;
      margin-top: 2px;
      opacity: 0.7;
    }

    .col-gold {
      background: rgba(201, 168, 76, 0.04);
      border-left: 1px solid rgba(201, 168, 76, 0.12);
      border-right: 1px solid rgba(201, 168, 76, 0.12);
      text-align: center;
    }

    .th-gold {
      color: var(--gold) !important;
      position: relative;
    }

    .th-gold .th-plan-name {
      color: var(--gold-lt);
    }

    .th-gold .th-plan-price {
      color: var(--gold);
    }

    .th-popular {
      display: inline-block;
      font-family: var(--font-body);
      font-size: 0.55rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--gold-dk);
      background: var(--gold-dim2);
      border: 1px solid var(--border-g);
      padding: 2px 8px;
      border-radius: 10px;
      margin-bottom: 6px;
    }

    .comp-table .cat-row td {
      padding: 13px 20px 9px;
      font-family: var(--font-display);
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--gold-dk);
      background: rgba(201, 168, 76, 0.03);
      border-top: 1px solid rgba(201, 168, 76, 0.1);
      border-bottom: none;
    }

    .cat-row .col-gold {
      background: rgba(201, 168, 76, 0.06);
    }

    .comp-table tbody tr {
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
      transition: background 0.15s;
    }

    .comp-table tbody tr:not(.cat-row):hover {
      background: rgba(255, 255, 255, 0.02);
    }

    .comp-table tbody td {
      padding: 14px 20px;
      font-size: 0.95rem;
      color: var(--grey-lt);
      font-weight: 400;
      vertical-align: middle;
      text-align: center;
      font-family: var(--font-body);
    }

    .comp-table tbody td:first-child {
      color: var(--off);
      font-weight: 600;
      font-size: 0.95rem;
      text-align: left;
    }

    .comp-table tbody td small {
      display: block;
      font-size: 0.8rem;
      color: var(--grey);
      font-weight: 400;
      margin-top: 3px;
      font-family: var(--font-body);
      font-style: italic;
    }

    .ic {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      border-radius: 50%;
    }

    .ic-yes {
      background: rgba(76, 175, 125, 0.12);
      color: var(--green);
    }

    .ic-no {
      background: rgba(255, 255, 255, 0.04);
      color: rgba(255, 255, 255, 0.15);
    }

    .ic-partial {
      background: rgba(201, 168, 76, 0.12);
      color: var(--gold);
    }

    .val {
      display: block;
      font-family: var(--font-num);
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: .02em;
    }

    .val-gold {
      color: var(--gold);
    }

    .val-grey {
      color: var(--grey-lt);
    }

    .val-green {
      color: var(--green);
    }

    .val-dim {
      color: var(--grey);
      font-weight: 400;
    }

    .comp-table-foot {
      background: var(--dark);
      border-top: 1px solid var(--border-g);
      padding: 18px 20px;
      display: grid;
      grid-template-columns: 36% 1fr 1fr 1fr;
      gap: 0;
      align-items: center;
    }

    .tf-cell {
      padding: 0 16px;
      border-right: 1px solid var(--border);
    }

    .tf-cell:first-child {
      padding-left: 0;
    }

    .tf-cell:last-child {
      border-right: none;
    }

    .tf-cell.col-gold-foot {
      background: rgba(201, 168, 76, 0.04);
      border-left: 1px solid rgba(201, 168, 76, 0.12);
      border-right: 1px solid rgba(201, 168, 76, 0.12);
    }

    .tf-note-text {
      font-family: var(--font-body);
      font-size: 0.75rem;
      color: var(--grey-lt);
      line-height: 1.6;
      font-weight: 500;
    }

    .tf-note-text strong {
      color: var(--off);
    }

    .tf-cta {
      display: block;
      width: 100%;
      font-family: var(--font-body);
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: .05em;
      text-transform: uppercase;
      padding: 12px 16px;
      border-radius: 7px;
      text-align: center;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.2s;
      border: none;
    }

    .tf-cta-ghost {
      background: transparent;
      border: 1px solid var(--border);
      color: var(--grey-lt);
    }

    .tf-cta-ghost:hover {
      border-color: var(--border-g);
      color: var(--off);
    }

    .tf-cta-gold {
      background: linear-gradient(135deg, var(--gold-lt) 0%, var(--gold) 60%, var(--gold-dk) 100%);
      color: var(--black);
      font-weight: 700;
      box-shadow: 0 3px 16px rgba(201, 168, 76, 0.28);
    }

    .tf-cta-gold:hover {
      transform: translateY(-1px);
      box-shadow: 0 5px 24px rgba(201, 168, 76, 0.4);
    }

    /* RESPONSIVE TABLE */
    @media (max-width: 768px) {

      .comp-table thead th:nth-child(4),
      .comp-table tbody td:nth-child(4),
      .comp-table .cat-row td:nth-child(4) {
        display: none;
      }

      .comp-table-foot {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
      }

      .tf-cell {
        border-right: none;
        padding: 0;
      }

      .tf-cell:first-child {
        display: none;
      }

      .comp-trigger-btn {
        width: 100%;
        justify-content: space-between;
        padding: 16px 24px;
      }

      .comp-table thead th:first-child {
        width: 45%;
      }
    }


    .stat-card.wide .stat-text {
      flex: 1;
    }

    .stat-card.wide .stat-num {
      font-size: clamp(2rem, 3.5vw, 2.8rem);
    }

    .stat-card.highlight {
      background: linear-gradient(135deg, #0f0d08 0%, #161005 100%);
    }

    .stats-bottom {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 32px;
      margin-top: 28px;
      flex-wrap: wrap;
    }

    .stats-bottom-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-mono);
      font-size: 0.68rem;
      color: #555;
      letter-spacing: .04em;
    }

    .stats-bottom-item::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
      opacity: 0.5;
      flex-shrink: 0;
    }

    .stats-bottom-item span {
      color: var(--gold-dk);
    }

    @media (max-width: 720px) {
      .stats-grid {
        grid-template-columns: 1fr 1fr;
      }

      .stat-card.wide {
        grid-column: span 2;
      }
    }

    @media (max-width: 480px) {
      .stats-grid {
        grid-template-columns: 1fr;
      }

      .stat-card.wide {
        grid-column: span 1;
        flex-direction: column;
        text-align: center;
      }

      .stat-card.wide .stat-icon {
        margin-bottom: 18px;
      }
    }

    /* â”€â”€ POLICY PAGE OVERRIDES & LAYOUT â”€â”€ */
    #legal-docs {
      display: none;
      /* hidden by default, shown when policy nav clicked */
      background: var(--black);
      color: var(--white);
      border-top: 1px solid var(--border-g);
      position: relative;
      z-index: 10;
    }

    #legal-docs.visible {
      display: block;
    }

    .layout-legal {
      display: grid;
      grid-template-columns: 288px 1fr;
      min-height: 80vh;
    }

    /* â”€â”€ SIDEBAR â”€â”€ */
    .sidebar-legal {
      position: sticky;
      top: 70px;
      height: calc(100vh - 70px);
      overflow-y: auto;
      background: var(--dark);
      border-right: 1px solid var(--border);
      padding: 28px 0 40px;
    }

    .sidebar-legal::-webkit-scrollbar {
      width: 3px;
    }

    .sidebar-legal::-webkit-scrollbar-thumb {
      background: var(--gold-dk);
    }

    .sb-category {
      margin-bottom: 4px;
    }

    .sb-category-btn {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 9px 20px;
      background: none;
      border: none;
      cursor: pointer;
      font-family: var(--font-mono);
      font-size: 0.64rem;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--gold-dk);
      transition: color .2s;
    }

    .sb-category-btn:hover {
      color: var(--gold);
    }

    .sb-category-btn .sb-cat-icon {
      font-size: 0.6rem;
      transition: transform .25s;
    }

    .sb-category-btn.open .sb-cat-icon {
      transform: rotate(90deg);
    }

    .sb-category-links {
      list-style: none;
      overflow: hidden;
      max-height: 0;
      transition: max-height .3s ease;
    }

    .sb-category-links.open {
      max-height: 480px;
    }

    .sb-category-links a {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 8px 20px 8px 28px;
      font-size: 0.82rem;
      color: #888;
      text-decoration: none;
      transition: all .18s;
      border-left: 2px solid transparent;
      line-height: 1.35;
    }

    .sb-category-links a:hover {
      color: var(--white);
      background: var(--gold-dim);
      border-left-color: rgba(201, 168, 76, 0.3);
    }

    .sb-category-links a.active {
      color: var(--gold);
      border-left-color: var(--gold);
      background: var(--gold-dim);
    }

    .sb-category-links a .ln {
      font-family: var(--font-mono);
      font-size: 0.58rem;
      color: var(--gold-dk);
      min-width: 18px;
      padding-top: 2px;
      flex-shrink: 0;
    }

    .sb-divider {
      height: 1px;
      background: var(--border);
      margin: 10px 20px;
    }

    .sb-category-btn[data-cat="data"] {
      color: #60A5FA99;
    }

    .sb-category-btn[data-cat="data"]:hover {
      color: #60A5FA;
    }

    .sb-category-btn[data-cat="commercial"] {
      color: var(--gold-dk);
    }

    .sb-category-btn[data-cat="commercial"]:hover {
      color: var(--gold);
    }

    .sb-category-btn[data-cat="platform"] {
      color: #A78BFA99;
    }

    .sb-category-btn[data-cat="platform"]:hover {
      color: #A78BFA;
    }

    .sb-category-btn[data-cat="legal"] {
      color: #F9A8D499;
    }

    .sb-category-btn[data-cat="legal"]:hover {
      color: #F9A8D4;
    }

    /* â”€â”€ MAIN LEGAL CONTENT â”€â”€ */
    .main-legal {
      padding: 52px clamp(28px, 5%, 72px);
      max-width: 1000px;
    }

    .page-section-legal {
      display: none;
      animation: fadeInPolicy .22s ease;
    }

    .page-section-legal.active {
      display: block;
    }

    @keyframes fadeInPolicy {
      from {
        opacity: 0;
        transform: translateY(6px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .page-eyebrow {
      font-family: var(--font-mono);
      font-size: 0.63rem;
      font-weight: 600;
      letter-spacing: .13em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .page-eyebrow::before {
      content: '';
      width: 24px;
      height: 1px;
      background: var(--gold-dk);
    }

    .page-title-legal {
      font-family: var(--font-main);
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -0.025em;
      color: var(--white);
      margin-bottom: 12px;
    }

    .page-title-legal em {
      font-style: normal;
      color: var(--gold);
    }

    .page-meta-legal {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      color: #666;
      margin-bottom: 36px;
      padding-bottom: 28px;
      border-bottom: 1px solid var(--border-g);
    }

    .doc-body h2 {
      font-family: var(--font-main);
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--white);
      margin: 36px 0 12px;
      padding-top: 36px;
      border-top: 1px solid var(--border);
    }

    .doc-body h2:first-child {
      margin-top: 0;
      padding-top: 0;
      border-top: none;
    }

    .doc-body h3 {
      font-family: var(--font-main);
      font-size: 0.98rem;
      font-weight: 600;
      color: var(--gold);
      margin: 22px 0 8px;
    }

    .doc-body p {
      font-size: 0.91rem;
      line-height: 1.85;
      color: #999;
      margin-bottom: 14px;
    }

    .doc-body ul,
    .doc-body ol {
      padding-left: 20px;
      margin-bottom: 16px;
      color: #999;
    }

    .doc-body li {
      font-size: 0.89rem;
      line-height: 1.8;
      margin-bottom: 5px;
    }

    .doc-body a {
      color: var(--gold);
      text-decoration: none;
      border-bottom: 1px solid var(--border-g);
    }

    /* â”€â”€ CALLOUTS â”€â”€ */
    .callout {
      border-radius: 10px;
      padding: 18px 22px;
      margin: 20px 0;
      border-left: 3px solid;
    }

    .callout-gold {
      background: var(--gold-dim);
      border-color: var(--gold);
    }

    .callout-red {
      background: rgba(239, 68, 68, 0.07);
      border-color: #EF4444;
    }

    .callout-green {
      background: rgba(34, 197, 94, 0.07);
      border-color: #22C55E;
    }

    .callout p {
      margin: 0;
      font-size: 0.87rem;
      line-height: 1.7;
    }

    .callout-title {
      font-family: var(--font-mono);
      font-size: 0.62rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    /* â”€â”€ TABLES â”€â”€ */
    .doc-table {
      width: 100%;
      border-collapse: collapse;
      margin: 20px 0;
      font-size: 0.85rem;
    }

    .doc-table th {
      font-family: var(--font-mono);
      font-size: 0.62rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--gold);
      padding: 10px 14px;
      text-align: left;
      border-bottom: 1px solid var(--border-g);
      background: var(--dark);
    }

    .doc-table td {
      padding: 10px 14px;
      border-bottom: 1px solid var(--border);
      color: #888;
      vertical-align: top;
      line-height: 1.6;
    }

    .tag {
      display: inline-block;
      font-family: var(--font-mono);
      font-size: 0.6rem;
      padding: 3px 8px;
      border-radius: 4px;
      text-transform: uppercase;
    }

    .tag-gold {
      background: var(--gold-dim2);
      color: var(--gold);
      border: 1px solid var(--border-g);
    }

    .tag-green {
      background: rgba(34, 197, 94, 0.1);
      color: #86EFAC;
    }

    .tag-red {
      background: rgba(239, 68, 68, 0.1);
      color: #FCA5A5;
    }

    /* â”€â”€ RIGHTS GRID â”€â”€ */
    .rights-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      margin: 24px 0;
    }

    .right-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 18px;
    }

    .right-card-title {
      font-family: var(--font-main);
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--gold);
      margin-bottom: 6px;
    }

    .right-card p {
      font-size: 0.83rem;
      color: #777;
      line-height: 1.6;
      margin: 0;
    }

    @media (max-width: 768px) {
      .layout-legal {
        grid-template-columns: 1fr;
      }

      .sidebar-legal {
        position: relative;
        top: 0;
        height: auto;
        border-right: none;
        border-bottom: 1px solid var(--border);
      }

      .rights-grid {
        grid-template-columns: 1fr;
      }
    }

    /* FAQ SECTION */
    #faq {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
      padding: 0 clamp(20px, 5%, 40px) 100px;
    }

    .search-wrap {
      position: relative;
      max-width: 540px;
      margin: 0 auto 2.5rem;
      animation: fadeUp 0.7s 0.35s ease both;
    }

    .search-icon {
      position: absolute;
      left: 1rem;
      top: 50%;
      transform: translateY(-50%);
      color: var(--grey);
      pointer-events: none;
    }

    .search-input {
      width: 100%;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 0.85rem 1rem 0.85rem 2.8rem;
      color: var(--white);
      font-family: var(--font-body);
      font-size: 0.95rem;
      outline: none;
      transition: all 0.2s;
    }

    .search-input::placeholder {
      color: var(--grey);
      opacity: 0.5;
    }

    .search-input:focus {
      border-color: var(--gold);
      background: var(--gold-dim);
    }

    .category-nav {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
      margin-bottom: 3rem;
      padding: 0.5rem;
      background: var(--gold-dim);
      border: 1px solid var(--border);
      border-radius: 14px;
      animation: fadeUp 0.7s 0.4s ease both;
    }

    .cat-btn {
      font-family: var(--font-mono);
      font-size: 0.72rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      padding: 0.5rem 1rem;
      border-radius: 9px;
      border: none;
      background: transparent;
      color: var(--grey);
      cursor: pointer;
      transition: all 0.2s;
      flex: 1;
      min-width: max-content;
    }

    .cat-btn:hover {
      color: var(--gold);
      background: var(--gold-dim2);
    }

    .cat-btn.active {
      background: var(--gold-dim2);
      border: 1px solid var(--gold);
      color: var(--gold);
    }

    .faq-category {
      margin-bottom: 3.5rem;
      animation: fadeUp 0.5s ease both;
    }

    .category-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid var(--gold-dim2);
    }

    .category-icon {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      background: var(--gold-dim);
      border: 1px solid var(--border-g);
      flex-shrink: 0;
    }

    .category-title {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: -0.01em;
    }

    .category-count {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      color: var(--gold);
      background: var(--gold-dim);
      border: 1px solid var(--border-g);
      padding: 0.2rem 0.5rem;
      border-radius: 100px;
      margin-left: auto;
    }

    .faq-item {
      border: 1px solid var(--border);
      border-radius: 14px;
      margin-bottom: 0.65rem;
      background: var(--card);
      overflow: hidden;
      transition: border-color 0.25s;
    }

    .faq-item:hover {
      border-color: var(--gold-dim2);
    }

    .faq-item.open {
      border-color: var(--gold-glow);
      background: var(--gold-dim);
    }

    .faq-q {
      width: 100%;
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.1rem 1.3rem;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
    }

    .faq-num {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      color: var(--gold);
      opacity: 0.6;
      flex-shrink: 0;
      width: 1.4rem;
    }

    .faq-q-text {
      font-family: var(--font-body);
      font-size: 0.975rem;
      font-weight: 600;
      color: var(--off);
      line-height: 1.45;
      flex: 1;
      transition: color 0.2s;
    }

    .faq-item.open .faq-q-text {
      color: var(--white);
    }

    .faq-chevron {
      width: 24px;
      height: 24px;
      border-radius: 6px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .faq-item.open .faq-chevron {
      background: var(--gold-dim);
      border-color: var(--gold);
      transform: rotate(180deg);
    }

    .faq-chevron svg {
      width: 12px;
      height: 12px;
      stroke: var(--grey);
      transition: stroke 0.2s;
    }

    .faq-item.open .faq-chevron svg {
      stroke: var(--gold);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq-item.open .faq-a {
      max-height: 800px;
    }

    .faq-a-inner {
      padding: 0 1.3rem 1.3rem 3.3rem;
      color: var(--grey-lt);
      font-size: 0.925rem;
      line-height: 1.78;
      font-weight: 300;
      border-top: 1px solid var(--border);
      padding-top: 1rem;
    }

    .faq-a-inner p {
      margin-bottom: 0.75rem;
    }

    .faq-a-inner p:last-child {
      margin-bottom: 0;
    }

    .faq-a-inner strong {
      color: var(--off);
      font-weight: 600;
    }

    .faq-a-inner a {
      color: var(--gold);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .faq-a-inner ul {
      padding-left: 1.2rem;
      margin: 0.5rem 0;
    }

    .faq-a-inner li {
      margin-bottom: 0.4rem;
      position: relative;
    }

    .faq-a-inner li::marker {
      color: var(--gold);
    }

    .badge {
      display: inline-block;
      font-family: var(--font-mono);
      font-size: 0.65rem;
      letter-spacing: 0.05em;
      padding: 1.5px 7px;
      border-radius: 4px;
      text-transform: uppercase;
      font-weight: 600;
    }

    .badge-red {
      background: var(--red-dim);
      color: var(--red);
      border: 1px solid var(--red);
    }

    .badge-amber {
      background: var(--amber-dim);
      color: var(--amber);
      border: 1px solid var(--amber);
    }

    .badge-green {
      background: var(--green-dim);
      color: var(--green);
      border: 1px solid var(--green);
    }

    .badge-gold {
      background: var(--gold-dim);
      color: var(--gold);
      border: 1px solid var(--gold);
    }

    .faq-contact-card {
      background: var(--card2);
      border: 1px solid var(--border-g);
      border-radius: 24px;
      padding: clamp(2rem, 5vw, 3.5rem);
      position: relative;
      overflow: hidden;
      margin-top: 80px;
    }

    .faq-contact-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), var(--gold-lt), var(--gold), transparent);
    }

    .faq-contact-card::after {
      content: '';
      position: absolute;
      bottom: -80px;
      right: -80px;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      background: radial-gradient(circle, var(--gold-dim) 0%, transparent 70%);
      pointer-events: none;
    }

    .faq-contact-header {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 2rem;
      align-items: start;
      margin-bottom: 2.5rem;
    }

    .faq-contact-title {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 3vw, 2rem);
      font-weight: 700;
      color: var(--white);
      letter-spacing: -0.02em;
      line-height: 1.2;
    }

    .faq-contact-title em {
      color: var(--gold);
      font-style: italic;
    }

    .faq-contact-sub {
      color: var(--grey-lt);
      font-size: 0.9rem;
      line-height: 1.65;
      margin-top: 0.5rem;
      font-weight: 300;
    }

    .faq-contact-info-box {
      background: var(--gold-dim);
      border: 1px solid var(--border-g);
      border-radius: 12px;
      padding: 1rem 1.2rem;
      text-align: center;
      min-width: 160px;
    }

    .faq-form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem 1.25rem;
      margin-bottom: 1rem;
    }

    @media (max-width: 580px) {
      .faq-form-grid {
        grid-template-columns: 1fr;
      }

      .faq-contact-header {
        grid-template-columns: 1fr;
      }

      .faq-contact-info-box {
        display: none;
      }
    }

    .faq-form-group {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .faq-form-group.full {
      grid-column: 1 / -1;
    }

    .faq-form-label {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--grey);
    }

    .faq-form-input,
    .faq-form-select,
    .faq-form-textarea {
      background: var(--card2);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 0.75rem 1rem;
      color: var(--white);
      font-family: var(--font-body);
      font-size: 0.9rem;
      outline: none;
      transition: all 0.2s;
      width: 100%;
    }

    .faq-form-input:focus,
    .faq-form-select:focus,
    .faq-form-textarea:focus {
      border-color: var(--gold);
      background: var(--gold-dim);
    }

    .faq-form-textarea {
      resize: vertical;
      min-height: 120px;
    }

    .faq-form-select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23C9A84C' stroke-width='1.5' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 1rem center;
      padding-right: 2.5rem;
      appearance: none;
    }

    .faq-form-select option {
      background: var(--card2);
      color: var(--white);
    }

    /* Report form select - dark mode fix */
    #report-type option {
      background: var(--card);
      color: var(--white);
    }

    .faq-form-submit {
      width: 100%;
      padding: 0.95rem;
      background: linear-gradient(135deg, var(--gold-dk), var(--gold));
      border: none;
      border-radius: 12px;
      color: #000;
      font-family: var(--font-mono);
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      cursor: pointer;
      margin-top: 0.75rem;
      transition: all 0.2s;
    }

    .faq-form-submit:hover {
      opacity: 0.9;
      transform: translateY(-1px);
    }

    .no-results {
      text-align: center;
      padding: 3rem 1rem;
      color: var(--grey);
      font-family: var(--font-mono);
      font-size: 0.85rem;
      display: none;
    }
  
  /* Product Hunt Integration & Sticky Header Fix */
  .main-header {
      position: fixed !important;
      top: 0 !important;
      left: 0 !important;
      right: 0 !important;
      width: 100% !important;
      z-index: 999999 !important;
      box-shadow: 0 4px 20px rgba(0,0,0,0.4);
      background: none !important; /* Let child backgrounds (Gold/Black) show naturally */
  }
  .announcement-bar {
      background: linear-gradient(90deg, #8B6914, #C9A84C, #8B6914);
      color: #070707;
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      font-family: var(--font-mono);
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      position: relative !important; /* Stack naturally in fixed parent */
      top: 0 !important;
      width: 100%;
      overflow: hidden;
  }
  .announcement-bar span {
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden;
  }
  .announcement-bar .ph-btn {
      background: #070707;
      color: #C9A84C;
      padding: 4px 12px;
      border-radius: 4px;
      text-decoration: none;
      font-size: 0.65rem;
      transition: all 0.2s;
      flex-shrink: 0;
  }
  .announcement-bar .ph-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
  }

  /* Force nav to stack below announcement-bar */
  nav { 
      position: relative !important; 
      top: 0 !important; 
      background: var(--black) !important;
      border-bottom: 1px solid var(--border-g);
  }

  /* Synchronized Header Spacing (Desktop: 38px + 70px = 108px) */
  #home { 
    padding-top: 108px !important; 
    overflow-x: hidden !important;
  }
  
  /* Theme Responsive Badges */
  .ph-light { display: none; }
  body.light-mode .ph-light { display: block; }
  body.light-mode .ph-dark { display: none; }
  .ph-badge-wrap {
      margin-top: 36px;
      animation: slideIn .7s .32s ease both;
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      max-width: 100%;
      overflow: hidden;
  }
  .ph-badge-wrap img {
      max-width: 100%;
      height: auto;
  }

  /* Mobile Optimization */
  @media (max-width: 768px) {
      .announcement-bar {
          height: auto;
          min-height: 44px; /* Slightly taller for mobile legibility */
          flex-direction: column;
          gap: 4px;
          font-size: 0.65rem;
          padding: 8px 15px;
      }
      .announcement-bar span {
          white-space: normal;
          text-align: center;
          line-height: 1.2;
      }
      .announcement-bar .ph-btn {
          padding: 2px 10px;
          font-size: 0.55rem;
      }
      /* Mobile heights: bar (auto) + nav (60px) — use bottom:auto approach */
      #home { padding-top: 114px !important; }
      .nav-links { 
          position: absolute !important;
          top: 100% !important; /* Attach right below nav */
          left: 0;
          right: 0;
          width: 100%;
      }
      .hero-h1 { font-size: 2.0rem !important; }
      .ph-badge-wrap {
          display: flex;
          justify-content: center;
          margin-top: 24px;
          padding: 0 20px;
      }
      .ph-badge-wrap img {
          width: 180px;
          height: auto;
      }
  }

/* ── HIRING TAG (Footer) ── */
.hiring-tag {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(34,197,94,0.1);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 4px;
  padding: 1px 6px;
  margin-bottom: 4px;
  line-height: 1.4;
  width: fit-content;
}
.hiring-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4ade80;
  animation: hiringPulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes hiringPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
  50%      { opacity: .5; box-shadow: 0 0 0 4px rgba(74,222,128,0); }
}

/* ── COMING SOON TAG ── */
.coming-soon-tag {
  display: inline-block;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 4px;
  padding: 1px 5px;
  margin-left: 6px;
  vertical-align: middle;
  line-height: 1.4;
}
