@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=JetBrains+Mono:wght@500&family=Space+Grotesk:wght@600;700&display=swap');

:root {
  --plum: #14101C;
  --aubergine: #221830;
  --lilac: #ECE8F4;
  --coral: #FF5C49;
  --aqua: #34D5C5;
  --mauve: #8A8296;
  --font-head: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --section-pad: clamp(5rem, 8vw, 8.75rem);
  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-body); font-size: 1.0625rem; line-height: 1.65; }
img { max-width: 100%; height: auto; display: block; }
a { color: currentColor; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { opacity: 0.85; }
h1, h2, h3 { font-family: var(--font-head); line-height: 1.12; margin: 0 0 1rem; font-weight: 700; }
h1 { font-size: clamp(2.875rem, 5vw, 5.25rem); }
h2 { font-size: clamp(2rem, 3.5vw, 2.75rem); }
h3 { font-size: 1.35rem; font-weight: 600; }
p { margin: 0 0 1.1rem; }
ul, ol { margin: 0 0 1.1rem; padding-left: 1.25rem; }

.surface-plum { background: #14101C; color: #ECE8F4; }
.surface-lilac { background: #ECE8F4; color: #14101C; }
.surface-aubergine { background: #221830; color: #ECE8F4; }
.surface-coral { background: #FF5C49; color: #14101C; }

.container { width: min(var(--max), 92vw); margin: 0 auto; }
.eyebrow { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; color: #FF5C49; font-weight: 500; }
.hairline { border: none; border-top: 1px solid rgba(236,232,244,0.22); margin: 0; }
.hairline-dark { border-top-color: rgba(20,16,28,0.15); }

.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background 0.35s, box-shadow 0.35s; }
.site-header.is-scrolled { background: #ECE8F4; color: #14101C; box-shadow: 0 1px 0 rgba(20,16,28,0.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 1rem 4vw; max-width: 1280px; margin: 0 auto; }
.logo { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; letter-spacing: 0.04em; text-decoration: none; }
.nav-list { display: flex; gap: 1.5rem; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.nav-list a { text-decoration: none; font-size: 0.95rem; font-weight: 600; }
.nav-toggle { display: none; background: none; border: 1px solid currentColor; padding: 0.4rem 0.7rem; cursor: pointer; font-family: var(--font-mono); font-size: 0.75rem; }

.btn { display: inline-block; padding: 0.85rem 1.5rem; font-weight: 600; font-size: 0.95rem; text-decoration: none; border-radius: 2px; transition: filter 0.2s, box-shadow 0.2s; cursor: pointer; border: none; font-family: var(--font-body); }
.btn-primary { background: #FF5C49; color: #14101C; }
.btn-secondary { background: transparent; color: inherit; border: 1px solid currentColor; }
.btn:hover { filter: brightness(1.06); box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.btn-group { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.5rem; }

.hero-leap { min-height: 100vh; position: relative; display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: 2.5rem; overflow: hidden; }
.hero-leap::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,16,28,0.55) 0%, rgba(20,16,28,0.82) 55%, #14101C 100%); z-index: 1; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-glow { position: absolute; inset: 0; box-shadow: inset 0 0 120px rgba(255,92,73,0.12); pointer-events: none; z-index: 2; }
.hero-content { position: relative; z-index: 3; padding: 0 4vw; max-width: 1280px; margin: 0 auto; width: 100%; }
.hero-top { display: flex; justify-content: space-between; align-items: center; padding: 6.5rem 0 1rem; gap: 1rem; flex-wrap: wrap; }
.hero-sub { max-width: 34rem; color: rgba(236,232,244,0.85); font-size: 1.1rem; }
.hero-accent { color: #34D5C5; }
.trust-strip { font-family: var(--font-mono); font-size: 0.75rem; color: #8A8296; margin-top: 2rem; padding-top: 1rem; border-top: 1px solid rgba(236,232,244,0.15); }
.trajectory-arc { position: absolute; bottom: 18%; left: 8%; width: min(420px, 55vw); height: 80px; z-index: 2; opacity: 0.7; }
.trajectory-arc path { stroke: #FF5C49; stroke-width: 1.5; fill: none; stroke-dasharray: 400; stroke-dashoffset: 400; }
.js .trajectory-arc.is-drawn path { stroke-dashoffset: 0; transition: stroke-dashoffset 1.8s ease; }
@media (prefers-reduced-motion: reduce) { .trajectory-arc path { stroke-dashoffset: 0 !important; } }

section { padding: var(--section-pad) 0; }
.section-head { margin-bottom: 2.5rem; max-width: 42rem; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.75rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }

.metric-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; text-align: center; }
.metric-num { font-family: var(--font-mono); font-size: 2rem; color: #FF5C49; font-weight: 500; display: block; }
.metric-label { font-size: 0.9rem; color: #8A8296; }

.stage-card { padding: 1.75rem; border: 1px solid rgba(255,92,73,0.35); background: rgba(236,232,244,0.04); border-radius: 2px; }
.stage-num { font-family: var(--font-mono); color: #FF5C49; font-size: 0.8rem; margin-bottom: 0.5rem; }

.cap-rail { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.25rem; }
.cap-card { position: relative; padding: 1.75rem 1.5rem 1.5rem; border: 1px solid rgba(255,92,73,0.3); background: rgba(34,24,48,0.6); overflow: hidden; }
.cap-card::before { content: attr(data-num); position: absolute; right: 1rem; top: 0.5rem; font-family: var(--font-mono); font-size: 3.5rem; color: rgba(236,232,244,0.06); font-weight: 500; }

.photo-card { position: relative; border: 1px solid rgba(255,92,73,0.35); overflow: hidden; border-radius: 2px; }
.photo-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.photo-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,16,28,0.75), transparent 55%); }

.case-block { padding: 2rem; border-left: 3px solid #FF5C49; background: rgba(236,232,244,0.04); margin-bottom: 2rem; }
.disclaimer { font-size: 0.92rem; color: #8A8296; border-top: 1px solid rgba(138,130,150,0.3); padding-top: 1.25rem; margin-top: 2rem; }

.site-footer { padding: 3rem 0 2rem; font-size: 0.92rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-bottom { border-top: 1px solid rgba(138,130,150,0.25); padding-top: 1.5rem; color: #8A8296; font-size: 0.85rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.4rem; font-size: 0.95rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.75rem 1rem; border: 1px solid rgba(20,16,28,0.2); font-family: var(--font-body); font-size: 1rem; background: #fff; border-radius: 2px; }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-check { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.92rem; }
.form-check input { width: auto; margin-top: 0.25rem; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.page-hero { padding: 8rem 0 3rem; }
.page-hero-compact { padding: 7.5rem 0 2.5rem; }

.legal-content h2 { margin-top: 2rem; font-size: 1.5rem; }
.legal-content h3 { margin-top: 1.5rem; }

.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; padding: 1.25rem 4vw; box-shadow: 0 -4px 24px rgba(0,0,0,0.2); display: none; }
.cookie-banner.is-visible { display: block; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem; }
.cookie-modal { position: fixed; inset: 0; z-index: 210; background: rgba(20,16,28,0.7); display: none; align-items: center; justify-content: center; padding: 1rem; }
.cookie-modal.is-open { display: flex; }
.cookie-panel { max-width: 480px; width: 100%; padding: 2rem; border-radius: 2px; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

.split-media { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-list { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; padding: 1rem 4vw 1.5rem; background: #ECE8F4; color: #14101C; }
  .nav-list.is-open { display: flex; }
  .hero-leap { min-height: 82vh; }
  .metric-trio { grid-template-columns: 1fr; }
  .split-media { grid-template-columns: 1fr; }
}
