/* ==========================================================================
   Creative Juice Lab — production stylesheet
   "High-precision creative laboratory" — deep indigo surfaces, glassmorphic
   modules, blueprint grid, chemical teal + electric juice orange accents.
   All colors flow through the CSS custom properties set by THEMES in app.js
   (--bg, --bg-card, --bg-alt, --a, --b, --c, --d, --text, --muted, --nav).
   Glass + grid tints are derived from those via color-mix() — no new theme vars.
   ========================================================================== */

:root {
  --bg: #081425;
  --bg-card: #152031;
  --bg-alt: #040e1f;
  --a: #FF6B00;
  --b: #76d6d5;
  --c: #bec6e0;
  --d: #ffb693;
  --text: #d8e3fb;
  --muted: #8fa0b8;
  --nav: rgba(8,20,37,0.82);
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  /* Derived lab surfaces */
  --glass: color-mix(in srgb, var(--bg-card) 72%, transparent);
  --glass-border: rgba(255,255,255,0.06);
  --grid-line: color-mix(in srgb, var(--b) 14%, transparent);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background 0.3s;
}

/* ── AMBIENT LAB BACKGROUND ──────────────────────────────────── */
.ambient-mesh {
  position: fixed; inset: 0; z-index: -3; pointer-events: none;
  background:
    radial-gradient(circle at 12% 40%, color-mix(in srgb, var(--b) 18%, transparent), transparent 42%),
    radial-gradient(circle at 88% 25%, color-mix(in srgb, var(--a) 14%, transparent), transparent 42%),
    radial-gradient(circle at 50% 88%, color-mix(in srgb, var(--c) 10%, transparent), transparent 55%);
  background-color: var(--bg-alt);
  transition: background-color 0.3s;
}
.blueprint-grid {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background-image:
    linear-gradient(to right, var(--grid-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px);
  background-size: 40px 40px;
}
.molecule {
  position: fixed; border-radius: 50%; filter: blur(70px);
  pointer-events: none; z-index: -1; will-change: transform;
  animation: float 9s ease-in-out infinite;
}
.mol-1 { width: 320px; height: 320px; background: color-mix(in srgb, var(--b) 16%, transparent); top: 18%; left: -60px; }
.mol-2 { width: 380px; height: 380px; background: color-mix(in srgb, var(--a) 12%, transparent); bottom: 12%; right: -80px; animation-delay: -3s; }
.mol-3 { width: 260px; height: 260px; background: color-mix(in srgb, var(--c) 10%, transparent); top: 55%; left: 45%; animation-delay: -6s; }
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-26px) scale(1.06); }
}

