/* ─────────────────────────────────────────────────────────────
   Naggler landing — editorial warmth, hedgehog-forward
   Palette: naggler warm-quill base + blue primary + warm triad
   Fonts: Fraunces (display) + Geist Sans (body)
   ───────────────────────────────────────────────────────────── */

:root {
  /* Naggler palette (from BRAND.md) */
  --blue: #3b82f6;
  --blue-hover: #2f6fe0;
  --blue-deep: #1d4ed8;
  --blue-90: #dbeafe;
  --blue-70: #93c5fd;

  --coral: #f4845f;
  --coral-bg: #fde8e0;
  --pink: #f9afc5;
  --pink-bg: #fdeef4;
  --cream: #f5c28e;
  --cream-bg: #fdf5ea;
  --sage: #7ec9a4;
  --sage-bg: #dcf5eb;

  --slate: #1e293b;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --quill: #faf8f5;
  --quill-dark: #f2ede5;

  /* Typography */
  --font-display: "Fraunces", ui-serif, Georgia, serif;
  --font-body: "Geist", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "SF Mono", monospace;

  /* Scale */
  --step--1: clamp(0.875rem, 0.85rem + 0.1vw, 0.9375rem);
  --step-0: clamp(1rem, 0.95rem + 0.2vw, 1.0625rem);
  --step-1: clamp(1.125rem, 1.05rem + 0.3vw, 1.25rem);
  --step-2: clamp(1.375rem, 1.25rem + 0.5vw, 1.625rem);
  --step-3: clamp(1.75rem, 1.5rem + 1vw, 2.25rem);
  --step-4: clamp(2.25rem, 1.75rem + 2vw, 3.25rem);
  --step-5: clamp(3rem, 2rem + 4vw, 5rem);
  --step-6: clamp(3.75rem, 2.5rem + 5vw, 6.5rem);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-sm: 0 1px 2px rgba(30, 41, 59, 0.06);
  --shadow-md: 0 8px 24px -8px rgba(30, 41, 59, 0.12), 0 2px 4px rgba(30, 41, 59, 0.04);
  --shadow-lg: 0 24px 48px -16px rgba(30, 41, 59, 0.16), 0 8px 16px -8px rgba(30, 41, 59, 0.08);
  --shadow-warm: 0 24px 48px -16px rgba(244, 132, 95, 0.25);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.55;
  color: var(--slate);
  background: var(--quill);
  /* Subtle paper grain — makes the cream feel warm, not flat */
  background-image:
    radial-gradient(circle at 15% 20%, rgba(244, 132, 95, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(59, 130, 246, 0.04) 0%, transparent 45%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.12 0 0 0 0 0.13 0 0 0 0 0.15 0 0 0 0.06 0'/></filter><rect width='120' height='120' filter='url(%23n)'/></svg>");
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Fraunces variable — warm optical serif */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--slate);
}

h1 { font-size: var(--step-6); }
h2 { font-size: var(--step-5); }
h3 { font-size: var(--step-3); }

p { margin: 0 0 1rem; max-width: 60ch; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-deep); }

.container {
  width: min(72rem, 100% - 2.5rem);
  margin-inline: auto;
}

.tight {
  width: min(56rem, 100% - 2.5rem);
  margin-inline: auto;
}

