/* ============================================================
   Episodo — Landing Page Styles
   System: Bright, chunky, network-promo editorial.
   ============================================================ */

:root {
  /* Palette */
  --ink: #0B1B4A;
  --ink-soft: #3D4E87;
  --paper: #FFFFFF;
  --paper-warm: #FFF9EC;
  --cobalt: #1E40FF;
  --cobalt-deep: #1633C9;
  --sunshine: #FFD60A;
  --pink: #FF5E8A;
  --mint: #6BE4B5;
  --orange: #FF7A2B;
  --grape: #A855F7;
  --line: #E9ECF5;

  /* Radii */
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-pill: 999px;

  /* Shadows — solid offset (no blur) for the chunky sticker feel */
  --shadow-ink: 0 6px 0 0 var(--ink);
  --shadow-ink-lg: 0 10px 0 0 var(--ink);
  --shadow-cobalt: 0 6px 0 0 var(--cobalt);
  --shadow-soft: 0 20px 40px -20px rgba(11, 27, 74, 0.25);

  /* Type */
  --display: 'Figtree', system-ui, sans-serif;
  --body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container { width: min(1280px, 100% - 48px); margin-inline: auto; }
.container-wide { width: min(1440px, 100% - 32px); margin-inline: auto; }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
  padding: 16px 24px;
  border-radius: var(--r-pill);
  border: 2px solid var(--ink);
  transition: transform 120ms ease, box-shadow 120ms ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--cobalt);
  color: #fff;
  box-shadow: var(--shadow-ink);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 0 0 var(--ink); }
.btn-primary:active { transform: translateY(4px); box-shadow: 0 2px 0 0 var(--ink); }

.btn-ghost { background: #fff; color: var(--ink); box-shadow: 0 4px 0 0 var(--ink); }
.btn-ghost:hover { transform: translateY(-2px); box-shadow: 0 6px 0 0 var(--ink); }

.btn-yellow { background: var(--sunshine); color: var(--ink); box-shadow: var(--shadow-ink); }
.btn-yellow:hover { transform: translateY(-2px); box-shadow: 0 8px 0 0 var(--ink); }

.btn-lg { padding: 20px 32px; font-size: 20px; }

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 128px; width: auto; }
.nav-links {
  display: flex;
  gap: 32px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-soft);
}
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.nav-login { font-weight: 700; font-size: 15px; color: var(--ink); }
.nav-login:hover { opacity: 0.7; }

@media (max-width: 800px) {
  .nav-links { display: none; }
  .nav-login { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  padding: 48px 0 80px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero { padding: 32px 0 60px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--sunshine);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: var(--r-pill);
  font-family: var(--display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 3px 0 0 var(--ink);
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--pink);
  animation: blink 1.2s infinite;
}
@keyframes blink { 0%, 60%, 100% { opacity: 1 } 70%, 90% { opacity: 0.15 } }

.hero h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(56px, 8vw, 116px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin: 20px 0 24px;
  color: var(--ink);
}
.hero h1 .underline-pink {
  background-image: linear-gradient(var(--pink), var(--pink));
  background-repeat: no-repeat;
  background-position: 0 92%;
  background-size: 100% 18%;
  padding: 0 2px;
}
.hero h1 .sunshine-chip {
  display: inline-block;
  background: var(--sunshine);
  color: var(--ink);
  padding: 0 14px;
  border-radius: 14px;
  transform: rotate(-2deg);
  border: 3px solid var(--ink);
  box-shadow: 0 6px 0 0 var(--ink);
}
.hero p.subhead {
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 0 32px;
}
@media (max-width: 960px) { .hero p.subhead { margin-inline: auto; } }

.hero-ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
@media (max-width: 960px) { .hero-ctas { justify-content: center; } }

.hero-meta {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  font-size: 14px;
  color: var(--ink-soft);
  flex-wrap: wrap;
}
@media (max-width: 960px) { .hero-meta { justify-content: center; } }
.hero-meta .stat { display: flex; align-items: center; gap: 8px; }
.hero-meta .stat strong { color: var(--ink); font-weight: 700; }
.hero-meta .check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 999px;
  background: var(--mint); color: var(--ink); font-weight: 900; font-size: 11px;
  border: 1.5px solid var(--ink);
}

