:root {
  --surface: 9, 9, 11;
  --surface-alt: 24, 24, 27;
  --surface-alt-2: 39, 39, 42;
  --line: 39, 39, 42;
  --ink: 250, 250, 250;
  --ink-muted: 161, 161, 170;
  --accent: 229, 9, 20;
  --violet: #7c3aed;
  --orange: #f97316;
  --magenta: #db2777;
  --gold: #fed151;
  --gold-deep: #f7af11;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1120px;
}

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

body {
  margin: 0;
  background: rgb(var(--surface));
  color: rgb(var(--ink));
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .display {
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }

.muted { color: rgb(var(--ink-muted)); }

/* ---------- aurora background ---------- */
.aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.aurora .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  will-change: transform;
}
.aurora.default .cool { width: 62vw; height: 62vw; max-width: 780px; max-height: 780px; top: -18vw; left: -12vw; background: var(--violet); animation: drift1 22s ease-in-out infinite; }
.aurora.default .warm { width: 56vw; height: 56vw; max-width: 700px; max-height: 700px; top: -20vw; right: -14vw; background: var(--orange); animation: drift2 26s ease-in-out infinite; }
.aurora.default .mid  { width: 48vw; height: 48vw; max-width: 620px; max-height: 620px; top: 12vw; left: 24vw; background: var(--magenta); animation: drift3 19s ease-in-out infinite; }

