:root {
  --bg: #0A0E1A;
  --bg-2: #111726;
  --bg-3: #1A2236;
  --bg-4: #232C42;
  --ink: #F5F1E8;
  --ink-mute: #B8B2A6;
  --ink-low: #6B7280;
  --ink-dim: #4A5163;
  --fire: #FF6B35;
  --fire-bright: #FF8A5C;
  --fire-deep: #C5491F;
  --ice: #6B8AA8;
  --ice-bright: #B8D4E3;
  --ice-deep: #3F5A75;
  --aurora-1: #5DBC8B;
  --aurora-2: #9D8DF1;
  --warning: #E8B547;
  --line: rgba(245, 241, 232, 0.08);
  --line-strong: rgba(245, 241, 232, 0.16);
  --line-fire: rgba(255, 107, 53, 0.2);
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 60px rgba(255, 107, 53, 0.15);
  --t-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --t-med: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --t-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  --t-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--fire); color: var(--bg); }

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0.96 0 0 0 0 0.95 0 0 0 0 0.91 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

main { position: relative; z-index: 2; }
a { color: inherit; }

/* ============================================ */
/* SCROLL REVEAL                                 */
/* ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.12s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.19s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.26s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.33s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.40s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(7) { transition-delay: 0.47s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(8) { transition-delay: 0.54s; opacity: 1; transform: translateY(0); }

/* ============================================ */
/* NAV                                           */
/* ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(10, 14, 26, 0.85), rgba(10, 14, 26, 0.5) 70%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav.scrolled {
  background: rgba(10, 14, 26, 0.92);
  border-bottom: 1px solid var(--line);
  padding: 12px 40px;
}
.brand {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}
.brand-mark { width: 32px; height: 32px; position: relative; display: inline-block; }
.brand-mark::before, .brand-mark::after, .brand-mark span {
  content: '';
  position: absolute;
  background: var(--fire);
  border-radius: 2px;
  transition: transform var(--t-spring);
}
.brand-mark::before {
  width: 4px; height: 14px;
  top: 2px; left: 50%; transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(255, 107, 53, 0.5);
}
.brand-mark::after {
  width: 14px; height: 4px;
  bottom: 6px; right: 2px;
  box-shadow: 0 0 12px rgba(255, 107, 53, 0.5);
}
.brand-mark span {
  width: 14px; height: 4px;
  bottom: 6px; left: 2px;
  box-shadow: 0 0 12px rgba(255, 107, 53, 0.5);
}
.brand:hover .brand-mark::before { transform: translateX(-50%) translateY(-3px); }
.brand:hover .brand-mark::after { transform: translateX(3px); }
.brand:hover .brand-mark span { transform: translateX(-3px); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-mute);
  text-decoration: none;
  transition: color var(--t-fast);
  position: relative;
}
.nav-link:hover { color: var(--ink); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 1px;
  background: var(--fire);
  transition: width var(--t-med);
}
.nav-link:hover::after { width: 100%; }

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
}
.lang {
  color: var(--ink-low);
  text-decoration: none;
  padding: 5px 9px;
  border-radius: 6px;
  transition: color var(--t-fast), background var(--t-fast);
  cursor: pointer;
}
.lang:hover { color: var(--ink); }
.lang.active {
  color: var(--fire);
  background: rgba(255, 107, 53, 0.1);
}
.lang-sep { color: var(--ink-dim); user-select: none; }

.nav-cta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink);
  padding: 10px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  text-decoration: none;
  transition: all var(--t-med);
  background: rgba(255, 107, 53, 0.05);
}
.nav-cta:hover {
  color: var(--bg);
  background: var(--fire);
  border-color: var(--fire);
  box-shadow: 0 0 32px rgba(255, 107, 53, 0.4);
}

/* ============================================ */
/* HERO                                          */
/* ============================================ */
.hero {
  min-height: 100vh;
  padding: 140px 40px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-aurora { position: absolute; inset: 0; pointer-events: none; z-index: 0; opacity: 0.55; }
.hero-aurora::before, .hero-aurora::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  mix-blend-mode: screen;
}
.hero-aurora::before {
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.5) 0%, transparent 70%);
  top: -200px; right: -200px;
  animation: aurora1 18s ease-in-out infinite;
}
.hero-aurora::after {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(107, 138, 168, 0.4) 0%, transparent 70%);
  bottom: -150px; left: -150px;
  animation: aurora2 22s ease-in-out infinite;
}
@keyframes aurora1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-80px, 60px) scale(1.1); }
  66% { transform: translate(40px, -40px) scale(0.95); }
}
@keyframes aurora2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(80px, -80px) scale(1.15); }
}

