    /* ─────────────────────────────────────────
       DESIGN TOKENS
    ───────────────────────────────────────── */
    :root {
      --bg: #080808;
      --linen: #f4f1eb;
      --gold: #c9973a;
      --gold-light: #e8c97a;
      --ember: #b84025;
      --stone: #a09880;
      --white: #f8f6f2;
      --dark-card: #111111;
      --border: rgba(201, 151, 58, 0.2);

      --font-display: 'Cormorant Garamond', Georgia, serif;
      --font-mono: 'DM Mono', 'Courier New', monospace;
      --font-body: 'Figtree', system-ui, sans-serif;

      --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* ─────────────────────────────────────────
       RESET & BASE
    ───────────────────────────────────────── */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

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

    body {
      background: var(--bg);
      color: var(--white);
      font-family: var(--font-body);
      font-weight: 400;
      line-height: 1.6;
      overflow-x: hidden;
      cursor: none;
    }

    body.touch-device {
      cursor: auto;
    }

    /* Grain texture overlay */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 9999;
      opacity: 0.035;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' 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)'/%3E%3C/svg%3E");
      background-size: 256px 256px;
    }

    /* ─────────────────────────────────────────
       CUSTOM CURSOR
    ───────────────────────────────────────── */
    .cursor {
      position: fixed;
      width: 12px;
      height: 12px;
      background: var(--gold);
      border-radius: 50%;
      pointer-events: none;
      z-index: 99999;
      transform: translate(-50%, -50%);
      transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
      mix-blend-mode: normal;
    }

    .cursor-ring {
      position: fixed;
      width: 12px;
      height: 12px;
      border: 1.5px solid var(--gold);
      border-radius: 50%;
      pointer-events: none;
      z-index: 99998;
      transform: translate(-50%, -50%);
      transition: width 0.35s ease, height 0.35s ease, border-color 0.2s ease;
      opacity: 0.6;
    }

    .cursor.cursor--hover {
      width: 8px;
      height: 8px;
      background: var(--gold-light);
    }

    .cursor-ring.cursor-ring--hover {
      width: 44px;
      height: 44px;
      border-color: var(--gold-light);
      opacity: 0.4;
    }

    .touch-device .cursor,
    .touch-device .cursor-ring {
      display: none;
    }

    /* ─────────────────────────────────────────
       TYPOGRAPHY UTILITIES
    ───────────────────────────────────────── */
    .font-display { font-family: var(--font-display); }
    .font-mono { font-family: var(--font-mono); }

    .eyebrow {
      font-family: var(--font-mono);
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      font-weight: 500;
      line-height: 1.15;
    }

    .tag-pill {
      display: inline-block;
      font-family: var(--font-mono);
      font-size: 0.65rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.3rem 0.75rem;
      border: 1px solid var(--border);
      border-radius: 2px;
      color: var(--stone);
    }

    /* ─────────────────────────────────────────
       LAYOUT UTILITIES
    ───────────────────────────────────────── */
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    .container--narrow {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    /* ─────────────────────────────────────────
       SCROLL REVEAL
    ───────────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
                  transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .reveal.revealed {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }

    /* ─────────────────────────────────────────
       GOLD LINE DIVIDER
    ───────────────────────────────────────── */
    .gold-line {
      height: 1px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .gold-line.animated {
      transform: scaleX(1);
    }

    /* ─────────────────────────────────────────
       LOADER
    ───────────────────────────────────────── */
    body.loading { overflow: hidden; }
    body.loading .cursor,
    body.loading .cursor-ring,
    body.loading .nav { opacity: 0; pointer-events: none; }

    #loader {
      position: fixed;
      inset: 0;
      z-index: 999999;
      background: var(--bg);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1),
                  opacity 0.7s cubic-bezier(0.76, 0, 0.24, 1);
    }

    #loader.loader-exit {
      transform: translateY(-100%);
      opacity: 0;
    }

    .loader-logo {
      font-family: var(--font-display);
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 300;
      color: var(--white);
      letter-spacing: 0.04em;
      opacity: 0;
      animation: loaderFadeIn 0.6s ease 0.2s forwards;
    }

    .loader-logo em {
      font-style: normal;
      color: var(--gold);
    }

    .loader-line {
      display: block;
      width: 120px;
      height: 1px;
      background: var(--gold);
      margin-top: 1.2rem;
      transform: scaleX(0);
      transform-origin: left;
      animation: loaderSweep 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
    }

    @keyframes loaderFadeIn {
      to { opacity: 1; }
    }

    @keyframes loaderSweep {
      to { transform: scaleX(1); }
    }

    /* ─────────────────────────────────────────
       BUTTONS
    ───────────────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
      font-family: var(--font-mono);
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 1rem 2.2rem;
      border-radius: 2px;
      transition: all 0.3s ease;
      cursor: none;
    }

    .btn-gold {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
      background: var(--gold);
      color: #080808;
      border: 1px solid var(--gold);
    }

    .btn-gold:hover {
      background: var(--white);
      border-color: var(--white);
      color: #080808;
    }

    .btn-dark {
      background: #080808;
      color: var(--gold);
      border: 1px solid var(--gold);
    }

    .btn-dark:hover {
      background: var(--gold);
      color: #080808;
    }

    .btn-large {
      padding: 1.2rem 3rem;
      font-size: 0.82rem;
    }

    /* ─────────────────────────────────────────
       NAVIGATION
    ───────────────────────────────────────── */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 1.5rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background 0.4s ease, backdrop-filter 0.4s ease,
                  padding 0.4s ease, border-bottom 0.4s ease;
      border-bottom: 1px solid transparent;
    }

    .nav.scrolled {
      background: rgba(8, 8, 8, 0.95);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      padding: 1rem 2rem;
      border-bottom-color: rgba(201, 151, 58, 0.12);
    }

    .nav-logo {
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-weight: 500;
      color: var(--white);
      text-decoration: none;
      letter-spacing: 0.01em;
    }

    .nav-logo em {
      font-style: italic;
      color: var(--gold);
    }

    .nav-left {
      display: flex;
      align-items: center;
      gap: 1.2rem;
    }

    .nav-center {
      display: flex;
      align-items: center;
      gap: 2rem;
    }

    /* Nav links */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
      list-style: none;
    }

    .nav-link {
      font-family: var(--font-mono);
      font-size: 0.68rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--stone);
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .nav-link:hover {
      color: var(--gold);
    }

    /* Hamburger */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      background: none;
      border: none;
      padding: 0.4rem;
      cursor: none;
      z-index: 1002;
      position: relative;
    }

    .nav-hamburger span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--white);
      border-radius: 2px;
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                  opacity 0.25s ease;
      transform-origin: center;
    }

    .nav-hamburger.open span:nth-child(1) {
      transform: translateY(6.5px) rotate(45deg);
    }
    .nav-hamburger.open span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }
    .nav-hamburger.open span:nth-child(3) {
      transform: translateY(-6.5px) rotate(-45deg);
    }

    /* Mobile overlay menu */
    .nav-mobile-menu {
      position: fixed;
      inset: 0;
      background: rgba(8, 8, 8, 0.98);
      z-index: 1000;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }

    .nav-mobile-menu.open {
      opacity: 1;
      pointer-events: all;
    }

    .nav-mobile-link {
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 8vw, 3rem);
      font-weight: 400;
      font-style: italic;
      color: var(--white);
      text-decoration: none;
      padding: 0.8rem 2rem;
      letter-spacing: 0.01em;
      transition: color 0.2s ease;
      opacity: 0;
      transform: translateY(16px);
      transition: color 0.2s ease,
                  opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                  transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-mobile-menu.open .nav-mobile-link:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.05s; }
    .nav-mobile-menu.open .nav-mobile-link:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.1s; }
    .nav-mobile-menu.open .nav-mobile-link:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.15s; }
    .nav-mobile-menu.open .nav-mobile-link:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.2s; }
    .nav-mobile-menu.open .nav-mobile-cta { opacity: 1; transform: none; transition-delay: 0.27s; }

    .nav-mobile-link:hover { color: var(--gold); }

    .nav-mobile-divider {
      width: 40px;
      height: 1px;
      background: rgba(201, 151, 58, 0.25);
      margin: 1.5rem 0;
    }

    .nav-mobile-cta {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .live-pill {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--font-mono);
      font-size: 0.65rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--stone);
      padding: 0.4rem 0.9rem;
      border: 1px solid rgba(201, 151, 58, 0.15);
      border-radius: 100px;
      background: rgba(201, 151, 58, 0.05);
    }

    .live-dot {
      width: 6px;
      height: 6px;
      background: #22c55e;
      border-radius: 50%;
      box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
      animation: pulse-green 2s ease-in-out infinite;
    }

    @keyframes pulse-green {
      0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(34, 197, 94, 0.6); }
      50% { opacity: 0.6; box-shadow: 0 0 4px rgba(34, 197, 94, 0.3); }
    }

    /* ─────────────────────────────────────────
       HERO SECTION
    ───────────────────────────────────────── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      padding: 10rem 2rem 6rem;
    }

    .hero-bg {
      position: absolute;
      inset: -20%;
      background-image: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1800&q=80');
      background-size: cover;
      background-position: center;
      will-change: transform;
      z-index: 0;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.35);
      z-index: 1;
    }

    .hero-glow {
      position: absolute;
      top: 30%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(201, 151, 58, 0.06) 0%, transparent 70%);
      pointer-events: none;
      z-index: 2;
    }

    .hero-content {
      position: relative;
      z-index: 3;
      text-align: center;
      max-width: 900px;
      width: 100%;
      will-change: transform;
    }

    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(3.5rem, 8vw, 7rem);
      line-height: 1.05;
      letter-spacing: -0.01em;
      margin: 1.2rem 0 1.5rem;
    }

    .hero h1 .line-italic {
      display: block;
      font-style: italic;
      font-weight: 400;
      color: var(--gold);
    }

    .hero h1 .line-bold {
      display: block;
      font-weight: 700;
      color: var(--white);
    }

    .hero-gold-line {
      width: 120px;
      margin: 0 auto 2rem;
    }

    .hero-sub {
      font-family: var(--font-body);
      font-size: clamp(1rem, 2vw, 1.15rem);
      color: rgba(248, 246, 242, 0.72);
      max-width: 640px;
      margin: 0 auto 2.5rem;
      line-height: 1.7;
    }

    .hero-cta-group {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }

    .hero-guarantee {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      letter-spacing: 0.1em;
      color: var(--stone);
      text-transform: uppercase;
    }

    /* Stats bar */
    .hero-stats {
      position: relative;
      z-index: 3;
      width: 100%;
      max-width: 900px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      margin-top: 5rem;
      border-top: 1px solid rgba(201, 151, 58, 0.18);
    }

    .hero-stat {
      padding: 2.5rem 2rem;
      text-align: center;
      border-right: 1px solid rgba(201, 151, 58, 0.18);
    }

    .hero-stat:last-child {
      border-right: none;
    }

    .hero-stat-number {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 600;
      color: var(--gold);
      line-height: 1;
      display: block;
      margin-bottom: 0.6rem;
    }

    .hero-stat-number sup {
      font-size: 0.5em;
      vertical-align: super;
    }

    .hero-stat-label {
      font-family: var(--font-body);
      font-size: 0.82rem;
      color: var(--stone);
      line-height: 1.5;
    }

    /* ─────────────────────────────────────────
       EXCLUSIVITY BLOCK
    ───────────────────────────────────────── */
    .exclusivity-block {
      background: rgba(255,255,255,0.03);
      border-top: 1px solid rgba(212,180,131,0.2);
      border-bottom: 1px solid rgba(212,180,131,0.2);
      padding: 2rem 1.5rem;
      text-align: center;
    }
    .exclusivity-inner {
      max-width: 680px;
      margin: 0 auto;
    }
    .exclusivity-lock {
      font-family: var(--font-display);
      font-size: clamp(1.1rem, 2vw, 1.4rem);
      font-weight: 600;
      color: var(--ember);
      margin: 0 0 0.5rem;
    }
    .exclusivity-body {
      font-size: 0.95rem;
      color: var(--ash);
      margin: 0 0 1rem;
    }
    .exclusivity-link {
      font-family: var(--font-mono);
      font-size: 0.85rem;
      color: var(--gold);
      text-decoration: none;
      letter-spacing: 0.04em;
      transition: opacity 0.2s;
    }
    .exclusivity-link:hover { opacity: 0.75; }

    /* ─────────────────────────────────────────
       STATEMENT BREAK
    ───────────────────────────────────────── */
    .statement {
      background: var(--linen);
      padding: 6rem 2rem;
    }

    .statement-inner {
      max-width: 860px;
      margin: 0 auto;
    }

    .statement-card {
      background: #111;
      padding: 3.5rem 4rem;
      border-left: 3px solid var(--gold);
      position: relative;
    }

    .statement-card::before {
      content: '\201C';
      font-family: var(--font-display);
      font-size: 8rem;
      color: var(--gold);
      opacity: 0.15;
      position: absolute;
      top: -1rem;
      left: 2rem;
      line-height: 1;
      pointer-events: none;
    }

    .statement-quote {
      font-family: var(--font-display);
      font-size: clamp(1.4rem, 3vw, 2.1rem);
      font-style: italic;
      font-weight: 400;
      color: var(--white);
      line-height: 1.45;
      margin-bottom: 1.5rem;
    }

    .statement-attribution {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--stone);
    }

    /* ─────────────────────────────────────────
       PROBLEM SECTION
    ───────────────────────────────────────── */
    .problem {
      position: relative;
      padding: 8rem 2rem;
      overflow: hidden;
    }

    .problem-bg {
      position: absolute;
      inset: -10%;
      background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600&q=80');
      background-size: cover;
      background-position: center;
      z-index: 0;
    }

    .problem-overlay {
      position: absolute;
      inset: 0;
      background: rgba(8, 8, 8, 0.92);
      z-index: 1;
    }

    .problem-content {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
      max-width: 1200px;
      margin: 0 auto;
    }

    .problem-left h2 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 500;
      line-height: 1.2;
      margin: 1rem 0 1.5rem;
    }

    .problem-left h2 em {
      font-style: italic;
      color: var(--gold);
    }

    .problem-left p {
      color: rgba(248, 246, 242, 0.65);
      font-size: 0.95rem;
      line-height: 1.75;
      margin-bottom: 1rem;
    }

    .pain-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .pain-card {
      padding: 1.8rem;
      border: 1px solid rgba(201, 151, 58, 0.15);
      background: rgba(8, 8, 8, 0.6);
      transition: background var(--transition), border-color var(--transition);
      cursor: default;
    }

    .pain-card:hover {
      background: rgba(0, 0, 0, 0.95);
      border-color: rgba(201, 151, 58, 0.35);
    }

    .pain-icon {
      font-size: 1.4rem;
      margin-bottom: 0.75rem;
      display: block;
    }

    .pain-card h4 {
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 0.4rem;
    }

    .pain-card p {
      font-size: 0.82rem;
      color: var(--stone);
      line-height: 1.55;
    }

    /* ─────────────────────────────────────────
       SOLUTION TIMELINE
    ───────────────────────────────────────── */
    .solution {
      background: #ffffff;
      padding: 8rem 2rem;
    }

    .solution-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: end;
      margin-bottom: 5rem;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .solution-header h2 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 500;
      line-height: 1.2;
      color: #1a1a1a;
    }

    .solution-header p {
      color: #4a4a4a;
      font-size: 0.95rem;
      line-height: 1.75;
      padding-top: 0.5rem;
    }

    .timeline {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
    }

    .timeline::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 1px;
      background: rgba(201, 151, 58, 0.4);
    }

    .timeline-item {
      position: relative;
      padding: 2.5rem 0 2.5rem 3.5rem;
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .timeline-item:last-child {
      border-bottom: none;
    }

    .timeline-dot {
      position: absolute;
      left: -5px;
      top: 2.8rem;
      width: 11px;
      height: 11px;
      background: #ffffff;
      border: 1.5px solid var(--gold);
      border-radius: 50%;
      transition: box-shadow 0.5s ease;
      z-index: 1;
    }

    .timeline-item.glowing .timeline-dot {
      box-shadow: 0 0 20px rgba(201, 151, 58, 0.6);
      background: var(--gold);
    }

    .timeline-line-fill {
      position: absolute;
      left: 0;
      top: 0;
      width: 1px;
      height: 0;
      background: var(--gold);
      transition: height 1s ease;
      z-index: 1;
    }

    .timeline-item.glowing .timeline-line-fill {
      height: 100%;
    }

    .timeline-step {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      color: var(--stone);
      margin-bottom: 0.5rem;
    }

    .timeline-title {
      font-family: var(--font-display);
      font-size: 1.6rem;
      font-weight: 600;
      color: #1a1a1a;
      margin-bottom: 0.75rem;
    }

    .timeline-title span {
      color: var(--gold);
    }

    .timeline-body {
      font-size: 0.9rem;
      color: #4a4a4a;
      line-height: 1.7;
      margin-bottom: 1rem;
    }

    .timeline-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    /* Compound Effect (Layer 05) highlight */
    .timeline-item--compound {
      border: 1px solid rgba(201, 151, 58, 0.3);
      background: rgba(201, 151, 58, 0.03);
      padding: 2.5rem 2rem 2.5rem 3.5rem;
      margin-left: -1rem;
      padding-left: 4.5rem;
    }

    .timeline-item--compound .timeline-title {
      font-size: 1.8rem;
    }

    .compound-badge {
      display: inline-block;
      font-family: var(--font-mono);
      font-size: 0.6rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 0.25rem 0.65rem;
      background: var(--gold);
      color: #080808;
      border-radius: 2px;
      margin-bottom: 0.75rem;
    }

    /* ─────────────────────────────────────────
       ROI CALCULATOR
    ───────────────────────────────────────── */
    .roi {
      background: var(--linen);
      padding: 8rem 2rem;
    }

    .roi-inner {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 5rem;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    .roi-left h2 {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 500;
      color: #1a1612;
      line-height: 1.25;
      margin: 1rem 0 1.2rem;
    }

    .roi-left h2 em {
      font-style: italic;
      color: var(--ember);
    }

    .roi-left p {
      color: #5a5040;
      font-size: 0.95rem;
      line-height: 1.75;
    }

    .roi-calculator {
      background: #0e0e0e;
      border: 1px solid rgba(201, 151, 58, 0.2);
      overflow: hidden;
      font-family: var(--font-mono);
    }

    .calc-header {
      background: rgba(201, 151, 58, 0.08);
      border-bottom: 1px solid rgba(201, 151, 58, 0.2);
      padding: 1rem 1.5rem;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

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

    .calc-dot--red { background: #ff5f57; }
    .calc-dot--yellow { background: #febc2e; }
    .calc-dot--green { background: #28c840; }

    .calc-title {
      font-size: 0.68rem;
      letter-spacing: 0.1em;
      color: var(--stone);
      text-transform: uppercase;
      margin-left: 0.4rem;
    }

    .calc-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.85rem 1.5rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
      font-size: 0.75rem;
    }

    .calc-row:last-of-type {
      border-bottom: none;
    }

    .calc-label {
      color: var(--stone);
      letter-spacing: 0.05em;
    }

    .calc-value {
      color: var(--white);
      font-weight: 500;
    }

    .calc-value--gold {
      color: var(--gold);
    }

    .calc-value--green {
      color: #4ade80;
    }

    .calc-total {
      background: rgba(201, 151, 58, 0.08);
      border-top: 1px solid rgba(201, 151, 58, 0.25);
      padding: 1.2rem 1.5rem;
    }

    .calc-total-main {
      font-size: 1.1rem;
      font-weight: 500;
      color: var(--gold);
      letter-spacing: 0.04em;
    }

    .calc-total-sub {
      font-size: 0.68rem;
      color: var(--stone);
      margin-top: 0.25rem;
      letter-spacing: 0.08em;
    }

    /* ─────────────────────────────────────────
       OFFER BLOCK
    ───────────────────────────────────────── */
    .offer {
      position: relative;
      padding: 120px 2rem;
      overflow: hidden;
    }

    .offer-bg {
      position: absolute;
      inset: -10%;
      background-image: url('https://images.unsplash.com/photo-1582407947304-fd86f028f716?w=1600&q=80');
      background-size: cover;
      background-position: center;
      z-index: 0;
    }

    .offer-overlay {
      position: absolute;
      inset: 0;
      background: rgba(8, 8, 8, 0.93);
      z-index: 1;
    }

    .offer-content {
      position: relative;
      z-index: 2;
      max-width: 780px;
      margin: 0 auto;
      text-align: center;
    }

    .offer-content h2 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 500;
      margin: 1rem 0 1.5rem;
      line-height: 1.2;
    }

    /* Gold corner card */
    .offer-card {
      position: relative;
      background: #0d0d0d;
      border: 1px solid rgba(201, 151, 58, 0.2);
      padding: 64px 56px;
      text-align: left;
    }

    .offer-card::before,
    .offer-card::after {
      content: '';
      position: absolute;
      width: 40px;
      height: 40px;
      border-color: var(--gold);
      border-style: solid;
    }

    .offer-card::before {
      top: -1px;
      left: -1px;
      border-width: 2px 0 0 2px;
    }

    .offer-card::after {
      bottom: -1px;
      right: -1px;
      border-width: 0 2px 2px 0;
    }

    .offer-card-corner-tr,
    .offer-card-corner-bl {
      position: absolute;
      width: 40px;
      height: 40px;
      border-color: var(--gold);
      border-style: solid;
    }

    .offer-card-corner-tr {
      top: -1px;
      right: -1px;
      border-width: 2px 2px 0 0;
    }

    .offer-card-corner-bl {
      bottom: -1px;
      left: -1px;
      border-width: 0 0 2px 2px;
    }

    .offer-plan-name {
      font-family: var(--font-mono);
      font-size: 0.68rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--stone);
      margin-bottom: 0.5rem;
    }

    .offer-product-name {
      font-family: var(--font-display);
      font-size: 1.8rem;
      font-style: italic;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 1.5rem;
    }

    .offer-price {
      display: flex;
      align-items: baseline;
      gap: 0.5rem;
      margin-bottom: 24px;
    }

    .offer-price-currency {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 400;
      color: var(--gold);
    }

    .offer-price-amount {
      font-family: var(--font-display);
      font-size: clamp(3rem, 5vw, 4rem);
      font-weight: 600;
      color: var(--gold);
      line-height: 1;
    }

    .offer-price-period {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      color: var(--stone);
      text-transform: uppercase;
    }

    .offer-setup {
      font-family: var(--font-mono);
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      color: var(--stone);
      margin-bottom: 2.5rem;
    }

    .offer-divider {
      height: 1px;
      background: rgba(201, 151, 58, 0.12);
      margin: 1rem 0;
    }

    .features-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      row-gap: 16px;
      column-gap: 48px;
      margin-bottom: 1.2rem;
    }

    .feature-item {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      font-size: 0.88rem;
      color: rgba(248, 246, 242, 0.78);
      line-height: 1.9;
    }

    .feature-check {
      color: var(--gold);
      font-size: 0.85rem;
      flex-shrink: 0;
      margin-top: 0.05rem;
    }

    .guarantee-box {
      border: 1px solid rgba(201, 151, 58, 0.35);
      background: rgba(201, 151, 58, 0.04);
      padding: 32px;
      margin-top: 48px;
      margin-bottom: 0;
    }

    .guarantee-box p {
      font-family: var(--font-body);
      font-size: 0.88rem;
      color: rgba(248, 246, 242, 0.82);
      line-height: 1.6;
    }

    .guarantee-box strong {
      color: var(--gold-light);
    }

    .offer-cta-group {
      text-align: center;
      margin-top: 40px;
    }

    .offer-email {
      display: block;
      margin-top: 1rem;
      font-family: var(--font-mono);
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      color: var(--stone);
      text-decoration: none;
      text-transform: uppercase;
      transition: color 0.2s;
    }

    .offer-email:hover {
      color: var(--gold);
    }

    /* ─────────────────────────────────────────
       WHY GETLISTINGFLOW
    ───────────────────────────────────────── */
    .why {
      background: var(--linen);
      padding: 8rem 2rem;
    }

    .why-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 4rem;
    }

    .why-header h2 {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 500;
      color: #1a1612;
      margin-top: 1rem;
      line-height: 1.25;
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    .why-card {
      padding: 2.2rem 1.8rem;
      border: 1px solid rgba(26, 22, 18, 0.1);
      background: rgba(255, 255, 255, 0.5);
      transition: background var(--transition), border-color var(--transition), color var(--transition);
      cursor: default;
    }

    .why-card:hover {
      background: #111;
      border-color: rgba(201, 151, 58, 0.3);
      color: var(--white);
    }

    .why-card:hover .why-card-title,
    .why-card:hover .why-card-body {
      color: inherit;
    }

    .why-icon {
      font-size: 1.6rem;
      margin-bottom: 1rem;
      display: block;
    }

    .why-card-title {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 600;
      color: #1a1612;
      margin-bottom: 0.5rem;
      transition: color var(--transition);
    }

    .why-card:hover .why-card-title {
      color: var(--gold);
    }

    .why-card-body {
      font-size: 0.85rem;
      color: #6b5e4a;
      line-height: 1.6;
      transition: color var(--transition);
    }

    .why-card:hover .why-card-body {
      color: rgba(248, 246, 242, 0.65);
    }

    /* ─────────────────────────────────────────
       FAQ
    ───────────────────────────────────────── */
    .faq {
      background-color: #111111;
      background-image: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1600&q=80');
      background-size: cover;
      background-position: center;
      padding: 8rem 2rem;
      position: relative;
    }

    .faq::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.75);
      z-index: 0;
    }

    .faq-header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 4rem;
      position: relative;
      z-index: 1;
    }

    .faq-header h2 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-style: italic;
      font-weight: 400;
      margin-top: 1rem;
    }

    .faq-list {
      max-width: 780px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .faq-item {
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .faq-question {
      width: 100%;
      background: none;
      border: none;
      color: #f0ede8;
      text-align: left;
      padding: 1.5rem 0;
      font-family: var(--font-display);
      font-size: 1.2rem;
      font-weight: 500;
      cursor: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      transition: color 0.2s;
    }

    .faq-question:hover {
      color: var(--gold);
    }

    .faq-icon {
      font-family: var(--font-mono);
      font-size: 1.2rem;
      color: var(--gold);
      flex-shrink: 0;
      transition: transform 0.35s ease;
      line-height: 1;
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                  padding 0.35s ease;
    }

    .faq-item.open .faq-answer {
      max-height: 500px;
    }

    .faq-answer-inner {
      padding: 0 0 1.5rem;
      font-size: 0.92rem;
      color: #cccccc;
      line-height: 1.8;
    }

    .faq-answer-inner strong {
      color: var(--gold-light);
    }

    /* ─────────────────────────────────────────
       FINAL CTA
    ───────────────────────────────────────── */
    .final-cta {
      position: relative;
      padding: 10rem 2rem;
      overflow: hidden;
    }

    .final-cta-bg {
      position: absolute;
      inset: -20%;
      background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1800&q=80');
      background-size: cover;
      background-position: center;
      will-change: transform;
      z-index: 0;
    }

    .final-cta-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        180deg,
        rgba(244, 241, 235, 0.92) 0%,
        rgba(244, 241, 235, 0.95) 100%
      );
      z-index: 1;
    }

    .final-cta-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 780px;
      margin: 0 auto;
    }

    .final-cta-content h2 {
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 5vw, 4rem);
      font-weight: 500;
      color: #1a1612;
      line-height: 1.2;
      margin-bottom: 1.5rem;
    }

    .final-cta-content h2 em {
      font-style: italic;
      color: var(--ember);
    }

    .final-cta-content p {
      color: #5a5040;
      font-size: 1rem;
      line-height: 1.75;
      max-width: 580px;
      margin: 0 auto 2.5rem;
    }

    .final-cta-group {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.2rem;
    }

    .final-email {
      font-family: var(--font-mono);
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #7a6e5e;
      text-decoration: none;
      transition: color 0.2s;
    }

    .final-email:hover {
      color: var(--ember);
    }

    /* ─────────────────────────────────────────
       FOOTER
    ───────────────────────────────────────── */
    .footer {
      background: #050505;
      border-top: 1px solid rgba(201, 151, 58, 0.1);
      padding: 2.5rem 2rem;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-logo {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 500;
      color: var(--white);
      text-decoration: none;
    }

    .footer-logo em {
      font-style: italic;
      color: var(--gold);
    }

    .footer-center {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--stone);
      text-align: center;
    }

    .footer-right {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      letter-spacing: 0.08em;
      color: var(--stone);
      text-align: right;
    }

    .footer-right a {
      color: var(--stone);
      text-decoration: none;
      transition: color 0.2s;
    }

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

    .footer-legal-link {
      color: rgba(255,255,255,0.35);
      font-size: 0.75rem;
      text-decoration: none;
      margin-left: 1.5rem;
      letter-spacing: 0.05em;
      transition: color 0.25s ease, opacity 0.25s ease;
    }

    .footer-legal-link:hover {
      color: var(--gold) !important;
      opacity: 1;
    }

    /* ─────────────────────────────────────────
       RESPONSIVE
    ───────────────────────────────────────── */
    @media (max-width: 900px) {
      .problem-content {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .solution-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
      }

      .roi-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

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

    @media (max-width: 700px) {
      .nav-center { display: none; }
      .nav-hamburger { display: flex; }

      /* Smaller CTA buttons on mobile */
      .btn {
        padding: 0.75rem 1.4rem;
        font-size: 0.68rem;
      }
      .btn-large {
        padding: 0.85rem 1.8rem;
        font-size: 0.72rem;
      }
      .nav .btn {
        padding: 0.55rem 1rem;
        font-size: 0.62rem;
      }

      .hero h1 {
        font-size: clamp(2.8rem, 10vw, 4.5rem);
      }

      .hero-stats {
        grid-template-columns: 1fr;
        margin-top: 3rem;
      }

      .hero-stat {
        border-right: none;
        border-bottom: 1px solid rgba(201, 151, 58, 0.18);
        padding: 1.5rem 1rem;
      }

      .hero-stat:last-child { border-bottom: none; }

      .pain-cards {
        grid-template-columns: 1fr;
      }

      .timeline-item--compound {
        margin-left: 0;
        padding-left: 3.5rem;
      }

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

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

      .offer-card {
        padding: 2rem 1.5rem;
      }

      .statement-card {
        padding: 2.5rem 2rem;
      }

      .footer-inner {
        flex-direction: column;
        text-align: center;
      }

      .footer-right { text-align: center; }

      /* Disable parallax on mobile */
      .hero-bg,
      .final-cta-bg {
        background-attachment: scroll;
        inset: 0;
        transform: none !important;
      }

      .hero-content {
        transform: none !important;
      }
    }

    @media (max-width: 480px) {
      .container, .container--narrow {
        padding: 0 1.2rem;
      }

      .hero {
        padding: 8rem 1.2rem 4rem;
      }
    }

    /* Smooth scroll for all */
    @media (prefers-reduced-motion: no-preference) {
      html { scroll-behavior: smooth; }

  }

/* ─────────────────────────────────────────
   SOCIAL PROOF BAR
───────────────────────────────────────── */
.social-proof-bar {
  width: 100%;
  position: relative;
  margin-top: 72px;
  background: #0d0d0d;
  border-bottom: 1px solid rgba(201,151,58,0.15);
  text-align: center;
  padding: 8px 24px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}
.spb-dot {
  color: #22c55e;
  margin-right: 8px;
  font-size: 8px;
  vertical-align: middle;
}
.spb-cities {
  color: rgba(255,255,255,0.65);
  margin-left: 8px;
}
.spb-text {
  color: rgba(255,255,255,0.45);
  margin: 0 4px;
}
.spb-counter-large {
  color: #c9973a;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  margin: 0 6px;
  vertical-align: middle;
  letter-spacing: 0;
}

/* ─────────────────────────────────────────
   NAV — register link
───────────────────────────────────────── */
.nav-register-link {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-register-link:hover { color: #fff; }

@media (max-width: 768px) {
  .nav-register-link { display: none; }
}

/* ─────────────────────────────────────────
   HERO — CTA row, ghost button, guarantee
───────────────────────────────────────── */
.hero-cta-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover {
  border-color: #c9973a;
  color: #c9973a;
}

.hero-guarantee {
  display: block;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  margin-top: 0.75rem;
}

/* ─────────────────────────────────────────
   HERO STATS — 4 column layout
───────────────────────────────────────── */
.hero-stats--four {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
  .hero-stats--four {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero-stats--four {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* ─────────────────────────────────────────
   DEMO SECTION
───────────────────────────────────────── */
.demo-section {
  padding: 6rem 0;
  background: #f5f3f0;
}

.demo-section h2 {
  color: #1a1a1a;
}

.demo-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.demo-sub {
  color: #4a4a4a;
  font-size: 1rem;
  margin-top: 0.75rem;
}

.demo-widget {
  display: flex;
  justify-content: center;
}

.demo-phone {
  width: 100%;
  max-width: 440px;
  background: #f4f1ec;
  border: 1px solid #ddd8cf;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.demo-phone-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: #ede9e3;
  border-bottom: 1px solid #ddd8cf;
}

.demo-phone-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
}

.demo-phone-name {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1a1a;
}

.demo-phone-status {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: #4caf50;
  letter-spacing: 0.04em;
}

.demo-messages {
  padding: 1.25rem;
  min-height: 220px;
  max-height: 320px;
  overflow-x: hidden !important;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  word-wrap: break-word;
  overflow-wrap: break-word;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.demo-messages::-webkit-scrollbar,
.widget-messages::-webkit-scrollbar,
#widgetMessages::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
}

.demo-msg {
  max-width: 85%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: pre-wrap;
  animation: msgIn 0.25s ease;
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

.demo-msg--system {
  align-self: flex-start;
}
.demo-msg--system p {
  background: #c9973a;
  color: #ffffff;
  padding: 0.65rem 0.9rem;
  border-radius: 12px 12px 12px 2px;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

.demo-msg--user {
  align-self: flex-end;
}
.demo-msg--user p {
  background: #e8e3db;
  color: #1a1a1a;
  padding: 0.65rem 0.9rem;
  border-radius: 12px 12px 2px 12px;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}

.demo-msg-time {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  color: #9ca3af;
  margin-top: 2px !important;
  margin-bottom: 2px !important;
  padding-top: 0 !important;
  letter-spacing: 0.04em;
}

.demo-typing {
  display: flex;
  gap: 4px;
  padding: 0.65rem 0.9rem;
  background: #c9973a;
  border-radius: 12px 12px 12px 2px;
  width: fit-content;
}
.demo-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  animation: typingDot 1.2s ease-in-out infinite;
}
.demo-typing span:nth-child(2) { animation-delay: 0.2s; }
.demo-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
  0%, 80%, 100% { transform: scale(0.8); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

.demo-input-row {
  display: flex;
  gap: 0;
  background: #ede9e3;
  border-top: 1px solid #ddd8cf;
}

.demo-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.85rem 1rem;
  color: #1a1a1a;
  font-family: var(--sans);
  font-size: 0.85rem;
  outline: none;
}
.demo-input::placeholder { color: #9ca3af; }

.demo-send {
  padding: 0.85rem 1rem;
  background: transparent;
  border: none;
  color: var(--gold);
  cursor: pointer;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.demo-send:hover { color: #a07828; }
.demo-send:disabled { opacity: 0.4; cursor: not-allowed; }

.demo-cta-inline {
  padding: 1.25rem;
  border-top: 1px solid rgba(201,151,58,0.2);
  background: rgba(201,151,58,0.05);
  text-align: center;
}
.demo-cta-inline p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin: 0 0 0.75rem;
}

/* ─────────────────────────────────────────
   EXCLUSIVITY — city grid
───────────────────────────────────────── */
.exclusivity-cities {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0;
  width: 100%;
  max-width: 640px;
}

@media (max-width: 640px) {
  .exclusivity-cities {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 400px) {
  .exclusivity-cities {
    grid-template-columns: repeat(2, 1fr);
  }
}

.exclusivity-city {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.6rem 0.5rem;
  border-radius: 4px;
  border: 1px solid;
}

.exclusivity-city--active {
  border-color: rgba(201,151,58,0.4);
  background: rgba(201,151,58,0.06);
}

.exclusivity-city--open {
  border-color: rgba(76,175,80,0.35);
  background: rgba(76,175,80,0.06);
}

.city-status {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.exclusivity-city--active .city-status { color: var(--gold); }
.exclusivity-city--open .city-status { color: #4caf50; }

.city-name {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

/* ─────────────────────────────────────────
   PROBLEM — attribution text
───────────────────────────────────────── */
.pain-source {
  font-family: var(--mono);
  font-size: 0.6rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

/* ─────────────────────────────────────────
   LAYER 01 CHAT MOCKUP
───────────────────────────────────────── */
.layer01-mockup {
  margin: 1.25rem 0;
  background: #f4f1ec;
  border: 1px solid #ddd8cf;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.mockup-time {
  font-family: var(--mono);
  font-size: 0.6rem;
  color: #9ca3af;
  text-align: center;
  letter-spacing: 0.06em;
}

.mockup-bubble {
  padding: 0.55rem 0.85rem;
  border-radius: 12px;
  font-size: 0.8rem;
  line-height: 1.5;
  max-width: 90%;
}

.mockup-bubble--buyer {
  background: #e8e3db;
  color: #1a1a1a;
  align-self: flex-start;
  border-radius: 4px 12px 12px 4px;
}

.mockup-bubble--system {
  background: var(--gold);
  color: #ffffff;
  font-weight: 500;
  align-self: flex-end;
  border-radius: 12px 4px 4px 12px;
}

.mockup-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  color: #c9973a;
  letter-spacing: 0.06em;
  text-align: right;
}

/* ─────────────────────────────────────────
   PROOF SECTION
───────────────────────────────────────── */
.proof {
  padding: 6rem 0;
  background: #080808 !important;
}

.proof h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #ffffff !important;
  margin: 0.5rem 0 1.5rem;
  line-height: 1.2;
}

.proof-body {
  color: rgba(255,255,255,0.75) !important;
  max-width: 640px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 700px) {
  .proof-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.proof-stat {
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,151,58,0.15);
  border-radius: 4px;
}

.proof-stat-number {
  display: block !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(64px, 8vw, 96px) !important;
  color: #c9973a !important;
  font-weight: 300 !important;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.proof-stat-label {
  font-family: var(--sans);
  font-size: 14px !important;
  color: rgba(255,255,255,0.6) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  line-height: 1.5;
}

.proof-footnote {
  font-family: var(--mono);
  font-size: 11px !important;
  color: rgba(255,255,255,0.35) !important;
  letter-spacing: 0.03em;
  line-height: 1.6;
}

/* ─────────────────────────────────────────
   ROI — live calculator
───────────────────────────────────────── */
.roi-live-calc {
  margin-top: 2rem;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(201,151,58,0.3);
  border-radius: 6px;
  padding: 1.5rem;
}

.calc-input-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.calc-input-row label {
  display: block;
  font-family: var(--mono);
  font-size: 13px;
  color: #5a5040;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.calc-input-field {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(201,151,58,0.3);
  border-radius: 4px;
  padding: 12px 16px;
  color: #1a1612;
  font-family: var(--mono);
  font-size: 18px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
}
.calc-input-field:focus {
  border-color: rgba(201,151,58,0.5);
}

.calc-live-result {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.calc-live-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #5a5040;
}

.calc-live-row--total {
  padding-top: 0.5rem;
  border-top: 1px solid rgba(201,151,58,0.2);
  font-weight: 600;
  color: #1a1612;
}

.calc-live-val {
  font-family: var(--mono);
  font-size: 0.9rem;
  color: #1a1612;
}
.calc-live-val--gold { color: var(--gold); }
.calc-live-val--green {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  color: #c9973a;
  font-weight: 300;
  line-height: 1.1;
}

.calc-footnote {
  font-family: var(--sans);
  font-size: 13px;
  color: #9a8e7e;
  margin-top: 8px;
  line-height: 1.5;
}

/* ─────────────────────────────────────────
   PRICING — founding banner + price note
───────────────────────────────────────── */
.offer-founding-banner {
  background: rgba(201,151,58,0.08);
  border: 1px solid rgba(201,151,58,0.35);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 48px;
  max-width: 640px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.founding-badge {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.offer-founding-banner p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
  line-height: 1.6;
}

.offer-price-note {
  font-size: 0.78rem;
  opacity: 0.6;
  text-align: center;
  margin: 0 0 24px;
}

.pricing-addon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 24px;
  margin: 0 0 32px;
  border-top: 1px solid rgba(201, 151, 58, 0.15);
  border-bottom: 1px solid rgba(201, 151, 58, 0.15);
}

.pricing-addon-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(201, 151, 58, 0.7);
}

.pricing-addon-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: rgba(201, 151, 58, 0.85);
  font-weight: 500;
}

.pricing-addon-note {
  font-size: 0.72rem;
  opacity: 0.5;
  text-align: center;
}

/* ─────────────────────────────────────────
   FINAL CTA — micro text + CRM strip
───────────────────────────────────────── */
.final-cta-micro {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  margin: 0.75rem 0 0;
  text-align: center;
}

.final-crm-strip {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}

.crm-strip-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.crm-strip-items {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}

/* ─────────────────────────────────────────
   PINNED CHATBOT WIDGET
───────────────────────────────────────── */
.widget-launcher {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10000;
  box-shadow: 0 4px 24px rgba(201,151,58,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.widget-launcher:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 32px rgba(201,151,58,0.55);
}

.widget-icon {
  color: #080808;
}

.widget-tooltip {
  position: absolute;
  right: 64px;
  white-space: nowrap;
  background: #1a1a1a;
  color: rgba(255,255,255,0.85);
  font-family: var(--sans);
  font-size: 0.78rem;
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  border: 1px solid rgba(255,255,255,0.1);
}
.widget-launcher:hover .widget-tooltip {
  opacity: 1;
}

.widget-panel {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  width: 360px;
  height: 480px;
  background: #ffffff;
  border: none;
  border-radius: 16px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  overflow: hidden;
  animation: panelIn 0.25s ease;
}
.widget-panel[hidden] { display: none; }

@keyframes panelIn {
  from { opacity: 0; transform: translateY(12px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}

@media (max-width: 480px) {
  .widget-panel {
    width: calc(100vw - 2rem);
    right: 1rem;
    bottom: 5rem;
    height: 420px;
  }
}

.widget-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  background: #ffffff;
  border-bottom: 1px solid #e8e4de;
  flex-shrink: 0;
}

.widget-panel-info {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.widget-panel-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
}

.widget-panel-name {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: #1a1a1a;
}

.widget-panel-status {
  font-family: var(--mono);
  font-size: 0.6rem;
  color: #6b7280;
  letter-spacing: 0.04em;
}

.widget-close {
  background: transparent;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.widget-close:hover { color: #1a1a1a; }

.widget-messages,
#widgetMessages {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

.widget-messages {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.widget-msg { max-width: 88%; animation: msgIn 0.2s ease; }

.widget-msg--system { align-self: flex-start; }
.widget-msg--system p {
  background: #f3f1ee;
  color: #1a1a1a;
  padding: 0.55rem 0.8rem;
  border-radius: 4px 12px 12px 4px;
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0;
}

.widget-msg--user { align-self: flex-end; }
.widget-msg--user p {
  background: var(--gold);
  color: #ffffff;
  padding: 0.55rem 0.8rem;
  border-radius: 12px 4px 4px 12px;
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}

.widget-typing {
  display: flex;
  gap: 4px;
  padding: 0.55rem 0.8rem;
  background: #f3f1ee;
  border-radius: 4px 12px 12px 4px;
  width: fit-content;
}
.widget-typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(0,0,0,0.25);
  animation: typingDot 1.2s ease-in-out infinite;
}
.widget-typing span:nth-child(2) { animation-delay: 0.2s; }
.widget-typing span:nth-child(3) { animation-delay: 0.4s; }

.widget-input-row {
  display: flex;
  background: #f9f8f6;
  border-top: 1px solid #e8e4de;
  flex-shrink: 0;
}

.widget-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.75rem 1rem;
  color: #1a1a1a;
  font-family: var(--sans);
  font-size: 0.82rem;
  outline: none;
}
.widget-input::placeholder { color: #9ca3af; }

.widget-send {
  padding: 0.75rem 0.85rem;
  background: transparent;
  border: none;
  color: var(--gold);
  cursor: pointer;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.widget-send:hover { color: #a07828; }
.widget-send:disabled { opacity: 0.35; cursor: not-allowed; }

.widget-cta-bar {
  padding: 10px 16px;
  border-top: 1px solid #e8e4de;
  text-align: center;
}
.widget-cta-link {
  color: #c9973a;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}
.widget-cta-link:hover {
  text-decoration: underline;
}

html body section.proof,
html body section#proof {
  background: #080808 !important;
  background-color: #080808 !important;
}
html body section.proof .proof-stat-number,
html body section#proof .proof-stat-number {
  font-size: clamp(56px, 7vw, 88px) !important;
  color: #c9973a !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 300 !important;
  display: block !important;
  line-height: 1 !important;
}
html body section.proof .proof-stat-label,
html body section#proof .proof-stat-label {
  color: rgba(255,255,255,0.6) !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  font-family: 'DM Mono', monospace !important;
  display: block !important;
  margin-top: 8px !important;
}
html body section.proof p,
html body section#proof p {
  color: rgba(255,255,255,0.75) !important;
}
html body section.proof h2,
html body section#proof h2 {
  color: #ffffff !important;
}
html body section.proof .proof-footnote,
html body section#proof .proof-footnote {
  color: rgba(255,255,255,0.35) !important;
  font-size: 11px !important;
}

/* PROOF SECTION FORCE OVERRIDE - DO NOT REMOVE */
section.proof * { color: rgba(255,255,255,0.85) !important; }
section.proof {
  background: #080808 !important;
  background-color: #080808 !important;
}
section.proof h2 {
  color: #ffffff !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
}
section.proof .proof-stat-number {
  color: #c9973a !important;
  font-size: clamp(56px, 7vw, 88px) !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 300 !important;
  display: block !important;
  line-height: 1 !important;
}
section.proof .proof-stat-label {
  color: rgba(255,255,255,0.6) !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  font-family: 'DM Mono', monospace !important;
  display: block !important;
  margin-top: 8px !important;
}
section.proof .proof-footnote {
  color: rgba(255,255,255,0.4) !important;
  font-size: 11px !important;
}
/* END PROOF OVERRIDE */

/* CALCULATOR INPUT FORCE */
div.roi-live-calc input[type="number"],
div.roi-live-calc input,
.calc-input-row input,
.calc-input-field {
  color: #1a1612 !important;
  -webkit-text-fill-color: #1a1612 !important;
  background-color: rgba(255,255,255,0.7) !important;
  border: 1px solid rgba(201,151,58,0.3) !important;
  padding: 12px 16px !important;
  font-size: 16px !important;
  font-family: 'Figtree', sans-serif !important;
  opacity: 1 !important;
  caret-color: #c9973a !important;
}

div.roi-live-calc input[type="number"]::placeholder,
.calc-input-row input::placeholder {
  color: #9a8e7e !important;
  -webkit-text-fill-color: #9a8e7e !important;
}

/* Webkit number input arrows - keep them visible */
div.roi-live-calc input[type="number"]::-webkit-inner-spin-button,
div.roi-live-calc input[type="number"]::-webkit-outer-spin-button {
  opacity: 0.5;
}
/* END CALCULATOR INPUT FORCE */

/* ─── BROWSER MOCKUP — Layer 01 dashboard preview ─── */
.browser-mockup {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ddd8cf;
  background: #f4f1ec;
  max-width: 600px;
  margin: 32px auto 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.browser-bar {
  background: #ede9e3;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #ddd8cf;
}
.browser-dots {
  display: flex;
  gap: 6px;
}
.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333;
}
.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }
.browser-url {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: #6b7280;
  flex: 1;
  text-align: center;
}
.browser-content {
  padding: 20px;
}
.dash-preview-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Figtree', sans-serif;
  font-size: 13px;
  color: #1a1a1a;
  margin-bottom: 16px;
  font-weight: 600;
}
.dash-live-dot { color: #22c55e; font-size: 8px; }
.dash-badge {
  background: #c9973a;
  color: #ffffff;
  font-size: 9px;
  font-family: 'DM Mono', monospace;
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: 0.08em;
}
.dash-preview-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.dash-stat {
  background: #e8e3db;
  border: 1px solid #ddd8cf;
  border-radius: 6px;
  padding: 12px;
  text-align: center;
}
.dash-stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: #c9973a;
  font-weight: 300;
}
.dash-stat-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.dash-pipeline-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: #6b7280;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.dash-lead-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  border-radius: 4px;
  margin-bottom: 4px;
  background: #e8e3db;
  border-bottom: 1px solid #ddd8cf;
  border-top: none;
  border-left: none;
  border-right: none;
}
.dash-lead-row.hot {
  border-bottom-color: rgba(201,151,58,0.3);
  background: rgba(201,151,58,0.12);
}
.dash-lead-row.warm {
  border-bottom-color: rgba(34,197,94,0.2);
  background: rgba(34,197,94,0.06);
}
.dash-lead-name {
  font-family: 'Figtree', sans-serif;
  font-size: 12px;
  color: #1a1a1a;
}
.dash-lead-tag {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: #6b7280;
}
.dash-lead-row.hot .dash-lead-tag { color: #c9973a; }
.dash-lead-row.warm .dash-lead-tag { color: #22c55e; }

/* ─── CRM TRUST STRIP — Final CTA ─── */
.crm-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.crm-trust-strip .crm-strip-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.crm-strip-logos {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.crm-strip-logos span {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.crm-strip-logos span:hover {
  color: rgba(255,255,255,0.5);
}

/* ============================================
   ADVISOR SECTION — dark theme
   ============================================ */

.advisor-section {
  background: #f5f3f0;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.advisor-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.advisor-hd {
  text-align: center;
  margin-bottom: 64px;
}

.advisor-pill {
  display: inline-block;
  background: rgba(201,151,58,0.12);
  border: 1px solid rgba(201,151,58,0.3);
  color: #c9973a;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.advisor-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: #1a1a1a;
  line-height: 1.2;
  margin: 0 0 20px;
}

.advisor-subtitle {
  font-family: 'Figtree', sans-serif;
  font-size: 1rem;
  color: #4a4a4a;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* macOS window */
.aw {
  background: #f4f1ec;
  border: 1px solid #ddd8cf;
  border-radius: 12px;
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto 72px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.aw-bar {
  background: #ede9e3;
  border-bottom: 1px solid #ddd8cf;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.aw-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.aw-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.aw-dot--red    { background: #ff5f57; }
.aw-dot--yellow { background: #febc2e; }
.aw-dot--green  { background: #28c840; }

.aw-name {
  flex: 1;
  text-align: center;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: #6b7280;
}

.aw-badge {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: #c9973a;
  background: rgba(201,151,58,0.12);
  border: 1px solid rgba(201,151,58,0.4);
  padding: 2px 8px;
  border-radius: 999px;
  flex-shrink: 0;
}

.aw-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Rows */
.aw-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.aw-row--user   { align-items: flex-end; }
.aw-row--advisor { align-items: flex-start; }

/* User bubble */
.aw-bubble-user {
  background: #c9973a;
  color: #ffffff;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  padding: 10px 16px;
  border-radius: 16px 16px 2px 16px;
  max-width: 80%;
}

.aw-ts {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: #9ca3af;
}

/* Advisor briefing card */
.aw-card {
  background: #ffffff;
  border: 1px solid #ddd8cf;
  border-radius: 12px;
  padding: 20px;
  max-width: 92%;
}

.aw-card-name {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: #c9973a;
  letter-spacing: 0.08em;
  margin: 0 0 2px;
}

.aw-card-meta {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: #6b7280;
  margin: 0 0 14px;
}

.aw-divider {
  height: 1px;
  background: #e8e4de;
  margin: 12px 0;
}

.aw-field {
  display: flex;
  gap: 16px;
  margin-bottom: 8px;
  font-size: 12px;
  font-family: 'Figtree', sans-serif;
}

.aw-lbl {
  color: #6b7280;
  min-width: 88px;
  flex-shrink: 0;
}

.aw-val {
  color: #1a1a1a;
  font-weight: 500;
}

/* Score bar */
.aw-score-track {
  height: 4px;
  background: #e8e4de;
  border-radius: 2px;
  overflow: hidden;
  margin: 14px 0;
}
.aw-score-fill {
  height: 100%;
  background: linear-gradient(90deg, #c9973a, #e8b84a);
  border-radius: 2px;
}

/* Vendor signal */
.aw-vendor {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: #7c3aed;
  background: #ede9fe;
  border: none;
  border-left: 3px solid #7c3aed;
  border-radius: 0 6px 6px 0;
  padding: 8px 12px;
  margin: 4px 0;
}

.aw-promised {
  font-family: 'Figtree', sans-serif;
  font-size: 11px;
  color: #9ca3af;
  font-style: italic;
  margin: 8px 0 0;
}

/* Input bar */
.aw-inputbar {
  background: #ede9e3;
  border-top: 1px solid #ddd8cf;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.aw-placeholder {
  font-family: 'Figtree', sans-serif;
  font-size: 13px;
  color: #9ca3af;
}

.aw-cmds {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: #c9973a;
  white-space: nowrap;
}

/* Feature cards */
.advisor-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.advisor-card {
  background: #ffffff;
  border: 1px solid #e8e4de;
  border-radius: 12px;
  padding: 28px;
}

.ac-icon {
  width: 40px;
  height: 40px;
  background: rgba(201,151,58,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.ac-title {
  font-family: 'Figtree', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 10px;
}

.ac-body {
  font-family: 'Figtree', sans-serif;
  font-size: 0.875rem;
  color: #4a4a4a;
  line-height: 1.7;
  margin: 0;
}

/* Section CTA */
.advisor-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.advisor-cta-note {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: #6b6560;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .advisor-cards {
    grid-template-columns: 1fr;
  }
  .aw-cmds {
    display: none;
  }
}

@media (max-width: 600px) {
  .advisor-section { padding: 80px 0; }
  .advisor-wrap { padding: 0 16px; }
  .aw-body { padding: 20px 16px; }
  .aw-inputbar { padding: 12px 16px; }
  .aw-card { max-width: 100%; }
}

/* ============================================
   END ADVISOR SECTION
   ============================================ */