.aurora.dice .cool { width: 50vw; height: 50vw; max-width: 620px; max-height: 620px; top: -10vw; left: -10vw; background: #0d9488; animation: drift1 24s ease-in-out infinite; }
.aurora.dice .warm { width: 46vw; height: 46vw; max-width: 560px; max-height: 560px; bottom: -12vw; right: -8vw; background: var(--violet); animation: drift2 20s ease-in-out infinite; }
.aurora.dice .mid  { width: 40vw; height: 40vw; max-width: 500px; max-height: 500px; top: 20%; right: 10%; background: var(--magenta); animation: drift3 27s ease-in-out infinite; }

.aurora.lists .cool { width: 48vw; height: 48vw; max-width: 580px; max-height: 580px; top: -8vw; right: -10vw; background: #0ea5e9; animation: drift2 23s ease-in-out infinite; }
.aurora.lists .warm { width: 42vw; height: 42vw; max-width: 520px; max-height: 520px; bottom: -10vw; left: -8vw; background: #84cc16; animation: drift1 25s ease-in-out infinite; }
.aurora.lists .mid  { width: 36vw; height: 36vw; max-width: 460px; max-height: 460px; top: 30%; left: 20%; background: #14b8a6; animation: drift3 18s ease-in-out infinite; }

.aurora.social .cool { width: 48vw; height: 48vw; max-width: 580px; max-height: 580px; top: -10vw; left: -8vw; background: #38bdf8; animation: drift3 21s ease-in-out infinite; }
.aurora.social .warm { width: 44vw; height: 44vw; max-width: 540px; max-height: 540px; bottom: -12vw; right: -10vw; background: #a855f7; animation: drift1 24s ease-in-out infinite; }
.aurora.social .mid  { width: 36vw; height: 36vw; max-width: 460px; max-height: 460px; top: 24%; right: 22%; background: #f472b6; animation: drift2 19s ease-in-out infinite; }

@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(4%, 6%) scale(1.08); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-5%, 4%) scale(1.05); } }
@keyframes drift3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(3%, -5%) scale(1.1); } }

@media (prefers-reduced-motion: reduce) {
  .aurora .blob, .hero-mascot { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- nav ---------- */
header.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(9, 9, 11, 0.72);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 0.85rem 1.5rem; max-width: var(--max); margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 0.55rem; font-size: 1.15rem; }
.brand svg { width: 30px; height: 30px; }
.wordmark, .footer-brand .wordmark {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 600;
}
nav.links { display: flex; gap: 1.75rem; }
nav.links a { font-size: 0.92rem; color: rgb(var(--ink-muted)); transition: color 0.15s ease; }
nav.links a:hover { color: rgb(var(--ink)); }
.nav-cta {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}
.menu-toggle { display: none; background: none; border: none; color: rgb(var(--ink)); padding: 0.4rem; cursor: pointer; }
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0 1.5rem 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.mobile-menu.open { max-height: 220px; }
.mobile-menu a, .mobile-menu span {
  padding: 0.75rem 0.25rem;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: rgb(var(--ink-muted));
}
@media (max-width: 860px) { .mobile-menu { display: flex; } }

/* ---------- hero ---------- */
.hero { position: relative; padding: 5.5rem 0 6rem; overflow: hidden; }
.hero::after, .cta-section::after, .notfound-section::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 240px;
  background: linear-gradient(to bottom, transparent, rgb(var(--surface)) 82%);
  pointer-events: none;
  z-index: 1;
}
.hero-inner { position: relative; z-index: 2; text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero-mascot {
  width: 108px; height: 108px; margin-bottom: 1.75rem;
  filter: drop-shadow(0 12px 32px rgba(247, 175, 17, 0.35));
  animation: popsie-float 3.8s ease-in-out infinite;
}
/* Same float+tilt physics as the mobile app's auth screen mascot
   (FloatingPopsieMark: translateY 0→-6, rotate -5deg→5deg, 1900ms each way). */
@keyframes popsie-float {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-6px) rotate(5deg); }
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.06;
  max-width: 16ch;
  background: linear-gradient(100deg, #ffffff 20%, #f5d0fe 45%, #fdba74 70%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-tagline-wrap { height: 1.9em; margin-top: 1.4rem; display: flex; align-items: center; justify-content: center; }
.hero-tagline {
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  color: rgb(var(--ink-muted));
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.hero-tagline.swap { opacity: 0; transform: translateY(6px); }

.store-row { display: flex; gap: 0.9rem; margin-top: 2.6rem; flex-wrap: wrap; justify-content: center; }
.store-btn {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.7rem 1.3rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  cursor: not-allowed;
  position: relative;
  opacity: 0.72;
}
.store-btn svg { width: 24px; height: 24px; opacity: 0.85; }
.store-btn .store-text { text-align: left; line-height: 1.15; }
.store-btn .store-text small { display: block; font-size: 0.65rem; color: rgb(var(--ink-muted)); text-transform: uppercase; letter-spacing: 0.06em; }
.store-btn .store-text strong { font-size: 0.98rem; font-weight: 650; }
.soon-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1.6rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(229,9,20,0.12);
  border: 1px solid rgba(229,9,20,0.35);
  color: #ff6b6f;
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}
.soon-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: #ff6b6f; animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ---------- section shell ---------- */
section { position: relative; padding: 6rem 0; }
.section-head { text-align: center; max-width: 46rem; margin: 0 auto 3.5rem; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(var(--accent));
  margin-bottom: 0.75rem;
}
.section-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.section-head p { margin-top: 0.85rem; font-size: 1.05rem; }

/* ---------- feature rows ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding: 3.5rem 0;
  position: relative;
}
.feature-row:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.06); }
.feature-row.reverse .feature-copy { order: 2; }
.feature-row.reverse .feature-visual { order: 1; }
.feature-copy .icon-badge {
  width: 46px; height: 46px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}
.feature-copy .icon-badge svg { width: 22px; height: 22px; }
.feature-copy h3 { font-size: 1.6rem; margin-bottom: 0.75rem; }
.feature-copy p { font-size: 1rem; line-height: 1.6; color: rgb(var(--ink-muted)); }
.feature-copy ul { margin: 1.1rem 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.feature-copy li { display: flex; gap: 0.6rem; font-size: 0.92rem; color: rgb(var(--ink-muted)); align-items: flex-start; }
.feature-copy li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 0.15rem; color: rgb(var(--accent)); }

.feature-visual { position: relative; display: flex; justify-content: center; }
.mock-card {
  width: 100%; max-width: 340px;
  border-radius: var(--radius-lg);
  background: rgb(var(--surface-alt));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.02), 0 30px 60px -20px rgba(0,0,0,0.6), 0 0 24px 0 rgba(255,255,255,0.06);
  overflow: hidden;
  transform: rotate(-1.2deg);
  transition: transform 0.4s ease;
}
.feature-row.reverse .mock-card { transform: rotate(1.2deg); }
.mock-card:hover, .feature-row.reverse .mock-card:hover { transform: rotate(0deg) scale(1.015); }

/* mock: discover */
.mock-discover .mock-hero { height: 150px; position: relative; background: linear-gradient(135deg, var(--violet), var(--magenta) 55%, var(--orange)); }
.mock-discover .mock-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(9,9,11,0.9), transparent 60%); }
.mock-discover .mock-hero-label { position: absolute; left: 1rem; bottom: 0.9rem; z-index: 1; }
.mock-discover .mock-hero-label .tag { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.75); }
.mock-discover .mock-hero-label .title { font-family: "Space Grotesk", sans-serif; font-weight: 650; font-size: 1.05rem; }
.mock-row { display: flex; gap: 0.55rem; padding: 1rem; overflow: hidden; }
.poster-chip { width: 58px; height: 86px; border-radius: 8px; flex-shrink: 0; background: linear-gradient(160deg, rgb(var(--surface-alt-2)), rgba(255,255,255,0.03)); border: 1px solid rgba(255,255,255,0.06); }
.poster-chip.g1 { background: linear-gradient(160deg, #7c3aed55, #db277755); }
.poster-chip.g2 { background: linear-gradient(160deg, #f9731655, #7c3aed33); }
.poster-chip.g3 { background: linear-gradient(160deg, #0d948855, #38bdf833); }
.mood-row { display: flex; gap: 0.5rem; padding: 0.85rem 1rem 1.1rem; flex-wrap: wrap; }
.mood-chip { font-size: 0.72rem; padding: 0.35rem 0.7rem; border-radius: 999px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: rgb(var(--ink-muted)); }
.mood-chip.active { background: rgba(229,9,20,0.16); border-color: rgba(229,9,20,0.4); color: #ff8a8d; }

/* mock: lists */
.mock-lists { padding: 1.1rem; display: flex; flex-direction: column; gap: 0.7rem; }
.list-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.7rem; border-radius: var(--radius-sm); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); }
.list-swatch { width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; }
.list-swatch.s1 { background: linear-gradient(135deg, #0ea5e9, #14b8a6); }
.list-swatch.s2 { background: linear-gradient(135deg, #f472b6, #fbbf24); }
.list-swatch.s3 { background: linear-gradient(135deg, #7c3aed, #db2777); }
.list-meta strong { display: block; font-size: 0.88rem; }
.list-meta span { font-size: 0.72rem; color: rgb(var(--ink-muted)); }
.list-check { margin-left: auto; width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center; }
.list-check.done { background: rgb(var(--accent)); border-color: rgb(var(--accent)); }
.list-check svg { width: 12px; height: 12px; }

/* mock: dicepick */
.mock-dice { padding: 2.2rem 1.4rem 1.8rem; display: flex; flex-direction: column; align-items: center; text-align: center; background: radial-gradient(circle at 30% 20%, rgba(13,148,136,0.35), transparent 55%), radial-gradient(circle at 75% 75%, rgba(124,58,237,0.3), transparent 55%), radial-gradient(circle at 60% 10%, rgba(219,39,119,0.25), transparent 50%); }
.dice-cube { width: 74px; height: 74px; border-radius: 18px; background: linear-gradient(150deg, #14b8a6, #7c3aed 60%, #db2777); display: flex; align-items: center; justify-content: center; box-shadow: 0 14px 30px -8px rgba(124,58,237,0.55); margin-bottom: 1.1rem; animation: dice-wobble 3.2s ease-in-out infinite; }
.dice-cube svg { width: 34px; height: 34px; color: white; }
@keyframes dice-wobble { 0%, 100% { transform: rotate(-6deg); } 50% { transform: rotate(6deg); } }
.mock-dice strong { font-family: "Space Grotesk", sans-serif; font-size: 1.05rem; }
.mock-dice span { font-size: 0.8rem; color: rgb(var(--ink-muted)); margin-top: 0.3rem; }
.avatar-stack { display: flex; margin-top: 1.2rem; }
.avatar-stack .av { width: 30px; height: 30px; border-radius: 50%; border: 2px solid rgb(var(--surface-alt)); margin-left: -8px; }
.avatar-stack .av:first-child { margin-left: 0; }
.av.a1 { background: linear-gradient(135deg,#38bdf8,#a855f7); }
.av.a2 { background: linear-gradient(135deg,#f472b6,#fbbf24); }
.av.a3 { background: linear-gradient(135deg,#0d9488,#84cc16); }

/* mock: social */
.mock-social { padding: 1.1rem; display: flex; flex-direction: column; gap: 0.65rem; }
.chat-bubble { max-width: 78%; padding: 0.6rem 0.85rem; border-radius: 14px; font-size: 0.82rem; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); }
.chat-bubble.me { align-self: flex-end; background: linear-gradient(135deg, rgba(229,9,20,0.35), rgba(219,39,119,0.35)); border-color: rgba(229,9,20,0.3); }
.rec-card { display: flex; gap: 0.7rem; padding: 0.7rem; border-radius: var(--radius-sm); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); align-items: center; }
.rec-poster { width: 34px; height: 50px; border-radius: 6px; background: linear-gradient(160deg,#a855f7,#f472b6); flex-shrink: 0; }
.rec-text strong { display: block; font-size: 0.8rem; }
.rec-text span { font-size: 0.7rem; color: rgb(var(--ink-muted)); }

/* mock: search */
.mock-search { padding: 1.1rem; }
.search-bar { display: flex; align-items: center; gap: 0.55rem; padding: 0.65rem 0.9rem; border-radius: 999px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); margin-bottom: 1rem; }
.search-bar svg { width: 16px; height: 16px; color: rgb(var(--ink-muted)); }
.search-bar span { font-size: 0.85rem; color: rgb(var(--ink-muted)); }
.chip-row { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.search-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; }
.search-grid .poster-chip { width: 100%; height: 68px; }

/* mock: personalize */
.mock-personalize { padding: 1.4rem; }
.theme-toggle-row { display: flex; gap: 0.6rem; margin-bottom: 1.1rem; }
.theme-opt { flex: 1; padding: 0.7rem; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.1); text-align: center; font-size: 0.78rem; }
.theme-opt.on { border-color: rgba(229,9,20,0.5); background: rgba(229,9,20,0.1); }
.swatch-grid { display: grid; grid-template-columns: repeat(9, 1fr); gap: 0.4rem; }
.swatch { aspect-ratio: 1; border-radius: 50%; border: 2px solid transparent; }
.swatch.on { border-color: white; }

/* ---------- soon / cta section ---------- */
.cta-section { text-align: center; position: relative; overflow: hidden; padding: 6rem 0; }
.cta-section .wrap { position: relative; z-index: 2; }
.cta-card {
  max-width: 720px; margin: 0 auto;
  padding: 3.5rem 2rem;
  border-radius: var(--radius-lg);
  background: rgb(var(--surface-alt));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 24px 0 rgba(255,255,255,0.06);
}
.cta-card h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); margin-bottom: 0.8rem; }
.cta-card p { color: rgb(var(--ink-muted)); max-width: 34rem; margin: 0 auto; }

/* ---------- 404 ---------- */
.notfound-section { position: relative; padding: 6rem 0 7rem; overflow: hidden; min-height: 62vh; display: flex; align-items: center; }
.notfound-inner { position: relative; z-index: 2; text-align: center; display: flex; flex-direction: column; align-items: center; }
.notfound-code {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: clamp(5rem, 16vw, 9rem);
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(100deg, #ffffff 15%, #99f6e4 40%, #c4b5fd 65%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
}
.notfound-inner h1 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); margin-bottom: 0.75rem; }
.notfound-inner p { font-size: 1.05rem; color: rgb(var(--ink-muted)); max-width: 34rem; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 2.2rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  background: rgb(var(--accent));
  color: white;
  font-weight: 650;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 10px 30px -8px rgba(229,9,20,0.5);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -8px rgba(229,9,20,0.6); }

/* ---------- footer ---------- */
footer { border-top: 1px solid rgba(255,255,255,0.06); padding: 3.5rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-brand svg { width: 34px; height: 34px; margin-bottom: 0.9rem; }
.footer-brand p { font-size: 0.88rem; color: rgb(var(--ink-muted)); max-width: 22rem; line-height: 1.55; }
.footer-col h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgb(var(--ink-muted)); margin-bottom: 1rem; font-weight: 650; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a { font-size: 0.9rem; color: rgb(var(--ink-muted)); transition: color 0.15s ease; }
.footer-col a:hover { color: rgb(var(--ink)); }
.social-row { display: flex; gap: 0.6rem; margin-top: 0.3rem; }
.social-row a { position: relative; width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); opacity: 0.55; cursor: default; }
.social-row svg { position: absolute; top: 50%; left: 50%; width: 17px; height: 17px; transform: translate(-50%, -50%); }
.footer-bottom { margin-top: 3rem; padding-top: 1.75rem; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; font-size: 0.8rem; color: rgb(var(--ink-muted)); }

/* ---------- cookie bar ---------- */
.cookie-bar {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 100;
  max-width: 640px; margin: 0 auto;
  background: rgba(24,24,27,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.3rem;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  box-shadow: 0 20px 50px -12px rgba(0,0,0,0.6);
  transform: translateY(140%);
  transition: transform 0.5s cubic-bezier(.16,1,.3,1);
}
.cookie-bar.show { transform: translateY(0); }
.cookie-bar p { margin: 0; font-size: 0.83rem; color: rgb(var(--ink-muted)); flex: 1; min-width: 200px; }
.cookie-bar a { color: rgb(var(--ink)); text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { display: flex; gap: 0.6rem; }
.btn-cookie {
  font-size: 0.82rem; font-weight: 600; padding: 0.55rem 1.05rem; border-radius: 999px; border: none; cursor: pointer;
  background: rgb(var(--accent)); color: white;
}

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  nav.links, .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; }
  .feature-row .feature-copy, .feature-row.reverse .feature-copy { order: 1; }
  .feature-row .feature-visual, .feature-row.reverse .feature-visual { order: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  section { padding: 4rem 0; }
  .hero { padding: 4rem 0 4rem; }
}