.hero-grid {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-left { transform: translate3d(0, 0, 0); }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fire);
  padding: 8px 16px;
  border: 1px solid var(--fire);
  border-radius: 999px;
  margin-bottom: 32px;
  background: rgba(255, 107, 53, 0.05);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--fire);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(64px, 11vw, 168px);
  line-height: 0.85;
  letter-spacing: -0.06em;
  margin-bottom: 36px;
  text-transform: uppercase;
}
.hero-headline .word {
  display: inline-flex;
  align-items: baseline;
  position: relative;
  margin-right: 0.05em;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-headline .word:nth-child(1) { animation-delay: 0.2s; }
.hero-headline .word:nth-child(2) { animation-delay: 0.4s; color: var(--fire); }
.hero-headline .word:nth-child(3) { animation-delay: 0.6s; }
.hero-headline .word .punct {
  color: var(--fire);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
}
.hero-headline .word:nth-child(2) .punct { color: var(--ink); }

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

.hero-sub {
  max-width: 540px;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.45;
  color: var(--ink-mute);
  margin-bottom: 14px;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}
.hero-sub em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
}
.hero-sub-meta {
  max-width: 540px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink-low);
  letter-spacing: 0.01em;
  margin-bottom: 14px;
  margin-top: -4px;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.85s both;
}
.hero-tagline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ice);
  margin-bottom: 40px;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both;
}

/* ===== SIGNUP FORM ===== */
.signup {
  display: flex;
  gap: 8px;
  max-width: 520px;
  padding: 8px;
  background: rgba(17, 23, 38, 0.75);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  transition: all var(--t-med);
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1s both;
  backdrop-filter: blur(8px);
  position: relative;
}
.signup:focus-within {
  border-color: var(--fire);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.12), var(--shadow-glow);
}
.signup input[type="email"] {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 20px;
  color: var(--ink);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
}
.signup input::placeholder { color: var(--ink-low); }
.signup button {
  background: var(--fire);
  color: var(--bg);
  border: none;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all var(--t-fast);
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.signup button:hover {
  background: var(--fire-bright);
  box-shadow: 0 0 32px rgba(255, 107, 53, 0.5);
}
.signup-note {
  margin-top: 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--ink-low);
  letter-spacing: 0.05em;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1.1s both;
}
.signup-note .count { color: var(--fire); font-weight: 700; }

/* ===== HERO LIVE PANEL ===== */
.hero-panel {
  position: relative;
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}
.session-card {
  background: linear-gradient(180deg, rgba(17, 23, 38, 0.9), rgba(26, 34, 54, 0.95));
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  padding: 24px;
  position: relative;
  box-shadow: var(--shadow-soft), 0 0 0 1px var(--line);
  backdrop-filter: blur(8px);
  transform-style: preserve-3d;
  transition: transform 0.1s linear;
}
.session-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, var(--fire) 0%, transparent 30%, transparent 70%, var(--ice) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.4;
  pointer-events: none;
}
.session-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.session-head-left { display: flex; flex-direction: column; gap: 4px; }
.session-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--aurora-1);
}
.session-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--aurora-1);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 10px var(--aurora-1);
}
.session-title { font-weight: 700; font-size: 17px; letter-spacing: -0.01em; }
.session-source {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.source-logo { width: 14px; height: 14px; display: inline-flex; align-items: center; justify-content: center; }
.source-logo svg { width: 100%; height: 100%; }
.session-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 18px; }
.session-stat { display: flex; flex-direction: column; gap: 4px; }
.session-stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-low);
}
.session-stat-val {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.session-stat-val .unit { font-size: 13px; color: var(--ink-mute); font-weight: 500; margin-left: 2px; }
.session-map {
  height: 100px;
  background: var(--bg-3);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid var(--line);
}
.session-map svg { width: 100%; height: 100%; }
.session-map-path {
  stroke: var(--fire);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(255, 107, 53, 0.6));
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: pathDraw 3s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}
@keyframes pathDraw { to { stroke-dashoffset: 0; } }
.session-map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245, 241, 232, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 241, 232, 0.04) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.session-dogs { display: flex; gap: 8px; margin-top: 4px; }
.session-dog {
  flex: 1;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.session-dog-name { font-size: 11px; font-weight: 700; color: var(--ink); }
.session-dog-perf {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--aurora-1);
  letter-spacing: 0.05em;
}
.session-dog.alert .session-dog-perf { color: var(--warning); }