/* ─── Navigation ──────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px) saturate(180%);
  background: color-mix(in srgb, var(--quill) 80%, transparent);
  border-bottom: 1px solid var(--slate-200);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.015em;
  color: var(--slate);
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--blue);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 2px 0 var(--blue-deep), 0 4px 8px -2px rgba(59, 130, 246, 0.4);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  font-size: var(--step--1);
  color: var(--slate-500);
}
.nav-links a { color: var(--slate-500); }
.nav-links a:hover { color: var(--slate); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--step--1);
  cursor: pointer;
  border: none;
  transition: transform 120ms cubic-bezier(.2, .9, .3, 1.2), box-shadow 120ms, background 120ms;
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--slate);
  color: var(--quill);
  box-shadow: 0 2px 0 #0f172a, 0 8px 20px -8px rgba(30, 41, 59, 0.4);
}
.btn-primary:hover { background: #0f172a; color: var(--quill); transform: translateY(-1px); }

.btn-blue {
  background: var(--blue);
  color: white;
  box-shadow: 0 2px 0 var(--blue-deep), 0 12px 24px -8px rgba(59, 130, 246, 0.45);
}
.btn-blue:hover { background: var(--blue-hover); color: white; transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--slate);
  border: 1px solid var(--slate-200);
}
.btn-ghost:hover { background: var(--slate-100); border-color: var(--slate-300); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.65rem;
  background: var(--blue-90);
  color: var(--blue-deep);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

/* ─── Hero ─────────────────────────────────────────────────────
   Intentional composition: natural content height (no 100vh tricks
   that stretch on short viewports), Naggy capped to a confident
   mid-size, tight typography, generous-but-bounded negative space.
   ────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 2.5rem 0 3.5rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 3rem;
  align-items: center;
  width: 100%;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding: 0.3rem 0.7rem;
  background: var(--cream-bg);
  border: 1px solid #f3dec1;
  border-radius: 999px;
  font-size: 0.78rem;
  color: #9c5a1d;
  letter-spacing: 0.01em;
}
.hero-kicker::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--coral);
  border-radius: 50%;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

.hero-title {
  margin: 0 0 1rem;
  font-size: clamp(2.25rem, 1.5rem + 2.5vw, 3.5rem);  /* bounded — never runaway */
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 0;
  max-width: 14ch;
  line-height: 1;
  letter-spacing: -0.025em;
}

.hero-title em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--coral);
}

.hero-sub {
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  line-height: 1.5;
  color: var(--slate-500);
  max-width: 42ch;
  margin-bottom: 1.5rem;
}

.hero-cta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  gap: 1.25rem;
  margin-top: 1.5rem;
  font-size: var(--step--1);
  color: var(--slate-500);
  flex-wrap: wrap;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero-meta svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Hero art: Naggy sits confidently in a bounded square — not aspect-ratio
   stretched. Size-caps on the image itself, backdrop sized relative to it,
   cards positioned to FRAME (not cover) his face. */
.hero-art {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
}

.hero-art-backdrop {
  position: absolute;
  inset: 5% 0% 5% 0%;
  background:
    radial-gradient(ellipse at 50% 45%, var(--blue-90) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 85%, var(--cream-bg) 0%, transparent 55%);
  border-radius: 50% 50% 42% 42% / 45% 45% 55% 55%;
  filter: blur(10px);
  opacity: 0.85;
}