/* ── NAV ──────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: var(--nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid color-mix(in srgb, var(--b) 16%, transparent);
  transition: background 0.3s, box-shadow 0.3s;
}
.nav-brand { display: flex; align-items: center; gap: 14px; }
.nav-logo-link { display: block; line-height: 0; }
.nav-logo { height: 38px; display: block; }
.nav-status {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
  padding-left: 14px; border-left: 1px solid rgba(255,255,255,0.1);
}
.status-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--b);
  box-shadow: 0 0 8px var(--b); animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.04em;
  color: var(--muted); text-decoration: none;
  transition: color 0.2s; padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--text); }

.nav-right { display: flex; align-items: center; gap: 18px; }

.theme-dots { display: flex; align-items: center; gap: 8px; }
.theme-dot {
  width: 18px; height: 18px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  cursor: pointer; padding: 0;
  transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s;
  background-clip: padding-box;
}
.theme-dot[data-theme="lab-indigo"] { background: linear-gradient(135deg, #FF6B00, #76d6d5); }
.theme-dot[data-theme="lab-teal"]   { background: linear-gradient(135deg, #76d6d5, #93f2f2); }
.theme-dot[data-theme="lab-juice"]  { background: linear-gradient(135deg, #FF6B00, #FF8A3C); }
.theme-dot:hover { transform: scale(1.12); border-color: rgba(255,255,255,0.35); }
.theme-dot.active {
  border-color: var(--text);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.08), 0 0 14px color-mix(in srgb, var(--b) 40%, transparent);
}

.nav-cta {
  background: var(--b);
  color: #003737;
  padding: 10px 22px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: box-shadow 0.25s, transform 0.15s, background 0.3s;
  letter-spacing: 0.03em;
  white-space: nowrap;
  box-shadow: 0 0 20px color-mix(in srgb, var(--b) 22%, transparent);
}
.nav-cta:hover { box-shadow: 0 0 32px color-mix(in srgb, var(--a) 40%, transparent); transform: translateY(-1px); }

/* ── HERO ──────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 120px 48px 80px;
}

/* legacy orbs retained but softened into "reaction" glows */
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: 0.22;
  animation: drift 12s ease-in-out infinite;
  pointer-events: none; will-change: transform;
}
.orb-1 { width: 560px; height: 560px; background: var(--a); top: -150px; right: -100px; animation-delay: 0s; }
.orb-2 { width: 480px; height: 480px; background: var(--b); bottom: -100px; left: -80px; animation-delay: -4s; }
.orb-3 { width: 380px; height: 380px; background: var(--c); top: 30%; left: 40%; animation-delay: -8s; }
.orb-4 { width: 280px; height: 280px; background: var(--d); bottom: 10%; right: 20%; animation-delay: -2s; }
@keyframes drift {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-40px) scale(1.08); }
  66% { transform: translate(-20px,20px) scale(0.95); }
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 920px; text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: color-mix(in srgb, var(--b) 5%, transparent);
  border: 1px solid color-mix(in srgb, var(--b) 22%, transparent);
  border-radius: 100px; padding: 7px 16px;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.06em; color: var(--muted);
  margin-bottom: 38px;
  opacity: 0; animation: fadeUp 0.6s 0.2s forwards;
}
.hero-badge span { color: var(--b); }
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.7s 0.4s forwards;
  text-wrap: balance;
}
.hero-title .t-a { color: var(--a); }
.hero-title .t-b { color: var(--b); }
.hero-title .t-c { color: var(--c); }
/* legacy gradient span still styled in case markup retains it */
.hero-title .line-grad {
  background: linear-gradient(90deg, var(--a), var(--b) 50%, var(--c));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted); font-weight: 300;
  max-width: 600px; margin: 0 auto 44px;
  opacity: 0; animation: fadeUp 0.7s 0.6s forwards;
  line-height: 1.6;
}
.hero-ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.7s 0.8s forwards;
}
.btn-primary {
  background: var(--a);
  color: #fff; font-weight: 700; font-size: 14px;
  font-family: var(--font-mono); letter-spacing: 0.02em;
  padding: 15px 32px; border-radius: 8px;
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 0 24px color-mix(in srgb, var(--a) 32%, transparent);
  display: inline-block; border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 44px color-mix(in srgb, var(--a) 52%, transparent); }
.btn-ghost {
  background: transparent;
  border: 1px solid var(--b);
  color: var(--b); font-size: 14px; font-weight: 500;
  font-family: var(--font-mono); letter-spacing: 0.02em;
  padding: 15px 28px; border-radius: 8px;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 9px;
  transition: background 0.18s;
}
.btn-ghost:hover { background: color-mix(in srgb, var(--b) 12%, transparent); }

.hero-stats {
  display: flex; justify-content: center; flex-wrap: wrap;
  margin-top: 64px;
  background: var(--glass);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px; overflow: hidden;
  opacity: 0; animation: fadeUp 0.7s 1.0s forwards;
}
.stat { text-align: center; padding: 26px 44px; position: relative; }
.stat + .stat::before { content: ''; position: absolute; left: 0; top: 18%; height: 64%; width: 1px; background: rgba(255,255,255,0.1); }
.stat-num {
  font-family: var(--font-head);
  font-size: 40px; font-weight: 800;
  letter-spacing: -0.02em; line-height: 1; margin-bottom: 8px;
}
.stat:nth-child(1) .stat-num { color: var(--a); }
.stat:nth-child(2) .stat-num { color: var(--b); }
.stat:nth-child(3) .stat-num { color: var(--c); }
.stat-label { font-family: var(--font-mono); font-size: 11px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }

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