.deco-line {
  position: absolute;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--ice);
  opacity: 0.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 1;
}
.deco-1 { top: 200px; right: 60px; transform: rotate(90deg); transform-origin: right top; }
.deco-2 { bottom: 100px; right: 60px; }

/* ============================================ */
/* TRUST STRIP                                   */
/* ============================================ */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
  background: rgba(17, 23, 38, 0.4);
  overflow: hidden;
  position: relative;
}
.trust-label {
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-low);
  margin-bottom: 24px;
}
.trust-track {
  display: flex;
  gap: 64px;
  align-items: center;
  animation: ticker 35s linear infinite;
  width: max-content;
  padding: 0 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--ink-mute);
  letter-spacing: -0.01em;
  white-space: nowrap;
  opacity: 0.65;
  transition: opacity var(--t-med);
}
.trust-item:hover { opacity: 1; }
.trust-item svg { width: 22px; height: 22px; flex-shrink: 0; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================ */
/* SECTIONS COMMUN                               */
/* ============================================ */
section { padding: 140px 40px; position: relative; }
.section-inner { max-width: 1400px; margin: 0 auto; }
.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--fire);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--fire);
}
.section-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  max-width: 1100px;
}
.section-title em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--fire);
}
.section-intro {
  font-size: 18px;
  color: var(--ink-mute);
  max-width: 680px;
  margin-bottom: 80px;
  line-height: 1.6;
}

/* ============================================ */
/* MANIFESTO                                     */
/* ============================================ */
.manifesto {
  background: linear-gradient(180deg, transparent 0%, var(--bg-2) 30%, var(--bg-2) 70%, transparent 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.manifesto-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
.manifesto-text p {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 24px;
}
.manifesto-text p em { font-style: italic; color: var(--fire); }
.manifesto-text p strong {
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--fire);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}
.manifesto-stats { display: grid; gap: 28px; }
.stat { border-left: 2px solid var(--fire); padding-left: 22px; position: relative; }
.stat::before {
  content: '';
  position: absolute;
  left: -2px; top: 0;
  width: 2px; height: 100%;
  background: var(--fire);
  box-shadow: 0 0 12px var(--fire);
  opacity: 0.5;
}
.stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

/* ============================================ */
/* AUDIENCE SWITCHER                             */
/* ============================================ */
.audience-switcher {
  display: flex;
  gap: 8px;
  margin-bottom: 60px;
  padding: 6px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  width: fit-content;
  flex-wrap: wrap;
}
.aud-tab {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: var(--ink-mute);
  background: transparent;
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--t-med);
  display: flex;
  align-items: center;
  gap: 10px;
}
.aud-tab .icon { width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center; }
.aud-tab .icon svg { width: 100%; height: 100%; }
.aud-tab:hover { color: var(--ink); }
.aud-tab.active {
  background: var(--fire);
  color: var(--bg);
  box-shadow: 0 0 24px rgba(255, 107, 53, 0.35);
}
.aud-tab.active .icon { color: var(--bg); }
.aud-panel { display: none; animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) both; }
.aud-panel.active { display: block; }