.hero-art-card {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 0.55rem 0.8rem;
  box-shadow: 0 8px 20px -8px rgba(30, 41, 59, 0.18), 0 2px 4px rgba(30, 41, 59, 0.05);
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
  white-space: nowrap;
}
/* Cards hover near Naggy's shoulders — enough to frame him, none over his face. */
.hero-art-card.card-1 {
  top: 12%;
  left: -8%;
  animation-delay: 0s;
}
.hero-art-card.card-2 {
  bottom: 14%;
  right: -6%;
  animation-delay: 2s;
  background: var(--sage-bg);
  color: #166534;
}
.hero-art-card .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
.hero-art-card.card-2 .dot { background: var(--sage); }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.naggy-hero {
  position: relative;
  z-index: 2;
  width: 88%;
  max-width: 340px;
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(30, 41, 59, 0.2));
  animation: enter-bounce 1.4s cubic-bezier(.2, .9, .3, 1.4) both;
}
@keyframes enter-bounce {
  0% { transform: translateY(60px) scale(0.9); opacity: 0; }
  60% { transform: translateY(-12px) scale(1.02); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

/* ─── Sections ─────────────────────────────────────────────── */
section {
  position: relative;
  padding: 5rem 0;
}

.section-kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: 1rem;
}

.section-title {
  font-size: var(--step-5);
  margin: 0 0 1rem;
  max-width: 18ch;
}

.section-lede {
  font-size: var(--step-1);
  color: var(--slate-500);
  max-width: 55ch;
  margin-bottom: 3rem;
}

/* ─── Team ─────────────────────────────────────────────────── */
.team {
  background: linear-gradient(180deg, transparent 0%, var(--quill-dark) 50%, transparent 100%);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.team-grid-two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 60rem;
  margin-inline: auto;
}

.teammate-cta {
  background: linear-gradient(180deg, #fdf5ea 0%, white 35%);
}

.teammate-cta-block {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px dashed var(--slate-200);
}
.btn-block {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 0.8rem 1rem;
  font-size: var(--step-0);
}
.teammate-cta-note {
  display: block;
  margin-top: 0.6rem;
  font-size: var(--step--1);
  color: var(--slate-500);
  text-align: center;
  font-style: italic;
}

.teammate {
  position: relative;
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: transform 240ms cubic-bezier(.2, .9, .3, 1.2), box-shadow 240ms;
  overflow: hidden;
}
.teammate:hover {
  transform: translateY(-6px) rotate(-0.3deg);
  box-shadow: var(--shadow-lg);
}
.teammate:nth-child(2):hover {
  transform: translateY(-6px) rotate(0.3deg);
}

.teammate-portrait {
  height: 180px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
}
.teammate-portrait::before {
  content: "";
  position: absolute;
  inset: 20% 15% 5%;
  background: var(--blue-90);
  border-radius: 50% 50% 30% 30% / 40% 40% 60% 60%;
  z-index: 0;
}
.teammate:nth-child(2) .teammate-portrait::before {
  background: var(--cream-bg);
}
.teammate:nth-child(3) .teammate-portrait::before {
  background: var(--pink-bg);
}

.teammate-portrait img,
.teammate-portrait .you-mark,
.teammate-portrait .mystery-mark {
  position: relative;
  z-index: 1;
  max-height: 170px;
  width: auto;
}

.you-mark {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: #7c5321;
  box-shadow: inset 0 -4px 0 rgba(124, 83, 33, 0.15);
  position: relative;
}
.you-mark::after {
  content: "↖ yep, you";
  position: absolute;
  top: -10px;
  right: -80px;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-style: italic;
  color: #9c5a1d;
  white-space: nowrap;
  transform: rotate(-8deg);
}

.mystery-mark {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 600;
  color: #9d174d;
  box-shadow: inset 0 -4px 0 rgba(157, 23, 77, 0.15);
  animation: wobble 4s ease-in-out infinite;
}
@keyframes wobble {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(4deg); }
}

.teammate-role {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.5rem;
}
.teammate:nth-child(2) .teammate-role { color: #9c5a1d; }
.teammate:nth-child(3) .teammate-role { color: #9d174d; }

.teammate-name {
  font-family: var(--font-display);
  font-size: var(--step-3);
  font-weight: 500;
  margin: 0 0 0.75rem;
  letter-spacing: -0.015em;
}

.teammate-bio {
  color: var(--slate-500);
  font-size: var(--step-0);
  line-height: 1.55;
  margin: 0;
}

.teammate-quote {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px dashed var(--slate-200);
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--step-0);
  color: var(--slate);
  line-height: 1.45;
}

/* ─── How It Works ─────────────────────────────────────────── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step {
  position: relative;
  padding: 1.75rem 0 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-number {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--slate-500);
  background: var(--slate-100);
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  flex-shrink: 0;
  margin-top: 0.5rem;
  line-height: 1;
}

.step-content {
  flex: 1;
  min-width: 0;
}

.step-icon-wrap {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: inset 0 -4px 0 rgba(30, 41, 59, 0.06);
}
.step-icon-blue { background: var(--blue-90); }
.step-icon-coral { background: var(--coral-bg); }
.step-icon-sage { background: var(--sage-bg); }

.step-icon-wrap img {
  width: 72px;
  height: auto;
  filter: drop-shadow(0 6px 10px rgba(30, 41, 59, 0.18));
}

.step h3 {
  font-size: var(--step-2);
  margin: 0 0 0.5rem;
  font-variation-settings: "opsz" 36, "SOFT" 50;
}

.step p {
  color: var(--slate-500);
  font-size: var(--step-0);
  margin: 0;
  max-width: 36ch;
}

/* ─── Talk to Naggy (AI-native) ────────────────────────────── */
.talk {
  background: var(--quill);
  position: relative;
}
.talk::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 40%, var(--blue-90) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 70%, var(--pink-bg) 0%, transparent 40%);
  pointer-events: none;
  opacity: 0.6;
}

