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

    :root {
      --navy:   #0D2137;
      --navy2:  #0A1628;
      --navy3:  #162032;
      --blue:   #1D4ED8;
      --blue2:  #2563EB;
      --gold:   #C8A96E;
      --gold2:  #E8C87E;
      --white:  #FFFFFF;
      --off:    #F8FAFC;
      --gray:   #64748B;
      --lgray:  #94A3B8;
      --red:    #EF4444;
      --amber:  #F59E0B;
      --green:  #22C55E;
      --card:   #0F1E35;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--navy2);
      color: var(--white);
      overflow-x: hidden;
    }

    /* ── NOISE TEXTURE OVERLAY ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
      opacity: 0.4;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 60px;
      background: rgba(10,22,40,0.85);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(200,169,110,0.12);
      transition: padding 0.3s;
    }

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

    .nav-diamond {
      width: 32px;
      height: 32px;
      position: relative;
    }

    .nav-wordmark {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--white);
      letter-spacing: 2px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
    }

    .nav-links a {
      color: var(--lgray);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.5px;
      transition: color 0.2s;
    }

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

    .nav-cta {
      background: var(--gold);
      color: var(--navy2) !important;
      padding: 10px 22px;
      border-radius: 6px;
      font-weight: 600 !important;
      text-decoration: none !important;
      transition: background 0.2s !important;
    }

    .nav-cta:hover { background: var(--gold2) !important; color: var(--navy2) !important; }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 120px 40px 80px;
      position: relative;
      overflow: hidden;
    }

    /* Radial glow behind hero */
    .hero::after {
      content: '';
      position: absolute;
      top: 20%;
      left: 50%;
      transform: translateX(-50%);
      width: 700px;
      height: 700px;
      background: radial-gradient(ellipse, rgba(29,78,216,0.15) 0%, transparent 70%);
      pointer-events: none;
    }

    /* Diagonal grid lines */
    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(200,169,110,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200,169,110,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(200,169,110,0.1);
      border: 1px solid rgba(200,169,110,0.25);
      border-radius: 100px;
      padding: 6px 16px;
      font-size: 12px;
      font-weight: 600;
      color: var(--gold);
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 28px;
      position: relative;
      z-index: 1;
      opacity: 0;
      animation: fadeUp 0.6s 0.1s forwards;
    }

    .hero-eyebrow-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--green);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(1.3); }
    }

    .hero-headline {
      font-family: 'Playfair Display', serif;
      font-size: clamp(48px, 7vw, 88px);
      font-weight: 900;
      line-height: 1.05;
      letter-spacing: -1px;
      margin-bottom: 24px;
      position: relative;
      z-index: 1;
      opacity: 0;
      animation: fadeUp 0.7s 0.2s forwards;
    }

    .hero-headline .accent {
      color: var(--gold);
      font-style: italic;
    }

    .hero-sub {
      font-size: clamp(16px, 2vw, 20px);
      color: var(--lgray);
      font-weight: 400;
      max-width: 580px;
      line-height: 1.7;
      margin-bottom: 44px;
      position: relative;
      z-index: 1;
      opacity: 0;
      animation: fadeUp 0.7s 0.35s forwards;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      justify-content: center;
      position: relative;
      z-index: 1;
      opacity: 0;
      animation: fadeUp 0.7s 0.5s forwards;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--gold);
      color: var(--navy2);
      padding: 14px 32px;
      border-radius: 8px;
      font-weight: 700;
      font-size: 15px;
      text-decoration: none;
      letter-spacing: 0.3px;
      transition: all 0.2s;
      box-shadow: 0 4px 24px rgba(200,169,110,0.3);
    }

    .btn-primary:hover {
      background: var(--gold2);
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(200,169,110,0.4);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--lgray);
      padding: 14px 24px;
      border-radius: 8px;
      font-weight: 500;
      font-size: 15px;
      text-decoration: none;
      border: 1px solid rgba(148,163,184,0.2);
      transition: all 0.2s;
    }

    .btn-secondary:hover {
      color: var(--white);
      border-color: rgba(148,163,184,0.4);
    }

    /* Hero stat bar */
    .hero-stats {
      display: flex;
      align-items: center;
      gap: 48px;
      margin-top: 72px;
      padding-top: 48px;
      border-top: 1px solid rgba(200,169,110,0.12);
      position: relative;
      z-index: 1;
      opacity: 0;
      animation: fadeUp 0.7s 0.7s forwards;
      flex-wrap: wrap;
      justify-content: center;
    }

    .hero-stat {
      text-align: center;
    }

    .hero-stat-value {
      font-family: 'Playfair Display', serif;
      font-size: 36px;
      font-weight: 700;
      color: var(--white);
      line-height: 1;
      margin-bottom: 6px;
    }

    .hero-stat-label {
      font-size: 12px;
      color: var(--lgray);
      letter-spacing: 1px;
      text-transform: uppercase;
      font-weight: 500;
    }

    .hero-stat-divider {
      width: 1px;
      height: 40px;
      background: rgba(200,169,110,0.15);
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ── PROBLEM SECTION ── */
    .section {
      padding: 100px 60px;
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
    }

    .section-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 700;
      line-height: 1.15;
      margin-bottom: 20px;
    }

    .section-sub {
      font-size: 17px;
      color: var(--lgray);
      line-height: 1.7;
      max-width: 560px;
    }

    /* Problem cards */
    .problem-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
      margin-top: 56px;
    }

    .problem-card {
      background: var(--card);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 12px;
      padding: 28px;
      position: relative;
      overflow: hidden;
      transition: transform 0.2s, border-color 0.2s;
    }

    .problem-card:hover {
      transform: translateY(-4px);
      border-color: rgba(200,169,110,0.2);
    }

    .problem-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
    }

    .problem-card.red::before   { background: var(--red); }
    .problem-card.amber::before { background: var(--amber); }
    .problem-card.blue::before  { background: var(--blue); }
    .problem-card.gold::before  { background: var(--gold); }

    .problem-icon {
      font-size: 28px;
      margin-bottom: 16px;
    }

    .problem-title {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--white);
    }

    .problem-desc {
      font-size: 14px;
      color: var(--lgray);
      line-height: 1.65;
    }

    /* ── HOW IT WORKS ── */
    .how-wrapper {
      background: var(--navy);
      border-top: 1px solid rgba(200,169,110,0.08);
      border-bottom: 1px solid rgba(200,169,110,0.08);
    }

    .how-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .how-steps {
      display: flex;
      flex-direction: column;
      gap: 32px;
      margin-top: 40px;
    }

    .how-step {
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }

    .how-step-num {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(29,78,216,0.15);
      border: 1px solid rgba(29,78,216,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 700;
      color: var(--blue2);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .how-step-title {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 6px;
      color: var(--white);
    }

    .how-step-desc {
      font-size: 14px;
      color: var(--lgray);
      line-height: 1.65;
    }

    /* Score visualization */
    .score-viz {
      background: var(--card);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 16px;
      padding: 32px;
      font-family: 'DM Sans', sans-serif;
    }

    .score-viz-header {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
    }

    .score-item {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 16px;
    }

    .score-badge {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1px;
      padding: 4px 10px;
      border-radius: 4px;
      min-width: 72px;
      text-align: center;
    }

    .score-badge.critical { background: rgba(239,68,68,0.15); color: var(--red); border: 1px solid rgba(239,68,68,0.3); }
    .score-badge.warning  { background: rgba(245,158,11,0.15); color: var(--amber); border: 1px solid rgba(245,158,11,0.3); }
    .score-badge.good     { background: rgba(34,197,94,0.15); color: var(--green); border: 1px solid rgba(34,197,94,0.3); }

    .score-bar-wrap {
      flex: 1;
      height: 6px;
      background: rgba(255,255,255,0.06);
      border-radius: 3px;
      overflow: hidden;
    }

    .score-bar {
      height: 100%;
      border-radius: 3px;
      transition: width 1.5s ease;
    }

    .score-bar.critical { background: linear-gradient(90deg, #EF4444, #F87171); }
    .score-bar.warning  { background: linear-gradient(90deg, #F59E0B, #FCD34D); }
    .score-bar.good     { background: linear-gradient(90deg, #22C55E, #4ADE80); }

    .score-label {
      font-size: 13px;
      color: var(--lgray);
      min-width: 160px;
    }

    .score-pct {
      font-size: 13px;
      font-weight: 600;
      color: var(--white);
      min-width: 36px;
      text-align: right;
    }

    /* ── FEATURES GRID ── */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 56px;
    }

    .feature-card {
      background: var(--card);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 12px;
      padding: 28px;
      transition: all 0.2s;
    }

    .feature-card:hover {
      border-color: rgba(29,78,216,0.3);
      transform: translateY(-3px);
    }

    .feature-icon-wrap {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: rgba(29,78,216,0.12);
      border: 1px solid rgba(29,78,216,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      margin-bottom: 16px;
    }

    .feature-title {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 8px;
      color: var(--white);
    }

    .feature-desc {
      font-size: 14px;
      color: var(--lgray);
      line-height: 1.65;
    }

    /* ── PRICING ── */
    .pricing-wrapper {
      background: var(--navy);
      border-top: 1px solid rgba(200,169,110,0.08);
      border-bottom: 1px solid rgba(200,169,110,0.08);
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
      margin-top: 56px;
    }

    .pricing-card {
      background: var(--card);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 16px;
      padding: 36px;
      position: relative;
      transition: all 0.2s;
    }

    .pricing-card.featured {
      border-color: var(--gold);
      background: linear-gradient(135deg, rgba(200,169,110,0.05), var(--card));
    }

    .pricing-card.featured::before {
      content: 'MOST POPULAR';
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--gold);
      color: var(--navy2);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.5px;
      padding: 4px 14px;
      border-radius: 100px;
    }

    .pricing-audience {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }

    .pricing-title {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .pricing-price {
      display: flex;
      align-items: baseline;
      gap: 4px;
      margin-bottom: 6px;
    }

    .pricing-amount {
      font-family: 'Playfair Display', serif;
      font-size: 44px;
      font-weight: 700;
      color: var(--white);
      line-height: 1;
    }

    .pricing-unit {
      font-size: 14px;
      color: var(--lgray);
    }

    .pricing-desc {
      font-size: 14px;
      color: var(--lgray);
      margin-bottom: 28px;
      line-height: 1.6;
    }

    .pricing-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 32px;
    }

    .pricing-features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      color: var(--lgray);
      line-height: 1.5;
    }

    .pricing-features li::before {
      content: '✓';
      color: var(--green);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .pricing-cta {
      display: block;
      text-align: center;
      padding: 13px 24px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 15px;
      text-decoration: none;
      transition: all 0.2s;
    }

    .pricing-cta.gold-btn {
      background: var(--gold);
      color: var(--navy2);
    }

    .pricing-cta.gold-btn:hover {
      background: var(--gold2);
      transform: translateY(-2px);
    }

    .pricing-cta.outline-btn {
      border: 1px solid rgba(255,255,255,0.15);
      color: var(--white);
    }

    .pricing-cta.outline-btn:hover {
      border-color: rgba(255,255,255,0.3);
      background: rgba(255,255,255,0.04);
    }

    /* ── ABOUT / CREDIBILITY ── */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .about-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 32px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: rgba(200,169,110,0.08);
      border: 1px solid rgba(200,169,110,0.2);
      border-radius: 100px;
      padding: 7px 14px;
      font-size: 12px;
      font-weight: 600;
      color: var(--gold);
    }

    .about-quote {
      background: var(--card);
      border: 1px solid rgba(200,169,110,0.15);
      border-left: 4px solid var(--gold);
      border-radius: 12px;
      padding: 32px;
      margin-top: 32px;
    }

    .about-quote-text {
      font-size: 17px;
      color: var(--white);
      line-height: 1.7;
      font-style: italic;
      margin-bottom: 16px;
    }

    .about-quote-author {
      font-size: 13px;
      color: var(--lgray);
      font-weight: 500;
    }

    .about-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .about-stat-card {
      background: var(--card);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 12px;
      padding: 24px;
      text-align: center;
    }

    .about-stat-value {
      font-family: 'Playfair Display', serif;
      font-size: 36px;
      font-weight: 700;
      color: var(--gold);
      margin-bottom: 6px;
    }

    .about-stat-label {
      font-size: 12px;
      color: var(--lgray);
      letter-spacing: 0.5px;
    }

    /* ── CTA SECTION ── */
    .cta-section {
      background: linear-gradient(135deg, var(--navy) 0%, rgba(29,78,216,0.15) 100%);
      border-top: 1px solid rgba(200,169,110,0.1);
      text-align: center;
      padding: 100px 40px;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: -200px;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 600px;
      background: radial-gradient(ellipse, rgba(200,169,110,0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-section .section-title {
      max-width: 600px;
      margin: 0 auto 20px;
    }

    .cta-section .section-sub {
      max-width: 480px;
      margin: 0 auto 40px;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--navy2);
      border-top: 1px solid rgba(255,255,255,0.05);
      padding: 48px 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }

    .footer-logo {
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--white);
      letter-spacing: 2px;
    }

    .footer-tagline {
      font-size: 12px;
      color: var(--lgray);
      margin-top: 4px;
    }

    .footer-links {
      display: flex;
      gap: 28px;
      list-style: none;
    }

    .footer-links a {
      color: var(--lgray);
      text-decoration: none;
      font-size: 13px;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: var(--white); }

    .footer-copy {
      font-size: 12px;
      color: var(--lgray);
    }

    /* ── DIVIDER ── */
    .divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(200,169,110,0.15), transparent);
      margin: 0 60px;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 16px 24px; }
      .nav-links { display: none; }
      .section { padding: 72px 24px; }
      .how-grid, .about-grid { grid-template-columns: 1fr; gap: 48px; }
      footer { padding: 40px 24px; flex-direction: column; align-items: flex-start; }
      .divider { margin: 0 24px; }
    }

    /* ── SCROLL ANIMATION ── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
  
    /* ── RESPONSIVE NEW SECTIONS ─────────────────────────────────────────────── */

    /* Deal Analyzer */
    .da-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; max-width: 1100px; margin: 0 auto; }
    .da-totals { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; text-align: center; margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(200,169,110,0.1); }

    /* Cascade */
    .cascade-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 980px; margin: 0 auto; }
    .cascade-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

    /* Accuracy */
    .acc-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin-bottom: 36px; }
    .acc-steps { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 16px; }

    /* Social Proof */
    .proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 800px; margin: 0 auto; }

    /* STR grid */
    .str-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }

    /* ── MOBILE — 768px and below ────────────────────────────────────────────── */
    @media (max-width: 768px) {

      /* Nav — hide links, show only CTA */
      nav { padding: 16px 20px; }
      .nav-links { display: none; }
      .mobile-cta { display: inline-flex !important; font-size: 13px; padding: 8px 16px; }

      /* Hero */
      .hero { padding: 100px 20px 60px; }
      .hero-headline { font-size: clamp(36px, 9vw, 56px); }
      .hero-stats { flex-wrap: wrap; gap: 16px; justify-content: center; }
      .hero-stat-divider { display: none; }
      .hero-stat { min-width: 120px; }

      /* Sections */
      .section { padding: 60px 20px; }
      .section-title { font-size: clamp(28px, 7vw, 40px); }

      /* Deal Analyzer */
      .da-grid { grid-template-columns: 1fr; gap: 36px; }
      .da-totals { grid-template-columns: 1fr 1fr 1fr; }

      /* Cascade */
      .cascade-grid { grid-template-columns: 1fr; gap: 28px; }
      .cascade-stats { grid-template-columns: 1fr 1fr; }

      /* Accuracy */
      .acc-cards { grid-template-columns: 1fr; }
      .acc-steps { grid-template-columns: 1fr 1fr; }

      /* Social Proof */
      .proof-grid { grid-template-columns: 1fr; }

      /* Features */
      .features-grid { grid-template-columns: 1fr; }

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

      /* How it works */
      .how-grid { grid-template-columns: 1fr; }

      /* Pricing */
      .pricing-grid { grid-template-columns: 1fr; }

      /* Integrations */
      .integrations-grid { grid-template-columns: 1fr; }

      /* About */
      .about-grid { grid-template-columns: 1fr; }
      .about-stats { grid-template-columns: 1fr 1fr; }

      /* Founder */
      .founder-grid, [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }

      /* CTA section */
      .cta-section { padding: 60px 20px; }

      /* Footer */
      footer { flex-direction: column; gap: 24px; text-align: center; padding: 40px 20px; }
      .footer-links { flex-wrap: wrap; justify-content: center; }

      /* Pricing */
      .pricing-wrapper { padding: 0 20px; }
      .how-wrapper { padding: 0 20px; }

      /* IoT roadmap banner */
      #iot .section { padding: 0 20px; }
    }

    /* ── TABLET — 900px to 1024px ────────────────────────────────────────────── */
    @media (max-width: 1024px) and (min-width: 769px) {
      .da-grid { gap: 36px; }
      .cascade-grid { gap: 28px; }
      .acc-steps { grid-template-columns: 1fr 1fr; }
      .proof-grid { grid-template-columns: 1fr 1fr; }
      .acc-cards { grid-template-columns: 1fr 1fr 1fr; }
    }

    /* ── SMALL PHONES — 480px and below ─────────────────────────────────────── */
    @media (max-width: 480px) {
      .acc-steps { grid-template-columns: 1fr; }
      .da-totals { grid-template-columns: 1fr; }
      .cascade-stats { grid-template-columns: 1fr 1fr; }
      .hero-stat { min-width: 100px; }
      .pricing-card { padding: 24px 20px; }
      nav { padding: 14px 16px; }
    }

    /* ── HAMBURGER & MOBILE MENU ─────────────────────────────────────────────── */

    .nav-right {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    /* Hamburger button — hidden on desktop */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      background: rgba(200,169,110,0.08);
      border: 1px solid rgba(200,169,110,0.22);
      border-radius: 8px;
      cursor: pointer;
      padding: 0;
      flex-shrink: 0;
      transition: background 0.2s, border-color 0.2s;
    }
    .hamburger:hover {
      background: rgba(200,169,110,0.16);
      border-color: rgba(200,169,110,0.45);
    }
    .hamburger span {
      display: block;
      width: 20px;
      height: 2px;
      background: var(--gold);
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
      transform-origin: center;
    }
    /* Animated to X when open */
    .hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.is-open span:nth-child(2) { opacity: 0; width: 0; }
    .hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Full-screen mobile overlay */
    .mobile-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(10,22,40,0.72);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      z-index: 149;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .mobile-overlay.is-visible {
      display: block;
      opacity: 1;
    }

    /* Slide-in menu panel */
    .mobile-menu {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      width: min(320px, 88vw);
      background: var(--navy);
      border-left: 1px solid rgba(200,169,110,0.18);
      z-index: 150;
      display: flex;
      flex-direction: column;
      transform: translateX(100%);
      transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }
    .mobile-menu.is-open {
      transform: translateX(0);
    }

    /* Menu header row */
    .mobile-menu-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 24px;
      border-bottom: 1px solid rgba(200,169,110,0.12);
      flex-shrink: 0;
    }
    .mobile-menu-wordmark {
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--white);
      letter-spacing: 2px;
    }
    .mobile-menu-close {
      background: none;
      border: none;
      color: var(--lgray);
      font-size: 20px;
      cursor: pointer;
      padding: 4px 8px;
      line-height: 1;
      transition: color 0.2s;
    }
    .mobile-menu-close:hover { color: var(--white); }

    /* Nav links list */
    .mobile-menu-nav {
      display: flex;
      flex-direction: column;
      padding: 16px 0;
      flex: 1;
    }
    .mobile-nav-link {
      display: block;
      padding: 15px 28px;
      color: var(--lgray);
      text-decoration: none;
      font-size: 16px;
      font-weight: 500;
      letter-spacing: 0.3px;
      border-left: 3px solid transparent;
      transition: color 0.2s, background 0.2s, border-color 0.2s;
    }
    .mobile-nav-link:hover,
    .mobile-nav-link:focus {
      color: var(--white);
      background: rgba(200,169,110,0.07);
      border-left-color: var(--gold);
      outline: none;
    }
    .mobile-nav-link:active {
      background: rgba(200,169,110,0.14);
    }

    /* Sticky footer inside menu */
    .mobile-menu-footer {
      padding: 20px 24px 32px;
      border-top: 1px solid rgba(200,169,110,0.12);
      display: flex;
      flex-direction: column;
      gap: 12px;
      flex-shrink: 0;
    }
    .mobile-menu-cta {
      display: block;
      background: var(--gold);
      color: var(--navy2) !important;
      text-align: center;
      padding: 14px 20px;
      border-radius: 8px;
      font-weight: 700;
      font-size: 15px;
      text-decoration: none;
      transition: background 0.2s;
    }
    .mobile-menu-cta:hover { background: var(--gold2); }
    .mobile-menu-login {
      display: block;
      text-align: center;
      color: var(--lgray);
      font-size: 13px;
      text-decoration: none;
      transition: color 0.2s;
    }
    .mobile-menu-login:hover { color: var(--white); }

    /* Show hamburger, hide desktop nav links on mobile */
    @media (max-width: 768px) {
      .nav-links { display: none !important; }
      .hamburger { display: flex; }
      /* hide the old mobile-cta that was inline on the nav */
      .mobile-cta { display: none !important; }
    }

    /* On desktop always hide the mobile menu regardless of JS state */
    @media (min-width: 769px) {
      .mobile-menu { display: none !important; }
      .mobile-overlay { display: none !important; }
      .hamburger { display: none !important; }
      .nav-cta { display: inline-flex; }
    }

    