/* ============================================ */
/* BENTO GRID                                    */
/* ============================================ */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(160px, auto);
  gap: 18px;
}
.bento-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-med), transform var(--t-med);
  display: flex;
  flex-direction: column;
}
.bento-card:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.bento-card .feature-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ice);
  background: rgba(107, 138, 168, 0.12);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
  width: fit-content;
}
.bento-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.bento-card.large h3 { font-size: 36px; }
.bento-card p { color: var(--ink-mute); margin-bottom: 20px; line-height: 1.55; font-size: 14px; flex-grow: 0; }
.bento-card.large p { font-size: 16px; max-width: 460px; }

.col-3 { grid-column: span 3; }
.col-4 { grid-column: span 4; }
.col-2 { grid-column: span 2; }
.col-6 { grid-column: span 6; }
.row-2 { grid-row: span 2; }

.mockup {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  margin-top: auto;
  font-family: 'JetBrains Mono', monospace;
}

.mockup-sync-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  color: var(--ink-low);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.sync-pulse { display: inline-flex; align-items: center; gap: 6px; color: var(--aurora-1); }
.sync-pulse::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--aurora-1);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}
.training-row {
  display: grid;
  grid-template-columns: 60px 1fr 60px 56px 60px;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 11px;
}
.training-row + .training-row { border-top: 1px solid var(--line); }
.training-date { color: var(--fire); font-weight: 700; font-size: 10px; }
.bar-wrap { height: 6px; background: var(--line); border-radius: 99px; position: relative; overflow: hidden; }
.bar {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ice), var(--fire));
  border-radius: 99px;
  width: 0;
  animation: barFill 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes barFill { to { width: var(--w, 50%); } }
.training-temp { font-size: 10px; color: var(--ink-low); text-align: right; }
.training-status { display: inline-flex; align-items: center; gap: 4px; font-size: 10px; }
.status-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; }
.status-dot.go { background: var(--aurora-1); box-shadow: 0 0 8px var(--aurora-1); }
.status-dot.cau { background: var(--warning); box-shadow: 0 0 8px var(--warning); }
.status-dot.no { background: var(--fire); box-shadow: 0 0 8px var(--fire); }

.weather-gauge { display: flex; flex-direction: column; gap: 14px; }
.gauge-readout { display: flex; align-items: baseline; gap: 12px; }
.gauge-temp {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 56px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--aurora-1);
}
.gauge-temp.cau { color: var(--warning); }
.gauge-temp.no { color: var(--fire); }
.gauge-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gauge-bar {
  position: relative;
  height: 10px;
  background: linear-gradient(90deg, var(--ice-bright) 0%, var(--ice) 18%, var(--aurora-1) 32%, var(--warning) 65%, var(--fire) 90%);
  border-radius: 99px;
  overflow: visible;
}
.gauge-cursor {
  position: absolute;
  top: -4px;
  width: 4px; height: 18px;
  background: var(--ink);
  border-radius: 2px;
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}
.gauge-scale {
  display: flex;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--ink-low);
  letter-spacing: 0.05em;
}
.gauge-verdict {
  margin-top: 4px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(93, 188, 139, 0.1);
  border: 1px solid rgba(93, 188, 139, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--aurora-1);
  font-weight: 600;
}
.gauge-verdict::before { content: '✓'; font-size: 14px; }

.mockup-pack { display: flex; flex-direction: column; gap: 6px; padding: 14px; }
.pack-row {
  display: grid;
  grid-template-columns: 56px 1fr 50px;
  gap: 12px;
  align-items: center;
  padding: 10px 14px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 11px;
}
.pack-pos { font-size: 9px; color: var(--fire); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; }
.pack-name { color: var(--ink); font-weight: 700; }
.pack-meta { font-size: 10px; color: var(--ink-low); }
.pack-perf { text-align: right; font-size: 11px; color: var(--ice-bright); font-weight: 700; }

