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

    :root {
      --amber: #FFBA49;
      --amber-hot: #FFD080;
      --amber-deep: #E8A030;
      --midnight: #08090D;
      --ink: #0D0F15;
      --surface: #131620;
      --surface-up: #1A1D2A;
      --paper: #F0ECE4;
      --paper-dim: rgba(240, 236, 228, 0.65);
      --paper-ghost: rgba(240, 236, 228, 0.35);
      --slate: #5A5F72;
      --line: rgba(240, 236, 228, 0.06);
      --line-hover: rgba(240, 236, 228, 0.12);
      --glow: rgba(255, 186, 73, 0.08);
      --glow-strong: rgba(255, 186, 73, 0.18);
    }

    html {
      scroll-behavior: smooth;
      scrollbar-width: thin;
      scrollbar-color: var(--surface-up) var(--midnight);
    }

    body {
      background: var(--midnight);
      color: var(--paper);
      font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* ═══ CURSOR GLOW ═══ */
    .cursor-glow {
      position: fixed;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,186,73,0.07) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
      transform: translate(-50%, -50%);
      transition: opacity 0.4s ease;
      opacity: 0;
    }
    .cursor-glow.active { opacity: 1; }

    /* ═══ NAV ═══ */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 0 3rem; height: 72px;
      display: flex; align-items: center; justify-content: space-between;
      backdrop-filter: blur(24px) saturate(180%);
      -webkit-backdrop-filter: blur(24px) saturate(180%);
      background: rgba(8, 9, 13, 0.75);
      border-bottom: 1px solid var(--line);
    }
    .logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; color: var(--paper); }
    .logo-mark { line-height: 0; filter: drop-shadow(0 0 10px rgba(255,186,73,0.35)); transition: filter 0.3s ease; }
    .logo:hover .logo-mark { filter: drop-shadow(0 0 16px rgba(255,186,73,0.5)); }
    .logo-mark svg { width: 22px; height: 22px; overflow: visible; }
    .logo-mark .tri-stroke { fill: none; stroke: var(--amber); stroke-width: 1.8; }
    .logo-mark .tri-fill { fill: var(--amber); clip-path: inset(100% 0 0 0); transition: clip-path 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); }
    .logo:hover .logo-mark .tri-fill { clip-path: inset(0 0 0 0); }
    .logo-text { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.15rem; letter-spacing: -0.03em; }
    .nav-right { display: flex; align-items: center; gap: 2.5rem; }
    .nav-link { color: var(--paper-ghost); text-decoration: none; font-size: 0.85rem; font-weight: 500; letter-spacing: -0.01em; transition: color 0.25s ease; }
    .nav-link:hover { color: var(--paper); }
    .nav-btn {
      background: var(--paper); color: var(--midnight);
      padding: 0.55rem 1.3rem; border-radius: 100px;
      font-weight: 700; font-size: 0.8rem; text-decoration: none;
      letter-spacing: 0.01em; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); font-family: inherit;
    }
    .nav-btn:hover { background: var(--amber); transform: scale(1.04); box-shadow: 0 0 30px rgba(255,186,73,0.25); }

    /* ═══ HERO ═══ */
    .hero {
      min-height: 100vh; display: flex; align-items: center; justify-content: center;
      position: relative; overflow: hidden; padding: 6rem 2rem 6rem;
    }
    .hero::after {
      content: ''; position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
      pointer-events: none; z-index: 1;
    }
    .hero-content { position: relative; z-index: 2; text-align: center; max-width: 900px; }
    .hero-tag {
      display: inline-flex; align-items: center; gap: 0.6rem; margin-bottom: 3rem;
      opacity: 0; animation: heroIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    }
    .hero-tag .pulse-ring { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); position: relative; }
    .hero-tag .pulse-ring::after {
      content: ''; position: absolute; inset: -4px; border-radius: 50%;
      border: 1.5px solid var(--amber); animation: ringPulse 2.5s ease-in-out infinite;
    }
    .hero-tag span { font-family: 'JetBrains Mono', monospace; font-size: 0.78rem; font-weight: 500; color: var(--amber); letter-spacing: 0.04em; }
    .hero h1 {
      font-family: 'Instrument Serif', serif;
      font-size: clamp(3.5rem, 9vw, 7.5rem); font-weight: 400;
      line-height: 0.95; letter-spacing: -0.03em; margin-bottom: 2rem;
    }
    .hero h1 .line { display: block; opacity: 0; transform: translateY(60px); animation: heroLine 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
    .hero h1 .line:nth-child(1) { animation-delay: 0.1s; }
    .hero h1 .line:nth-child(2) { animation-delay: 0.25s; }
    .hero h1 .line:nth-child(3) { animation-delay: 0.4s; }
    .hero h1 em { font-style: italic; color: var(--amber); }
    .hero-sub {
      font-size: 1.15rem; color: var(--paper-dim); max-width: 460px;
      margin: 0 auto 3rem; line-height: 1.7; font-weight: 300;
      opacity: 0; animation: heroIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
    }
    .hero-cta {
      display: inline-flex; align-items: center; gap: 0.75rem;
      background: var(--amber); color: var(--midnight);
      padding: 1rem 2.25rem; border-radius: 100px;
      font-weight: 700; font-size: 0.95rem; text-decoration: none;
      letter-spacing: -0.01em; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      opacity: 0; animation: heroIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
      font-family: inherit; position: relative; overflow: hidden;
    }
    .hero-cta::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transform: translateX(-100%); transition: transform 0.6s ease;
    }
    .hero-cta:hover::before { transform: translateX(100%); }
    .hero-cta:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 12px 40px rgba(255,186,73,0.35), 0 0 80px rgba(255,186,73,0.15); }
    .hero-cta svg { transition: transform 0.3s ease; }
    .hero-cta:hover svg { transform: translateX(3px); }

    .ambient { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; z-index: 0; }
    .ambient-1 { width: 500px; height: 500px; background: rgba(255,186,73,0.06); top: -10%; right: -5%; animation: ambientFloat 20s ease-in-out infinite; }
    .ambient-2 { width: 400px; height: 400px; background: rgba(255,186,73,0.04); bottom: -10%; left: -8%; animation: ambientFloat 25s ease-in-out infinite reverse; }
    .ambient-3 { width: 200px; height: 200px; background: rgba(90,130,255,0.04); top: 30%; left: 15%; animation: ambientFloat 18s ease-in-out infinite 5s; }

    /* ═══ FLOATING INBOX CARDS ═══ */
    .inbox-float {
      position: absolute;
      z-index: 2;
      pointer-events: none;
      filter: blur(2px);
      opacity: 0;
      transition: filter 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
    }
    .inbox-float.in-focus {
      filter: blur(0px);
      opacity: 1 !important;
    }
    .inbox-card {
      background: var(--surface); border: 1px solid var(--line-hover); border-radius: 16px;
      padding: 0.9rem 1.2rem; backdrop-filter: blur(20px);
      display: flex; align-items: center; gap: 0.85rem;
      box-shadow: 0 20px 60px rgba(0,0,0,0.4); white-space: nowrap;
      transform: scale(0.92);
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .inbox-float.in-focus .inbox-card {
      transform: scale(1);
    }
    .inbox-avatar {
      width: 32px; height: 32px; border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-weight: 800; font-size: 0.7rem; flex-shrink: 0;
    }
    .inbox-text { line-height: 1.35; }
    .inbox-name { font-weight: 700; font-size: 0.78rem; letter-spacing: -0.01em; }
    .inbox-msg { font-size: 0.68rem; color: var(--paper-ghost); font-family: 'JetBrains Mono', monospace; }
    .inbox-time { font-family: 'JetBrains Mono', monospace; font-size: 0.62rem; color: var(--slate); margin-left: auto; padding-left: 1.2rem; }
    /* Pulled further from center, out of the text zone */
    .float-1 { top: 18%; right: 1%; opacity: 0; animation: floatCard 1s cubic-bezier(0.16,1,0.3,1) 1.2s forwards, floatBob 6s ease-in-out 2.2s infinite; }
    .float-2 { bottom: 24%; left: 0%; opacity: 0; animation: floatCard 1s cubic-bezier(0.16,1,0.3,1) 1.6s forwards, floatBob 7s ease-in-out 2.6s infinite reverse; }
    .float-3 { top: 62%; right: 2%; opacity: 0; animation: floatCard 1s cubic-bezier(0.16,1,0.3,1) 2s forwards, floatBob 8s ease-in-out 3s infinite; }
    /* Staggered sharpening — cards come into focus one by one */
    .float-1 { animation: floatCard 1s cubic-bezier(0.16,1,0.3,1) 1.2s forwards, floatBob 6s ease-in-out 2.2s infinite, cardSharpen 0.8s cubic-bezier(0.16,1,0.3,1) 2.5s forwards; }
    .float-2 { animation: floatCard 1s cubic-bezier(0.16,1,0.3,1) 1.6s forwards, floatBob 7s ease-in-out 2.6s infinite reverse, cardSharpen 0.8s cubic-bezier(0.16,1,0.3,1) 3.2s forwards; }
    .float-3 { animation: floatCard 1s cubic-bezier(0.16,1,0.3,1) 2s forwards, floatBob 8s ease-in-out 3s infinite, cardSharpen 0.8s cubic-bezier(0.16,1,0.3,1) 3.9s forwards; }
    .float-1 .inbox-avatar { background: var(--glow-strong); color: var(--amber); }
    .float-2 .inbox-avatar { background: rgba(90,200,160,0.15); color: #5ac8a0; }
    .float-3 .inbox-avatar { background: rgba(120,140,255,0.15); color: #8090ff; }
    @keyframes floatCard {
      from { opacity: 0; transform: translateY(30px) scale(0.95); }
      to { opacity: 0.65; transform: translateY(0) scale(1); }
    }
    @keyframes cardSharpen {
      from { filter: blur(2px); opacity: 0.65; }
      to { filter: blur(0px); opacity: 0.85; }
    }

    /* ═══ MARQUEE ═══ */
    .marquee-section { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 1.75rem 0; overflow: hidden; position: relative; }
    .marquee-track { display: flex; gap: 3.5rem; animation: marquee 30s linear infinite; width: max-content; }
    .marquee-item { font-family: 'JetBrains Mono', monospace; font-size: 0.78rem; color: var(--slate); white-space: nowrap; display: flex; align-items: center; gap: 0.6rem; letter-spacing: 0.02em; }
    .marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--amber); opacity: 0.5; }

    /* ═══ WHY NOW ═══ */
    .why-now { padding: 12rem 2rem; max-width: 720px; margin: 0 auto; text-align: center; position: relative; }
    .why-now h2 { font-family: 'Instrument Serif', serif; font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 400; line-height: 1.3; color: var(--paper); margin-bottom: 1.5rem; }
    .why-now h2 em { font-style: italic; color: var(--amber); }
    .why-now p { font-size: 1.05rem; line-height: 1.85; color: var(--paper-dim); font-weight: 300; }

    /* ═══ PIPELINE ═══ */
    .pipeline-visual { position: relative; height: 240px; margin-top: 2.5rem; }

    /* People — avatar chips with initials */
    .pp { position: absolute; display: flex; flex-direction: column; align-items: center; z-index: 3; opacity: 0; transition: opacity 0.5s ease; }
    .pp.on { opacity: 1; }
    .pp-av {
      width: 44px; height: 44px; border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-weight: 800; font-size: 0.65rem; letter-spacing: -0.02em;
      border: 1px solid var(--line); background: var(--ink); color: var(--paper-ghost);
      transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .pp-name { font-family: 'JetBrains Mono', monospace; font-size: 0.55rem; font-weight: 500; color: var(--slate); margin-top: 0.4rem; white-space: nowrap; transition: color 0.5s ease; }

    /* Glow — character is active */
    .pp.lit .pp-av { border-color: var(--pp-color, rgba(255,186,73,0.35)); box-shadow: 0 0 20px var(--pp-glow, rgba(255,186,73,0.15)); background: var(--pp-bg, rgba(255,186,73,0.06)); color: var(--pp-color, var(--amber)); }
    .pp.lit .pp-name { color: var(--pp-color, var(--amber)); }

    /* Squash on catch */
    @keyframes ppCatch { 0%{transform:scale(1)}25%{transform:scale(1.1,0.9)}50%{transform:scale(0.97,1.03)}100%{transform:scale(1)} }
    .pp.catch .pp-av { animation: ppCatch 400ms cubic-bezier(0,0,0.58,1); }

    /* Joy bounce */
    @keyframes ppJoy { 0%{transform:translateY(0) scale(1)}10%{transform:translateY(2px) scale(1.06,0.92)}25%{transform:translateY(-12px) scale(0.94,1.08)}40%{transform:translateY(0) scale(1.06,0.94)}55%{transform:translateY(-5px) scale(0.98,1.02)}70%{transform:translateY(0) scale(1.02,0.99)}100%{transform:translateY(0) scale(1)} }
    .pp.joy .pp-av { animation: ppJoy 1s cubic-bezier(0,0,0.58,1); }

    /* Pop in — for team members appearing mid-scene */
    @keyframes ppPop { 0%{opacity:0;transform:scale(0)}60%{opacity:1;transform:scale(1.12)}80%{transform:scale(0.96)}100%{opacity:1;transform:scale(1)} }
    .pp.pop { animation: ppPop 450ms cubic-bezier(0.34,1.56,0.64,1) forwards; }

    /* Orb — arcing energy transfer between people */
    .pp-orb {
      position: absolute; width: 8px; height: 8px; border-radius: 50%;
      background: var(--amber); box-shadow: 0 0 14px rgba(255,186,73,0.7), 0 0 4px rgba(255,186,73,1);
      opacity: 0; z-index: 10; pointer-events: none;
    }

    /* Sparkles */
    .pp-spark { position: absolute; border-radius: 50%; background: var(--amber); opacity: 0; z-index: 8; pointer-events: none; }
    @keyframes sparkOut { 0%{opacity:0;transform:translate(0,0) scale(0) rotate(0)}20%{opacity:1;transform:translate(calc(var(--sx)*0.5),calc(var(--sy)*0.5)) scale(1.3) rotate(90deg)}100%{opacity:0;transform:translate(calc(var(--sx)*1.5),calc(var(--sy)*1.5)) scale(0) rotate(360deg)} }
    .pp-spark.go { animation: sparkOut 700ms cubic-bezier(0,0,0.58,1) forwards; }

    /* Bubble — compact message card, used for both request and reply */
    .pp-bubble {
      position: absolute; z-index: 12; opacity: 0; transform: translateY(6px) scale(0.96);
      border-radius: 12px; padding: 0.7rem 0.9rem; max-width: 230px;
      font-family: 'JetBrains Mono', monospace; font-size: 0.6rem; line-height: 1.6;
      pointer-events: none; transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
    }
    .pp-bubble.vis { opacity: 1; transform: translateY(0) scale(1); }
    .pp-bubble.out { background: var(--ink); border: 1px solid var(--line-hover); color: var(--paper-dim); box-shadow: 0 6px 24px rgba(0,0,0,0.25); }
    .pp-bubble.in { background: var(--surface); border: 1px solid rgba(255,186,73,0.2); color: var(--paper-ghost); box-shadow: 0 6px 24px rgba(0,0,0,0.3), 0 0 16px rgba(255,186,73,0.04); }
    .pp-bubble strong { color: var(--paper-dim); }
    .pp-bubble .bub-head { display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.3rem; font-size: 0.55rem; }
    .pp-bubble .bub-head .bh-av { width: 16px; height: 16px; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 0.38rem; font-weight: 800; flex-shrink: 0; }
    .pp-bubble .bub-attach { display: inline-flex; align-items: center; gap: 0.25rem; margin-top: 0.35rem; padding: 0.15rem 0.4rem; border-radius: 4px; background: rgba(255,186,73,0.08); border: 1px solid rgba(255,186,73,0.15); color: var(--amber); font-size: 0.52rem; }

    /* Caption — short status text */
    .pp-cap {
      position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
      font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; color: var(--paper-dim);
      opacity: 0; white-space: nowrap; letter-spacing: 0.02em; z-index: 6; transition: opacity 0.35s ease;
    }
    .pp-cap.vis { opacity: 1; }
    .pp-cap.ok { color: #4ade80; }

    /* Typing cursor */
    .pp-cur { display: inline-block; width: 1px; height: 0.75em; background: var(--amber); vertical-align: text-bottom; margin-left: 1px; animation: ppBlink 0.6s step-end infinite; }
    @keyframes ppBlink { 0%,100%{opacity:1}50%{opacity:0} }

    /* ═══ BENTO — CURSOR RIM LIGHTING ═══ */
    .bento { padding: 8rem 2rem; max-width: 1200px; margin: 0 auto; }
    .bento-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 1.25rem; }

    .bento-card {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 24px;
      padding: 3rem;
      position: relative;
      overflow: hidden;
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
      cursor: default;
    }

    /* Rim light overlay — positioned by JS */
    .bento-card .rim-light {
      position: absolute;
      inset: 0;
      border-radius: 24px;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: 1;
    }

    .bento-card:hover .rim-light { opacity: 1; }

    .bento-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    }

    .bento-card > *:not(.rim-light) { position: relative; z-index: 2; }

    .bento-wide { grid-column: 1 / -1; }
    .bento-label { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; font-weight: 500; color: var(--amber); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1.25rem; }
    .bento-card h3 { font-family: 'Instrument Serif', serif; font-size: 2rem; font-weight: 400; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 0.75rem; }
    .bento-card p { font-size: 0.95rem; color: var(--paper-dim); line-height: 1.65; max-width: 440px; font-weight: 300; }
    .bento-visual { margin-top: 2.5rem; position: relative; }

    /* ═══ PLATFORM CARD VISUAL — animated agent network ═══ */
    .platform-visual {
      height: 220px;
      position: relative;
      margin-top: 2rem;
    }

    .pv-hub {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 56px; height: 56px;
      border-radius: 14px;
      background: var(--glow-strong);
      display: flex; align-items: center; justify-content: center;
      z-index: 3;
    }

    .pv-hub svg { width: 28px; height: 28px; }
    .pv-hub .tri-stroke { fill: none; stroke: var(--amber); stroke-width: 1.8; }
    .pv-hub .tri-fill-anim {
      fill: var(--amber);
      clip-path: inset(100% 0 0 0);
    }

    .pv-hub.firing .tri-fill-anim {
      animation: triFillUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    }

    .pv-hub.fired .tri-fill-anim {
      clip-path: inset(0 0 0 0);
    }

    .pv-hub.cooldown .tri-fill-anim {
      animation: triDrain 1.2s ease-out forwards;
    }

    @keyframes triFillUp {
      0% { clip-path: inset(100% 0 0 0); }
      100% { clip-path: inset(0 0 0 0); }
    }

    @keyframes triDrain {
      0% { clip-path: inset(0 0 0 0); }
      100% { clip-path: inset(100% 0 0 0); }
    }

    .pv-node {
      position: absolute;
      width: 40px; height: 40px;
      border-radius: 10px;
      background: var(--ink);
      border: 1px solid var(--line-hover);
      display: flex; align-items: center; justify-content: center;
      font-weight: 800; font-size: 0.6rem;
      color: var(--paper-ghost);
      z-index: 3;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .pv-node:nth-child(1) { top: 8%; left: 15%; }
    .pv-node:nth-child(2) { top: 6%; right: 18%; }
    .pv-node:nth-child(3) { bottom: 8%; left: 18%; }
    .pv-node:nth-child(4) { bottom: 10%; right: 15%; }
    .pv-node:nth-child(5) { top: 50%; left: 3%; transform: translateY(-50%); }
    .pv-node:nth-child(6) { top: 50%; right: 3%; transform: translateY(-50%); }

    .pv-lines-canvas {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      z-index: 1;
      pointer-events: none;
    }

    .pv-node.hit {
      border-color: var(--hit-color, var(--amber));
      box-shadow: 0 0 24px var(--hit-color, rgba(255,186,73,0.35)), inset 0 0 12px var(--hit-glow, rgba(255,186,73,0.1));
      color: var(--hit-text, var(--amber));
    }

    .pv-orb {
      position: absolute;
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--amber);
      box-shadow: 0 0 16px rgba(255,186,73,0.6), 0 0 4px rgba(255,186,73,0.9);
      z-index: 10;
      pointer-events: none;
      opacity: 0;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
    }

    /* ═══ MINI TERMINAL ═══ */
    .mini-terminal {
      background: var(--ink);
      border: 1px solid var(--line);
      border-radius: 12px;
      overflow: hidden;
    }
    .mini-terminal-bar {
      display: flex;
      align-items: center;
      gap: 5px;
      padding: 10px 14px;
      border-bottom: 1px solid var(--line);
    }
    .mini-terminal-bar span { width: 8px; height: 8px; border-radius: 50%; background: var(--slate); opacity: 0.4; }
    .mini-terminal-bar .bar-title {
      width: auto; height: auto; border-radius: 0; background: none; opacity: 1;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.65rem;
      color: var(--slate);
      margin-left: auto;
      letter-spacing: 0.04em;
    }
    .mini-terminal-body {
      padding: 1.25rem 1.5rem 1rem;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.72rem;
      line-height: 1.7;
      color: var(--paper-ghost);
      display: flex;
      flex-direction: column;
      gap: 0.9rem;
      height: 310px;
      overflow: hidden;
    }
    .t-amber { color: var(--amber); }
    .t-green { color: #4ade80; }
    .t-blue { color: #7dd3fc; }
    .t-dim { color: var(--slate); }

    /* Email thread bubbles */
    .email-in, .email-out {
      border-radius: 10px;
      padding: 0.75rem 1rem;
      max-width: 92%;
    }
    .email-in {
      background: rgba(240, 236, 228, 0.04);
      border: 1px solid var(--line);
      align-self: flex-start;
    }
    .email-out {
      background: rgba(255, 186, 73, 0.06);
      border: 1px solid rgba(255, 186, 73, 0.12);
      align-self: flex-end;
    }
    .email-header {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.45rem;
      font-size: 0.65rem;
    }
    .email-avatar {
      width: 20px; height: 20px;
      border-radius: 5px;
      display: flex; align-items: center; justify-content: center;
      font-weight: 800; font-size: 0.45rem;
      flex-shrink: 0;
    }
    .email-avatar.user-av {
      background: rgba(90, 95, 114, 0.2);
      color: var(--slate);
    }
    .email-avatar.allie-av {
      background: var(--glow-strong);
      color: var(--amber);
    }
    .email-sender { font-weight: 600; color: var(--paper-dim); }
    .email-time { color: var(--slate); margin-left: auto; font-size: 0.6rem; }
    .email-subject {
      font-weight: 600;
      color: var(--paper);
      font-size: 0.72rem;
      margin-bottom: 0.25rem;
    }
    .email-body-text {
      color: var(--paper-ghost);
      font-size: 0.68rem;
      line-height: 1.65;
    }
    .email-out .email-body-text { color: var(--paper-dim); }
    .email-attachment {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      margin-top: 0.5rem;
      padding: 0.3rem 0.6rem;
      background: rgba(255, 186, 73, 0.08);
      border: 1px solid rgba(255, 186, 73, 0.15);
      border-radius: 6px;
      font-size: 0.6rem;
      color: var(--amber);
    }
    .email-attachment svg { width: 11px; height: 11px; }
    .delivered-badge {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      padding: 0.4rem 0;
      font-size: 0.65rem;
      color: #4ade80;
      font-family: 'JetBrains Mono', monospace;
    }
    .delivered-badge .delivered-dot {
      width: 5px; height: 5px;
      border-radius: 50%;
      background: #4ade80;
    }

    /* Terminal animation — JS-driven narrative */
    .email-in, .email-out, .delivered-badge { opacity: 0; transform: translateY(12px) scale(0.98); }
    .email-in.on, .email-out.on { opacity: 1; transform: translateY(0) scale(1); transition: opacity 0.5s cubic-bezier(0.34,1.56,0.64,1), transform 0.5s cubic-bezier(0.34,1.56,0.64,1); }
    .delivered-badge.on { opacity: 1; transform: translateY(0) scale(1); transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34,1.56,0.64,1); }

    /* Typing indicator */
    .typing-indicator { display: flex; align-items: center; gap: 0.4rem; padding: 0 0.25rem; align-self: flex-end; opacity: 0; height: 0; overflow: hidden; transition: opacity 0.3s ease; }
    .typing-indicator.on { opacity: 1; height: auto; }
    .typing-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--amber); opacity: 0.4; }
    .typing-indicator.on .typing-dot { animation: typingBounce 0.6s ease-in-out infinite; }
    .typing-indicator.on .typing-dot:nth-child(2) { animation-delay: 0.1s; }
    .typing-indicator.on .typing-dot:nth-child(3) { animation-delay: 0.2s; }
    @keyframes typingBounce { 0%,100%{transform:translateY(0);opacity:0.4}50%{transform:translateY(-3px);opacity:1} }

    /* Typewriter cursor for terminal */
    .term-cursor { display: inline-block; width: 1px; height: 0.8em; background: var(--paper-ghost); vertical-align: text-bottom; margin-left: 1px; animation: termBlink 0.5s step-end infinite; }
    @keyframes termBlink { 0%,100%{opacity:1}50%{opacity:0} }

    /* Glow pulse on delivered */
    @keyframes deliverGlow { 0%{box-shadow:none}50%{box-shadow:0 0 12px rgba(74,222,128,0.2)}100%{box-shadow:none} }
    .mini-terminal.glow-done { animation: deliverGlow 1.2s ease; }

    /* Attachment pop */
    .email-attachment { transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease; }
    .email-out:not(.on) .email-attachment { opacity: 0; transform: scale(0.8); }
    .email-out.on .email-attachment { opacity: 1; transform: scale(1); transition-delay: 0.4s; }

    /* ═══ LAMP CHARACTER ═══ */
    .lamp-stage { display: flex; flex-direction: column; align-items: center; padding: 2.5rem 0 1.5rem; position: relative; }
    .lamp { position: relative; width: 80px; height: 160px; }

    /* Lamp hover chat bubbles */
    .lamp-chat {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.68rem;
      line-height: 1.55;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.4s ease;
      max-width: 220px;
      white-space: nowrap;
    }
    .lamp-chat.visible { opacity: 1; }
    .lamp-chat-q {
      right: calc(50% + 100px);
      text-align: right;
      color: var(--slate);
    }
    .lamp-chat-a {
      left: calc(50% + 100px);
      text-align: left;
    }
    .lamp-chat-cursor {
      display: inline-block;
      width: 1px;
      height: 0.85em;
      vertical-align: text-bottom;
      margin-left: 1px;
      animation: chatBlink 0.6s step-end infinite;
    }
    @keyframes chatBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
    .lamp-svg { width: 100%; height: 100%; overflow: visible; }
    .lamp-svg .stem-line { fill: none; stroke: #7A7E8E; stroke-width: 2; stroke-linecap: round; }
    .lamp-svg .base-rect { fill: #5A5F72; opacity: 0.45; }
    .lamp-svg .tri-stroke { fill: none; stroke: var(--amber); stroke-width: 1.2; transition: stroke 0.3s ease; }
    .lamp-svg .tri-fill { fill: var(--amber); clip-path: inset(100% 0 0 0); transition: clip-path 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), fill 0.3s ease; }
    .lamp.looking .tri-fill { clip-path: inset(0 0 0 0); }
    .lamp-svg .beam-cone { opacity: 0; }
    .lamp-shadow {
      position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%);
      width: 50px; height: 8px;
      background: radial-gradient(ellipse, rgba(0,0,0,0.3) 0%, transparent 70%);
    }

    /* ═══════════════════════════════════════
       AGENT TICKER
    ═══════════════════════════════════════ */
    .agent-ticker-wrap {
      overflow: clip;
      overflow-clip-margin: 30px;
      mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
      -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
      margin-top: 0.5rem;
      padding-top: 24px;
    }

    .agent-ticker {
      display: flex;
      gap: 1rem;
      animation: tickerScroll 24s linear infinite;
      width: max-content;
    }

    .agent-ticker:hover { animation-play-state: paused; }

    .agent-badge {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      background: var(--ink);
      border: 1px solid var(--line);
      border-radius: 14px;
      padding: 0.9rem 1.2rem;
      min-width: 200px;
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      flex-shrink: 0;
      position: relative;
      cursor: default;
      --agent-color: transparent;
    }

    .agent-badge:hover {
      border-color: var(--line-hover);
      background: var(--surface-up);
      transform: translateY(-2px);
    }

    .agent-badge.is-live {
      border-color: rgba(255,186,73,0.2);
      background: linear-gradient(135deg, var(--ink) 0%, rgba(255,186,73,0.04) 100%);
    }

    .agent-badge::before {
      content: none;
    }

    .badge-mono {
      width: 38px; height: 38px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 0.7rem;
      letter-spacing: -0.02em;
      flex-shrink: 0;
    }

    .badge-mono.live {
      background: var(--glow-strong);
      color: var(--amber);
      box-shadow: 0 0 20px rgba(255,186,73,0.1);
    }

    .badge-mono.soon {
      background: rgba(90,95,114,0.15);
      color: var(--slate);
    }

    .badge-info { line-height: 1.35; }

    .badge-name {
      font-weight: 700;
      font-size: 0.82rem;
      letter-spacing: -0.01em;
    }

    .badge-detail {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: 0.15rem;
    }

    .badge-role {
      font-size: 0.7rem;
      color: var(--paper-ghost);
    }

    .badge-status {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.58rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 0.3rem;
    }

    .badge-status.online { color: #4ade80; }
    .badge-status.pending { color: var(--slate); }

    .badge-status .sd {
      width: 4px; height: 4px;
      border-radius: 50%;
    }

    .badge-status.online .sd {
      background: #4ade80;
      animation: pulse 2s ease-in-out infinite;
    }

    .badge-status.pending .sd { background: var(--slate); }

    @keyframes tickerScroll {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    /* ═══ INTEGRATIONS ═══ */
    .integrations-strip { padding: 7rem 2rem; background: var(--ink); border-top: 1px solid var(--line); }
    .integrations-inner { max-width: 900px; margin: 0 auto; text-align: center; }
    .integrations-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate); margin-bottom: 3.5rem; }
    .integrations-grid { display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap; }
    .integrations-cluster { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
    .cluster-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--paper-ghost); }
    .cluster-icons { display: flex; gap: 1.25rem; align-items: center; }
    .int-icon { width: 36px; height: 36px; opacity: 0.5; transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease; filter: drop-shadow(0 0 0px transparent); }
    .int-icon:hover { opacity: 1; transform: translateY(-3px) scale(1.1); filter: drop-shadow(0 0 8px rgba(255,186,73,0.25)); }
    .int-icon svg { width: 100%; height: 100%; fill: var(--paper-dim); }

    /* Integration cluster entrance — circle clip reveal + blur resolve */
    .integrations-cluster { opacity: 0; transform: translateY(30px); }
    .integrations-cluster .int-icon { opacity: 0; transform: scale(0.6); filter: blur(6px); clip-path: circle(0% at 50% 50%); }
    .integrations-cluster.entered { opacity: 1; transform: translateY(0); transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
    @keyframes iconReveal {
      0% { opacity: 0; transform: scale(0.6); filter: blur(6px); clip-path: circle(0% at 50% 50%); }
      50% { opacity: 0.5; transform: scale(1.08); filter: blur(0px); clip-path: circle(55% at 50% 50%); }
      100% { opacity: 0.5; transform: scale(1); filter: blur(0px); clip-path: circle(75% at 50% 50%); }
    }
    .integrations-cluster.entered .int-icon:nth-child(1) { animation: iconReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
    .integrations-cluster.entered .int-icon:nth-child(2) { animation: iconReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.06s forwards; }
    .integrations-cluster.entered .int-icon:nth-child(3) { animation: iconReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.12s forwards; }

    /* Idle floating after entrance */
    @keyframes clusterFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-3.5px); }
    }
    .integrations-cluster.floating .cluster-icons {
      animation: clusterFloat var(--float-dur, 4s) ease-in-out var(--float-delay, 0s) infinite;
    }

    /* ═══ STATS ═══ */
    .stats-strip { padding: 6rem 2rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--ink); }
    .stats-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
    .stat { padding: 2rem; }
    .stat-val { font-family: 'Instrument Serif', serif; font-size: clamp(3rem, 6vw, 4.5rem); font-weight: 400; color: var(--amber); line-height: 1; margin-bottom: 0.6rem; }
    .stat-desc { font-size: 0.88rem; color: var(--paper-ghost); font-weight: 500; }

    /* ═══ CTA ═══ */
    .cta-final { padding: 12rem 2rem 8rem; text-align: center; position: relative; overflow: hidden; }
    .cta-final::before { content: ''; position: absolute; bottom: -200px; left: 50%; transform: translateX(-50%); width: 800px; height: 800px; background: radial-gradient(circle, rgba(255,186,73,0.06) 0%, transparent 60%); pointer-events: none; }
    .cta-final h2 { font-family: 'Instrument Serif', serif; font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 400; letter-spacing: -0.03em; line-height: 1; margin-bottom: 2rem; position: relative; z-index: 1; }
    .cta-final h2 em { font-style: italic; color: var(--amber); }
    .cta-final .hero-cta { animation: none; opacity: 1; position: relative; z-index: 1; }

    /* Ambient Q&A chatter */
    .cta-chatter {
      position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
    }
    .chatter-pair {
      position: absolute;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.68rem;
      line-height: 1.6;
      opacity: 0;
      white-space: nowrap;
      animation: chatterFade 8s ease-in-out forwards;
    }
    .chatter-q { color: var(--slate); opacity: 0.3; }
    .chatter-a { display: block; margin-top: 0.2rem; opacity: 0.45; }
    .chatter-cursor {
      display: inline-block; width: 1px; height: 1em; vertical-align: text-bottom;
      margin-left: 1px; animation: cursorBlink 0.6s step-end infinite;
    }

    @keyframes chatterFade {
      0% { opacity: 0; transform: translateY(8px); }
      8% { opacity: 1; transform: translateY(0); }
      75% { opacity: 1; }
      100% { opacity: 0; }
    }
    @keyframes cursorBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

    /* ═══ FOOTER ═══ */
    footer { padding: 2.5rem 3rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
    .footer-left { display: flex; align-items: center; gap: 0.6rem; font-family: 'Syne', sans-serif; font-weight: 600; font-size: 0.88rem; letter-spacing: -0.02em; }
    .footer-left .lamp-sm { color: var(--amber); font-size: 1.1rem; }
    .footer-right { font-size: 0.75rem; color: var(--slate); font-family: 'JetBrains Mono', monospace; }

    /* ═══ WAITLIST MODAL ═══ */
    .modal-overlay {
      position: fixed;
      inset: 0;
      z-index: 2000;
      background: rgba(8,9,13,0.85);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s ease;
    }

    .modal-overlay.open {
      opacity: 1;
      pointer-events: all;
    }

    .modal {
      background: var(--surface);
      border: 1px solid var(--line-hover);
      border-radius: 20px;
      padding: 2.75rem;
      max-width: 420px;
      width: 90%;
      transform: translateY(20px) scale(0.97);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
    }

    .modal-overlay.open .modal {
      transform: translateY(0) scale(1);
    }

    .modal-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: none;
      border: none;
      color: var(--slate);
      cursor: pointer;
      font-size: 1.25rem;
      line-height: 1;
      padding: 0.25rem;
      transition: color 0.2s ease;
    }

    .modal-close:hover { color: var(--paper); }

    .modal-lamp {
      text-align: center;
      margin-bottom: 1.5rem;
    }

    .modal-lamp svg { width: 32px; height: 32px; }
    .modal-lamp .tri-fill { fill: var(--amber); clip-path: inset(0); }
    .modal-lamp .tri-stroke { fill: none; stroke: var(--amber); stroke-width: 1.8; }

    .modal h3 {
      font-family: 'Instrument Serif', serif;
      font-size: 1.6rem;
      font-weight: 400;
      letter-spacing: -0.02em;
      text-align: center;
      margin-bottom: 0.4rem;
    }

    .modal .modal-sub {
      text-align: center;
      font-size: 0.85rem;
      color: var(--paper-ghost);
      margin-bottom: 1.75rem;
    }

    .modal-form {
      display: flex;
      gap: 0.5rem;
    }

    .modal-input {
      flex: 1;
      background: var(--ink);
      border: 1px solid var(--line-hover);
      border-radius: 10px;
      padding: 0.8rem 1rem;
      font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
      font-size: 0.88rem;
      color: var(--paper);
      outline: none;
      transition: border-color 0.25s ease;
    }

    .modal-input::placeholder { color: var(--slate); }
    .modal-input:focus { border-color: var(--amber); }

    .modal-submit {
      background: var(--amber);
      color: var(--midnight);
      border: none;
      border-radius: 10px;
      padding: 0.8rem 1.25rem;
      font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
      font-weight: 700;
      font-size: 0.85rem;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      white-space: nowrap;
    }

    .modal-submit:hover {
      background: #ffc866;
      transform: translateY(-1px);
      box-shadow: 0 4px 20px rgba(255,186,73,0.3);
    }

    .modal-success {
      display: none;
      text-align: center;
      padding: 1rem 0;
    }

    .modal-success .check-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(74,222,128,0.12);
      color: #4ade80;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
      font-size: 1.4rem;
    }

    .modal-success h4 {
      font-family: 'Instrument Serif', serif;
      font-size: 1.3rem;
      font-weight: 400;
      margin-bottom: 0.35rem;
    }

    .modal-success p {
      font-size: 0.82rem;
      color: var(--paper-ghost);
    }

    /* ═══ LIGHT SWITCH TOGGLE ═══ */
    .light-switch {
      cursor: pointer;
      flex-shrink: 0;
      width: 34px;
      height: 34px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease;
      margin-left: -1rem;
    }

    .light-switch:hover { transform: scale(1.15); }
    .light-switch:active { transform: scale(0.95); }

    .light-switch svg {
      width: 34px;
      height: 34px;
    }

    .light-switch svg path { fill: var(--slate); transition: fill 0.5s ease; }
    .light-switch:hover svg path { fill: var(--paper); }
    body.light-mode .light-switch svg path { fill: var(--amber); }

    .light-switch .sw-on { display: none; }
    .light-switch .sw-off { display: block; }
    body.light-mode .light-switch .sw-on { display: block; }
    body.light-mode .light-switch .sw-off { display: none; }

    /* ═══ LIGHT MODE ═══ */
    *, *::before, *::after {
      transition: background-color 0.6s ease, color 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
    }

    /* Exclude things that need their own timing */
    .hero h1 .line, .hero-tag, .hero-sub, .hero-cta, .reveal,
    .carousel-track, .marquee-track, .bento-card .rim-light {
      transition-property: opacity, transform, clip-path, background-color, color, border-color;
    }

    body.light-mode {
      --midnight: #F8F5F0;
      --ink: #EFEBE4;
      --surface: #FFFFFF;
      --surface-up: #F5F2EC;
      --paper: #1A1A1A;
      --paper-dim: rgba(26, 26, 26, 0.7);
      --paper-ghost: rgba(26, 26, 26, 0.45);
      --slate: #8A8578;
      --line: rgba(26, 26, 26, 0.08);
      --line-hover: rgba(26, 26, 26, 0.14);
      --glow: rgba(255, 186, 73, 0.1);
      --glow-strong: rgba(255, 186, 73, 0.22);
      --amber: #D49520;
      --amber-deep: #B87E18;
    }

    body.light-mode nav {
      background: rgba(248, 245, 240, 0.8);
    }

    body.light-mode .nav-btn {
      background: #1A1A1A;
      color: #F8F5F0;
    }

    body.light-mode .nav-btn:hover {
      background: var(--amber);
      color: #1A1A1A;
    }

    body.light-mode .hero-cta {
      color: #FFFFFF;
    }

    body.light-mode .cursor-glow {
      background: radial-gradient(circle, rgba(255,186,73,0.1) 0%, transparent 70%);
    }

    body.light-mode .ambient-1,
    body.light-mode .ambient-2 {
      background: rgba(255, 186, 73, 0.06);
    }

    body.light-mode .ambient-3 {
      background: rgba(90, 130, 255, 0.04);
    }

    body.light-mode .inbox-card {
      background: #FFFFFF;
      box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    }

    body.light-mode .mini-terminal {
      background: #FFFFFF;
      border-color: rgba(0,0,0,0.1);
      box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    }

    body.light-mode .mini-terminal-bar {
      border-bottom-color: rgba(0,0,0,0.06);
    }

    body.light-mode .mini-terminal-bar span { background: #C0BBB2; }

    body.light-mode .mini-terminal-body {
      color: rgba(26, 26, 26, 0.55);
    }

    body.light-mode .mini-terminal .t-dim { color: #8A8578; }
    body.light-mode .mini-terminal .t-amber { color: #D49520; }
    body.light-mode .mini-terminal .t-blue { color: #3B82F6; }
    body.light-mode .mini-terminal .t-green { color: #16A34A; }

    body.light-mode .mini-terminal .email-in {
      background: rgba(0, 0, 0, 0.03);
      border-color: rgba(0, 0, 0, 0.08);
    }
    body.light-mode .mini-terminal .email-out {
      background: rgba(212, 149, 32, 0.06);
      border-color: rgba(212, 149, 32, 0.15);
    }
    body.light-mode .mini-terminal .email-sender { color: rgba(26, 26, 26, 0.7); }
    body.light-mode .mini-terminal .email-subject { color: #1A1A1A; }
    body.light-mode .mini-terminal .email-body-text { color: rgba(26, 26, 26, 0.55); }
    body.light-mode .mini-terminal .email-out .email-body-text { color: rgba(26, 26, 26, 0.7); }
    body.light-mode .mini-terminal .email-time { color: #8A8578; }
    body.light-mode .mini-terminal .bar-title { color: #8A8578; }
    body.light-mode .mini-terminal .email-avatar.user-av { background: rgba(0,0,0,0.06); color: #8A8578; }
    body.light-mode .mini-terminal .email-avatar.allie-av { background: rgba(212,149,32,0.15); color: #D49520; }
    body.light-mode .mini-terminal .email-attachment { background: rgba(212,149,32,0.08); border-color: rgba(212,149,32,0.18); color: #D49520; }
    body.light-mode .mini-terminal .delivered-badge { color: #16A34A; }
    body.light-mode .mini-terminal .delivered-dot { background: #16A34A; }
    body.light-mode .mini-terminal .typing-dot { background: #D49520; }

    body.light-mode .modal {
      background: #FFFFFF;
      border-color: rgba(0,0,0,0.1);
    }

    body.light-mode .modal-input {
      background: #F5F2EC;
      border-color: rgba(0,0,0,0.1);
      color: #1A1A1A;
    }

    body.light-mode .modal-overlay {
      background: rgba(0,0,0,0.4);
    }

    body.light-mode .logo-mark .tri-stroke { stroke: var(--amber); }
    body.light-mode .logo-mark .tri-fill { fill: var(--amber); }

    /* ═══ FAQ ═══ */
    .faq-section { padding: 8rem 2rem 6rem; border-top: 1px solid var(--line); background: var(--ink); }
    .faq-inner { max-width: 1000px; margin: 0 auto; }
    .faq-section h2 {
      font-family: 'Instrument Serif', serif;
      font-size: clamp(1.8rem, 3.5vw, 2.4rem);
      font-weight: 400;
      letter-spacing: -0.02em;
      text-align: center;
      margin-bottom: 4rem;
    }
    .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
    .faq-item {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 20px;
      padding: 2rem 2.25rem;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
    }
    .faq-item:hover { transform: translateY(-2px); border-color: var(--line-hover); }
    .faq-item h3 {
      font-family: 'Instrument Serif', serif;
      font-size: 1.25rem;
      font-weight: 400;
      letter-spacing: -0.01em;
      margin-bottom: 0.75rem;
      color: var(--paper);
    }
    .faq-item p {
      font-size: 0.9rem;
      line-height: 1.75;
      color: var(--paper-dim);
      font-weight: 300;
    }
    @media (max-width: 900px) {
      .faq-grid { grid-template-columns: 1fr; }
    }

    /* ═══ VAULT CARD (inner elements — shell is bento-card) ═══ */

    .vault-visual {
      margin-top: 2.5rem;
      border-radius: 16px; padding: 2rem 2.5rem; position: relative; overflow: hidden; min-height: 220px;
    }
    .vault-visual::after {
      content: ''; position: absolute; inset: 0;
      background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(240,236,228,0.008) 2px, rgba(240,236,228,0.008) 4px);
      pointer-events: none; z-index: 1;
    }

    .retrieval-scene {
      display: flex; align-items: center; justify-content: space-between;
      gap: 1.5rem; position: relative; z-index: 2;
    }

    .vault-box {
      flex-shrink: 0; width: 100px; height: 110px;
      border: 1.5px solid rgba(74,222,128,0.25); border-radius: 14px;
      display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem;
      background: rgba(74,222,128,0.03);
      transition: border-color 0.6s ease, box-shadow 0.6s ease;
    }
    .vault-box.active { border-color: rgba(74,222,128,0.5); box-shadow: 0 0 30px rgba(74,222,128,0.08), inset 0 0 20px rgba(74,222,128,0.03); }
    .vault-lock { width: 28px; height: 28px; color: #4ade80; opacity: 0.6; transition: opacity 0.4s ease; }
    .vault-box.active .vault-lock { opacity: 1; }
    .vault-id { font-family: 'JetBrains Mono', monospace; font-size: 0.6rem; color: #4ade80; opacity: 0.5; letter-spacing: 0.05em; }

    .data-stream { flex: 1; display: flex; flex-direction: column; gap: 0.65rem; min-width: 0; overflow: hidden; }
    .stream-row { display: flex; align-items: center; gap: 0.6rem; opacity: 0; transform: translateX(-20px); }
    .stream-row.visible { animation: streamIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
    .stream-row:nth-child(1) { animation-delay: 0s; }
    .stream-row:nth-child(2) { animation-delay: 0.15s; }
    .stream-row:nth-child(3) { animation-delay: 0.3s; }
    .stream-row:nth-child(4) { animation-delay: 0.45s; }
    @keyframes streamIn { to { opacity: 1; transform: translateX(0); } }

    .stream-protocol {
      font-family: 'JetBrains Mono', monospace; font-size: 0.58rem; font-weight: 500;
      color: #4ade80; background: rgba(74,222,128,0.12);
      padding: 0.2rem 0.5rem; border-radius: 4px; white-space: nowrap; flex-shrink: 0; letter-spacing: 0.03em;
    }
    .stream-cipher {
      font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; color: var(--slate);
      letter-spacing: 0.04em; overflow: hidden; white-space: nowrap; position: relative; min-width: 0;
    }
    .stream-cipher .cipher-text { transition: opacity 0.3s ease; }
    .stream-cipher .resolved-text { color: var(--paper-dim); position: absolute; left: 0; top: 0; opacity: 0; transition: opacity 0.4s ease; }
    .stream-row.resolved .cipher-text { opacity: 0; }
    .stream-row.resolved .resolved-text { opacity: 1; }
    .stream-row.resolved .stream-protocol { color: var(--amber); background: var(--glow-strong); }

    .stream-status {
      font-family: 'JetBrains Mono', monospace; font-size: 0.55rem; color: #4ade80;
      white-space: nowrap; flex-shrink: 0; opacity: 0; transition: opacity 0.3s ease;
    }
    .stream-row.resolved .stream-status { opacity: 1; }

    .vault-lamp {
      flex-shrink: 0; width: 56px; height: 56px; border-radius: 14px;
      background: var(--glow-strong); display: flex; align-items: center; justify-content: center;
      transition: box-shadow 0.6s ease;
    }
    .vault-lamp.receiving { box-shadow: 0 0 30px rgba(255,186,73,0.2); }
    .vault-lamp svg { width: 28px; height: 28px; }
    .vault-lamp .vt-stroke { fill: none; stroke: var(--amber); stroke-width: 1.8; }
    .vault-lamp .vt-fill { fill: var(--amber); clip-path: inset(100% 0 0 0); transition: clip-path 0.8s cubic-bezier(0.34, 1.56, 0.64, 1); }
    .vault-lamp.receiving .vt-fill { clip-path: inset(0 0 0 0); }


    .protocol-row {
      margin-top: 1.5rem; display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap;
      position: relative; z-index: 2;
    }
    .proto-badge {
      font-family: 'JetBrains Mono', monospace; font-size: 0.62rem; font-weight: 500;
      color: var(--paper-ghost); background: rgba(240,236,228,0.04);
      border: 1px solid var(--line); padding: 0.3rem 0.65rem; border-radius: 6px;
      display: flex; align-items: center; gap: 0.4rem; letter-spacing: 0.02em;
      transition: all 0.4s ease;
    }
    .proto-badge .pdot { width: 4px; height: 4px; border-radius: 50%; background: #4ade80; opacity: 0.5; transition: opacity 0.3s ease; }
    .proto-badge.active { border-color: rgba(74,222,128,0.2); color: var(--paper-dim); }
    .proto-badge.active .pdot { opacity: 1; animation: pulse 2s ease-in-out infinite; }

    @media (max-width: 700px) {
      .vault-visual { padding: 1.5rem; }
      .retrieval-scene { flex-direction: column; gap: 1.5rem; }
      .vault-box { width: 80px; height: 90px; }
    }

    /* ═══ SCROLL REVEAL ═══ */
    .reveal { opacity: 0; transform: translateY(40px); transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
    .reveal.vis { opacity: 1; transform: none; }
    .reveal-d1 { transition-delay: 0.1s; }
    .reveal-d2 { transition-delay: 0.2s; }
    .reveal-d3 { transition-delay: 0.3s; }
    /* Reveal variants */
    .reveal-scale { opacity: 0; transform: scale(0.92); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
    .reveal-scale.vis { opacity: 1; transform: none; }
    .reveal-left { opacity: 0; transform: translateX(-50px); transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
    .reveal-left.vis { opacity: 1; transform: none; }
    .reveal-right { opacity: 0; transform: translateX(50px); transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
    .reveal-right.vis { opacity: 1; transform: none; }
    .reveal-blur { opacity: 0; filter: blur(8px); transform: translateY(20px); transition: all 1.1s cubic-bezier(0.16, 1, 0.3, 1); }
    .reveal-blur.vis { opacity: 1; filter: blur(0px); transform: none; }

    /* ═══ REDUCED MOTION ═══ */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
      .reveal, .reveal-scale, .reveal-left, .reveal-right, .reveal-blur { opacity: 1; transform: none; filter: none; }
      .hero h1 .line { opacity: 1; transform: none; }
      .hero-tag, .hero-sub, .hero-cta { opacity: 1; }
      .inbox-float { opacity: 0.45 !important; filter: none; }
      .marquee-track, .agent-ticker { animation: none !important; }
      .pn-char, .pn-specialist { opacity: 1 !important; transform: none !important; }
      .pn-char .pn-node, .pn-specialist { animation: none !important; }
      .pn-caption { opacity: 1 !important; }
      .integrations-cluster { opacity: 1 !important; transform: none !important; }
      .integrations-cluster .int-icon { opacity: 0.5 !important; transform: none !important; filter: none !important; clip-path: none !important; animation: none !important; }
      .integrations-cluster.floating .cluster-icons { animation: none !important; }
    }

    /* ═══ SKIP LINK ═══ */
    .skip-link:focus { top: 0; }

    /* ═══ KEYFRAMES ═══ */
    @keyframes heroLine { to { opacity: 1; transform: none; } }
    @keyframes heroIn { to { opacity: 1; } }
    @keyframes ringPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0; transform: scale(2); } }
    @keyframes floatBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
    @keyframes ambientFloat { 0%, 100% { transform: translate(0,0) scale(1); } 33% { transform: translate(30px,-20px) scale(1.05); } 66% { transform: translate(-20px,15px) scale(0.95); } }
    @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

    /* ═══ RESPONSIVE ═══ */
    @media (max-width: 900px) {
      .bento-grid { grid-template-columns: 1fr; }
      .bento-wide { grid-column: auto; }
      .inbox-float { display: none; }
      .stats-inner { grid-template-columns: 1fr; gap: 0; }
      .stat { padding: 1.5rem 2rem; border-bottom: 1px solid var(--line); }
      .stat:last-child { border-bottom: none; }
      nav { padding: 0 1.5rem; }
      .nav-link { display: none; }
      .bento { padding: 5rem 1.5rem; }
      .platform-visual { height: 160px; }
      .pipeline-visual { height: 220px; }
      .pn-specialist { width: 26px; height: 26px; font-size: 0.45rem; }
      .pn-caption { font-size: 0.55rem; }
    }
    @media (max-width: 600px) {
      .hero h1 { font-size: 3rem; }
      .bento-card { padding: 2rem; }
      .bento-card h3 { font-size: 1.6rem; }
      footer { flex-direction: column; gap: 1rem; text-align: center; }
      .ascii-portrait { font-size: 0.45rem; }
    }