.talk-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.talk-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.talk-list li {
  padding-left: 1.25rem;
  border-left: 3px solid var(--blue);
}
.talk-list li:nth-child(2) { border-left-color: var(--coral); }
.talk-list li:nth-child(3) { border-left-color: var(--sage); }
.talk-list li strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: var(--step-2);
  line-height: 1.3;
  color: var(--slate);
  margin-bottom: 0.3rem;
  font-variation-settings: "opsz" 36, "SOFT" 100, "WONK" 1;
}
.talk-list li span {
  color: var(--slate-500);
  font-size: var(--step-0);
  line-height: 1.5;
}

.talk-chat {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 48px -12px rgba(30, 41, 59, 0.15), 0 4px 12px rgba(30, 41, 59, 0.06);
  overflow: hidden;
  border: 1px solid var(--slate-200);
}
.talk-chat-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: var(--quill-dark);
  border-bottom: 1px solid var(--slate-200);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--slate-500);
}
.talk-chat-dots {
  display: inline-flex;
  gap: 0.3rem;
}
.talk-chat-dots i {
  width: 10px; height: 10px; border-radius: 50%;
  background: #e2e8f0;
}
.talk-chat-dots i:nth-child(1) { background: #fbbf24; }
.talk-chat-dots i:nth-child(2) { background: #facc15; }
.talk-chat-dots i:nth-child(3) { background: #f59e0b; }

.talk-chat-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background:
    linear-gradient(180deg, #fdfcfa 0%, white 100%);
}
.chat-msg {
  max-width: 85%;
  padding: 0.8rem 1.05rem;
  border-radius: 18px;
  font-size: var(--step-0);
  line-height: 1.45;
  animation: gentle-enter 600ms cubic-bezier(.2, .9, .3, 1) both;
}
.chat-msg.user {
  align-self: flex-end;
  background: var(--blue);
  color: white;
  border-bottom-right-radius: 6px;
}
.chat-msg.naggy {
  align-self: flex-start;
  background: var(--quill-dark);
  color: var(--slate);
  border-bottom-left-radius: 6px;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.chat-msg.naggy img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  margin-top: -2px;
}
.chat-msg.naggy > div { flex: 1; }
.chat-msg.naggy em {
  color: var(--coral);
  font-style: italic;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 14, "SOFT" 100, "WONK" 1;
}
.chat-msg:nth-child(1) { animation-delay: 100ms; }
.chat-msg:nth-child(2) { animation-delay: 600ms; }
.chat-msg:nth-child(3) { animation-delay: 1100ms; }
.chat-msg:nth-child(4) { animation-delay: 1600ms; }

.talk-providers {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.talk-provider {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}
.talk-provider strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--step-1);
  margin-bottom: 0.35rem;
  font-variation-settings: "opsz" 36, "SOFT" 50;
}
.talk-provider span {
  color: var(--slate-500);
  font-size: var(--step--1);
  line-height: 1.5;
}

/* ─── Download ─────────────────────────────────────────────── */
.download {
  background: var(--slate);
  color: var(--quill);
  border-radius: var(--radius-xl);
  padding: 5rem 3rem;
  margin: 2rem auto 6rem;
  width: min(68rem, 100% - 2.5rem);
  position: relative;
  overflow: hidden;
}
.download::before {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--blue) 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}
.download::after {
  content: "";
  position: absolute;
  bottom: -40%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--coral) 0%, transparent 70%);
  opacity: 0.2;
  pointer-events: none;
}