.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; margin-bottom: 12px; }
.cal-cell {
  aspect-ratio: 1;
  border-radius: 6px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 5px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--ink-low);
}
.cal-cell.head { background: transparent; border: none; color: var(--ink-mute); }
.cal-cell.has-task::after {
  content: '';
  position: absolute;
  bottom: 5px; left: 5px; right: 5px;
  height: 4px;
  border-radius: 2px;
}
.cal-cell.dose::after { background: var(--fire); }
.cal-cell.vacc::after { background: var(--ice-bright); }
.cal-cell.tick::after { background: var(--aurora-1); }
.cal-cell.today { border-color: var(--fire); color: var(--fire); font-weight: 700; }
.cal-legend {
  display: flex;
  gap: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  flex-wrap: wrap;
}
.cal-legend span { display: flex; align-items: center; gap: 6px; }
.cal-legend i { width: 9px; height: 9px; border-radius: 2px; display: inline-block; }

.tree { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 12px; }
.tree-node {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  font-size: 10px;
  position: relative;
}
.tree-node.gen1 { background: rgba(255, 107, 53, 0.08); border-color: var(--fire); }
.tree-name { color: var(--ink); font-weight: 700; margin-bottom: 4px; font-size: 11px; }
.tree-meta { color: var(--ink-low); font-size: 9px; line-height: 1.4; }
.coi-badge {
  padding: 12px 16px;
  background: var(--bg-2);
  border: 1px solid var(--fire);
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
}
.coi-label { color: var(--ink-mute); }
.coi-val {
  color: var(--fire);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.coi-val::after {
  content: '';
  width: 8px; height: 8px;
  background: var(--aurora-1);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--aurora-1);
}

.litter-timeline { display: flex; flex-direction: column; gap: 8px; padding: 14px; }
.litter-week {
  display: grid;
  grid-template-columns: 60px 1fr 70px;
  gap: 12px;
  padding: 8px 0;
  align-items: center;
  font-size: 11px;
  border-bottom: 1px solid var(--line);
}
.litter-week:last-child { border-bottom: none; }
.litter-w {
  color: var(--fire);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.litter-event { color: var(--ink); font-size: 11px; }
.litter-event small { color: var(--ink-low); display: block; font-size: 9px; margin-top: 2px; }
.litter-status { font-family: 'JetBrains Mono', monospace; font-size: 9px; color: var(--ink-low); text-align: right; }
.litter-status.done { color: var(--aurora-1); }
.litter-status.now { color: var(--fire); }

.startlist { padding: 14px; }
.startlist-head {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: var(--ink-low);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 10px;
}
.startlist-row {
  display: grid;
  grid-template-columns: 30px 1fr 60px 50px;
  gap: 10px;
  padding: 7px 0;
  font-size: 11px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.startlist-row:last-child { border-bottom: none; }
.bib {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--fire);
  font-weight: 700;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid var(--line-fire);
  border-radius: 4px;
  padding: 3px 6px;
  text-align: center;
}
.startlist-name { font-weight: 700; color: var(--ink); }
.startlist-name small { display: block; font-size: 9px; color: var(--ink-low); font-weight: 400; margin-top: 1px; }
.startlist-time { text-align: right; color: var(--ice-bright); font-family: 'JetBrains Mono', monospace; font-size: 11px; }
.startlist-rank { text-align: center; font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 700; }
.startlist-rank.gold { color: #FFD66B; }
.startlist-rank.silver { color: #B8C5D0; }
.startlist-rank.bronze { color: #D49A6A; }
.startlist-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--fire);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}
.startlist-live::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--fire);
  border-radius: 50%;
  animation: pulse 1.4s ease-in-out infinite;
}

.buyer-portal { padding: 16px; }
.buyer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.buyer-name { font-size: 12px; font-weight: 700; }
.buyer-name small { display: block; font-size: 9px; color: var(--ink-low); margin-top: 2px; font-weight: 400; }
.buyer-progress {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--aurora-1);
  letter-spacing: 0.1em;
}
.puppy-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.puppy-cell {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--line);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.puppy-cell.target { border-color: var(--fire); box-shadow: 0 0 16px rgba(255, 107, 53, 0.3); }
.puppy-cell.target::after {
  content: '★';
  position: absolute;
  top: 4px; right: 4px;
  font-size: 10px;
  color: var(--fire);
}
.puppy-cell::before {
  content: '';
  position: absolute;
  inset: 25%;
  background: rgba(255, 107, 53, 0.15);
  border-radius: 50%;
  filter: blur(4px);
}

