/* Claros Intelligence — Monochrome Design System */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #0a0a0a;
  --black-rich: #050505;
  --white: #f0ede6;
  --white-pure: #ffffff;
  --white-dim: rgba(240,237,230,0.7);
  --white-muted: rgba(240,237,230,0.55);
  --white-ghost: rgba(240,237,230,0.06);
  --border: rgba(240,237,230,0.12);
  --border-hover: rgba(240,237,230,0.3);
  --glow: rgba(240,237,230,0.12);
  --accent: #e8e4dc;
  /* Light section palette */
  --light-bg: #f0ede6;
  --light-text: #0a0a0a;
  --light-muted: rgba(10,10,10,0.55);
  --light-border: rgba(10,10,10,0.1);
}
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--black); color: var(--white); overflow-x: hidden; }

/* CURSOR */
.cursor { position: fixed; width: 6px; height: 6px; background: var(--white); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); mix-blend-mode: difference; }
.cursor-ring { position: fixed; width: 32px; height: 32px; border: 1px solid rgba(255,255,255,0.4); border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: all 0.18s ease; }
@media (hover: hover) and (pointer: fine) { body { cursor: none; } .cursor, .cursor-ring { display: block; } }
@media (hover: none), (pointer: coarse) { body { cursor: default; } .cursor, .cursor-ring { display: none !important; } }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 24px 60px; background: linear-gradient(to bottom, rgba(10,10,10,0.95) 0%, transparent 100%); }
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 36px; width: auto; filter: brightness(1) drop-shadow(0 0 6px rgba(255,255,255,0.1)); transition: filter 0.3s; }
.logo:hover .logo-img { filter: brightness(1.1) drop-shadow(0 0 14px rgba(255,255,255,0.25)); }
nav ul { list-style: none; display: flex; gap: 48px; align-items: center; }
nav ul a { text-decoration: none; color: var(--white-muted); font-size: 12px; font-weight: 300; letter-spacing: 0.18em; text-transform: uppercase; transition: color 0.3s; }
nav ul a:hover { color: var(--white); }
.nav-cta { background: transparent; border: 1px solid var(--white-dim); color: var(--white) !important; padding: 10px 24px !important; transition: all 0.3s !important; }
.nav-cta:hover { background: var(--white) !important; color: var(--black) !important; }

/* HAMBURGER */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 101; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); margin: 6px 0; transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu { display: none; position: fixed; inset: 0; background: rgba(5,5,5,0.98); backdrop-filter: blur(20px); z-index: 99; flex-direction: column; align-items: center; justify-content: center; gap: 32px; }
.mobile-menu.active { display: flex; }
.mobile-menu a { text-decoration: none; color: var(--white-dim); font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 300; letter-spacing: 0.06em; transition: color 0.3s; }
.mobile-menu a:hover { color: var(--white); }
.mobile-menu .mobile-cta { margin-top: 16px; background: var(--white); color: var(--black); font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; padding: 16px 40px; }

/* BUTTONS */
.btn-primary { background: var(--white); color: var(--black); border: none; padding: 16px 36px; font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer; transition: all 0.3s; text-decoration: none; display: inline-block; }
.btn-primary:hover { background: var(--accent); transform: translateY(-1px); box-shadow: 0 8px 30px rgba(255,255,255,0.08); }
.btn-ghost { background: transparent; color: var(--white-muted); border: none; padding: 16px 0; font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: color 0.3s; text-decoration: none; }
.btn-ghost:hover { color: var(--white); }
.btn-ghost::after { content: '→'; transition: transform 0.3s; }
.btn-ghost:hover::after { transform: translateX(4px); }