.download-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.download h2 {
  color: var(--quill);
  margin: 0 0 1rem;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.download h2 em {
  font-style: italic;
  color: var(--cream);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.download p {
  color: color-mix(in srgb, var(--quill) 70%, transparent);
  margin: 0 auto 2.5rem;
  font-size: var(--step-1);
  max-width: 50ch;
}

.download-grid {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: white;
  color: var(--slate);
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: var(--step-0);
  text-decoration: none;
  transition: transform 160ms cubic-bezier(.2, .9, .3, 1.4), box-shadow 160ms;
  box-shadow: 0 2px 0 var(--slate-200), 0 12px 24px -8px rgba(0, 0, 0, 0.3);
}
.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 0 var(--slate-200), 0 16px 32px -8px rgba(0, 0, 0, 0.35);
  color: var(--slate);
}
.download-btn .platform {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-500);
  display: block;
  margin-bottom: 2px;
}
.download-btn svg { width: 24px; height: 24px; flex-shrink: 0; }

.download-note {
  color: color-mix(in srgb, var(--quill) 60%, transparent);
  font-size: var(--step--1);
  margin: 0;
  font-style: italic;
}

/* ─── FAQ / Final note ─────────────────────────────────────── */
.closing {
  text-align: center;
  padding: 4rem 0 6rem;
}

.closing blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--step-3);
  line-height: 1.4;
  margin: 0 auto 1.5rem;
  max-width: 32ch;
  color: var(--slate);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.closing blockquote::before { content: "\201C"; color: var(--coral); margin-right: 0.1em; }
.closing blockquote::after { content: "\201D"; color: var(--coral); margin-left: 0.1em; }
.closing cite {
  font-style: normal;
  font-family: var(--font-body);
  color: var(--slate-500);
  font-size: var(--step--1);
}
.closing cite::before { content: "— "; }

/* ─── Footer ───────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--slate-200);
  padding: 2.5rem 0;
  font-size: var(--step--1);
  color: var(--slate-500);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
.footer-links a { color: var(--slate-500); }
.footer-links a:hover { color: var(--slate); }

.footer-signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--step-0);
  color: var(--slate-500);
}
.footer-signature em { color: var(--coral); font-style: normal; }

/* Subtle staggered entrance — CSS-only, fires on load, no JS/observer
   dependency so it works under prerender, screenshot, and no-JS. */
@keyframes gentle-enter {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.teammate,
.step {
  animation: gentle-enter 800ms cubic-bezier(.2, .9, .3, 1) both;
}
.team-grid .teammate:nth-child(1) { animation-delay: 60ms; }
.team-grid .teammate:nth-child(2) { animation-delay: 160ms; }
.team-grid .teammate:nth-child(3) { animation-delay: 260ms; }
.how-grid .step:nth-child(1) { animation-delay: 40ms; }
.how-grid .step:nth-child(2) { animation-delay: 140ms; }
.how-grid .step:nth-child(3) { animation-delay: 240ms; }

/* ─── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 1rem; }
  .hero-art { aspect-ratio: 1 / 0.9; max-width: 440px; margin: 0 auto; }
  .hero { min-height: auto; padding: 2rem 0 2.5rem; }
  .team-grid, .team-grid-two { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; gap: 2rem; }
  .talk-grid { grid-template-columns: 1fr; gap: 2rem; }
  .talk-providers { grid-template-columns: 1fr; }
  .download { padding: 3rem 1.5rem; margin: 2rem auto 3rem; }
  section { padding: 3rem 0; }
  .you-mark::after { right: -60px; font-size: 0.75rem; }
  .nav-links a:not(.btn) { display: none; }
}

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