/* Hero visual side */
.hero-visual {
  position: relative;
  height: 640px;
  display: grid;
  place-items: center;
}
@media (max-width: 960px) { .hero-visual { height: 560px; } }

.hero-bg-blob {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  background: var(--cobalt);
  z-index: 0;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.hero-bg-blob.blob-yellow {
  background: var(--sunshine);
  width: 180px; height: 180px;
  top: 10%; left: 8%;
  transform: none;
  border: 3px solid var(--ink);
}
.hero-bg-blob.blob-pink {
  background: var(--pink);
  width: 120px; height: 120px;
  top: auto; left: auto;
  bottom: 8%; right: 4%;
  transform: rotate(12deg);
  border-radius: 28px;
  border: 3px solid var(--ink);
}
.hero-bg-blob.blob-mint {
  background: var(--mint);
  width: 90px; height: 90px;
  top: 12%; right: 6%;
  left: auto;
  bottom: auto;
  transform: rotate(-8deg);
  border-radius: 22px;
  border: 3px solid var(--ink);
}

/* Floating stickers */
.sticker {
  position: absolute;
  font-family: var(--display);
  font-weight: 900;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: var(--r-pill);
  border: 2.5px solid var(--ink);
  box-shadow: 0 4px 0 0 var(--ink);
  z-index: 5;
  white-space: nowrap;
}
.sticker-live {
  top: 14%;
  right: 6%;
  background: var(--pink);
  color: #fff;
  transform: rotate(8deg);
}
.sticker-new {
  bottom: 18%;
  left: 2%;
  background: var(--sunshine);
  color: var(--ink);
  transform: rotate(-6deg);
}
.sticker-caption-count {
  bottom: 6%;
  right: -2%;
  background: #fff;
  color: var(--ink);
  transform: rotate(4deg);
}

/* ============================================================
   PHONE (hero)
   ============================================================ */

.phone {
  position: relative;
  width: 320px;
  height: 600px;
  background: #0B0B0F;
  border-radius: 48px;
  padding: 10px;
  box-shadow:
    0 0 0 3px var(--ink),
    0 24px 0 0 var(--ink),
    0 40px 80px -30px rgba(11, 27, 74, 0.55);
  z-index: 2;
  transform: rotate(-4deg);
}
.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 38px;
  overflow: hidden;
  background: linear-gradient(160deg, #FFB800 0%, #FF7A2B 60%, #FF5E8A 100%);
}
.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 28px;
  background: #0B0B0F;
  border-radius: 999px;
  z-index: 3;
}

.phone-progress {
  position: absolute;
  top: 54px;
  left: 16px;
  right: 16px;
  display: flex;
  gap: 4px;
  z-index: 4;
}
.phone-progress-segment {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.35);
  border-radius: 2px;
  overflow: hidden;
}
.phone-progress-segment.active::after {
  content: '';
  display: block;
  height: 100%;
  background: #fff;
  animation: progress-fill 8s linear infinite;
}
.phone-progress-segment.done { background: #fff; }
@keyframes progress-fill { from { width: 0% } to { width: 100% } }

.phone-top-bar {
  position: absolute;
  top: 66px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 4;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
}
.phone-top-bar .handle { display: flex; align-items: center; gap: 8px; }
.phone-top-bar .avatar {
  width: 28px; height: 28px; border-radius: 999px;
  background: var(--sunshine);
  border: 2px solid #fff;
  display: grid; place-items: center;
  font-size: 16px;
}
.phone-top-bar .follow {
  padding: 6px 12px;
  background: transparent;
  border: 1.5px solid #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

/* Character scene — stylized SVG fill the screen */
.phone-scene {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: end center;
  padding-bottom: 140px;
}

.phone-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 110px;
  z-index: 5;
  text-align: center;
  font-family: var(--display);
  font-weight: 900;
  font-size: 26px;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 2px 0 rgba(0,0,0,0.4);
  letter-spacing: -0.02em;
}
.phone-caption .word {
  display: inline-block;
  background: var(--sunshine);
  color: var(--ink);
  padding: 2px 10px;
  border-radius: 10px;
  border: 2px solid var(--ink);
  margin: 2px;
  transform: rotate(-2deg);
}
.phone-caption .word.blue {
  background: var(--cobalt);
  color: #fff;
  transform: rotate(2deg);
}

.phone-bottom-bar {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 4;
}
.phone-comment-box {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(6px);
}
.phone-icons { display: flex; gap: 10px; }
.phone-icon {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  display: grid; place-items: center;
  color: #fff;
  backdrop-filter: blur(6px);
}

.phone-side-actions {
  position: absolute;
  right: 14px;
  bottom: 130px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 5;
  align-items: center;
}
.phone-side-actions .action {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  color: #fff;
  font-weight: 700;
  font-size: 11px;
}
.phone-side-actions .action .bubble {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,0.22);
  border: 1.5px solid rgba(255,255,255,0.5);
  display: grid; place-items: center;
  backdrop-filter: blur(6px);
}
.phone-side-actions .action.liked .bubble { background: var(--pink); border-color: #fff; }

/* ============================================================
   SECTIONS — generic
   ============================================================ */

section {
  padding: 120px 0;
  position: relative;
}
@media (max-width: 800px) { section { padding: 72px 0; } }

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cobalt);
  margin-bottom: 16px;
}
.section-kicker::before {
  content: '';
  width: 28px; height: 2px; background: var(--cobalt);
  border-radius: 2px;
}
.section-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0 0 20px;
  color: var(--ink);
  max-width: 20ch;
  text-wrap: balance;
}
.section-lede {
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 0 48px;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */

.how {
  background: var(--paper-warm);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.how-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 64px; flex-wrap: wrap; }
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .how-grid { grid-template-columns: 1fr; } }