/* HERO */
.hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; align-items: center; padding: 120px 60px 80px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px); background-size: 80px 80px; pointer-events: none; }
.hero::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 900px; height: 900px; background: radial-gradient(ellipse, rgba(255,255,255,0.03) 0%, transparent 60%); pointer-events: none; }
.hero-left { position: relative; z-index: 2; }
.hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 32px; }
.eyebrow-line { width: 32px; height: 1px; background: var(--white-dim); }
.eyebrow-text { font-size: 11px; font-weight: 400; letter-spacing: 0.25em; text-transform: uppercase; color: var(--white-muted); font-family: 'Space Mono', monospace; }
h1 { font-family: 'Syne', sans-serif; font-size: clamp(52px, 6vw, 86px); font-weight: 700; line-height: 1.02; letter-spacing: -0.02em; margin-bottom: 28px; }
h1 em { font-style: normal; font-weight: 300; opacity: 0.4; }
.hero-sub { font-size: 15px; font-weight: 300; color: var(--white-muted); line-height: 1.8; max-width: 420px; margin-bottom: 48px; }
.hero-actions { display: flex; gap: 20px; align-items: center; }

/* HERO RIGHT */
.hero-right { position: relative; display: flex; justify-content: center; align-items: center; z-index: 2; height: 640px; }
.orbit-container { position: absolute; width: 500px; height: 500px; animation: spin-slow 30s linear infinite; }
.orbit-ring { position: absolute; border-radius: 50%; border: 1px solid transparent; }
.orbit-1 { inset: 0; border-color: rgba(255,255,255,0.06); animation: counter-spin 20s linear infinite; }
.orbit-2 { inset: 60px; border-color: rgba(255,255,255,0.04); animation: spin-slow 35s linear infinite; }
.orbit-3 { inset: 120px; border-color: rgba(255,255,255,0.03); }
.orbit-dot { position: absolute; width: 4px; height: 4px; background: var(--white-dim); border-radius: 50%; top: -2px; left: 50%; transform: translateX(-50%); box-shadow: 0 0 8px rgba(255,255,255,0.3); }
.orbit-dot-cyan { background: var(--white-muted); box-shadow: 0 0 8px rgba(255,255,255,0.2); top: auto; bottom: -2px; }
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes counter-spin { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }

/* PHONE */
.phone-wrap { position: relative; z-index: 3; }
.phone { width: 220px; height: 440px; background: linear-gradient(145deg, #111111 0%, #080808 100%); border-radius: 36px; border: 1px solid rgba(255,255,255,0.12); position: relative; box-shadow: 0 0 80px rgba(255,255,255,0.04), 0 40px 80px rgba(0,0,0,0.6), inset 0 0 40px rgba(255,255,255,0.02); overflow: hidden; }
.phone::before { content: ''; position: absolute; inset: 2px; border-radius: 34px; background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, transparent 50%); pointer-events: none; }
.phone-notch { width: 80px; height: 22px; background: #080808; border-radius: 0 0 14px 14px; margin: 0 auto 16px; position: relative; z-index: 2; }
.phone-screen { padding: 0 16px; }
.phone-status { display: flex; align-items: center; justify-content: center; gap: 6px; margin-bottom: 24px; }
.status-dot { width: 6px; height: 6px; background: var(--white); border-radius: 50%; animation: pulse-dot 2s ease infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,255,255,0.3); } 50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(255,255,255,0); } }
.status-text { font-family: 'Space Mono', monospace; font-size: 11px; color: var(--white-dim); letter-spacing: 0.1em; }
.humanoid { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.holo-face { width: 100px; height: 100px; }
.holo-face svg { width: 100%; height: 100%; filter: drop-shadow(0 0 10px rgba(255,255,255,0.25)); }
.holo-name { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 600; color: var(--white); letter-spacing: 0.2em; text-shadow: 0 0 20px rgba(255,255,255,0.3); }
.holo-role { font-size: 11px; letter-spacing: 0.25em; color: var(--white-muted); text-transform: uppercase; font-family: 'Space Mono', monospace; }
.sound-wave { display: flex; align-items: center; gap: 3px; margin-top: 16px; height: 32px; }
.wave-bar { width: 2px; background: var(--white); border-radius: 2px; opacity: 0.5; animation: wave-anim 1.2s ease-in-out infinite; }
.wave-bar:nth-child(1) { height: 8px; animation-delay: 0s; } .wave-bar:nth-child(2) { height: 18px; animation-delay: 0.1s; } .wave-bar:nth-child(3) { height: 26px; animation-delay: 0.2s; } .wave-bar:nth-child(4) { height: 32px; animation-delay: 0.15s; } .wave-bar:nth-child(5) { height: 22px; animation-delay: 0.25s; } .wave-bar:nth-child(6) { height: 16px; animation-delay: 0.35s; } .wave-bar:nth-child(7) { height: 28px; animation-delay: 0.05s; } .wave-bar:nth-child(8) { height: 12px; animation-delay: 0.3s; } .wave-bar:nth-child(9) { height: 20px; animation-delay: 0.4s; }
@keyframes wave-anim { 0%, 100% { transform: scaleY(0.4); opacity: 0.3; } 50% { transform: scaleY(1); opacity: 0.6; } }
.phone-caller { margin-top: 20px; text-align: center; }
.caller-label { font-size: 11px; letter-spacing: 0.2em; color: var(--white-muted); text-transform: uppercase; margin-bottom: 4px; }
.caller-name { font-family: 'Syne', sans-serif; font-size: 14px; color: var(--white); }
.caller-number { font-family: 'Space Mono', monospace; font-size: 11px; color: var(--white-muted); margin-top: 2px; }
.phone-actions { display: flex; justify-content: space-around; margin-top: 28px; }
.phone-btn { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.phone-btn-end { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); }
.phone-btn-hold { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); }