/* ============================================ */
/* AI LAYER                                      */
/* ============================================ */
.ai-section {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(157, 141, 241, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.ai-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; margin-top: 80px; }

.ocr-demo {
  display: grid;
  grid-template-columns: 1fr 30px 1fr;
  gap: 12px;
  align-items: stretch;
  padding: 18px;
}
.ocr-paper {
  background: linear-gradient(180deg, #2a2418, #1f1a10);
  border: 1px solid #3a2f1d;
  border-radius: 10px;
  padding: 14px;
  position: relative;
  overflow: hidden;
  font-family: 'Fraunces', serif;
  font-size: 9px;
  color: #b8a685;
  line-height: 1.6;
}
.ocr-paper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, transparent 0 19px, rgba(0,0,0,0.15) 19px 20px);
  pointer-events: none;
}
.ocr-paper::after {
  content: 'PEDIGREE';
  position: absolute;
  top: 4px; left: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 7px;
  color: #6a5a3a;
  letter-spacing: 0.2em;
}
.ocr-paper-inner { padding-top: 14px; }
.ocr-paper-line {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dotted #4a3f25;
  padding: 1px 0;
}
.ocr-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aurora-2);
  font-size: 18px;
  position: relative;
}
.ocr-arrow::before {
  content: '';
  position: absolute;
  inset: 50% -8px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--aurora-2), transparent);
  animation: ocrPulse 2s ease-in-out infinite;
}
@keyframes ocrPulse {
  0%, 100% { opacity: 0.3; transform: scaleX(0.7); }
  50% { opacity: 1; transform: scaleX(1); }
}
.ocr-digital {
  background: var(--bg-2);
  border: 1px solid var(--aurora-2);
  border-radius: 10px;
  padding: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  position: relative;
  box-shadow: 0 0 24px rgba(157, 141, 241, 0.2);
}
.ocr-digital::before {
  content: '✨ EXTRACTED';
  position: absolute;
  top: -10px; left: 12px;
  font-size: 8px;
  background: var(--bg);
  padding: 2px 6px;
  color: var(--aurora-2);
  letter-spacing: 0.15em;
  border: 1px solid var(--aurora-2);
  border-radius: 4px;
}
.ocr-field {
  display: flex;
  justify-content: space-between;
  padding: 3px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.ocr-field:last-child { border-bottom: none; }
.ocr-key { color: var(--ink-low); }
.ocr-val { color: var(--ink); font-weight: 700; }

.injury-timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 14px; }
.injury-frame {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #2a1a18, #1a1010);
  border: 1px solid #3a2018;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.injury-frame::before {
  content: '';
  position: absolute;
  inset: 30% 35%;
  background: radial-gradient(circle, var(--fire) 0%, var(--fire-deep) 40%, transparent 80%);
  border-radius: 50%;
  filter: blur(3px);
  animation: injuryPulse 3s ease-in-out infinite;
  opacity: 0.6;
}
.injury-frame.j7::before { inset: 35% 40%; opacity: 0.4; }
.injury-frame.j14::before { inset: 40% 42%; opacity: 0.2; }
.injury-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(255, 200, 180, 0.15) 0%, transparent 30%),
    radial-gradient(circle at 70% 60%, rgba(180, 100, 80, 0.2) 0%, transparent 40%);
  pointer-events: none;
}
.injury-day {
  position: absolute;
  bottom: 8px; left: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--ink);
  background: rgba(0, 0, 0, 0.7);
  padding: 3px 7px;
  border-radius: 4px;
  letter-spacing: 0.1em;
  z-index: 2;
}
.injury-progress {
  position: absolute;
  top: 8px; right: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  z-index: 2;
  background: rgba(0, 0, 0, 0.7);
  padding: 3px 7px;
  border-radius: 4px;
}
.injury-progress.heal-0 { color: var(--fire); }
.injury-progress.heal-50 { color: var(--warning); }
.injury-progress.heal-95 { color: var(--aurora-1); }
@keyframes injuryPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.chat-mockup { padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.chat-msg { max-width: 85%; padding: 8px 12px; border-radius: 12px; font-size: 11px; line-height: 1.4; }
.chat-msg.user {
  align-self: flex-end;
  background: var(--fire);
  color: var(--bg);
  border-bottom-right-radius: 3px;
  font-weight: 600;
}
.chat-msg.bot {
  align-self: flex-start;
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--ink);
  border-bottom-left-radius: 3px;
  position: relative;
  padding-left: 30px;
}
.chat-msg.bot::before {
  content: '';
  position: absolute;
  left: 8px; top: 8px;
  width: 16px; height: 16px;
  background: linear-gradient(135deg, var(--aurora-2), var(--fire));
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(157, 141, 241, 0.4);
}
.chat-msg .chat-meta {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  color: var(--ink-low);
  margin-top: 4px;
  letter-spacing: 0.05em;
}
.chat-typing {
  align-self: flex-start;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  gap: 4px;
}
.chat-typing span {
  width: 6px; height: 6px;
  background: var(--ink-low);
  border-radius: 50%;
  animation: typing 1.4s ease-in-out infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* ============================================ */
/* COMPARE                                       */
/* ============================================ */
.compare { background: var(--bg); border-top: 1px solid var(--line); }
.compare-grid { display: grid; grid-template-columns: 1fr 80px 1fr; gap: 0; margin-top: 60px; align-items: stretch; }
.compare-side {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px;
  display: flex;
  flex-direction: column;
}
.compare-before {
  background: repeating-linear-gradient(
    135deg,
    var(--bg-2),
    var(--bg-2) 12px,
    rgba(232, 181, 71, 0.04) 12px,
    rgba(232, 181, 71, 0.04) 24px
  );
}
.compare-after {
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  border-color: var(--fire);
  box-shadow: 0 0 60px rgba(255, 107, 53, 0.1);
}
.compare-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.compare-before .compare-tag { color: var(--warning); }
.compare-after .compare-tag { color: var(--fire); }
.compare-h {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.compare-h em { font-family: 'Fraunces', serif; font-style: italic; font-weight: 500; color: var(--fire); }
.compare-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.45;
}
.compare-list li::before {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 1px;
}
.compare-before .compare-list li::before {
  content: '×';
  background: rgba(232, 181, 71, 0.15);
  color: var(--warning);
  border: 1px solid rgba(232, 181, 71, 0.3);
}
.compare-after .compare-list li::before {
  content: '✓';
  background: rgba(255, 107, 53, 0.15);
  color: var(--fire);
  border: 1px solid var(--line-fire);
}
.compare-after .compare-list li { color: var(--ink); }
.compare-arrow { display: flex; align-items: center; justify-content: center; position: relative; }
.compare-arrow svg {
  width: 48px; height: 48px;
  color: var(--fire);
  filter: drop-shadow(0 0 16px rgba(255, 107, 53, 0.5));
}

/* ============================================ */
/* MODULES PRICING                               */
/* ============================================ */
.modules {
  background: linear-gradient(180deg, transparent 0%, var(--bg-2) 30%, var(--bg-2) 70%, transparent 100%);
  border-top: 1px solid var(--line);
}
.modules-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 80px; margin-top: 60px; }
.module-row {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  transition: padding-left var(--t-med);
}
.module-row:hover { padding-left: 12px; }
.module-num { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--fire); letter-spacing: 0.1em; }
.module-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.module-desc { font-size: 13px; color: var(--ink-mute); margin-top: 4px; line-height: 1.5; }
.module-price { font-family: 'JetBrains Mono', monospace; font-size: 14px; color: var(--ice-bright); white-space: nowrap; }
.bundle-cta {
  margin-top: 60px;
  padding: 32px 40px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(157, 141, 241, 0.08));
  border: 1px solid var(--fire);
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.bundle-text strong {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.bundle-text span { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--ink-mute); letter-spacing: 0.05em; }
.bundle-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.03em;
  color: var(--fire);
}
.bundle-price small { font-size: 13px; color: var(--ink-low); font-weight: 500; margin-left: 4px; }