/* ── MARQUEE ──────────────────────────────────── */
.marquee-section {
  padding: 0;
  border-top: 1px solid color-mix(in srgb, var(--b) 16%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--b) 16%, transparent);
  overflow: hidden;
  background: color-mix(in srgb, var(--bg-alt) 70%, transparent);
}
.marquee-track {
  display: flex; gap: 0;
  animation: marquee 26s linear infinite;
  width: max-content;
}
.marquee-item {
  padding: 16px 36px;
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted);
  white-space: nowrap;
  display: flex; align-items: center; gap: 20px;
}
.marquee-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--b); display: inline-block; opacity: 0.7; }
.marquee-dot.c { background: var(--a); }
.marquee-dot.d { background: var(--c); }
.marquee-dot.b { background: var(--d); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── SECTION COMMON ──────────────────────────────────── */
section { padding: 110px 48px; }
.section-inner { max-width: 1240px; margin: 0 auto; }
.section-label {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--b);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before { content: ''; width: 28px; height: 1px; background: var(--b); }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700; line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin-bottom: 18px;
}
.section-sub {
  color: var(--muted); font-size: 17px; font-weight: 300;
  max-width: 560px; line-height: 1.65;
  margin-bottom: 56px;
}

.grad-ab {
  color: var(--b);
}

/* ── START / INTAKE FORM (Reaction Profile) ──────────────────────────────────── */
.start-section {
  padding: 90px 48px;
  background: color-mix(in srgb, var(--bg-alt) 60%, transparent);
}
.start-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.start-title { margin-bottom: 14px; }
.start-desc {
  color: var(--muted); font-size: 16px; line-height: 1.7;
  margin-bottom: 32px;
}
.start-checks { flex-direction: column; gap: 14px; margin-bottom: 0; display: flex; }

.cta-steps {
  display: flex; gap: 32px;
  flex-wrap: wrap; position: relative;
}
.cta-step {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--muted);
}
.cta-step-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--a);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; flex-shrink: 0; color: #fff; font-weight: 700;
}

.start-right {
  background: var(--glass);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

.cta-orb-1 {
  position: absolute; width: 300px; height: 300px;
  background: var(--b); border-radius: 50%; filter: blur(100px);
  opacity: 0.16; top: -80px; right: -60px; pointer-events: none;
}
.cta-orb-1.small { width: 200px; height: 200px; opacity: 0.14; top: -60px; right: -40px; }

/* Intake Form */
.form-step { display: none; position: relative; }
.form-step.active { display: block; }

.form-progress {
  display: flex; gap: 6px; margin-bottom: 28px;
  position: relative;
}
.form-pip {
  height: 4px; flex: 1; border-radius: 100px;
  background: rgba(255,255,255,0.1);
  transition: background 0.4s;
}
.form-pip.done { background: var(--a); }

.choice-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px; margin-bottom: 28px;
}
.choice-grid.single { grid-template-columns: 1fr; }

.choice-btn {
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 24px 20px;
  cursor: pointer; text-align: left;
  transition: background 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.25s;
  color: var(--text);
  font-family: var(--font-body);
  width: 100%;
  position: relative;
}
.choice-btn.choice-row {
  display: flex; flex-direction: row; align-items: center;
  gap: 14px; padding: 16px 20px;
}
.choice-btn:hover { background: rgba(255,255,255,0.06); border-color: color-mix(in srgb, var(--b) 50%, transparent); transform: translateY(-2px); }
.choice-btn.selected { border-color: var(--a); background: color-mix(in srgb, var(--a) 8%, transparent); box-shadow: 0 0 24px color-mix(in srgb, var(--a) 20%, transparent); }
.choice-ref {
  position: absolute; top: 12px; right: 16px;
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; color: var(--muted);
}
.choice-row .choice-ref { top: 50%; transform: translateY(-50%); }
.choice-icon { font-size: 26px; margin-bottom: 10px; display: block; }
.choice-icon.inline { margin: 0; font-size: 22px; }
.choice-title { font-family: var(--font-head); font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.choice-sub { font-size: 13px; color: var(--muted); }

.form-input {
  width: 100%; background: var(--bg-alt);
  border: none; border-bottom: 2px solid color-mix(in srgb, var(--b) 28%, transparent);
  border-radius: 6px 6px 0 0; padding: 14px 16px;
  color: var(--text); font-family: var(--font-body);
  font-size: 16px; margin-bottom: 14px;
  transition: border-color 0.2s;
  outline: none;
}
.form-input.textarea { min-height: 110px; resize: vertical; }
.form-input:focus { border-bottom-color: var(--b); }
.form-input::placeholder { color: var(--muted); }

.form-label {
  display: block; font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.form-label-lg { margin-bottom: 16px; text-align: center; font-size: 12px; }
.form-group { margin-bottom: 20px; }

/* Timeline pill buttons */
.timeline-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pill-btn {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s ease;
}
.pill-btn:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.2); }
.pill-btn.selected { border-color: var(--a); background: color-mix(in srgb, var(--a) 12%, transparent); color: var(--text); }