/* CHIPS */
.holo-chip { position: absolute; background: rgba(10,10,10,0.8); border: 1px solid var(--border); padding: 10px 14px; backdrop-filter: blur(12px); font-family: 'Space Mono', monospace; font-size: 11px; }
.chip-1 { top: 80px; right: -140px; animation: float1 4s ease-in-out infinite; }
.chip-2 { bottom: 120px; right: -160px; animation: float2 5s ease-in-out infinite; }
.chip-3 { bottom: 80px; left: -160px; animation: float1 4.5s ease-in-out infinite reverse; }
@keyframes float1 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes float2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(10px); } }
.chip-label { color: var(--white-muted); letter-spacing: 0.15em; display: block; margin-bottom: 4px; }
.chip-value { color: var(--white); font-size: 13px; display: block; }
.chip-value.green, .chip-value.gold { color: var(--white-dim); }

/* TRY LIVE */
.try-live { padding: 80px 60px; text-align: center; position: relative; }
.try-live::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(255,255,255,0.025) 0%, transparent 60%); pointer-events: none; }
.try-live-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; background: var(--white-ghost); border: 1px solid var(--border); padding: 56px 48px; }
.try-live-eyebrow { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--white-dim); margin-bottom: 20px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.try-live-eyebrow .pulse { width: 8px; height: 8px; background: var(--white); border-radius: 50%; display: inline-block; animation: pulse-dot 2s ease infinite; }
.try-live h2 { font-family: 'Syne', sans-serif; font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; line-height: 1.15; margin-bottom: 16px; }
.try-live h2 em { font-style: normal; font-weight: 300; opacity: 0.4; }
.try-live-sub { font-size: 14px; color: var(--white-muted); line-height: 1.7; margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }
.try-live-phone { display: inline-flex; align-items: center; gap: 14px; background: transparent; border: 1px solid var(--white-dim); padding: 20px 40px; text-decoration: none; transition: all 0.3s; margin-bottom: 24px; }
.try-live-phone:hover { background: var(--white); transform: translateY(-2px); box-shadow: 0 8px 40px rgba(255,255,255,0.08); }
.try-live-phone:hover .phone-num { color: var(--black); }
.try-live-phone .phone-icon { font-size: 22px; animation: ring-shake 3s ease-in-out infinite; }
@keyframes ring-shake { 0%, 100% { transform: rotate(0deg); } 10% { transform: rotate(-10deg); } 20% { transform: rotate(10deg); } 30% { transform: rotate(-6deg); } 40% { transform: rotate(6deg); } 50%, 100% { transform: rotate(0deg); } }
.try-live-phone .phone-num { font-family: 'Space Mono', monospace; font-size: 20px; color: var(--white); letter-spacing: 0.08em; transition: color 0.3s; }
.try-live-note { font-size: 11px; color: var(--white-muted); letter-spacing: 0.1em; }