/* ============================================ */
/* CROSS-CUTTING                                 */
/* ============================================ */
.cross { background: var(--bg); }
.cross-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 60px; }
.cross-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  transition: border-color var(--t-med), transform var(--t-med);
}
.cross-card:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.cross-icon { width: 36px; height: 36px; margin-bottom: 18px; color: var(--fire); }
.cross-card h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.cross-card p { font-size: 13px; color: var(--ink-mute); line-height: 1.5; }

/* ============================================ */
/* FINAL CTA                                     */
/* ============================================ */
.final-cta {
  background: var(--bg);
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 160px 40px;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(56px, 10vw, 156px);
  line-height: 0.88;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  margin-bottom: 32px;
  position: relative;
}
.final-cta-headline em {
  color: var(--fire);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
}
.final-cta-sub {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--ice);
  margin-bottom: 48px;
  position: relative;
}
.final-cta .signup { margin: 0 auto; position: relative; }

/* ============================================ */
/* FOOTER                                        */
/* ============================================ */
.footer {
  border-top: 1px solid var(--line);
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--ink-low);
  letter-spacing: 0.05em;
}
.footer-links { display: flex; gap: 24px; }
.footer a { color: var(--ink-low); text-decoration: none; transition: color 0.2s; }
.footer a:hover { color: var(--fire); }