.how-card {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: 0 10px 0 0 var(--ink);
  position: relative;
  transition: transform 200ms ease;
}
.how-card:hover { transform: translateY(-6px); box-shadow: 0 16px 0 0 var(--ink); }

.how-card .step-num {
  position: absolute;
  top: -24px; left: 24px;
  width: 56px; height: 56px;
  border-radius: 999px;
  background: var(--sunshine);
  border: 3px solid var(--ink);
  display: grid; place-items: center;
  font-family: var(--display);
  font-weight: 900;
  font-size: 28px;
  color: var(--ink);
  box-shadow: 0 4px 0 0 var(--ink);
}
.how-card:nth-child(2) .step-num { background: var(--pink); color: #fff; }
.how-card:nth-child(3) .step-num { background: var(--mint); }

.how-card h3 {
  font-family: var(--display);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin: 24px 0 10px;
}
.how-card p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

.how-illustration {
  height: 180px;
  border-radius: var(--r-md);
  border: 2px solid var(--ink);
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 8px;
}
.how-illustration.one { background: radial-gradient(ellipse at 50% 30%, #2E1A0A, #0F0502); }
.how-illustration.two { background: radial-gradient(ellipse at 50% 30%, #3A0A1E, #0F0205); }
.how-illustration.three { background: radial-gradient(ellipse at 50% 30%, #0A2A1E, #02100A); }

/* ============================================================
   CHARACTER LIBRARY
   ============================================================ */

.cast {
  background: var(--cobalt);
  color: #fff;
  overflow: hidden;
  border-bottom: 3px solid var(--ink);
}
.cast .section-kicker { color: var(--sunshine); }
.cast .section-kicker::before { background: var(--sunshine); }
.cast .section-title { color: #fff; }
.cast .section-lede { color: rgba(255,255,255,0.75); }

.cast-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) { .cast-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px) { .cast-grid { grid-template-columns: repeat(3, 1fr); } }

.cast-tile {
  aspect-ratio: 1;
  border-radius: var(--r-md);
  border: 3px solid var(--ink);
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
  transition: transform 200ms ease;
  cursor: pointer;
  box-shadow: inset 0 -40px 60px -20px rgba(0,0,0,0.4), inset 0 20px 40px rgba(255,255,255,0.08);
}
.cast-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 35% 25%, rgba(255,255,255,0.15), transparent 60%);
  pointer-events: none;
}
.cast-tile:hover { transform: translateY(-4px) rotate(-2deg); }
.cast-tile .name {
  position: absolute;
  bottom: 8px; left: 8px; right: 8px;
  background: var(--ink);
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  text-align: center;
  letter-spacing: 0.02em;
}
.cast-cta-row {
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cast-cta-row .stat-card {
  background: var(--sunshine);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: var(--r-md);
  padding: 16px 24px;
  font-family: var(--display);
  font-weight: 800;
  box-shadow: 0 6px 0 0 var(--ink);
}
.cast-cta-row .stat-card strong { font-size: 32px; display: block; line-height: 1; }

/* ============================================================
   TV SHOW INSPIRATION
   ============================================================ */

.remix {
  background: #fff;
}
.remix-panel {
  background: var(--paper-warm);
  border: 3px solid var(--ink);
  border-radius: var(--r-xl);
  padding: 48px;
  box-shadow: 0 14px 0 0 var(--ink);
  position: relative;
}
@media (max-width: 700px) { .remix-panel { padding: 32px 24px; } }

.remix-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 28px;
  align-items: stretch;
  margin-top: 32px;
}
@media (max-width: 900px) {
  .remix-flow { grid-template-columns: 1fr; }
  .remix-flow .arrow { justify-self: center; transform: rotate(90deg); }
}

.remix-card {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.remix-card.input-show { background: #fff; }
.remix-card.prompt { background: var(--sunshine); }
.remix-card.output { background: #0B0B0F; color: #fff; padding: 0; overflow: hidden; }

.remix-card .label {
  font-family: var(--display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cobalt);
}
.remix-card.prompt .label { color: var(--ink); }
.remix-card.output .label { color: var(--sunshine); padding: 16px 16px 0; }

.remix-card .title-line {
  font-family: var(--display);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.remix-card.output .title-line { padding: 0 16px; }

.remix-card .body-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.remix-card.prompt .body-text { color: var(--ink); }

.remix-card.prompt .body-text::before {
  content: '"';
  font-family: var(--display);
  font-size: 38px;
  line-height: 0;
  color: var(--ink);
  margin-right: 4px;
  vertical-align: -14px;
  font-weight: 900;
}

.remix-arrow {
  display: grid; place-items: center;
  width: 60px;
  font-family: var(--display);
  font-weight: 900;
}
.remix-arrow-icon {
  width: 48px; height: 48px;
  background: var(--cobalt);
  color: #fff;
  border: 3px solid var(--ink);
  border-radius: 999px;
  display: grid; place-items: center;
  box-shadow: 0 4px 0 0 var(--ink);
}

/* Output video frame */
.remix-video {
  aspect-ratio: 9/16;
  background: linear-gradient(165deg, #FFB800, #FF7A2B 50%, #FF5E8A);
  border-top: 2px solid #333;
  position: relative;
  overflow: hidden;
}
.remix-video .burst-caption {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  padding: 0 16px;
  text-align: center;
  font-family: var(--display);
  font-weight: 900;
  font-size: 24px;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 2px 0 rgba(0,0,0,0.4);
}
.remix-video .burst-caption .chip {
  display: inline-block;
  background: var(--sunshine);
  color: var(--ink);
  padding: 1px 8px;
  border-radius: 6px;
  border: 2px solid var(--ink);
  margin: 2px;
  transform: rotate(-2deg);
}
.remix-video .burst-caption .chip.blue { background: var(--cobalt); color: #fff; transform: rotate(2deg); }
.remix-video .play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 999px;
  display: grid; place-items: center;
  box-shadow: 0 4px 0 0 var(--ink);
  z-index: 4;
}

.remix-toggle {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 999px;
  margin-top: 8px;
}
.remix-toggle button {
  padding: 8px 18px;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 14px;
  color: var(--ink-soft);
  transition: all 150ms ease;
}
.remix-toggle button.active {
  background: var(--ink);
  color: #fff;
}

/* ============================================================
   SOCIAL PROOF
   ============================================================ */

.proof {
  background: var(--sunshine);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
}

.counter-row {
  text-align: center;
  margin-bottom: 80px;
}
.counter-huge {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(80px, 16vw, 220px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 0;
}
.counter-label {
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-top: 8px;
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .quotes-grid { grid-template-columns: 1fr; } }

.quote-card {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: 0 8px 0 0 var(--ink);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.quote-card:nth-child(2) { transform: rotate(-1deg); }
.quote-card:nth-child(3) { transform: rotate(0.8deg); }

.quote-card .big-quote {
  font-family: var(--display);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 0;
}
.quote-card .attr {
  display: flex; align-items: center; gap: 12px;
  padding-top: 12px;
  border-top: 2px dashed var(--line);
}
.quote-card .attr .avatar {
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  display: grid; place-items: center;
  font-size: 22px;
}
.quote-card .attr .meta .name { font-family: var(--display); font-weight: 800; font-size: 15px; color: var(--ink); }
.quote-card .attr .meta .handle { font-size: 13px; color: var(--ink-soft); }

/* Thumbnail series strip */
.series-strip {
  margin-top: 60px;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 0 24px;
  scrollbar-width: none;
}
.series-strip::-webkit-scrollbar { display: none; }
.series-thumb {
  flex-shrink: 0;
  width: 160px;
  aspect-ratio: 9/16;
  border-radius: var(--r-md);
  border: 3px solid var(--ink);
  background: linear-gradient(160deg, #FFB800, #FF7A2B);
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 0 0 var(--ink);
  transition: transform 200ms ease;
  cursor: pointer;
}
.series-thumb:hover { transform: translateY(-4px) rotate(-2deg); }
.series-thumb .series-title {
  position: absolute;
  bottom: 8px; left: 8px; right: 8px;
  background: var(--ink);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 12px;
  text-align: center;
}
.series-thumb .episode-count {
  position: absolute;
  top: 8px; right: 8px;
  background: var(--pink);
  color: #fff;
  padding: 4px 8px;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 11px;
  border: 1.5px solid var(--ink);
}

/* ============================================================
   FAQ
   ============================================================ */

.faq-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
@media (max-width: 900px) { .faq-inner { grid-template-columns: 1fr; gap: 40px; } }

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 3px solid var(--ink);
  border-radius: var(--r-md);
  background: #fff;
  overflow: hidden;
  transition: box-shadow 150ms ease;
}
.faq-item.open { box-shadow: 0 6px 0 0 var(--ink); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
}
.faq-q-icon {
  width: 32px; height: 32px;
  background: var(--sunshine);
  border: 2px solid var(--ink);
  border-radius: 999px;
  display: grid; place-items: center;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 900;
  transition: transform 200ms ease;
}
.faq-item.open .faq-q-icon { transform: rotate(45deg); background: var(--pink); color: #fff; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 24px 24px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ============================================================
   FINAL CTA
   ============================================================ */

.final-cta {
  background: var(--ink);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta .section-title { color: #fff; max-width: none; margin-left: auto; margin-right: auto; }
.final-cta .section-lede { color: rgba(255,255,255,0.7); margin-left: auto; margin-right: auto; }

.email-form {
  display: flex;
  gap: 8px;
  padding: 6px;
  background: #fff;
  border-radius: 999px;
  border: 2px solid var(--ink);
  max-width: 520px;
  margin: 32px auto 0;
  box-shadow: 0 6px 0 0 var(--cobalt);
}
.email-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 22px;
  font-family: var(--body);
  font-size: 16px;
  font-weight: 500;
  outline: none;
  color: var(--ink);
  min-width: 0;
}
.email-form input::placeholder { color: #8690B3; }
.email-form button {
  background: var(--cobalt);
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
  transition: background 150ms ease;
}
.email-form button:hover { background: var(--cobalt-deep); }

.email-form.sent {
  background: var(--mint);
}
.email-form.sent input { color: var(--ink); font-weight: 700; }

.final-cta-mascots {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 60px 0 0;
  flex-wrap: wrap;
}

/* Marquee */
.marquee {
  background: var(--pink);
  color: #fff;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  padding: 22px 0;
  overflow: hidden;
  font-family: var(--display);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.02em;
  white-space: nowrap;
  display: flex;
  gap: 48px;
}
.marquee-track {
  display: flex;
  gap: 48px;
  align-items: center;
  animation: marquee 30s linear infinite;
  flex-shrink: 0;
}
.marquee-track .dot { width: 14px; height: 14px; background: var(--sunshine); border-radius: 999px; border: 2px solid var(--ink); flex-shrink: 0; }
.marquee-track span { flex-shrink: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   FOOTER
   ============================================================ */

footer {
  background: #fff;
  padding: 40px 0;
  border-top: 2px solid var(--line);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-inner img { height: 36px; }
.footer-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 600;
}
.footer-links a:hover { color: var(--ink); }
.footer-handle {
  font-family: var(--display);
  font-weight: 800;
  color: var(--cobalt);
}