.form-nav { display: flex; gap: 12px; align-items: center; margin-top: 16px; flex-wrap: wrap; }
.btn-next {
  background: var(--b);
  color: #003737; font-weight: 700; font-size: 14px;
  font-family: var(--font-mono); letter-spacing: 0.02em;
  padding: 13px 30px; border-radius: 8px;
  border: none; cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 0 20px color-mix(in srgb, var(--b) 20%, transparent);
}
.btn-next:hover { transform: translateY(-2px); box-shadow: 0 0 36px color-mix(in srgb, var(--a) 40%, transparent); }
.btn-back {
  background: transparent; border: 1px solid rgba(255,255,255,0.15);
  color: var(--muted); font-size: 13px; padding: 13px 22px;
  border-radius: 8px; cursor: pointer; font-family: var(--font-mono);
  transition: border-color 0.2s, color 0.2s;
}
.btn-back:hover { border-color: rgba(255,255,255,0.3); color: var(--text); }
.step-indicator { font-family: var(--font-mono); font-size: 12px; color: var(--muted); margin-left: auto; letter-spacing: 0.06em; }

/* Success state */
.form-success {
  text-align: center; padding: 40px 0; display: none;
  position: relative;
}
.success-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--b), color-mix(in srgb, var(--b) 50%, #003737));
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; margin: 0 auto 24px;
  box-shadow: 0 0 30px color-mix(in srgb, var(--b) 40%, transparent);
  color: #003737;
}
.form-success h3 {
  font-family: var(--font-head); font-size: 28px; font-weight: 700;
  margin-bottom: 12px;
}
.form-success p { color: var(--muted); font-size: 16px; }
.form-success strong { color: var(--b); }

/* ── SERVICES / EXPERIMENT CATALOG ──────────────────────────────────── */
#services { background: color-mix(in srgb, var(--bg-alt) 50%, transparent); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  max-width: 1240px; margin: 0 auto;
}
.service-card {
  background: var(--glass);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 38px 32px;
  position: relative; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  cursor: default;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 24px 80px rgba(0,0,0,0.5); }
.service-ref {
  position: absolute; top: 18px; right: 20px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; color: var(--muted);
}
.service-icon {
  width: 54px; height: 54px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 24px;
  position: relative;
}
.c1 .service-icon { background: color-mix(in srgb, var(--a) 14%, transparent); }
.c2 .service-icon { background: color-mix(in srgb, var(--b) 14%, transparent); }
.c3 .service-icon { background: color-mix(in srgb, var(--c) 14%, transparent); }

.service-card h3 {
  font-family: var(--font-head);
  font-size: 22px; font-weight: 600;
  margin-bottom: 12px; letter-spacing: -0.01em;
  position: relative;
}
.service-card p {
  color: var(--muted); font-size: 15px; line-height: 1.6;
  margin-bottom: 26px;
  position: relative;
}
.service-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
  text-decoration: none;
  transition: gap 0.2s;
  position: relative;
}
.c1 .service-link { color: var(--a); }
.c2 .service-link { color: var(--b); }
.c3 .service-link { color: var(--c); }
.service-link:hover { gap: 12px; }

.service-bar {
  position: absolute; bottom: 0; left: 0; width: 100%; height: 3px;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s;
}
.c1 .service-bar { background: var(--a); }
.c2 .service-bar { background: var(--b); }
.c3 .service-bar { background: var(--c); }
.service-card:hover .service-bar { transform: scaleX(1); }

.service-bg-num {
  position: absolute; bottom: -20px; right: 20px;
  font-family: var(--font-head); font-size: 140px; font-weight: 800;
  opacity: 0.04; line-height: 1; pointer-events: none;
  user-select: none;
}