/* ============================================ */
/* RESPONSIVE                                    */
/* ============================================ */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-panel { max-width: 540px; }
  .bento { grid-template-columns: repeat(4, 1fr); }
  .col-3 { grid-column: span 4; }
  .col-4 { grid-column: span 4; }
  .col-2 { grid-column: span 2; }
  .col-6 { grid-column: span 4; }
  .ai-grid { grid-template-columns: repeat(4, 1fr); }
  .compare-grid { grid-template-columns: 1fr; gap: 24px; }
  .compare-arrow { transform: rotate(90deg); padding: 12px 0; }
  .cross-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .nav { padding: 14px 20px; }
  .nav.scrolled { padding: 10px 20px; }
  .nav-links { display: none; }
  section { padding: 90px 20px; }
  .hero { padding: 110px 20px 60px; }
  .hero-headline { font-size: clamp(56px, 16vw, 120px); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .col-3, .col-4, .col-2, .col-6 { grid-column: span 2; }
  .ai-grid { grid-template-columns: repeat(2, 1fr); }
  .modules-list { grid-template-columns: 1fr; gap: 0; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 48px; }
  .ocr-demo { grid-template-columns: 1fr; }
  .ocr-arrow { transform: rotate(90deg); padding: 8px 0; }
  .deco-line { display: none; }
  .footer { flex-direction: column; gap: 16px; text-align: center; }
  .signup { flex-direction: column; border-radius: 16px; padding: 12px; }
  .signup input[type="email"] { padding: 12px 16px; }
  .signup button { width: 100%; padding: 14px; }
  .audience-switcher { width: 100%; overflow-x: auto; flex-wrap: nowrap; }
  .aud-tab { white-space: nowrap; }
  .bundle-cta { flex-direction: column; align-items: flex-start; }
  .cross-grid { grid-template-columns: 1fr; }
  .nav-right { gap: 14px; }
}
@media (max-width: 480px) {
  .bento { grid-template-columns: 1fr; }
  .col-3, .col-4, .col-2, .col-6 { grid-column: span 1; }
  .ai-grid { grid-template-columns: 1fr; }
  .puppy-grid { grid-template-columns: repeat(4, 1fr); }
  .tree { grid-template-columns: repeat(2, 1fr); }
  .cal-grid { gap: 3px; }
  .hero-headline { font-size: clamp(48px, 18vw, 96px); }
  .stat-num { font-size: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