/* TICKER */
.ticker { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 14px 0; overflow: hidden; }
.ticker-inner { display: flex; gap: 80px; animation: ticker-move 25s linear infinite; white-space: nowrap; }
@keyframes ticker-move { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item { display: flex; align-items: center; gap: 12px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white-muted); }
.ticker-item span { color: var(--white-dim); }

/* STATS — LIGHT SECTION */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--light-bg); margin: 0; }
.stat-item { padding: 56px 40px; border-right: 1px solid var(--light-border); text-align: center; }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Syne', sans-serif; font-size: 56px; font-weight: 700; color: var(--light-text); line-height: 1; margin-bottom: 12px; }
.stat-num span { opacity: 0.3; font-weight: 300; }
.stat-label { font-size: 11px; letter-spacing: 0.15em; color: var(--light-muted); text-transform: uppercase; }

/* SOCIAL PROOF — LIGHT SECTION */
.social-proof { padding: 80px 60px; text-align: center; background: var(--light-bg); }
.proof-label { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--light-muted); margin-bottom: 32px; }
.proof-logos { display: flex; align-items: center; justify-content: center; gap: 56px; flex-wrap: wrap; }
.proof-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.proof-badge { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--light-border); display: flex; align-items: center; justify-content: center; font-size: 20px; background: rgba(10,10,10,0.04); }
.proof-text { font-size: 11px; color: var(--light-muted); letter-spacing: 0.1em; }
.proof-quote { margin-top: 40px; max-width: 560px; margin-left: auto; margin-right: auto; }
.proof-quote blockquote { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 300; font-style: italic; line-height: 1.6; color: var(--light-text); margin-bottom: 12px; }
.proof-quote cite { font-family: 'Space Mono', monospace; font-size: 10px; color: var(--light-muted); letter-spacing: 0.2em; font-style: normal; text-transform: uppercase; }

/* PAIN POINTS */
.pain-section { padding: 120px 60px; }
.section-header { text-align: center; margin-bottom: 80px; }
.section-eyebrow { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.3em; color: var(--white-muted); text-transform: uppercase; margin-bottom: 20px; }
.section-title { font-family: 'Syne', sans-serif; font-size: clamp(36px, 4vw, 58px); font-weight: 700; line-height: 1.1; }
.section-title em { font-style: normal; font-weight: 300; opacity: 0.4; }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); margin-top: 60px; }
.pain-card { background: var(--black); padding: 48px 40px; position: relative; transition: all 0.4s; overflow: hidden; }
.pain-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--white-dim), transparent); transform: scaleX(0); transition: transform 0.5s; }
.pain-card:hover::before { transform: scaleX(1); }
.pain-card:hover { background: rgba(255,255,255,0.02); }
.pain-number { font-family: 'Space Mono', monospace; font-size: 11px; color: var(--white-muted); letter-spacing: 0.2em; margin-bottom: 28px; }
.pain-icon { font-size: 28px; margin-bottom: 20px; display: block; }
.pain-problem { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 600; color: var(--white); line-height: 1.3; margin-bottom: 16px; }
.pain-detail { font-size: 13px; color: var(--white-muted); line-height: 1.7; margin-bottom: 28px; }
.pain-divider { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.divider-arrow { font-size: 16px; color: var(--white-dim); }
.divider-line { flex: 1; height: 1px; background: linear-gradient(90deg, var(--border), transparent); }
.pain-solution { font-size: 13px; color: var(--white-dim); line-height: 1.7; }
.pain-solution strong { color: var(--white); font-weight: 500; }

/* HOW IT WORKS — LIGHT SECTION */
.how-section { padding: 120px 60px; background: var(--light-bg); color: var(--light-text); }
.how-section .section-eyebrow { color: var(--light-muted); }
.how-section .section-title { color: var(--light-text); }
.how-section .section-title em { color: var(--light-text); opacity: 0.3; }
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 60px; }
.how-steps { display: flex; flex-direction: column; }
.how-step { display: grid; grid-template-columns: 60px 1fr; gap: 24px; padding: 32px 0; border-bottom: 1px solid var(--light-border); }
.how-step:last-child { border-bottom: none; }
.step-num { font-family: 'Space Mono', monospace; font-size: 11px; color: var(--light-muted); letter-spacing: 0.1em; padding-top: 3px; }
.step-title { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 600; margin-bottom: 8px; color: var(--light-text); }
.step-desc { font-size: 13px; color: var(--light-muted); line-height: 1.7; }
.how-visual { background: var(--black); border: 1px solid var(--border); padding: 60px 40px; }
.terminal { background: var(--black-rich); border: 1px solid var(--border); border-radius: 4px; padding: 24px; text-align: left; font-family: 'Space Mono', monospace; font-size: 11px; line-height: 1.8; }
.term-bar { display: flex; gap: 6px; margin-bottom: 20px; }
.term-dot { width: 10px; height: 10px; border-radius: 50%; }
.td-r { background: rgba(240,237,230,0.15); } .td-y { background: rgba(240,237,230,0.25); } .td-g { background: rgba(240,237,230,0.4); }
.term-line { margin-bottom: 4px; }
.term-line .prompt { color: var(--white-muted); } .term-line .cmd { color: var(--white-dim); } .term-line .out { color: var(--white-muted); } .term-line .gold { color: var(--white); } .term-line .green { color: var(--white-dim); }