/* ── PROCESS / METHODOLOGY ──────────────────────────────────── */
#process { background: var(--bg); text-align: center; }
.process-inner { max-width: 1240px; margin: 0 auto; }
#process .section-label { justify-content: center; }
#process .section-label::before { display: none; }
#process .section-title { margin-left: auto; margin-right: auto; }
#process .section-sub { margin-left: auto; margin-right: auto; }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; position: relative;
  margin-top: 56px; text-align: left;
}
.process-step {
  background: var(--glass);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s;
}
.process-step:hover { transform: translateY(-5px); }
.step-num {
  font-family: var(--font-head);
  font-size: 52px; font-weight: 800; line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.step-1 .step-num { color: color-mix(in srgb, var(--a) 28%, transparent); }
.step-2 .step-num { color: color-mix(in srgb, var(--b) 28%, transparent); }
.step-3 .step-num { color: color-mix(in srgb, var(--c) 30%, transparent); }
.step-4 .step-num { color: color-mix(in srgb, var(--d) 30%, transparent); }
.process-step h3 {
  font-family: var(--font-head); font-size: 19px; font-weight: 600;
  margin-bottom: 12px; letter-spacing: -0.01em;
}
.step-1 h3 { color: var(--a); }
.step-2 h3 { color: var(--b); }
.step-3 h3 { color: var(--c); }
.step-4 h3 { color: var(--d); }
.process-step p { color: var(--muted); font-size: 14px; line-height: 1.6; }
.step-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s;
}
.step-1 .step-bar { background: var(--a); }
.step-2 .step-bar { background: var(--b); }
.step-3 .step-bar { background: var(--c); }
.step-4 .step-bar { background: var(--d); }
.process-step:hover .step-bar { transform: scaleX(1); }

/* ── WHY US / ARCHIVE ──────────────────────────────────── */
#about { background: color-mix(in srgb, var(--bg-alt) 50%, transparent); }
.about-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-desc {
  color: var(--muted); font-size: 16px; line-height: 1.7;
  margin-bottom: 32px;
}
.inline-btn { display: inline-block; }

.about-right { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about-feature {
  display: block;
  padding: 24px; border-radius: 14px;
  background: var(--glass);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  transition: border-color 0.25s, transform 0.25s;
}
.about-feature:hover { border-color: color-mix(in srgb, var(--b) 30%, transparent); transform: translateY(-3px); }
.feat-ref {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 14px;
}
.feat-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 20px; margin-bottom: 14px;
}
.feat-1 .feat-icon { background: color-mix(in srgb, var(--a) 16%, transparent); }
.feat-2 .feat-icon { background: color-mix(in srgb, var(--b) 16%, transparent); }
.feat-3 .feat-icon { background: color-mix(in srgb, var(--c) 16%, transparent); }
.feat-4 .feat-icon { background: color-mix(in srgb, var(--d) 16%, transparent); }
.feat-text h4 {
  font-family: var(--font-head); font-size: 16px; font-weight: 600;
  margin-bottom: 8px;
}
.feat-text p { color: var(--muted); font-size: 13px; line-height: 1.55; }

.big-quote {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 700; line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.big-quote .accent {
  color: var(--b);
}

/* ── FOOTER ──────────────────────────────────── */
footer {
  background: var(--bg-card);
  border-top: 1px solid color-mix(in srgb, var(--b) 14%, transparent);
  padding: 60px 48px 36px;
}
.footer-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo { height: 36px; margin-bottom: 18px; display: block; }
.footer-tagline { color: var(--muted); font-size: 14px; line-height: 1.6; max-width: 300px; }
.footer-col h4 {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--muted); margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: var(--muted); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--b); }
.footer-bottom {
  max-width: 1240px; margin: 24px auto 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: var(--muted); font-size: 13px; font-family: var(--font-mono); letter-spacing: 0.04em; }
.footer-tagline-bottom {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--b);
}

/* ── REVEAL ANIMATIONS ──────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-badge, .hero-title, .hero-sub, .hero-ctas, .hero-stats { opacity: 1; }
  .molecule { animation: none; }
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-status { display: none; }
  .nav-right { gap: 12px; }
  #hero { padding: 100px 24px 60px; }
  section { padding: 80px 24px; }
  .start-section { padding: 60px 24px; }
  .start-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 48px 24px; }
}
@media (max-width: 600px) {
  .hero-stats { flex-direction: column; }
  .stat + .stat::before { display: none; }
  .process-grid { grid-template-columns: 1fr; }
  .about-right { grid-template-columns: 1fr; }
  .start-right { padding: 28px; }
  .step-indicator { width: 100%; margin-left: 0; text-align: right; order: 10; }
}
