    /* ============================================
       CSS CUSTOM PROPERTIES
       ============================================ */
    :root {
      --blue: #4A9EFF;
      --blue-hover: #3a8eef;
      --blue-glow: rgba(74, 158, 255, 0.15);
      --black: #000000;
      --near-black: #0a0a0a;
      --dark-1: #111111;
      --dark-2: #161616;
      --dark-3: #1a1a1a;
      --dark-4: #222222;
      --zinc: #9F9FA9;
      --gray-1: #2d2d32;
      --gray-2: #4a4a52;
      --gray-3: #6b6b75;
      --gray-4: var(--zinc);
      --gray-5: #b4b4bc;
      --gray-6: #d1d1d6;
      --light-1: #e4e4e8;
      --light-2: #f0f0f3;
      --light-3: #f7f7f8;
      --white: #ffffff;
      --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      --font-mono: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;
      --syntax-string: #a8d8a8;
      --syntax-fn: #e8c87a;
      --nav-height: 64px;
      --section-padding: clamp(80px, 10vw, 140px);
      --content-width: 1120px;
      --transition-smooth: cubic-bezier(0.22, 1, 0.36, 1);
    }

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

    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    body {
      font-family: var(--font-body);
      color: var(--dark-1);
      background: var(--white);
      overflow-x: hidden;
      line-height: 1.6;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* Focus styles for keyboard navigation */
    :focus-visible {
      outline: 2px solid var(--blue);
      outline-offset: 2px;
    }

    /* Remove outline for mouse users */
    :focus:not(:focus-visible) {
      outline: none;
    }

    /* ============================================
       SCROLL ANIMATIONS
       ============================================ */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.8s var(--transition-smooth),
                  transform 0.8s var(--transition-smooth);
      will-change: transform, opacity;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
      will-change: auto;
    }

    .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; }

    /* ============================================
       SECTION 1 — STICKY NAV
       ============================================ */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      height: var(--nav-height);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 clamp(20px, 4vw, 48px);
      background: rgba(10, 10, 10, 0.85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      transition: background 0.4s ease, border-color 0.3s ease;
    }

    .nav.scrolled {
      background: rgba(10, 10, 10, 0.95);
      border-bottom-color: rgba(255, 255, 255, 0.1);
    }

    .nav-logo {
      font-family: var(--font-body);
      font-size: 1.25rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--white);
      display: flex;
      align-items: center;
      gap: 0;
      flex-shrink: 0;
    }

    .nav-logo-img {
      height: 28px;
      width: auto;
    }

    .footer-logo-img {
      height: 32px;
      width: auto;
    }

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

    .nav-links a {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--gray-4);
      letter-spacing: 0.01em;
      transition: color 0.25s ease;
      position: relative;
    }

    .nav-cta-mobile-wrap {
      display: none;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1.5px;
      background: var(--blue);
      transition: width 0.3s var(--transition-smooth);
    }

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

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      font-family: var(--font-body);
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--white);
      padding: 8px 20px;
      border: 1.5px solid rgba(255, 255, 255, 0.2);
      border-radius: 8px;
      background: transparent;
      cursor: pointer;
      transition: all 0.3s ease;
      letter-spacing: 0.01em;
      flex-shrink: 0;
    }

    .nav-cta:hover {
      border-color: var(--blue);
      color: var(--blue);
      background: var(--blue-glow);
    }

    /* Hamburger */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      background: none;
      border: none;
    }

    .nav-hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    .nav-hamburger.open span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-hamburger.open span:nth-child(2) {
      opacity: 0;
    }

    .nav-hamburger.open span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    /* ============================================
       SECTION 2 — HERO
       ============================================ */
    .hero {
      /* HERO BACKGROUND — Replace with motion/texture background later */
      background: var(--near-black);
      /* Future: add background-image, canvas, or particle effect here */
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: calc(var(--nav-height) + 60px) clamp(20px, 4vw, 48px) 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
      /* Contain repaints from SVG animation within the hero boundary */
      contain: layout paint;
    }

    /* Background paths container — promoted to own GPU compositing layer.
       contain: layout paint style (not size — element derives size from parent via inset: 0).
       isolation: isolate creates a clean stacking/compositing boundary so
       SVG path repaints never propagate to sibling or parent layers. */
    .hero-paths {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      will-change: transform;
      transform: translateZ(0);
      contain: layout paint style;
      isolation: isolate;
    }

    .hero-paths svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }

    /* Elevate hero content above paths without expensive :not() selector */
    .hero-appname,
    .hero-headline,
    .hero-sub,
    .hero-trial,
    .hero-downloads,
    .hero-screenshot,
    .hero-badge {
      position: relative;
      z-index: 1;
    }

    @keyframes path-flow {
      0% {
        stroke-dashoffset: 1;
      }
      100% {
        stroke-dashoffset: 0;
      }
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      border-radius: 100px;
      border: 1px solid var(--gray-1);
      background: rgba(255, 255, 255, 0.04);
      font-size: 0.8125rem;
      color: var(--gray-4);
      margin-bottom: 40px;
      letter-spacing: 0.01em;
    }

    .hero-badge svg {
      width: 16px;
      height: 16px;
      color: var(--gray-3);
    }

    .hero-appname {
      font-family: var(--font-display);
      font-size: clamp(3rem, 7vw, 5.5rem);
      font-weight: 800;
      color: var(--white);
      letter-spacing: -0.03em;
      margin-bottom: 16px;
    }

    .hero-appname .shot {
      color: var(--blue);
    }

    .hero-headline {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 3.5vw, 2.25rem);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -0.03em;
      margin-bottom: 28px;
      max-width: 960px;
    }

    .hero-headline .line-1 {
      color: var(--white);
      display: block;
    }

    .hero-headline .line-2 {
      color: var(--zinc);
      display: block;
    }

    .hero-sub {
      font-size: 20px;
      color: var(--zinc);
      max-width: 800px;
      line-height: 1.625;
      margin: 0 auto 40px;
    }

    .hero-trial {
      font-size: 0.9375rem;
      color: var(--zinc);
      text-align: center;
      margin-bottom: 28px;
    }

    .hero-downloads {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
      margin-bottom: 24px;
    }

    .hero-see-how {
      margin-bottom: 64px;
    }

    .hero-ctas {
      display: flex;
      gap: 14px;
      margin-bottom: 64px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .btn-primary {
      font-family: var(--font-body);
      font-size: 0.9375rem;
      font-weight: 600;
      color: var(--near-black);
      background: var(--white);
      border: 1px solid var(--white);
      padding: 14px 32px;
      border-radius: 100px;
      cursor: pointer;
      transition: all 0.3s ease;
      letter-spacing: 0.01em;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-primary:hover {
      background: var(--light-2);
      border-color: var(--light-2);
      transform: translateY(-1px);
    }

    .btn-primary .btn-sub {
      color: var(--gray-3);
      font-weight: 400;
    }

    .btn-secondary {
      font-family: var(--font-body);
      font-size: 0.9375rem;
      font-weight: 600;
      color: var(--white);
      background: var(--dark-3);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 14px 32px;
      border-radius: 100px;
      cursor: pointer;
      transition: all 0.3s ease;
      letter-spacing: 0.01em;
    }

    .btn-secondary:hover {
      background: var(--dark-4);
      border-color: rgba(255, 255, 255, 0.2);
      transform: translateY(-1px);
    }

    /* macOS Window Placeholder */
    .hero-screenshot {
      width: 100%;
      max-width: 520px;
      height: auto;
      border-radius: 12px;
      box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5),
                  0 0 0 1px rgba(255, 255, 255, 0.06);
    }

    /* ============================================
       SECTION 3 — STATS BAR
       ============================================ */
    .stats-bar {
      background: var(--white);
      padding: 48px clamp(20px, 4vw, 48px);
      position: relative;
    }

    .stats-bar::before {
      content: '';
      position: absolute;
      top: -40px;
      left: 0;
      right: 0;
      height: 41px;
      background: var(--white);
      -webkit-clip-path: polygon(0 100%, 100% 0, 100% 100%);
      clip-path: polygon(0 100%, 100% 0, 100% 100%);
    }

    .stats-line {
      font-family: var(--font-body);
      font-size: clamp(1.125rem, 2vw, 1.375rem);
      font-weight: 600;
      color: var(--zinc);
      text-align: center;
      letter-spacing: 0.01em;
    }

    .stats-dot {
      margin: 0 24px;
      color: var(--gray-6);
    }

    /* ============================================
       SECTION 4 — HOW IT WORKS
       ============================================ */
    .how-it-works {
      background: var(--white);
      padding: var(--section-padding) clamp(20px, 4vw, 48px);
      padding-bottom: calc(var(--section-padding) + 40px);
      margin-top: -1px;
      position: relative;
    }

    .how-it-works::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 41px;
      background: var(--white);
      -webkit-clip-path: polygon(0 100%, 100% 0, 100% 100%);
      clip-path: polygon(0 100%, 100% 0, 100% 100%);
    }

    .how-it-works-inner {
      max-width: var(--content-width);
      margin: 0 auto;
      text-align: center;
    }

    .section-headline {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.5vw, 2.75rem);
      font-weight: 800;
      color: var(--black);
      letter-spacing: -0.03em;
      line-height: 1.15;
      margin-bottom: 16px;
    }

    .section-sub {
      font-size: clamp(0.9375rem, 1.3vw, 1.0625rem);
      color: var(--gray-3);
      max-width: 520px;
      margin: 0 auto 72px;
      line-height: 1.65;
    }

    .steps-row {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      gap: 0;
      position: relative;
    }

    .step {
      flex: 1;
      max-width: 280px;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
    }

    .step-icon-wrap {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      border: 1.5px solid var(--light-1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 28px;
      background: var(--white);
      position: relative;
      z-index: 2;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .step:hover .step-icon-wrap {
      border-color: var(--blue);
      box-shadow: 0 0 0 4px var(--blue-glow);
    }

    .step-icon-wrap svg {
      width: 28px;
      height: 28px;
      color: var(--blue);
    }

    /* Dashed connecting lines */
    .step:not(:last-child)::after {
      content: '';
      position: absolute;
      top: 36px;
      left: calc(50% + 44px);
      width: calc(100% - 88px);
      height: 0;
      border-top: 2px dashed var(--light-1);
      z-index: 1;
    }

    .step-title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--black);
      margin-bottom: 10px;
      letter-spacing: -0.01em;
    }

    .step-desc {
      font-size: 0.875rem;
      color: var(--gray-3);
      line-height: 1.6;
      max-width: 220px;
    }

    .who-for {
      text-align: center;
      font-size: clamp(1rem, 1.5vw, 1.125rem);
      color: var(--gray-3);
      max-width: 640px;
      margin: 3rem auto 0;
      line-height: 1.6;
    }

    /* ============================================
       SECTION — BEFORE / AFTER
       ============================================ */
    .before-after {
      background: #FAFAFA;
      padding: var(--section-padding) clamp(20px, 4vw, 48px);
    }

    .before-after-inner {
      max-width: 720px;
      margin: 0 auto;
      text-align: center;
    }

    /* Badges */
    .ba-badge {
      display: inline-block;
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 6px;
      margin-bottom: 1.5rem;
    }

    .ba-badge--old {
      background: rgba(220, 70, 70, 0.08);
      color: #c53030;
      border: 1px solid rgba(220, 70, 70, 0.15);
    }

    .ba-badge--new {
      background: #111111;
      color: #ffffff;
      border: 1px solid #111111;
    }

    /* Old section */
    .ba-old-section {
      text-align: left;
      margin-top: 3rem;
      margin-bottom: 3rem;
    }

    .ba-old-steps {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .ba-old-step {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .ba-old-circle {
      width: 2rem;
      height: 2rem;
      min-width: 2rem;
      border-radius: 50%;
      background: #e5e5e5;
      color: #71717a;
      font-size: 0.8125rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1.5px solid transparent;
      transition: opacity 0.4s ease, border-color 0.3s ease;
    }

    .ba-old-text-wrap {
      position: relative;
      flex: 1;
    }

    .ba-old-text {
      font-size: 1rem;
      color: #71717a;
      line-height: 1.5;
      transition: color 0.4s ease, opacity 0.4s ease;
    }

    .ba-old-strike {
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      height: 2px;
      background: rgba(220, 70, 70, 0.45);
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Struck state */
    .ba-old-step.struck .ba-old-strike {
      transform: scaleX(1);
    }

    .ba-old-step.struck .ba-old-text {
      color: #a1a1aa;
      opacity: 0.7;
    }

    .ba-old-step.struck .ba-old-circle {
      border: 1.5px dashed #d4d4d8;
      opacity: 0.4;
    }

    /* New section */
    .ba-new-section {
      text-align: left;
      margin-bottom: 2rem;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .ba-new-section.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .ba-new-steps {
      display: flex;
      flex-direction: column;
      gap: 0;
      position: relative;
    }

    .ba-new-steps::before {
      content: '';
      position: absolute;
      left: 1.125rem;
      top: 1.25rem;
      bottom: 1.25rem;
      width: 2px;
      background: #e5e5e5;
      opacity: 1;
      border-radius: 1px;
    }

    .ba-new-step {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      padding: 0.875rem 0;
      position: relative;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.45s ease, transform 0.45s ease;
    }

    .ba-new-step.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .ba-new-circle {
      width: 2.5rem;
      height: 2.5rem;
      min-width: 2.5rem;
      border-radius: 50%;
      background: #111111;
      color: #ffffff;
      font-size: 0.9375rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 1;
    }

    .ba-new-text {
      font-size: 1.125rem;
      font-weight: 500;
      color: var(--dark-1);
      line-height: 1.4;
    }

    /* Footer */
    .ba-footer {
      text-align: center;
      font-size: 1.125rem;
      color: #a1a1aa;
      margin-top: 1rem;
      opacity: 0;
      transition: opacity 0.6s ease;
    }

    .ba-footer.visible {
      opacity: 1;
    }

    /* ============================================
       SECTION 5 — CAPTURE MODES
       ============================================ */
    .capture-modes {
      background: var(--white);
      padding: var(--section-padding) clamp(20px, 4vw, 48px);
      padding-top: calc(var(--section-padding) + 40px);
      position: relative;
    }

    .capture-modes::before {
      content: '';
      position: absolute;
      top: -1px;
      left: 0;
      right: 0;
      height: 42px;
      background: #FAFAFA;
      -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
      clip-path: polygon(0 0, 100% 0, 0 100%);
    }

    .capture-modes-inner {
      max-width: var(--content-width);
      margin: 0 auto;
    }

    .section-label {
      display: block;
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 12px;
    }

    .modes-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .modes-header .section-headline {
      text-align: center;
    }

    .modes-header .section-sub {
      text-align: center;
      margin: 16px auto 0 auto;
    }

    /* ── Mode Tabs ── */
    .modes-tabs {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-bottom: 48px;
      flex-wrap: wrap;
    }

    .mode-tab {
      padding: 10px 22px;
      border-radius: 8px;
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--gray-3);
      background: var(--light-2);
      border: 1px solid var(--light-1);
      transition: all 0.25s ease;
      cursor: pointer;
    }

    .mode-tab:hover {
      background: var(--blue);
      color: var(--white);
      border-color: var(--blue);
      font-weight: 600;
    }

    .mode-tab.active {
      background: var(--blue);
      color: var(--white);
      border-color: var(--blue);
      font-weight: 600;
    }

    /* ── Mode Panels ── */
    .mode-panels {
      position: relative;
      min-height: 380px;
    }

    .mode-panel {
      display: none;
      animation: fadeUp 0.4s ease;
    }

    .mode-panel.active {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }

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

    .mode-info h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--black);
      margin-bottom: 12px;
      letter-spacing: -0.01em;
    }

    .mode-info p {
      font-size: 1rem;
      line-height: 1.65;
      color: var(--zinc);
      margin-bottom: 20px;
    }

    .mode-examples {
      list-style: none;
      margin-bottom: 20px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .mode-examples li {
      font-size: 0.9375rem;
      line-height: 1.65;
      color: var(--zinc);
      padding-left: 20px;
      position: relative;
    }

    .mode-examples li::before {
      content: '\2014';
      position: absolute;
      left: 0;
      font-weight: 400;
      color: var(--gray-6);
    }

    .mode-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 20px;
    }

    .mode-pill {
      font-family: var(--font-body);
      font-size: 0.8125rem;
      padding: 6px 14px;
      background: var(--light-2);
      color: var(--gray-3);
      border-radius: 100px;
      white-space: nowrap;
    }

    .mode-tag {
      display: inline-block;
      font-family: var(--font-mono);
      font-size: 0.65rem;
      padding: 3px 10px;
      background: var(--light-2);
      color: var(--zinc);
      border-radius: 100px;
      font-weight: 500;
      vertical-align: middle;
      margin-left: 8px;
      position: relative;
      top: -2px;
    }

    /* ── Mode Output (dark terminal block) ── */
    .mode-output {
      background: var(--dark-2);
      border-radius: 14px;
      padding: 24px;
      font-family: var(--font-mono);
      font-size: 0.82rem;
      line-height: 1.7;
      color: var(--gray-5);
      border: 1px solid var(--gray-1);
      position: relative;
      overflow: hidden;
    }

    .mode-output-header {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--zinc);
      margin-bottom: 16px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--gray-1);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .dot-row {
      display: flex;
      gap: 6px;
    }

    .dot-row span {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--gray-1);
    }

    .mode-output-body {
      white-space: pre-wrap;
      max-height: 220px;
      overflow-y: auto;
      scrollbar-width: thin;
      scrollbar-color: var(--gray-2) transparent;
    }

    .mode-output-body::-webkit-scrollbar {
      width: 4px;
    }

    .mode-output-body::-webkit-scrollbar-track {
      background: transparent;
    }

    .mode-output-body::-webkit-scrollbar-thumb {
      background: var(--gray-2);
      border-radius: 4px;
    }

    .mode-output .highlight {
      color: var(--blue);
    }

    .mode-output .error-text {
      color: #ff6b6b;
    }

    .mode-output .muted-text {
      color: var(--gray-3);
    }

    /* ── Mode Demo (stacked capture + output) ── */
    .mode-demo {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .mode-capture {
      background: var(--light-3);
      border-radius: 14px 14px 0 0;
      padding: 16px 24px 20px;
      border: 1px solid var(--gray-6);
      border-bottom: none;
    }

    .capture-label {
      display: flex;
      align-items: center;
      gap: 6px;
      font-family: var(--font-mono);
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--zinc);
      margin-bottom: 12px;
    }

    .capture-preview {
      background: var(--white);
      border-radius: 8px;
      border: 1px solid var(--gray-6);
      overflow: hidden;
    }

    .capture-video-mock {
      font-family: var(--font-body);
    }

    .video-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 14px;
      border-bottom: 1px solid var(--gray-6);
    }

    .video-channel {
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--near-black);
    }

    .video-views {
      font-size: 0.75rem;
      color: var(--zinc);
    }

    .video-frame {
      position: relative;
      background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
      padding: 40px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      min-height: 120px;
    }

    .video-play {
      color: rgba(255, 255, 255, 0.6);
    }

    .video-play svg {
      width: 32px;
      height: 32px;
    }

    .video-title {
      font-size: 0.8125rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.8);
      text-align: center;
    }

    .video-ingredients {
      padding: 10px 14px;
      font-size: 0.75rem;
      color: var(--zinc);
      border-top: 1px solid var(--gray-6);
      line-height: 1.6;
    }

    .mode-demo .mode-output {
      border-radius: 0 0 14px 14px;
    }

    /* ── Mode Screenshot Images ── */
    .mode-screenshot {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 6px;
      cursor: pointer;
      transition: opacity 0.15s ease;
    }

    .mode-screenshot:hover {
      opacity: 0.85;
    }

    .mode-demo-screenshots {
      max-width: 375px;
      justify-self: center;
    }

    .mode-result-screenshot {
      border-radius: 0 0 14px 14px;
      overflow: hidden;
    }

    .mode-result-screenshot .mode-screenshot {
      border-radius: 0;
    }

    /* ── Lightbox ── */
    .lightbox-overlay {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: rgba(0, 0, 0, 0.85);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 32px;
      cursor: zoom-out;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.25s ease, visibility 0.25s ease;
    }

    .lightbox-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .lightbox-overlay img {
      max-width: 90vw;
      max-height: 90vh;
      border-radius: 10px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
      cursor: default;
    }

    /* ── Medical Bill Mock ── */
    .capture-bill {
      font-family: var(--font-body);
    }

    .bill-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 14px;
      border-bottom: 1px solid var(--gray-6);
    }

    .bill-logo {
      font-size: 0.8125rem;
      font-weight: 700;
      color: var(--near-black);
    }

    .bill-type {
      font-size: 0.6875rem;
      color: var(--zinc);
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .bill-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.75rem;
    }

    .bill-row td {
      padding: 8px 14px;
      border-bottom: 1px solid var(--light-2);
      color: var(--gray-3);
    }

    .bill-row td:first-child {
      color: var(--near-black);
      font-weight: 500;
    }

    .bill-row-header td {
      font-weight: 600;
      color: var(--zinc);
      font-size: 0.6875rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      border-bottom: 1px solid var(--gray-6);
    }

    .bill-footer {
      display: flex;
      justify-content: space-between;
      padding: 10px 14px;
      font-size: 0.75rem;
      color: var(--zinc);
      border-top: 1px solid var(--gray-6);
    }

    .bill-footer span:last-child {
      font-weight: 600;
      color: var(--near-black);
    }

    /* ── Terminal Mock ── */
    .capture-terminal {
      font-family: var(--font-mono);
      background: #1e1e1e;
      border-radius: 8px;
      overflow: hidden;
    }

    .terminal-bar {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px 12px;
      background: #2d2d2d;
      border-bottom: 1px solid #3a3a3a;
    }

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

    .terminal-dots span {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #555;
    }

    .terminal-title {
      font-size: 0.6875rem;
      color: #888;
    }

    .terminal-body {
      padding: 14px;
      font-size: 0.75rem;
      line-height: 1.7;
      color: #ccc;
      white-space: pre-wrap;
    }

    .terminal-path {
      color: #6b9f6b;
    }

    .terminal-error {
      color: #ff6b6b;
    }

    .terminal-dim {
      color: #666;
    }

    /* ── Email Mock ── */
    .capture-email {
      font-family: var(--font-body);
    }

    .email-header {
      padding: 12px 14px;
      border-bottom: 1px solid var(--gray-6);
    }

    .email-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 4px;
    }

    .email-from {
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--near-black);
    }

    .email-time {
      font-size: 0.75rem;
      color: var(--zinc);
    }

    .email-subject {
      font-size: 0.8125rem;
      font-weight: 500;
      color: var(--gray-3);
    }

    .email-body {
      padding: 12px 14px;
    }

    .email-body p {
      font-size: 0.75rem;
      line-height: 1.6;
      color: var(--gray-3);
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .email-thread-count {
      padding: 8px 14px;
      font-size: 0.6875rem;
      color: var(--zinc);
      border-top: 1px solid var(--gray-6);
      text-align: center;
    }

    /* ── Product Mock ── */
    .capture-product {
      font-family: var(--font-body);
      display: flex;
      gap: 14px;
      padding: 14px;
    }

    .product-image {
      width: 80px;
      height: 80px;
      background: var(--light-2);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      position: relative;
      color: var(--gray-6);
    }

    .product-badge {
      position: absolute;
      top: 4px;
      left: 4px;
      font-size: 0.5625rem;
      padding: 2px 5px;
      background: var(--zinc);
      color: var(--white);
      border-radius: 3px;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .product-details {
      display: flex;
      flex-direction: column;
      gap: 4px;
      justify-content: center;
    }

    .product-name {
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--near-black);
      line-height: 1.3;
    }

    .product-rating {
      font-size: 0.75rem;
      color: #e8a33a;
    }

    .product-reviews {
      color: var(--zinc);
      font-size: 0.6875rem;
    }

    .product-price {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .product-sale {
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--near-black);
    }

    .product-original {
      font-size: 0.75rem;
      color: var(--zinc);
      text-decoration: line-through;
    }

    .product-discount {
      font-size: 0.6875rem;
      color: #4a9e4a;
      font-weight: 600;
    }

    .guided-prompt {
      padding: 10px 14px;
      border-top: 1px solid var(--gray-6);
      font-size: 0.8125rem;
      color: var(--near-black);
      background: var(--light-2);
      font-style: italic;
    }

    .guided-prompt-label {
      font-style: normal;
      font-weight: 600;
      color: var(--zinc);
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    /* ============================================
       SECTION — QUICK ACCESS
       ============================================ */
    .quick-access {
      background: #FAFAFA;
      padding: var(--section-padding) clamp(20px, 4vw, 48px);
      padding-top: calc(var(--section-padding) + 40px);
      position: relative;
    }

    .quick-access::before {
      content: '';
      position: absolute;
      top: -1px;
      left: 0;
      right: 0;
      height: 42px;
      background: #ffffff;
      -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
      clip-path: polygon(0 0, 100% 0, 100% 100%);
    }

    .quick-access-inner {
      max-width: var(--content-width);
      margin: 0 auto;
    }

    .quick-access-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .quick-access-header .headline-muted {
      color: #6b6b75;
    }

    .quick-access-header .section-sub {
      margin: 16px auto 0 auto;
      max-width: 680px;
    }

    .quick-access-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }

    .quick-access-card {
      background: #ffffff;
      border: 1px solid #e4e4e8;
      border-radius: 16px;
      padding: 32px;
      display: flex;
      flex-direction: column;
      gap: 24px;
      transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    }

    .quick-access-card:hover {
      border-color: #4A9EFF;
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(74, 158, 255, 0.1);
    }

    .quick-access-image {
      background: #0a0a0a;
      border-radius: 12px;
      padding: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 260px;
      overflow: hidden;
    }

    .quick-access-image img {
      max-width: 100%;
      max-height: 280px;
      width: auto;
      height: auto;
      object-fit: contain;
      display: block;
      cursor: pointer;
      transition: opacity 0.15s ease;
    }

    .quick-access-image img:hover {
      opacity: 0.9;
    }

    .quick-access-body {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .quick-access-eyebrow {
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #4A9EFF;
    }

    .quick-access-body h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: #0a0a0a;
      line-height: 1.2;
    }

    .quick-access-body p {
      font-size: 0.95rem;
      line-height: 1.6;
      color: #4a4a52;
      margin: 0;
    }

    .quick-access-footer {
      text-align: center;
      margin-top: 56px;
      font-size: 1rem;
      color: #6b6b75;
      max-width: 620px;
      margin-left: auto;
      margin-right: auto;
    }

    /* ============================================
       SECTION 6 — SMART ACTIONS
       ============================================ */
    .smart-actions {
      background: var(--near-black);
      padding: var(--section-padding) clamp(20px, 4vw, 48px);
      padding-top: calc(var(--section-padding) + 40px);
      position: relative;
    }

    .smart-actions::before {
      content: '';
      position: absolute;
      top: -1px;
      left: 0;
      right: 0;
      height: 42px;
      background: #FAFAFA;
      -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
      clip-path: polygon(0 0, 100% 0, 100% 100%);
    }

    .smart-actions-inner {
      max-width: var(--content-width);
      margin: 0 auto;
    }

    .smart-actions-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .smart-headline {
      color: var(--white);
    }

    .smart-headline-muted {
      color: var(--gray-3);
    }

    .smart-sub {
      color: var(--zinc);
    }

    /* ── Smart Demo Block ── */
    .smart-demo {
      max-width: 520px;
      margin: 0 auto 56px;
    }

    .smart-demo-screenshot {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 12px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    }

    .smart-capture-block {
      background: var(--dark-3);
      border-radius: 14px 14px 0 0;
      padding: 24px;
      border: 1px solid var(--gray-1);
      border-bottom: none;
    }

    .smart-capture-text {
      font-family: var(--font-mono);
      font-size: 0.8125rem;
      line-height: 1.7;
      color: var(--gray-5);
    }

    .smart-entity {
      color: var(--blue);
      text-decoration: underline;
      text-decoration-style: dotted;
      text-underline-offset: 3px;
    }

    .smart-action-chips {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 16px 24px;
      background: var(--dark-2);
      border-radius: 0 0 14px 14px;
      border: 1px solid var(--gray-1);
      border-top: 1px solid var(--gray-1);
      flex-wrap: wrap;
    }

    .smart-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      background: var(--white);
      border: 1px solid var(--white);
      border-radius: 100px;
      font-family: var(--font-body);
      font-size: 0.8125rem;
      color: var(--near-black);
      cursor: pointer;
      transition: all 0.25s ease;
      font-weight: 600;
    }

    .smart-chip:hover {
      background: var(--light-2);
      border-color: var(--light-2);
    }

    .smart-chip-more {
      font-size: 0.8125rem;
      color: var(--zinc);
    }

    /* ── Smart Action Cards Grid ── */
    .smart-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      max-width: 720px;
      margin: 0 auto;
    }

    .smart-card {
      background: var(--dark-3);
      border: 1px solid var(--gray-1);
      border-radius: 12px;
      padding: 20px;
      text-align: center;
      transition: border-color 0.25s ease;
    }

    .smart-card:hover {
      border-color: var(--gray-2);
    }

    .smart-card-label {
      display: block;
      font-family: var(--font-mono);
      font-size: 0.625rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--zinc);
      margin-bottom: 10px;
    }

    .smart-card-action {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-family: var(--font-body);
      font-size: 0.8125rem;
      font-weight: 500;
      color: var(--white);
    }

    /* ============================================
       SECTION 7 — SESSIONS
       ============================================ */
    .sessions {
      background: var(--white);
      padding: var(--section-padding) clamp(20px, 4vw, 48px);
      padding-top: calc(var(--section-padding) + 40px);
      position: relative;
    }

    .sessions::before {
      content: '';
      position: absolute;
      top: -1px;
      left: 0;
      right: 0;
      height: 42px;
      background: var(--near-black);
      -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
      clip-path: polygon(0 0, 100% 0, 100% 100%);
    }

    .sessions-inner {
      max-width: var(--content-width);
      margin: 0 auto;
    }

    .sessions-header {
      text-align: center;
      margin-bottom: 56px;
    }

    .sessions-header .section-headline {
      text-align: center;
    }

    .sessions-header .section-sub {
      text-align: center;
      margin: 16px auto 0;
    }

    /* ── Session Screenshots ── */
    .sessions-screenshots {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      max-width: 800px;
      margin: 0 auto 56px;
    }

    .session-screenshot {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      border: 1px solid #e5e5e5;
      cursor: pointer;
      transition: opacity 0.15s ease;
    }

    .session-screenshot:hover {
      opacity: 0.85;
    }

    /* ── Session Cards ── */
    .sessions-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 56px;
    }

    .session-card {
      background: #FAFAFA;
      border: 1px solid var(--light-1);
      border-radius: 14px;
      padding: 28px;
    }

    .session-card-icon {
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      background: var(--white);
      border: 1px solid var(--gray-6);
      color: var(--near-black);
      margin-bottom: 16px;
    }

    .session-card-title {
      font-family: var(--font-display);
      font-size: 1.125rem;
      font-weight: 700;
      color: var(--near-black);
      margin-bottom: 8px;
      letter-spacing: -0.01em;
    }

    .session-card-desc {
      font-size: 0.875rem;
      line-height: 1.65;
      color: var(--zinc);
    }

    /* ── Export Row ── */
    .sessions-export {
      text-align: center;
    }

    .sessions-export-label {
      display: block;
      font-family: var(--font-mono);
      font-size: 0.6875rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--zinc);
      margin-bottom: 12px;
    }

    .sessions-export-list {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .export-format {
      font-family: var(--font-display);
      font-size: 0.9375rem;
      font-weight: 600;
      color: var(--gray-3);
    }

    .export-divider {
      color: var(--gray-6);
      user-select: none;
    }

    /* ============================================
       SECTION — SOCIAL PROOF
       ============================================ */
    .social-proof {
      background: #111111;
      padding: var(--section-padding) clamp(20px, 4vw, 48px);
    }

    .social-proof .section-headline {
      color: #fafafa;
    }

    .social-proof .section-sub {
      color: #a1a1aa;
    }

    .social-proof-inner {
      max-width: 960px;
      margin: 0 auto;
      text-align: center;
    }

    /* Founder card */
    .founder-card {
      background: #1a1a1a;
      border: 1px solid #2d2d32;
      border-left: 3px solid #4a4a52;
      border-radius: 12px;
      padding: 2rem;
      display: flex;
      gap: 1.5rem;
      align-items: flex-start;
      text-align: left;
      margin: 2.5rem auto 2rem;
    }

    .founder-avatar {
      width: 3.5rem;
      height: 3.5rem;
      min-width: 3.5rem;
      border-radius: 50%;
      background: #2d2d32;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.125rem;
      font-weight: 600;
      color: #a1a1aa;
      user-select: none;
    }

    .founder-content {
      flex: 1;
    }

    .founder-quote {
      font-size: 1rem;
      color: #d4d4d8;
      line-height: 1.7;
      margin-bottom: 1rem;
      font-style: italic;
    }

    .founder-name {
      font-size: 0.875rem;
      font-weight: 600;
      color: #fafafa;
      margin-bottom: 0.25rem;
    }

    .founder-bio {
      font-size: 0.8125rem;
      color: #71717a;
      font-style: italic;
    }

    /* Founder footer (below grid) */
    .founder-footer {
      text-align: center;
      margin-top: 3rem;
    }

    .founder-divider {
      border: none;
      border-top: 1px solid #2d2d32;
      margin-bottom: 2.5rem;
    }

    .founder-footer-quote {
      font-size: 1.25rem;
      color: #d4d4d8;
      line-height: 1.6;
      font-style: italic;
      max-width: 700px;
      margin: 0 auto 1.25rem;
    }

    .founder-footer-name {
      font-size: 0.9375rem;
      font-weight: 600;
      color: #fafafa;
      margin-bottom: 0.25rem;
    }

    .founder-footer-bio {
      font-size: 0.8125rem;
      color: #71717a;
      font-style: italic;
    }

    /* Testimonial grid */
    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
      text-align: left;
    }

    .testimonial-card {
      background: #1a1a1a;
      border: 1px solid #2d2d32;
      border-radius: 12px;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
    }

    .testimonial-quote-area {
      position: relative;
      flex: 1;
      margin-bottom: 1rem;
    }

    .testimonial-quote-mark {
      font-size: 3rem;
      line-height: 1;
      color: #3f3f46;
      position: absolute;
      top: -8px;
      left: 0;
      user-select: none;
      font-family: Georgia, serif;
    }

    .testimonial-quote {
      font-size: 0.9375rem;
      color: #d4d4d8;
      line-height: 1.6;
      padding-top: 1.75rem;
    }

    .testimonial-attribution {
      border-top: 1px solid #2d2d32;
      padding-top: 0.875rem;
    }

    .testimonial-name {
      font-size: 0.875rem;
      font-weight: 600;
      color: #fafafa;
    }

    .testimonial-role {
      font-size: 0.8125rem;
      color: #a1a1aa;
      margin-top: 0.125rem;
    }

    .testimonial-tag {
      display: inline-block;
      font-size: 0.6875rem;
      color: #a1a1aa;
      background: #2d2d32;
      border: none;
      padding: 3px 10px;
      border-radius: 999px;
      margin-top: 0.5rem;
    }

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

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

      .founder-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
    }

    /* ============================================
       SECTION 8 — YOUR AI
       ============================================ */
    .your-ai {
      background: #FAFAFA;
      padding: var(--section-padding) clamp(20px, 4vw, 48px);
      padding-top: calc(var(--section-padding) + 40px);
      position: relative;
    }

    .your-ai::before {
      content: '';
      position: absolute;
      top: -1px;
      left: 0;
      right: 0;
      height: 42px;
      background: var(--white);
      -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
      clip-path: polygon(0 0, 100% 0, 0 100%);
    }

    .your-ai-inner {
      max-width: var(--content-width);
      margin: 0 auto;
    }

    .your-ai-header {
      text-align: center;
      margin-bottom: 48px;
    }

    /* ── AI Cards ── */
    .ai-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      max-width: 800px;
      margin: 0 auto 64px;
    }

    .ai-card {
      border-radius: 14px;
      padding: 32px;
      display: flex;
      flex-direction: column;
    }

    .ai-card-light {
      background: var(--white);
      border: 1px solid var(--gray-6);
    }

    .ai-card-dark {
      background: var(--near-black);
      border: 1px solid var(--gray-1);
    }

    .ai-card-tag {
      display: inline-block;
      font-family: var(--font-mono);
      font-size: 0.6875rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      padding: 4px 12px;
      border-radius: 100px;
      margin-bottom: 16px;
      align-self: flex-start;
    }

    .ai-card-light .ai-card-tag {
      background: var(--light-2);
      color: var(--gray-3);
    }

    .ai-card-dark .ai-card-tag {
      background: var(--gray-1);
      color: var(--zinc);
    }

    .ai-card-title {
      font-family: var(--font-display);
      font-size: 1.375rem;
      font-weight: 700;
      letter-spacing: -0.01em;
      margin-bottom: 8px;
    }

    .ai-card-light .ai-card-title {
      color: var(--near-black);
    }

    .ai-card-dark .ai-card-title {
      color: var(--white);
    }

    .ai-card-desc {
      font-size: 0.875rem;
      line-height: 1.6;
      margin-bottom: 24px;
    }

    .ai-card-light .ai-card-desc {
      color: var(--zinc);
    }

    .ai-card-dark .ai-card-desc {
      color: var(--gray-3);
    }

    .ai-card-price {
      margin-top: auto;
    }

    .price-amount {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 800;
      letter-spacing: -0.02em;
    }

    .price-period {
      font-size: 1rem;
      font-weight: 400;
    }

    .ai-card-light .price-amount {
      color: var(--near-black);
    }

    .ai-card-light .price-period {
      color: var(--zinc);
    }

    .ai-card-dark .price-amount {
      color: var(--white);
    }

    .ai-card-dark .price-period {
      color: var(--gray-3);
    }

    /* ── Providers Row ── */
    .providers-row {
      text-align: center;
    }

    .providers-label {
      display: block;
      font-family: var(--font-mono);
      font-size: 0.6875rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--zinc);
      margin-bottom: 20px;
    }

    .providers-list {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 24px 40px;
    }

    .provider-name {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--gray-3);
    }

    .provider-anthropic {
      font-family: ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif;
    }

    .provider-openai {
      font-family: var(--font-display);
    }

    .provider-gemini {
      font-family: var(--font-display);
      letter-spacing: -0.03em;
    }

    .provider-groq {
      font-family: var(--font-display);
      font-style: italic;
    }

    .provider-openrouter {
      font-family: var(--font-display);
    }

    .provider-claude-cli {
      font-family: var(--font-display);
    }

    .provider-chatgpt-cli {
      font-family: var(--font-display);
    }

    /* ============================================
       SECTION 8 — PRICING
       ============================================ */
    .pricing {
      background: var(--white);
      padding: var(--section-padding) clamp(20px, 4vw, 48px);
      position: relative;
    }

    .pricing-inner {
      max-width: var(--content-width);
      margin: 0 auto;
    }

    .pricing-header {
      text-align: center;
      margin-bottom: 32px;
    }

    /* ── Toggle ── */
    .pricing-toggle {
      display: flex;
      justify-content: center;
      margin-bottom: 48px;
    }

    .toggle-option {
      font-family: var(--font-body);
      font-size: 0.875rem;
      font-weight: 500;
      padding: 10px 24px;
      border: 1px solid var(--gray-6);
      background: var(--white);
      color: var(--gray-3);
      cursor: pointer;
      transition: all 0.25s ease;
    }

    .toggle-option:first-child {
      border-radius: 100px 0 0 100px;
      border-right: none;
    }

    .toggle-option:last-child {
      border-radius: 0 100px 100px 0;
    }

    .toggle-option.active {
      background: var(--near-black);
      border-color: var(--near-black);
      color: var(--white);
      font-weight: 600;
    }

    .toggle-save {
      color: #4a9e4a;
      font-weight: 600;
      margin-left: 4px;
    }

    /* ── Pricing Cards ── */
    .pricing-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      max-width: 800px;
      margin: 0 auto 32px;
    }

    .pricing-card {
      border-radius: 14px;
      padding: 32px;
      display: flex;
      flex-direction: column;
      position: relative;
    }

    .pricing-card-light {
      background: var(--white);
      border: 1px solid var(--gray-6);
    }

    .pricing-card-dark {
      background: var(--near-black);
      border: 1px solid var(--gray-1);
    }

    .pricing-badge {
      position: absolute;
      top: 16px;
      right: 16px;
      font-family: var(--font-mono);
      font-size: 0.625rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      padding: 4px 10px;
      border-radius: 4px;
      background: var(--white);
      color: var(--near-black);
    }

    .pricing-card-title {
      font-family: var(--font-display);
      font-size: 1.375rem;
      font-weight: 700;
      letter-spacing: -0.01em;
      margin-bottom: 4px;
    }

    .pricing-card-light .pricing-card-title {
      color: var(--near-black);
    }

    .pricing-card-dark .pricing-card-title {
      color: var(--white);
    }

    .pricing-card-subtitle {
      font-size: 0.875rem;
      margin-bottom: 20px;
    }

    .pricing-card-light .pricing-card-subtitle {
      color: var(--zinc);
    }

    .pricing-card-dark .pricing-card-subtitle {
      color: var(--gray-3);
    }

    .pricing-card-price {
      margin-bottom: 24px;
    }

    .pricing-amount {
      font-family: var(--font-display);
      font-size: 2.5rem;
      font-weight: 800;
      letter-spacing: -0.02em;
    }

    .pricing-period {
      font-size: 1rem;
      font-weight: 400;
    }

    .pricing-card-light .pricing-amount {
      color: var(--near-black);
    }

    .pricing-card-light .pricing-period {
      color: var(--zinc);
    }

    .pricing-card-dark .pricing-amount {
      color: var(--white);
    }

    .pricing-card-dark .pricing-period {
      color: var(--gray-3);
    }

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

    .pricing-features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.875rem;
      line-height: 1.5;
    }

    .pricing-features svg {
      flex-shrink: 0;
      margin-top: 2px;
    }

    .pricing-card-light .pricing-features li {
      color: var(--near-black);
    }

    .pricing-card-light .pricing-features svg {
      color: var(--zinc);
    }

    .pricing-card-dark .pricing-features li {
      color: var(--white);
    }

    .pricing-card-dark .pricing-features svg {
      color: var(--zinc);
    }

    .pricing-cta {
      display: block;
      text-align: center;
      padding: 14px 24px;
      border-radius: 10px;
      font-family: var(--font-body);
      font-size: 0.9375rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.25s ease;
    }

    .pricing-cta-dark {
      background: var(--near-black);
      color: var(--white);
      border: 1px solid var(--near-black);
    }

    .pricing-cta-dark:hover {
      background: var(--dark-3);
    }

    .pricing-cta-light {
      background: var(--white);
      color: var(--near-black);
      border: 1px solid var(--white);
    }

    .pricing-cta-light:hover {
      background: var(--light-2);
    }

    .pricing-note {
      text-align: center;
      font-size: 0.875rem;
      color: var(--zinc);
    }

    /* ============================================
       SECTION 10 — FAQ
       ============================================ */
    .faq {
      background: #FAFAFA;
      padding: var(--section-padding) clamp(20px, 4vw, 48px);
    }

    .faq-inner {
      max-width: 720px;
      margin: 0 auto;
    }

    .faq .section-headline {
      text-align: center;
      margin-bottom: 48px;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
    }

    .faq-item {
      border-bottom: 1px solid var(--gray-6);
    }

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 0;
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 600;
      color: var(--near-black);
      cursor: pointer;
      list-style: none;
      user-select: none;
    }

    .faq-question::-webkit-details-marker {
      display: none;
    }

    .faq-chevron {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      position: relative;
      transition: transform 0.3s ease;
    }

    .faq-chevron::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 8px;
      height: 8px;
      border-right: 2px solid var(--zinc);
      border-bottom: 2px solid var(--zinc);
      transform: translate(-50%, -60%) rotate(45deg);
      transition: transform 0.3s ease;
    }

    .faq-item[open] .faq-chevron::before {
      transform: translate(-50%, -40%) rotate(-135deg);
    }

    .faq-answer {
      padding: 0 0 20px;
    }

    .faq-answer p {
      font-size: 0.9375rem;
      line-height: 1.7;
      color: var(--zinc);
    }

    /* ============================================
       SECTION 11 — FINAL CTA
       ============================================ */
    .final-cta {
      background: var(--near-black);
      padding: var(--section-padding) clamp(20px, 4vw, 48px);
      position: relative;
    }

    .final-cta::before {
      content: '';
      position: absolute;
      top: -1px;
      left: 0;
      right: 0;
      height: 42px;
      background: #FAFAFA;
      -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
      clip-path: polygon(0 0, 100% 0, 0 100%);
    }

    .final-cta-inner {
      max-width: var(--content-width);
      margin: 0 auto;
      text-align: center;
      padding-top: 40px;
    }

    .final-cta-headline {
      font-family: var(--font-display);
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 800;
      color: var(--white);
      letter-spacing: -0.02em;
      margin-bottom: 16px;
    }

    .final-cta-sub {
      font-size: 1rem;
      color: var(--zinc);
      margin-bottom: 32px;
    }

    .final-cta-buttons {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
    }

    .download-btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 40px;
      background: var(--white);
      color: var(--near-black);
      border-radius: 100px;
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.25s ease;
    }

    .download-btn-primary:hover {
      background: var(--light-2);
      transform: translateY(-1px);
    }

    .download-ext {
      font-weight: 400;
      color: var(--zinc);
      margin-left: 4px;
    }

    .download-also {
      text-align: center;
    }

    .download-also-label {
      display: block;
      font-family: var(--font-mono);
      font-size: 0.6875rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--zinc);
      margin-bottom: 12px;
    }

    .download-secondary-buttons {
      display: flex;
      justify-content: center;
      gap: 12px;
    }

    .download-btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 24px;
      background: transparent;
      color: var(--gray-5);
      border: 1px solid var(--gray-2);
      border-radius: 100px;
      font-family: var(--font-body);
      font-size: 0.875rem;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.25s ease;
    }

    .download-btn-secondary:hover {
      border-color: var(--gray-5);
      color: var(--white);
    }

    .download-note {
      font-size: 0.75rem;
      color: var(--gray-3);
    }

    /* ============================================
       FOOTER
       ============================================ */
    .footer {
      background: var(--near-black);
      border-top: 1px solid var(--gray-1);
      padding: 48px clamp(20px, 4vw, 48px) 24px;
    }

    .footer-inner {
      max-width: var(--content-width);
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      gap: 48px;
      margin-bottom: 48px;
    }

    .footer-brand {
      max-width: 280px;
    }

    .footer-logo {
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--white);
      text-decoration: none;
      letter-spacing: -0.02em;
    }

    .footer-tagline {
      font-size: 0.8125rem;
      color: var(--zinc);
      margin-top: 8px;
      line-height: 1.5;
    }

    .footer-links {
      display: flex;
      gap: 64px;
    }

    .footer-col {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-col-title {
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--zinc);
      margin-bottom: 4px;
    }

    .footer-col a {
      font-size: 0.8125rem;
      color: var(--gray-5);
      text-decoration: none;
      transition: color 0.2s ease;
    }

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

    .footer-bottom {
      max-width: var(--content-width);
      margin: 0 auto;
      padding-top: 24px;
      border-top: 1px solid var(--gray-1);
    }

    .footer-bottom p {
      font-size: 0.75rem;
      color: var(--gray-3);
    }

    /* ============================================
       RESPONSIVE
       ============================================ */
    @media (max-width: 900px) {
      .mode-panel.active {
        grid-template-columns: 1fr;
      }

      .steps-row {
        flex-direction: column;
        align-items: center;
        gap: 48px;
      }

      .step:not(:last-child)::after {
        display: none;
      }

      .capture-modes {
        clip-path: none;
        margin-top: 0;
        padding-top: var(--section-padding);
      }

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

      .quick-access-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .quick-access-card {
        padding: 24px;
      }

      .quick-access-image {
        min-height: 220px;
        padding: 20px;
      }

      .quick-access-image img {
        max-height: 240px;
      }

      .quick-access-body h3 {
        font-size: 1.35rem;
      }

      .sessions-screenshots {
        grid-template-columns: 1fr;
        max-width: 400px;
      }

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

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

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

      .footer-inner {
        flex-direction: column;
        gap: 32px;
      }

      .footer-links {
        gap: 32px;
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      }

      .nav-links.open {
        display: flex;
      }

      .nav-cta-mobile-wrap {
        display: block;
      }

      .nav-links .nav-cta-mobile {
        display: block;
        text-align: center;
        padding: 12px 24px;
        background: var(--blue);
        color: var(--white);
        border-radius: 100px;
        font-weight: 600;
        font-size: 0.875rem;
        margin-top: 8px;
      }

      .nav-hamburger {
        display: flex;
      }

      .nav-cta {
        display: none;
      }

      .hero-sub {
        font-size: clamp(1rem, 3.5vw, 1.25rem);
      }

      .hero-headline {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
      }

      .hero-appname {
        font-size: clamp(2.5rem, 10vw, 4rem);
      }

      .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
      }

      .window-content {
        height: 240px;
      }

      .stats-bar {
        padding: 36px clamp(20px, 4vw, 48px);
      }

      .smart-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }
    }

    @media (max-width: 480px) {
      .smart-grid {
        grid-template-columns: 1fr;
      }
      .hero-badge {
        font-size: 0.75rem;
      }

      .hero-screenshot {
        border-radius: 8px;
        max-width: 100%;
      }
    }