/* CTA — LIGHT SECTION */
.cta-section { margin: 0; background: var(--light-bg); border: none; padding: 100px 80px; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 500px; height: 500px; background: radial-gradient(ellipse, rgba(10,10,10,0.03), transparent 70%); }
.cta-title { font-family: 'Syne', sans-serif; font-size: clamp(36px, 4vw, 56px); font-weight: 700; line-height: 1.1; margin-bottom: 20px; color: var(--light-text); }
.cta-title em { font-style: normal; font-weight: 300; opacity: 0.35; }
.cta-sub { font-size: 14px; color: var(--light-muted); margin-bottom: 48px; }
.cta-actions { display: flex; gap: 20px; justify-content: center; align-items: center; flex-wrap: wrap; }
.cta-section .btn-primary { background: var(--black); color: var(--white); }
.cta-section .btn-primary:hover { background: #1a1a1a; box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
.cta-section .btn-ghost { color: var(--light-muted); }
.cta-section .btn-ghost:hover { color: var(--light-text); }

/* FOOTER */
footer { border-top: 1px solid var(--border); padding: 40px 60px; display: flex; align-items: center; justify-content: space-between; }
.footer-left { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 0.06em; color: var(--white-dim); }
.footer-right { font-size: 11px; color: var(--white-muted); letter-spacing: 0.1em; }
.footer-center { display: flex; gap: 24px; }
.footer-center a { font-size: 10px; color: var(--white-muted); text-decoration: none; letter-spacing: 0.1em; transition: color 0.3s; }
.footer-center a:hover { color: var(--white); }

/* STORY PAGE */
.story-hero { min-height: 60vh; display: flex; flex-direction: column; justify-content: flex-end; padding: 120px 60px 80px; position: relative; overflow: hidden; border-bottom: 1px solid var(--border); }
.story-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px); background-size: 80px 80px; }
.story-hero-content { position: relative; z-index: 2; max-width: 800px; }
.story-hero h1 { font-size: clamp(48px, 6vw, 80px); margin-bottom: 24px; }
.story-hero p { font-size: 17px; line-height: 1.75; color: var(--white-muted); max-width: 560px; }
.story-body { padding: 100px 60px; max-width: 1200px; margin: 0 auto; }
.story-chapter { display: grid; grid-template-columns: 240px 1fr; gap: 80px; margin-bottom: 80px; padding-bottom: 80px; border-bottom: 1px solid var(--border); }
.story-chapter:last-child { border-bottom: none; margin-bottom: 0; }
.chapter-label { padding-top: 6px; }
.chapter-num { font-family: 'Space Mono', monospace; font-size: 10px; color: var(--white-muted); letter-spacing: 0.25em; display: block; margin-bottom: 12px; }
.chapter-title { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 400; color: var(--white-muted); line-height: 1.4; }
.chapter-content h3 { font-family: 'Syne', sans-serif; font-size: 32px; font-weight: 700; line-height: 1.2; margin-bottom: 24px; }
.chapter-content h3 em { font-style: normal; font-weight: 300; opacity: 0.4; }
.chapter-content p { font-size: 15px; line-height: 1.85; color: var(--white-muted); margin-bottom: 20px; }
.chapter-content p strong { color: var(--white); font-weight: 400; }
.mission-box { border: 1px solid var(--border); padding: 40px; margin-top: 32px; position: relative; }
.mission-box::before { content: '"'; position: absolute; top: -24px; left: 40px; font-family: 'Syne', sans-serif; font-size: 80px; color: var(--white-muted); line-height: 1; opacity: 0.2; }
.mission-text { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 300; font-style: italic; line-height: 1.6; color: var(--white); }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 32px; }
.value-card { border: 1px solid var(--border); padding: 28px; transition: background 0.3s; }
.value-card:hover { background: var(--white-ghost); }
.value-num { font-family: 'Space Mono', monospace; font-size: 10px; color: var(--white-muted); letter-spacing: 0.2em; margin-bottom: 12px; }
.value-name { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.value-desc { font-size: 12px; color: var(--white-muted); line-height: 1.7; }
.story-cta { text-align: center; padding: 100px 60px; border-top: 1px solid var(--border); }
.story-cta h2 { font-family: 'Syne', sans-serif; font-size: clamp(32px, 4vw, 52px); font-weight: 700; margin-bottom: 16px; }
.story-cta h2 em { font-style: normal; font-weight: 300; opacity: 0.4; }
.story-cta p { font-size: 14px; color: var(--white-muted); margin-bottom: 40px; }

/* LEGAL — LIGHT SECTION */
.legal-page { padding: 140px 60px 80px; max-width: 800px; margin: 0 auto; background: var(--light-bg); color: var(--light-text); }
.legal-page h1 { font-family: 'Syne', sans-serif; font-size: 42px; font-weight: 700; margin-bottom: 8px; color: var(--light-text); }
.legal-page .legal-updated { font-size: 12px; color: var(--light-muted); font-family: 'Space Mono', monospace; letter-spacing: 0.1em; margin-bottom: 48px; }
.legal-page h2 { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 600; color: var(--light-text); margin-top: 40px; margin-bottom: 16px; }
.legal-page p, .legal-page li { font-size: 14px; line-height: 1.85; color: var(--light-muted); margin-bottom: 16px; }
.legal-page ul { list-style: none; padding-left: 0; }
.legal-page li::before { content: '—'; color: var(--light-muted); margin-right: 10px; }
.legal-page a { color: var(--light-text); text-decoration: none; border-bottom: 1px solid var(--light-border); transition: border-color 0.3s; }
.legal-page a:hover { border-color: var(--light-text); }
.legal-page strong { color: var(--light-text); font-weight: 500; }
/* Legal pages need light body override */
body:has(.legal-page) { background: var(--light-bg); }

/* MODAL */
.modal-overlay { position: fixed; inset: 0; background: rgba(5,5,5,0.9); backdrop-filter: blur(8px); z-index: 1000; display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.modal-overlay.active { display: flex; opacity: 1; }
.modal { background: linear-gradient(160deg, #111 0%, #080808 100%); border: 1px solid var(--border); max-width: 520px; width: 90%; padding: 56px 48px; position: relative; max-height: 90vh; overflow-y: auto; }
.modal-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: var(--white-muted); font-size: 24px; cursor: pointer; transition: color 0.3s; }
.modal-close:hover { color: var(--white); }
.modal-eyebrow { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--white-muted); margin-bottom: 16px; }
.modal h2 { font-family: 'Syne', sans-serif; font-size: 32px; font-weight: 700; line-height: 1.15; margin-bottom: 8px; }
.modal h2 em { font-style: normal; font-weight: 300; opacity: 0.4; }
.modal-sub { font-size: 13px; color: var(--white-muted); margin-bottom: 36px; line-height: 1.6; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white-muted); margin-bottom: 8px; font-family: 'Space Mono', monospace; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: rgba(255,255,255,0.03); border: 1px solid var(--border); color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 14px; padding: 14px 16px; outline: none; transition: border-color 0.3s; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--white-muted); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--white-dim); }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23f0ede6' fill='none' stroke-width='1.5' opacity='0.4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; cursor: pointer; }
.form-group select option { background: #111; color: var(--white); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; background: var(--white); color: var(--black); border: none; padding: 16px; font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer; transition: all 0.3s; margin-top: 8px; }
.form-submit:hover { background: var(--accent); transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.form-success { display: none; text-align: center; padding: 40px 0; }
.form-success .success-icon { font-size: 48px; margin-bottom: 20px; display: block; }
.form-success h3 { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.form-success h3 em { font-style: normal; font-weight: 300; opacity: 0.4; }
.form-success p { font-size: 14px; color: var(--white-muted); line-height: 1.7; }
.form-consent { display: flex; align-items: flex-start; gap: 10px; margin-top: 16px; margin-bottom: 8px; }
.form-consent input[type="checkbox"] { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--white); flex-shrink: 0; cursor: pointer; }
.form-consent label { font-size: 11px !important; color: var(--white-muted) !important; line-height: 1.5 !important; letter-spacing: 0 !important; text-transform: none !important; font-family: 'DM Sans', sans-serif !important; cursor: pointer; }
.form-consent label a { color: var(--white); text-decoration: none; border-bottom: 1px solid var(--border); }

/* COOKIE BANNER */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: rgba(10,10,10,0.95); border-top: 1px solid var(--border); backdrop-filter: blur(12px); padding: 20px 60px; display: flex; align-items: center; justify-content: space-between; gap: 24px; transform: translateY(100%); transition: transform 0.4s ease; }
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { font-size: 12px; color: var(--white-muted); line-height: 1.6; flex: 1; }
.cookie-banner p a { color: var(--white); text-decoration: none; border-bottom: 1px solid var(--border); }
.cookie-banner-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn { padding: 10px 20px; font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; border: none; cursor: pointer; transition: all 0.3s; }
.cookie-btn-accept { background: var(--white); color: var(--black); }
.cookie-btn-accept:hover { background: var(--accent); }
.cookie-btn-decline { background: transparent; color: var(--white-muted); border: 1px solid var(--border); }
.cookie-btn-decline:hover { color: var(--white); border-color: var(--border-hover); }

/* ANIMATIONS */
.phone::after { content: ''; position: absolute; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent); animation: scanline 5s linear infinite; pointer-events: none; }
@keyframes scanline { 0% { transform: translateY(-100%); } 100% { transform: translateY(440px); } }
.fade-up { opacity: 0; transform: translateY(24px); animation: fadeUp 0.8s ease forwards; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.delay-1 { animation-delay: 0.1s; } .delay-2 { animation-delay: 0.25s; } .delay-3 { animation-delay: 0.4s; } .delay-4 { animation-delay: 0.55s; }

/* MOBILE */
@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  nav ul { display: none; }
  .hamburger { display: block; }
  .hero { grid-template-columns: 1fr; padding: 100px 24px 60px; }
  .hero-right { display: none; }
  .pain-grid { grid-template-columns: 1fr; gap: 1px; }
  .pain-section { padding: 80px 24px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); margin: 0; }
  .how-grid { grid-template-columns: 1fr; }
  .how-section { padding: 80px 24px; }
  .cta-section { margin: 0 24px 80px; padding: 48px 28px; }
  .story-chapter { grid-template-columns: 1fr; gap: 24px; }
  .story-hero { padding: 100px 24px 60px; }
  .story-body { padding: 60px 24px; }
  .story-cta { padding: 60px 24px; }
  .values-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 16px; text-align: center; padding: 40px 24px; }
  .footer-center { justify-content: center; flex-wrap: wrap; }
  .modal { padding: 40px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .legal-page { padding: 120px 24px 60px; }
  .cookie-banner { flex-direction: column; padding: 20px 24px; text-align: center; }
  .cookie-banner-actions { justify-content: center; }
  .social-proof { padding: 40px 24px; }
  .proof-logos { gap: 32px; }
  .try-live { padding: 60px 24px; }
  .try-live-inner { padding: 40px 24px; }
  .try-live-phone { padding: 16px 28px; }
  .try-live-phone .phone-num { font-size: 16px; }
}