/* ── AUDIENCE PAGE STYLES ─────────────────────────────────────────────────── */

.page-hero {
  padding: 140px 60px 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.page-hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 28px;
}
.page-hero h1 .accent { color: var(--gold); }
.page-hero .hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--lgray);
  max-width: 640px;
  line-height: 1.65;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy2);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold2); }
.btn-secondary {
  color: var(--lgray);
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid rgba(148,163,184,0.3);
  transition: color 0.2s, border-color 0.2s;
}
.btn-secondary:hover { color: var(--white); border-color: var(--white); }

.hero-stats-row {
  display: flex;
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid rgba(200,169,110,0.15);
  padding-top: 40px;
}
.hero-stat-item {
  flex: 1;
  padding: 0 32px 0 0;
}
.hero-stat-item + .hero-stat-item {
  padding-left: 32px;
  border-left: 1px solid rgba(255,255,255,0.07);
}
.hero-stat-item .val {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-item .lbl {
  font-size: 13px;
  color: var(--lgray);
  line-height: 1.4;
}

/* Pain / value grid */
.page-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.page-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.page-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 32px;
}
.page-card-accent {
  border-top: 3px solid var(--gold);
}
.page-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}
.page-card p {
  font-size: 14px;
  color: var(--lgray);
  line-height: 1.65;
}
.page-card .stat-big {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.page-card .stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--lgray);
  line-height: 1.5;
}
.check-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Comparison table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  max-width: 1100px;
  margin: 0 auto;
}
.compare-table th {
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: left;
  border-bottom: 2px solid rgba(200,169,110,0.2);
}
.compare-table th.col-fv { color: var(--gold); }
.compare-table th.col-them { color: var(--gray); }
.compare-table td {
  padding: 14px 20px;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.compare-table tr:hover td { background: rgba(255,255,255,0.02); }
.compare-table td.col-label { color: var(--lgray); font-weight: 500; }
.compare-table td.col-fv { color: var(--gold); font-weight: 600; }
.compare-table td.col-them { color: var(--gray); }

/* CTA band */
.page-cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, rgba(29,78,216,0.12) 100%);
  border-top: 1px solid rgba(200,169,110,0.15);
  text-align: center;
  padding: 80px 40px;
}
.page-cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}
.page-cta-band p {
  color: var(--lgray);
  font-size: 18px;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Audience nav pills */
.audience-nav {
  background: rgba(15,30,53,0.8);
  border-bottom: 1px solid rgba(200,169,110,0.1);
  padding: 0 60px;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.audience-nav::-webkit-scrollbar { display: none; }
.audience-nav a {
  display: block;
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 500;
  color: var(--lgray);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.audience-nav a:hover { color: var(--white); }
.audience-nav a.active { color: var(--gold); border-bottom-color: var(--gold); }

/* Mobile responsive for audience pages */
@media (max-width: 768px) {
  /* Score viz — prevent horizontal overflow on small screens */
  .score-viz { padding: 20px; }
  .score-item { gap: 8px; }
  .score-label { min-width: 0; flex: 1; font-size: 12px; }
  .score-badge { min-width: 60px; font-size: 9px; padding: 3px 6px; }
  .score-pct { min-width: 30px; font-size: 12px; }
  .score-bar-wrap { min-width: 40px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .score-label { font-size: 11px; }
  .score-badge { font-size: 8px; min-width: 52px; }
}
