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

    /* ===== PRELOADER ===== */
    #preloader {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: #1b1b1b;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 28px;
      transition: opacity 0.5s ease, visibility 0.5s ease;
    }
    #preloader.hidden {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }
    #preloader img {
      height: 32px;
      opacity: 0;
      transform: translateY(6px);
      animation: preloader-fadein 0.6s ease 0.2s forwards;
    }
    .preloader-bar-wrap {
      width: 120px;
      height: 2px;
      background: rgba(201,168,76,0.15);
      border-radius: 2px;
      overflow: hidden;
      opacity: 0;
      animation: preloader-fadein 0.6s ease 0.4s forwards;
    }
    .preloader-bar {
      height: 100%;
      width: 40%;
      background: #C9A84C;
      border-radius: 2px;
      animation: preloader-slide 1.2s ease-in-out infinite;
    }
    .preloader-label {
      font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #585858;
      opacity: 0;
      animation: preloader-fadein 0.6s ease 0.5s forwards;
    }
    @keyframes preloader-fadein {
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes preloader-slide {
      0%   { transform: translateX(-100%); }
      50%  { transform: translateX(150%); }
      100% { transform: translateX(150%); }
    }
    /* ===== /PRELOADER ===== */

    :root {
      --bg:       #1b1b1b;
      --card:     #222222;
      --hover:    #2a2a2a;
      --border:   #2d2d2d;
      --gold:     #C9A84C;
      --gold-h:   #d4b665;
      --gold-dim: rgba(201,168,76,0.12);
      --white:    #ffffff;
      --text:     #d4d4d4;
      --sec:      #9a9a9a;
      --muted:    #585858;
      --green:    #4ade80;
      --red:      #f87171;
      /* palette dots */
      --dot-direct: #e5e5e5;
      --dot-meta:   #C9A84C;
      --dot-google: #8B6914;
      --dot-email:  #4a4a4a;
      --dot-ref:    #2d2d2d;
      --font-header: 'Zodiak', Georgia, serif;
      --font-body:   'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      background-color: var(--bg);
      background-image: url("https://assets-global.website-files.com/61be8e24f1df4e41f161dfba/61c3cb8833dfbe85954c8d79_noise.png");
      background-attachment: fixed;
      background-repeat: repeat;
      background-size: auto;
      color: var(--text);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.7;
      overflow-x: hidden;
    }

    h1, h2, h3, h4,
    .hero h1,
    .section-title,
    .cta-title,
    .problem-title,
    .feature-title,
    .bryan-name,
    .plan-price {
      font-family: var(--font-header);
      font-style: normal;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 0 48px;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(27,27,27,0.88);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
    }

    .nav-logo-executive {
      display: flex;
      flex-direction: column;
      line-height: 1;
      gap: 2px;
    }
    .nav-logo-laps {
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0.12em;
      color: var(--white);
    }
    .nav-logo-exec {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.22em;
      color: var(--gold);
      text-transform: uppercase;
    }

    .nav-logo {
      font-size: 16px;
      font-weight: 600;
      letter-spacing: 0.06em;
      color: var(--white);
      text-decoration: none;
      display: flex;
      align-items: center;
    }

    .nav-logo span { color: var(--gold); }

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

    .nav-links a {
      font-size: 13px;
      color: var(--sec);
      text-decoration: none;
      letter-spacing: 0.02em;
      transition: color 0.3s, opacity 0.3s;
    }

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

    .nav-cta {
      background: var(--gold);
      color: #0a0a0a !important;
      font-weight: 600 !important;
      padding: 9px 22px;
      border-radius: 6px;
      transition: background 0.15s !important;
    }

    .nav-cta:hover { background: var(--gold-h) !important; color: #0a0a0a !important; }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 80px 48px;
      position: relative;
      background-image: url('/assets/img/lasp-executive-hero.webp');
      background-size: cover;
      background-position: center right;
      background-repeat: no-repeat;
    }

    .hero > * { position: relative; z-index: 1; }

    .hero-glow-1 {
      position: absolute;
      top: -120px; right: -120px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-glow-2 {
      position: absolute;
      bottom: -80px; left: -80px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-inner {
      max-width: 1280px;
      margin: 0 auto;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 60px;
      align-items: center;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--gold-dim);
      border: 1px solid rgba(201,168,76,0.25);
      border-radius: 20px;
      padding: 6px 16px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 28px;
    }

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

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.4; }
    }

    .hero h1 {
      font-size: clamp(38px, 4.5vw, 58px);
      font-weight: 300;
      letter-spacing: -0.02em;
      line-height: 1.1;
      color: var(--white);
      margin-bottom: 24px;
    }

    .hero h1 strong {
      font-weight: 600;
      color: var(--gold);
    }

    .hero-sub {
      font-size: 17px;
      color: var(--text);
      line-height: 1.8;
      margin-bottom: 40px;
      max-width: 480px;
      font-weight: 300;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--gold);
      color: #0a0a0a;
      font-size: 14px;
      font-weight: 700;
      padding: 14px 32px;
      border-radius: 7px;
      text-decoration: none;
      letter-spacing: 0.02em;
      transition: background 0.15s, transform 0.15s;
      display: inline-block;
    }

    .btn-primary:hover { background: var(--gold-h); transform: translateY(-1px); }

    .btn-ghost {
      color: var(--white);
      font-size: 14px;
      padding: 14px 24px;
      border-radius: 7px;
      text-decoration: none;
      border: 1px solid var(--muted);
      transition: all 0.15s;
      display: inline-block;
    }

    .btn-ghost:hover { border-color: var(--text); color: var(--white); transform: translateY(-1px); }

    .scroll-arrow {
      position: absolute;
      bottom: 2em;
      left: 50%;
      transform: translateX(-50%);
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      color: rgba(255,255,255,0.3);
      text-decoration: none;
      animation: scrollBounce 2.2s ease-in-out infinite;
      transition: color 0.2s;
      z-index: 2;
    }
    .scroll-arrow:hover { color: var(--gold); }

    @keyframes scrollBounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(8px); }
    }

    .hero-trial {
      margin-top: 20px;
      font-size: 12px;
      color: var(--muted);
      letter-spacing: 0.03em;
    }

    /* HERO RIGHT - ORBIT */
    .hero-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .hero-photo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center right;
      border-radius: 12px;
      display: block;
    }

    .hero-photo-fade {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, var(--bg) 0%, transparent 40%);
      border-radius: 12px;
      pointer-events: none;
    }

    .hero-visual .orbit-diagram {
      flex-shrink: 0;
    }

    .dash-preview {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 40px 80px rgba(0,0,0,0.6);
    }

    .dash-bar {
      background: #0d0d0d;
      border-bottom: 1px solid var(--border);
      padding: 12px 20px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

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

    .dash-title {
      margin-left: 8px;
      font-size: 12px;
      color: var(--muted);
      letter-spacing: 0.04em;
    }

    .dash-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; }

    .mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

    .mini-card {
      background: var(--hover);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 14px 16px;
    }

    .mini-label {
      font-size: 9px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 6px;
    }

    .mini-value {
      font-size: 20px;
      font-weight: 700;
      color: var(--white);
      letter-spacing: -0.02em;
    }

    .mini-sub {
      font-size: 10px;
      color: var(--green);
      margin-top: 3px;
    }

    .mini-chart {
      height: 28px;
      margin-top: 8px;
      display: flex;
      align-items: flex-end;
      gap: 2px;
    }

    .mini-bar {
      flex: 1;
      background: rgba(201,168,76,0.15);
      border-radius: 2px;
      transition: height 0.3s;
    }

    .mini-bar.gold { background: var(--gold); }

    .mini-donut {
      background: var(--hover);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 14px 16px;
    }

    .donut-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 2px;
    }

    .donut-label-wrap { display: flex; align-items: center; gap: 8px; }

    .donut-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .donut-label { font-size: 11px; color: var(--sec); }
    .donut-pct { font-size: 11px; color: var(--white); font-weight: 600; }

    .mini-insight {
      background: rgba(201,168,76,0.06);
      border: 1px solid rgba(201,168,76,0.15);
      border-radius: 8px;
      padding: 12px 16px;
      display: flex;
      gap: 10px;
      align-items: flex-start;
    }

    .insight-icon { font-size: 14px; }

    .insight-text { font-size: 11px; color: var(--sec); line-height: 1.5; }
    .insight-text strong { color: var(--gold); }

    /* ── SECTION BASE ── */
    section { padding: 80px 48px; }

    .section-inner { max-width: 1280px; margin: 0 auto; }

    .section-pre {
      font-size: 11px;
      font-style: normal;
      font-weight: 600;
      color: var(--gold);
      margin-bottom: 16px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-family: var(--font-body);
    }

    .section-eyebrow {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }

    .section-title {
      font-size: clamp(28px, 3.5vw, 44px);
      font-weight: 300;
      letter-spacing: -0.02em;
      line-height: 1.15;
      color: var(--white);
      margin-bottom: 20px;
    }

    .section-title strong { font-weight: 600; }

    .section-desc {
      font-size: 17px;
      color: var(--text);
      max-width: 560px;
      line-height: 1.8;
      font-weight: 300;
    }

    /* ── PROBLEM ── */
  
    .problem-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      margin-top: 56px;
    }

    .problem-item {
      background: var(--card);
      padding: 36px 32px;
    }

    .problem-num {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      color: var(--muted);
      margin-bottom: 16px;
    }

    .problem-title {
      font-size: 18px;
      font-weight: 500;
      color: var(--white);
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .problem-desc { font-size: 14px; color: var(--text); line-height: 1.75; font-weight: 300; }

    /* ── FEATURES ── */
    .features { padding-top: 32px; }

    .features-header { margin-bottom: 64px; }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
    }

    .feature-card {
      background: var(--card);
      padding: 36px 32px;
      transition: background 0.2s;
    }

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

    .feature-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: var(--gold-dim);
      border: 1px solid rgba(201,168,76,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      flex-shrink: 0;
    }

    .feature-icon svg { width: 20px; height: 20px; color: var(--gold); }

    .feature-title {
      font-size: 17px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 10px;
      letter-spacing: -0.01em;
    }

    .feature-desc { font-size: 14px; color: var(--text); line-height: 1.75; font-weight: 300; }

    .feature-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: var(--gold);
      text-decoration: none;
      margin-top: 16px;
      letter-spacing: 0.04em;
    }

    /* ── PALETTE DOTS STRIP ── */
    .dots-strip {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-top: 48px;
      padding: 20px 0;
      border-top: 1px solid var(--border);
    }

    .dots-label { font-size: 11px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }

    .dot-item { display: flex; align-items: center; gap: 8px; }
    .dot-circle { width: 10px; height: 10px; border-radius: 50%; }
    .dot-name { font-size: 12px; color: var(--sec); }

    /* ── BRYAN ── */
    .bryan-section { background: transparent; }

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

    .bryan-chat {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 24px 48px rgba(0,0,0,0.4);
      display: flex;
      flex-direction: column;
      align-self: stretch;
    }

    .bryan-header {
      background: #0d0d0d;
      border-bottom: 1px solid var(--border);
      padding: 16px 20px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .bryan-avatar {
      width: 34px; height: 34px;
      border-radius: 50%;
      background: var(--gold-dim);
      border: 1px solid rgba(201,168,76,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .bryan-avatar svg { width: 16px; height: 16px; color: var(--gold); }

    .bryan-name { font-size: 13px; font-weight: 600; color: var(--white); }
    .bryan-role { font-size: 11px; color: var(--gold); }

    .bryan-status {
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      color: var(--green);
    }

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

    .chat-body { padding: 20px; display: flex; flex-direction: column; gap: 16px; }

    .msg {
      max-width: 85%;
      padding: 12px 16px;
      border-radius: 10px;
      font-size: 13px;
      line-height: 1.6;
    }

    .msg-bryan {
      background: var(--hover);
      border: 1px solid var(--border);
      color: var(--text);
      align-self: flex-start;
      border-bottom-left-radius: 3px;
    }

    .msg-bryan strong { color: var(--white); }

    .msg-user {
      background: var(--gold-dim);
      border: 1px solid rgba(201,168,76,0.15);
      color: var(--white);
      align-self: flex-end;
      border-bottom-right-radius: 3px;
      font-size: 13px;
    }

    .msg-gold { color: var(--gold); font-weight: 600; }

    @keyframes slideFromLeft {
      from { opacity: 0; transform: translateX(-18px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    @keyframes slideFromRight {
      from { opacity: 0; transform: translateX(18px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    @keyframes dotBounce {
      0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
      40%           { transform: translateY(-5px); opacity: 1; }
    }

    .msg.show-left  { animation: slideFromLeft  0.38s ease both; }
    .msg.show-right { animation: slideFromRight 0.38s ease both; }

    .typing-indicator {
      display: none;
      align-items: center;
      gap: 5px;
      padding: 12px 16px;
      background: var(--hover);
      border: 1px solid var(--border);
      border-radius: 10px;
      border-bottom-left-radius: 3px;
      align-self: flex-start;
      max-width: 72px;
    }

    .typing-indicator.visible { display: flex; }

    .typing-indicator span {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--muted);
      display: inline-block;
      animation: dotBounce 1.2s infinite ease-in-out;
    }

    .typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
    .typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

    .chat-body { overflow-y: auto; flex: 1; }

    .bryan-features { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }

    .bryan-feature { display: flex; gap: 16px; }

    .bf-icon {
      width: 36px; height: 36px;
      border-radius: 8px;
      background: var(--gold-dim);
      border: 1px solid rgba(201,168,76,0.15);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }

    .bf-icon svg { width: 17px; height: 17px; color: var(--gold); }

    .bf-title { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
    .bf-desc { font-size: 13px; color: var(--text); line-height: 1.65; font-weight: 300; }

    /* ── VALUE PROPS ── */
    .valueprops {
      padding: 120px 48px;
    }
    .vp-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
    }
    .vp-card {
      background: var(--card);
      padding: 40px 36px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      transition: background 0.2s ease;
    }
    .vp-card:hover {
      background: var(--hover);
    }
    .vp-icon {
      width: 38px;
      height: 38px;
      border-radius: 8px;
      background: rgba(201,168,76,0.1);
      border: 1px solid rgba(201,168,76,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .vp-icon svg {
      width: 18px;
      height: 18px;
      stroke: var(--gold);
    }
    .vp-title {
      font-family: var(--font-header);
      font-size: 17px;
      font-weight: 600;
      color: var(--white);
      line-height: 1.35;
    }
    .vp-desc {
      font-size: 14px;
      color: var(--sec);
      line-height: 1.75;
      font-weight: 300;
    }
    @media (max-width: 900px) {
      .valueprops { padding: 0 24px 80px; }
      .vp-grid { grid-template-columns: 1fr; }
    }

    /* ── SHOWCASE ── */
    .showcase { padding: 60px 48px 100px; }

    .showcase-scroll {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      max-width: 1280px;
      margin: 0 auto;
      align-items: start;
    }

    .showcase-header-inline {
      margin-bottom: 0;
    }

    .showcase-header-inline .section-title {
      font-size: clamp(22px, 2.8vw, 36px);
    }

    .showcase-header-inline .section-desc {
      font-size: 15px;
    }

    /* sticky image panel */
    .showcase-sticky {
      position: sticky;
      top: 20px;
      padding-right: 56px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .showcase-image-wrap {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: 0 32px 64px rgba(0,0,0,0.5);
      background: var(--card);
    }

    .showcase-image-wrap img {
      width: 100%;
      display: block;
      transition: opacity 0.4s ease;
    }

    .showcase-img-glow {
      position: absolute;
      bottom: -40px; left: 50%;
      transform: translateX(-50%);
      width: 80%; height: 80px;
      background: radial-gradient(ellipse, rgba(201,168,76,0.15) 0%, transparent 70%);
      pointer-events: none;
    }

    /* ── SC PANELS ── */
    .sc-panel {
      display: none;
      padding: 24px;
      animation: scFadeIn 0.35s ease;
    }

    .sc-panel.active { display: block; }

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

    .sc-section-label {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 16px;
      font-family: var(--font-body);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .sc-dropdown {
      font-size: 9px;
      color: var(--muted);
      border: 1px solid var(--border);
      padding: 2px 8px;
      border-radius: 4px;
    }

    .sc-two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .sc-card {
      background: #1a1a1a;
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 14px;
    }

    .sc-card-name {
      font-size: 11px;
      color: var(--sec);
      font-family: var(--font-body);
      margin-bottom: 4px;
    }

    .sc-big {
      font-family: var(--font-header);
      font-size: 26px;
      font-weight: 600;
      color: var(--white);
      letter-spacing: -0.02em;
      line-height: 1;
    }

    .sc-card-sub {
      font-size: 10px;
      color: var(--muted);
      font-family: var(--font-body);
      margin-bottom: 8px;
    }

    .sc-row-stats {
      display: flex;
      gap: 10px;
      align-items: center;
      margin-bottom: 10px;
    }

    .sc-roas {
      font-size: 11px;
      font-weight: 600;
      color: var(--white);
      font-family: var(--font-body);
    }

    .sc-roas em {
      font-style: normal;
      font-weight: 400;
      color: var(--muted);
      font-size: 10px;
    }

    .sc-pos {
      font-size: 11px;
      color: var(--green);
      font-family: var(--font-body);
    }

    .sc-chart {
      width: 100%;
      height: 40px;
      display: block;
    }

    .sc-chart-full {
      width: 100%;
      height: 70px;
      display: block;
    }

    .sc-axis {
      display: flex;
      justify-content: space-between;
      font-size: 9px;
      color: var(--muted);
      font-family: var(--font-body);
      margin-top: 4px;
    }

    /* Donut */
    .sc-donut-wrap {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .sc-donut-legend { flex: 1; display: flex; flex-direction: column; gap: 9px; }

    .sc-leg-row {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .sc-leg-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .sc-leg-label {
      font-size: 11px;
      color: var(--sec);
      font-family: var(--font-body);
      flex: 1;
    }

    .sc-leg-pct {
      font-size: 11px;
      font-weight: 600;
      color: var(--white);
      font-family: var(--font-body);
    }

    .sc-view-link {
      font-size: 12px;
      color: var(--gold);
      font-family: var(--font-body);
      cursor: pointer;
      margin-top: 14px;
    }

    /* Table */
    .sc-table {
      width: 100%;
      border-collapse: collapse;
      font-family: var(--font-body);
    }

    .sc-table th {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      text-align: left;
      padding: 0 8px 10px 0;
      border-bottom: 1px solid var(--border);
    }

    .sc-table th:not(:first-child) { text-align: right; }

    .sc-table td {
      font-size: 12px;
      color: var(--text);
      padding: 10px 8px 10px 0;
      border-bottom: 1px solid rgba(255,255,255,0.04);
      vertical-align: middle;
    }

    .sc-table td:not(:first-child) { text-align: right; }
    .sc-table tr:last-child td { border-bottom: none; }
    .sc-gold { color: var(--gold); font-weight: 600; }

    /* Bars */
    .sc-bars {
      display: flex;
      align-items: flex-end;
      gap: 8px;
      height: 100px;
      margin-top: 8px;
    }

    .sc-bar-wrap {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      gap: 6px;
      height: 100%;
    }

    .sc-bar {
      width: 100%;
      background: #2a2a2a;
      border-radius: 3px 3px 0 0;
      transition: height 0.4s ease;
    }

    .sc-bar-gold { background: var(--gold); }

    .sc-bar-label {
      font-size: 9px;
      color: var(--muted);
      font-family: var(--font-body);
    }

    .sc-bar-label-gold { color: var(--gold); }

    /* Insights grid */
    .sc-insights-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
    }

    .sc-insight-card {
      background: #1a1a1a;
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 14px;
    }

    .sc-insight-icon {
      width: 28px; height: 28px;
      border-radius: 50%;
      background: var(--gold-dim);
      border: 1px solid rgba(201,168,76,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 10px;
    }

    .sc-insight-type {
      font-size: 10px;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 0.06em;
      font-family: var(--font-body);
      margin-bottom: 6px;
    }

    .sc-insight-text {
      font-size: 11px;
      color: var(--sec);
      line-height: 1.6;
      font-family: var(--font-body);
    }

    /* progress bar */
    .showcase-progress {
      display: flex;
      gap: 6px;
      margin-top: 20px;
    }

    .sp-dot {
      height: 2px;
      flex: 1;
      background: var(--border);
      border-radius: 2px;
      transition: background 0.3s;
    }

    .sp-dot.active { background: var(--gold); }

    /* scrollable items */
    .showcase-items {
      padding-left: 8px;
    }

    .showcase-item {
      padding: 48px 0;
      border-bottom: 1px solid var(--border);
      opacity: 0.35;
      transition: opacity 0.4s ease;
      cursor: default;
    }

    .showcase-item:first-child { padding-top: 0; }
    .showcase-item:last-child { border-bottom: none; padding-bottom: 0; }
    .showcase-item.active { opacity: 1; }

    .si-num {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.14em;
      color: var(--gold);
      margin-bottom: 14px;
      font-family: var(--font-body);
    }

    .si-title {
      font-family: var(--font-header);
      font-size: 24px;
      font-weight: 400;
      color: var(--white);
      letter-spacing: -0.01em;
      line-height: 1.25;
      margin-bottom: 14px;
    }

    .si-text {
      font-size: 14px;
      color: var(--text);
      line-height: 1.8;
      font-weight: 300;
      max-width: 420px;
      margin-bottom: 20px;
    }

    .si-stat {
      display: flex;
      align-items: baseline;
      gap: 10px;
    }

    .si-stat-val {
      font-family: var(--font-header);
      font-size: 28px;
      font-weight: 600;
      color: var(--gold);
      letter-spacing: -0.02em;
    }

    .si-stat-label {
      font-size: 12px;
      color: var(--muted);
      font-family: var(--font-body);
    }

    /* integrations orbit */
    .int-orbit-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 0 24px;
    }

    .int-orbit-heading {
      text-align: center;
      margin-bottom: 64px;
    }

    .int-orbit-heading .section-eyebrow {
      margin-bottom: 16px;
    }

    .int-orbit-heading h2 {
      font-family: var(--font-header);
      font-size: clamp(28px, 3.2vw, 46px);
      font-weight: 500;
      color: var(--white);
      line-height: 1.2;
      letter-spacing: -0.01em;
    }

    .int-orbit-heading h2 strong {
      color: var(--gold);
      font-weight: 600;
    }

    .orbit-diagram {
      position: relative;
      width: 520px;
      height: 520px;
      flex-shrink: 0;
    }

    .orbit-lines {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }

    /* Center hub */
    .orbit-hub {
      position: absolute;
      left: 50%; top: 50%;
      transform: translate(-50%, -50%);
      width: 120px; height: 120px;
      border-radius: 50%;
      background: var(--card);
      border: 1.5px solid var(--gold);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
      box-shadow: 0 0 48px rgba(201,168,76,0.2), 0 0 0 12px rgba(201,168,76,0.04);
      z-index: 2;
      padding: 8px;
      text-align: center;
    }

    .orbit-hub-name {
      font-family: var(--font-header);
      font-size: 11px;
      font-weight: 600;
      color: var(--gold);
      line-height: 1.3;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .orbit-hub-sub {
      font-size: 8.5px;
      color: var(--muted);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      line-height: 1;
    }

    /* Orbit nodes */
    .orbit-node {
      position: absolute;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      cursor: default;
      z-index: 2;
      transform: translate(-50%, -50%);
      transition: transform 0.2s ease;
    }

    .orbit-node:hover { transform: translate(-50%, -50%) scale(1.1); }

    .orbit-node-icon {
      width: 70px; height: 70px;
      border-radius: 50%;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1.5px solid var(--gold);
      box-shadow: 0 0 16px rgba(201,168,76,0.15);
      transition: border-color 0.2s, box-shadow 0.2s;
      color: var(--gold);
      overflow: hidden;
    }

    .orbit-node-label {
      font-size: 10.5px;
      color: var(--muted);
      font-weight: 500;
      letter-spacing: 0.02em;
      white-space: nowrap;
      transition: color 0.2s;
    }

    .orbit-node-label { color: var(--text) !important; }
    .orbit-node:hover .orbit-node-label { color: var(--white) !important; }

    .int-note {
      font-size: 12px;
      color: var(--muted);
      text-align: center;
      margin-top: 32px;
      letter-spacing: 0.03em;
    }

    .insight-icon svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

    @media (max-width: 900px) {
      .showcase-scroll { grid-template-columns: 1fr; padding: 0 24px; }
      .showcase-sticky { display: none; }
      .showcase-item { opacity: 1; }
      .showcase-header { padding: 0 24px; }
      .orbit-diagram { width: 340px; height: 340px; transform: scale(0.85); transform-origin: top center; }
    }

    /* ── PRODUCT PREVIEW ── */
    .product-preview {
      padding: 80px 0;
      background: transparent;
      overflow: hidden;
    }

    .product-preview-header {
      text-align: center;
      margin-bottom: 80px;
      padding: 0 24px;
    }

    .product-preview-header .section-title {
      margin-bottom: 20px;
    }

    .product-preview-header .section-desc {
      max-width: 520px;
      margin: 0 auto;
    }

    .product-preview-full {
      position: relative;
      width: 100%;
    }

    .product-preview-img {
      width: 100%;
      display: block;
      border: none;
      border-bottom: none;
      box-shadow:
        0 -8px 48px rgba(201,168,76,0.06),
        0 -32px 80px rgba(0,0,0,0.5);
    }

    .product-preview-fade {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 40%;
      background: linear-gradient(to bottom, transparent 0%, var(--bg) 100%);
      pointer-events: none;
    }

    /* ── PLANS ── */
    .plans { background: transparent; }

    .plans-header { text-align: center; margin-bottom: 64px; }
    .plans-header .section-desc { margin: 0 auto; }

    .plans-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      max-width: 960px;
      margin: 0 auto;
    }

    .plan-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 36px 32px;
      position: relative;
      transition: border-color 0.2s;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .plan-card:hover { border-color: var(--muted); }

    .plan-card.featured {
      border-color: rgba(201,168,76,0.4);
      background: #131310;
    }

    .plan-featured-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--gold);
      color: #0a0a0a;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 4px 16px;
      border-radius: 20px;
    }

    .plan-name {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 16px;
    }

    .plan-price {
      font-size: 40px;
      font-weight: 300;
      color: var(--white);
      letter-spacing: -0.03em;
      margin-bottom: 4px;
    }

    .plan-price sup { font-size: 20px; font-weight: 400; vertical-align: super; }
    .plan-price span { font-size: 14px; font-weight: 400; color: var(--muted); }

    .plan-desc { font-size: 13px; color: var(--text); margin-bottom: 28px; line-height: 1.65; font-weight: 300; }

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

    .plan-features li {
      display: flex;
      gap: 10px;
      font-size: 13px;
      color: var(--text);
      align-items: flex-start;
      font-weight: 300;
      flex-direction: row;
    }

    .plan-features li > span {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .plan-feature-note {
      font-size: 11px;
      color: var(--muted);
      font-weight: 300;
      line-height: 1.4;
    }

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

    .plan-cta {
      display: block;
      text-align: center;
      padding: 12px;
      border-radius: 7px;
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      letter-spacing: 0.04em;
      transition: all 0.15s;
    }

    .plan-cta.gold { background: var(--gold); color: #0a0a0a; }
    .plan-cta.gold:hover { background: var(--gold-h); }
    .plan-cta.outline { border: 1px solid var(--border); color: var(--sec); }
    .plan-cta.outline:hover { border-color: var(--muted); color: var(--white); }

    .plans-note { text-align: center; margin-top: 32px; font-size: 13px; color: var(--muted); }

    /* ── FAQ ── */
    /* POPUP */
    .popup-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.75);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s ease;
    }
    .popup-overlay.active {
      opacity: 1;
      pointer-events: all;
    }
    .popup-box {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 48px 40px;
      max-width: 480px;
      width: 100%;
      position: relative;
      transform: translateY(16px);
      transition: transform 0.25s ease;
    }
    .popup-overlay.active .popup-box {
      transform: translateY(0);
    }
    .popup-close {
      position: absolute;
      top: 16px;
      right: 20px;
      background: none;
      border: none;
      color: var(--muted);
      font-size: 22px;
      cursor: pointer;
      line-height: 1;
      transition: color 0.15s;
    }
    .popup-close:hover { color: var(--white); }
    .popup-eyebrow {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }
    .popup-title {
      font-size: 26px;
      font-weight: 300;
      color: var(--white);
      letter-spacing: -0.02em;
      margin-bottom: 10px;
    }
    .popup-sub {
      font-size: 13px;
      color: var(--secondary);
      line-height: 1.7;
      margin-bottom: 28px;
    }
    .popup-form { display: flex; flex-direction: column; gap: 16px; }
    .popup-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 10px; }
    .popup-field label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--secondary);
    }
    .popup-field input {
      background: var(--hover);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 12px 16px;
      color: var(--white);
      font-size: 14px;
      font-family: inherit;
      outline: none;
      transition: border-color 0.15s;
    }
    .popup-field input::placeholder { color: var(--muted); }
    .popup-field input:focus { border-color: var(--gold); }
    .popup-submit {
      margin-top: 8px;
      background: var(--gold);
      color: #0a0a0a;
      border: none;
      border-radius: 8px;
      padding: 14px;
      font-size: 14px;
      font-weight: 600;
      font-family: inherit;
      cursor: pointer;
      transition: background 0.15s, transform 0.15s;
    }
    .popup-submit:hover { background: var(--gold-h); transform: translateY(-1px); }
    .popup-note {
      text-align: center;
      font-size: 12px;
      color: var(--muted);
      margin-top: 4px;
    }
    @media (max-width: 600px) {
      .popup-box { padding: 32px 24px; }
    }

    /* HUBSPOT POPUP — light theme */
    .popup-survey {
      background: #ffffff !important;
      border-color: #e5e7eb !important;
      max-width: 680px !important;
      padding: 32px 20px !important;
      max-height: 80vh;
      overflow-y: auto;
      scrollbar-width: thin;
      scrollbar-color: #d1d5db transparent;
    }
    .popup-survey::-webkit-scrollbar { width: 5px; }
    .popup-survey::-webkit-scrollbar-track { background: transparent; }
    .popup-survey::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 3px; }

    /* Close button, eyebrow, title */
    .popup-survey .popup-close { color: #9ca3af; }
    .popup-survey .popup-close:hover { color: #111111; }
    .popup-survey .popup-eyebrow { color: var(--gold); }
    .popup-survey .popup-title { color: #111111; }
    .popup-survey .popup-sub { color: #6b7280; margin-bottom: 20px; }

    /* All text → dark */
    .popup-survey,
    .popup-survey label,
    .popup-survey .hs-form-field > label,
    .popup-survey .hs-form-booleancheckbox label,
    .popup-survey .inputs-list label,
    .popup-survey .hs-field-desc,
    .popup-survey legend,
    .popup-survey .hs-richtext,
    .popup-survey p { color: #111111 !important; }

    .popup-survey .hs-field-desc,
    .popup-survey .hs-richtext p { color: #6b7280 !important; font-size: 13px !important; }

    /* Inputs & selects */
    .popup-survey input[type="text"],
    .popup-survey input[type="email"],
    .popup-survey input[type="tel"],
    .popup-survey textarea,
    .popup-survey select {
      background: #f9fafb !important;
      border: 1px solid #d1d5db !important;
      border-radius: 8px !important;
      color: #111111 !important;
      font-family: inherit !important;
      font-size: 14px !important;
      padding: 11px 14px !important;
    }
    .popup-survey input::placeholder,
    .popup-survey textarea::placeholder { color: #9ca3af !important; }
    .popup-survey input:focus,
    .popup-survey textarea:focus,
    .popup-survey select:focus { border-color: var(--gold) !important; outline: none !important; box-shadow: 0 0 0 3px rgba(201,168,76,0.12) !important; }

    /* Radio / checkbox labels */
    .popup-survey .inputs-list li label { color: #374151 !important; }

    /* Submit button */
    .popup-survey input[type="submit"],
    .popup-survey .hs-button {
      background: var(--gold) !important;
      color: #0a0a0a !important;
      border: none !important;
      border-radius: 8px !important;
      padding: 13px 24px !important;
      font-family: inherit !important;
      font-size: 14px !important;
      font-weight: 600 !important;
      cursor: pointer !important;
      transition: background 0.15s !important;
      width: 100% !important;
    }
    .popup-survey input[type="submit"]:hover,
    .popup-survey .hs-button:hover { background: var(--gold-h) !important; }

    /* Error messages */
    .popup-survey .hs-error-msgs label { color: #dc2626 !important; font-size: 12px !important; }

    /* AUTH POPUP */
    .nav-login { color: #a0a0a0; font-size: 0.875rem; letter-spacing: 0.02em; transition: color 0.2s; }
    .nav-login:hover { color: #ffffff; }
    .auth-tabs { display: flex; border-bottom: 1px solid #1f1f1f; margin-bottom: 1.5rem; }
    .auth-tab {
      flex: 1;
      background: none;
      border: none;
      border-bottom: 2px solid transparent;
      padding: 0.625rem 0;
      font-size: 0.75rem;
      font-family: inherit;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #555555;
      cursor: pointer;
      transition: color 0.2s, border-color 0.2s;
      margin-bottom: -1px;
    }
    .auth-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
    .auth-tab:hover:not(.active) { color: #a0a0a0; }
    .auth-panel { display: none; }
    .auth-panel.active { display: block; }
    .auth-error {
      display: none;
      background: rgba(248,113,113,0.08);
      border: 1px solid rgba(248,113,113,0.25);
      color: #f87171;
      font-size: 0.8125rem;
      padding: 0.625rem 0.875rem;
      border-radius: 6px;
      margin-bottom: 1rem;
      line-height: 1.5;
    }
    .auth-error.visible { display: block; }
    .auth-switch { text-align: center; font-size: 0.8125rem; color: #555555; margin-top: 1.25rem; margin-bottom: 0; }
    .auth-switch-link { color: var(--gold); text-decoration: none; transition: color 0.2s; }
    .auth-switch-link:hover { color: var(--gold-h); }

    /* TEAM */
    .team-section {
      padding: 120px 24px;
      background: transparent;
    }
    .team-inner {
      max-width: 1100px;
      margin: 0 auto;
      text-align: center;
    }
    .team-inner .section-desc {
      max-width: 600px;
      margin: 0 auto 64px;
    }
    .team-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      text-align: center;
    }
    .team-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 40px 28px 32px;
      display: flex;
      flex-direction: column;
      align-items: center;
      transition: border-color 0.2s;
    }
    .team-card:hover { border-color: var(--gold); }
    .team-photo-wrap {
      width: 160px;
      height: 160px;
      border-radius: 50%;
      overflow: hidden;
      border: 2px solid var(--border);
      margin-bottom: 20px;
      background: var(--hover);
    }
    .team-photo {
      width: 100%;
      height: 125%;
      object-fit: cover;
      object-position: center 10%;
      margin-top: -10%;
      display: block;
    }
    .team-name {
      font-size: 16px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 4px;
    }
    .team-role {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .team-role-full {
      font-size: 11px;
      color: var(--muted);
      margin-bottom: 16px;
    }
    .team-bio {
      font-size: 13px;
      color: var(--secondary);
      line-height: 1.7;
      margin-bottom: 24px;
      flex: 1;
    }
    .team-links {
      display: flex;
      gap: 12px;
      justify-content: center;
    }
    .team-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      font-weight: 500;
      color: var(--secondary);
      text-decoration: none;
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 6px 12px;
      transition: color 0.2s, border-color 0.2s;
    }
    .team-link:hover { color: var(--gold); border-color: var(--gold); }
    .team-link-soon { opacity: 0.45; cursor: default; pointer-events: none; }
    @media (max-width: 768px) {
      .team-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    }

    .faq-inner { max-width: 720px; margin: 0 auto; }
    .faq-inner .section-eyebrow, .faq-inner .section-title { text-align: center; }
    .faq-inner .section-title { margin-bottom: 48px; }

    .faq { display: flex; flex-direction: column; gap: 2px; }

    .faq-item { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }

    .faq-q {
      width: 100%;
      text-align: left;
      background: var(--card);
      border: none;
      padding: 20px 24px;
      font-size: 15px;
      font-weight: 500;
      color: var(--white);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      font-family: var(--font);
      transition: background 0.15s;
    }

    .faq-q:hover { background: var(--hover); }
    .faq-arrow { color: var(--gold); font-size: 20px; transition: transform 0.2s; flex-shrink: 0; }
    .faq-item.open .faq-arrow { transform: rotate(45deg); }

    .faq-a {
      display: none;
      padding: 24px 20px;
      background: var(--card);
      font-size: 14px;
      color: var(--text);
      line-height: 1.8;
      font-weight: 300;
    }

    .faq-item.open .faq-a { display: block; }

    /* ── CTA FINAL ── */
    .cta-section {
      background: transparent;
      border-top: 1px solid var(--border);
      text-align: center;
      padding-top: 120px;
    }

    .cta-inner { max-width: 640px; margin: 0 auto; }

    .cta-inner { max-width: 640px; margin: 0 auto; }

    .cta-title {
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 300;
      letter-spacing: -0.02em;
      line-height: 1.15;
      margin-bottom: 20px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-title strong { font-weight: 600; color: var(--gold); }

    .cta-sub { font-size: 17px; color: var(--text); margin-bottom: 40px; line-height: 1.8; font-weight: 300; max-width: 450px; margin-left: auto; margin-right: auto; }

    .cta-actions { display: flex; flex-direction: column; align-items: center; gap: 12px; }

    /* ── FOOTER ── */
    footer {
      border-top: 1px solid var(--border);
      padding: 80px 48px;
    }

    .footer-inner {
      max-width: 1440px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-logo { font-size: 14px; font-weight: 700; letter-spacing: 0.06em; color: var(--white); }
    .footer-logo span { color: var(--gold); }

    .footer-links { display: flex; gap: 28px; }
    .footer-links a { font-size: 12px; color: var(--muted); text-decoration: none; transition: color 0.15s; }
    .footer-links a:hover { color: var(--sec); }

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

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 0 24px; }
      .nav-links { display: none; }
      .hero { padding: 80px 24px; background-position: 75% center; }
      .hero-sub { max-width: 280px; }
      .hero::before {
        content: '';
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.1) 100%);
        z-index: 0;
        pointer-events: none;
      }
      .hero-inner { grid-template-columns: 1fr; gap: 48px; }
      .hero-visual { display: none; }
      section { padding: 80px 24px; }
      .problem-grid { grid-template-columns: 1fr; }
      .features-grid { grid-template-columns: 1fr 1fr; }
      .bryan-inner { grid-template-columns: 1fr; gap: 48px; }
      .integration-grid { grid-template-columns: repeat(2, 1fr); }
      .plans-grid { grid-template-columns: 1fr; max-width: 400px; }
      footer { padding: 80px 24px; }
      .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
      .footer-links { flex-wrap: wrap; justify-content: center; }
    }

    @media (max-width: 600px) {
      .features-grid { grid-template-columns: 1fr; }
      .integration-grid { grid-template-columns: 1fr; }
      .dots-strip { flex-wrap: wrap; gap: 12px; }
    }

    /* ── VALUE STACK / COMPARISON ── */
    .vs-section {
      padding: 60px 48px;
      border-top: 1px solid var(--border);
    }

    .vs-header {
      text-align: center;
      max-width: 660px;
      margin: 0 auto 72px;
    }

    .vs-header .section-desc {
      margin: 0 auto;
    }

    .vs-table {
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      max-width: 960px;
      margin: 0 auto;
    }

    .vs-row {
      display: grid;
      grid-template-columns: 2.5fr 2fr 1fr;
      border-bottom: 1px solid var(--border);
    }

    .vs-row:last-child { border-bottom: none; }

    .vs-row-header { background: rgba(255,255,255,0.025); }

    .vs-col-feature,
    .vs-col-replaces,
    .vs-col-cost,
    .vs-col-laps {
      padding: 20px 28px;
      display: flex;
      align-items: center;
    }

    .vs-col-feature  { border-right: 1px solid var(--border); }
    .vs-col-replaces { border-right: 1px solid var(--border); gap: 7px; flex-wrap: wrap; }
    .vs-col-cost     { border-right: 1px solid var(--border); }
    .vs-col-laps     { justify-content: center; background: rgba(201,168,76,0.04); }

    .vs-row-header .vs-col-feature,
    .vs-row-header .vs-col-replaces,
    .vs-row-header .vs-col-cost {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .vs-row-header .vs-col-laps {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .vs-feature-wrap { display: flex; flex-direction: column; gap: 4px; }

    .vs-feature-name {
      font-size: 12px;
      font-weight: 700;
      color: var(--white);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .vs-feature-note {
      font-size: 12px;
      color: var(--muted);
      font-weight: 300;
      text-transform: none;
      letter-spacing: 0;
    }

    .vs-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      font-size: 8px;
      font-weight: 800;
      letter-spacing: 0.01em;
      color: #fff;
      flex-shrink: 0;
    }

    .vs-badge-na {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 22px;
      padding: 0 10px;
      border-radius: 4px;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--muted);
      border: 1px solid var(--border);
    }

    .vs-cost-wrap { display: flex; flex-direction: column; gap: 3px; }

    .vs-cost-amount {
      font-size: 14px;
      font-weight: 500;
      color: var(--text);
    }

    .vs-cost-subnote {
      font-size: 11px;
      color: var(--muted);
      font-weight: 300;
    }

    .vs-cost-none {
      font-size: 12px;
      color: var(--muted);
      font-style: italic;
      font-weight: 300;
    }

    .vs-check {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: var(--gold-dim);
      border: 1px solid rgba(201,168,76,0.25);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .vs-check svg {
      width: 14px;
      height: 14px;
      stroke: var(--gold);
    }

    /* Total row */
    .vs-row-total {
      background: rgba(201,168,76,0.03);
    }

    .vs-row-total .vs-feature-name {
      font-size: 11px;
      color: var(--muted);
      font-weight: 600;
    }

    .vs-total-bad-price {
      font-size: 20px;
      font-weight: 600;
      color: var(--text);
    }

    .vs-total-bad-note {
      font-size: 11px;
      color: var(--muted);
      margin-top: 4px;
      line-height: 1.6;
    }

    .vs-total-good {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 4px;
    }

    .vs-total-good-price {
      font-size: 20px;
      font-weight: 600;
      color: var(--gold);
    }

    .vs-total-good-note {
      font-size: 11px;
      color: rgba(201,168,76,0.55);
      line-height: 1.6;
      text-align: center;
    }

    /* Positioning statement */
    .vs-statement {
      margin-top: 88px;
      text-align: center;
    }

    .vs-statement-eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 20px;
    }

    .vs-statement-headline {
      font-size: clamp(30px, 4vw, 54px);
      font-weight: 300;
      letter-spacing: -0.025em;
      line-height: 1.1;
      color: var(--white);
      margin-bottom: 0;
    }

    .vs-statement-headline strong {
      font-weight: 600;
      color: var(--gold);
    }

    .vs-statement-sub {
      font-size: clamp(28px, 3.5vw, 48px);
      font-weight: 300;
      letter-spacing: -0.02em;
      line-height: 1.1;
      color: var(--white);
      margin-bottom: 36px;
    }

    .vs-statement-sub strong { font-weight: 600; }

    .vs-statement-divider {
      width: 48px;
      height: 1px;
      background: var(--gold);
      margin: 0 auto 36px;
      opacity: 0.4;
    }

    .vs-statement-body {
      font-size: 17px;
      color: var(--text);
      line-height: 1.85;
      font-weight: 300;
      max-width: 620px;
      margin: 0 auto;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .vs-row { grid-template-columns: 2fr 2fr 0.8fr; }
      .vs-col-feature,
      .vs-col-cost,
      .vs-col-laps { padding: 16px 18px; }
    }

    @media (max-width: 680px) {
      .vs-section { padding: 80px 24px; }
      .vs-row { grid-template-columns: 1fr 1.4fr 0.7fr; }
    }

/* ===== UTILITY CLASSES (extracted from inline styles) ===== */

.orbit-hub-name { margin-top: 0; }

.scroll-arrow-shadow {
  margin-top: -10px;
  opacity: 0.35;
}

.section-title--vp {
  margin-bottom: 48px;
}

.mb-0 {
  margin-bottom: 0;
}

.sc-mb-xs {
  margin-bottom: 2px;
}

.sc-pos--sm {
  margin-bottom: 16px;
  font-size: 12px;
}

.sc-view-link--mt {
  margin-top: 16px;
}

.sc-view-link--sm {
  margin-top: 10px;
  font-size: 11px;
}

.cta-logo-img {
  height: 28px;
  margin-bottom: 0;
  opacity: 0.85;
}

.btn-full {
  max-width: 300px;
  width: 100%;
  justify-content: center;
}

.btn-full--sm {
  max-width: 200px;
  width: 100%;
  justify-content: center;
}

.form-optional {
  color: var(--muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.text-red {
  color: var(--red);
}

