/* ============================================================
   Couchmark: clean, Apple-inspired design language
   White canvas, generous whitespace, system typography,
   one blue accent. Light gray cards, hairline dividers.
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-alt: #f5f5f7;
  --surface: #ffffff;
  --text: #1d1d1f;
  --text-2: #424245;
  --text-3: #6e6e73;
  --text-dim: #86868b;
  --line: rgba(0, 0, 0, 0.10);
  --accent: #0071e3;
  --accent-hover: #0077ed;
  --accent-soft: rgba(0, 113, 227, 0.10);
  --green: #1d9d54;
  --nav-bg: rgba(255, 255, 255, 0.78);
  --radius: 18px;
  --radius-lg: 28px;
  --nav-h: 52px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display",
    "Helvetica Neue", "Segoe UI", Roboto, Arial, sans-serif;
}

/* Dark mode follows the system, the way Apple's own site does. */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #000000;
    --bg-alt: #161617;
    --surface: #2c2c2e;
    --text: #f5f5f7;
    --text-2: #d2d2d7;
    --text-3: #a1a1a6;
    --text-dim: #86868b;
    --line: rgba(255, 255, 255, 0.14);
    --accent: #2997ff;
    --accent-hover: #4aa8ff;
    --accent-soft: rgba(41, 151, 255, 0.16);
    --green: #30d158;
    --nav-bg: rgba(22, 22, 23, 0.78);
  }
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.wrap { max-width: 1040px; margin: 0 auto; padding: 0 24px; }

/* Legacy decorative layers from the dark theme, retired. */
.aurora, .grain, .hero-glow, .glow-edge { display: none; }

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

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--nav-bg);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
}

.nav.scrolled { border-bottom-color: var(--line); }

.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.tile {
  width: 26px; height: 26px;
  border-radius: 7px;
  overflow: hidden;
  display: inline-grid;
  place-items: center;
  background: #000;
}
.tile img { width: 100%; height: 100%; object-fit: cover; }

.nav-links {
  display: flex;
  gap: 26px;
  margin-left: auto;
}
.nav-links a {
  font-size: 13px;
  color: var(--text-2);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--text); }

.nav-cta { display: flex; align-items: center; gap: 10px; margin-left: 8px; }
.nav-cta .btn { padding: 7px 16px; font-size: 13px; }
.nav-cta .btn svg { display: none; }

/* Language picker: a compact select in the nav; app.js navigates on change. */
.lang-select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.lang-select:hover { color: var(--text); border-color: var(--text-dim); }
.lang-select option { color: initial; background: initial; }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 980px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-hover); }

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--accent); }

/* App Store–style badge button */
.badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: #000;
  color: #fff;
  border-radius: 12px;
  padding: 10px 20px 10px 14px;
  transition: opacity 0.2s ease;
}
.badge-btn:hover { opacity: 0.82; }
@media (prefers-color-scheme: dark) {
  .badge-btn { border: 1px solid rgba(255, 255, 255, 0.28); }
  .tile { box-shadow: 0 0 0 1px var(--line); }
}
.badge-btn .glyph {
  width: 28px; height: 28px;
  display: grid; place-items: center;
}
.badge-btn .glyph svg { stroke: #fff; }
.bb-label { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.bb-sub { font-size: 11px; color: rgba(255, 255, 255, 0.72); }
.bb-main { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }

/* ============================== TYPE ============================== */

h1, h2, h3, .h2 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--text);
}

h1 { font-size: clamp(42px, 7.5vw, 72px); }
h2, .h2 { font-size: clamp(30px, 5vw, 48px); }
h3 { font-size: 20px; letter-spacing: -0.01em; line-height: 1.25; }

.lead {
  font-size: clamp(17px, 2.2vw, 21px);
  color: var(--text-3);
  line-height: 1.5;
  font-weight: 400;
}

.grad-text {
  background: linear-gradient(100deg, #0071e3 10%, #7655e3 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent);
  text-transform: none;
}
.eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

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

.hero {
  padding: calc(var(--nav-h) + 84px) 0 96px;
  text-align: center;
}

.hero-a { display: flex; justify-content: center; }
.hero-copy { max-width: 720px; margin: 0 auto; }

.hero h1 { margin: 18px 0 22px; }

.hero-sub {
  font-size: clamp(17px, 2.4vw, 22px);
  color: var(--text-3);
  max-width: 560px;
  margin: 0 auto;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
  font-size: 13px;
  color: var(--text-dim);
}
.hero-meta .sep { width: 3px; height: 3px; border-radius: 50%; background: var(--text-dim); }

.hero-tease {
  margin-top: 30px;
  font-size: 14px;
  color: var(--text-dim);
}

/* ============================== POSTER MARQUEE ============================== */
/* The v1 signature: real posters drifting diagonally behind the hero copy,
   faded so the headline stays crisp in both color schemes. */

.hero { position: relative; overflow: hidden; }
.hero .wrap { position: relative; z-index: 2; }

.marquee-bg {
  position: absolute;
  inset: -8% -24%;
  z-index: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  transform: rotate(-3deg);
  opacity: 0.20;
  -webkit-mask-image: radial-gradient(120% 92% at 50% 28%, #000 28%, transparent 74%);
  mask-image: radial-gradient(120% 92% at 50% 28%, #000 28%, transparent 74%);
}
@media (prefers-color-scheme: dark) {
  .marquee-bg { opacity: 0.30; }
}

.marquee-row {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 70s linear infinite;
}
.marquee-row.rev { animation-direction: reverse; animation-duration: 88s; }
.marquee-row.slow { animation-duration: 105s; }
.marquee-row .wall-poster { width: 148px; flex: none; }

@keyframes marquee { to { transform: translateX(-50%); } }

.wall-poster {
  aspect-ratio: 2 / 3;
  border-radius: 12px;
  box-shadow: 0 14px 30px -14px rgba(0, 0, 0, 0.35);
}

.wall-poster.pf1 { background: url('assets/posters/pf1.jpg') center/cover no-repeat, linear-gradient(160deg, #3a2b5e, #7c3aed); }
.wall-poster.pf2 { background: url('assets/posters/pf2.jpg') center/cover no-repeat, linear-gradient(160deg, #5e2b4a, #ff3d71); }
.wall-poster.pf3 { background: url('assets/posters/pf3.jpg') center/cover no-repeat, linear-gradient(160deg, #2b3a5e, #3a8bff); }
.wall-poster.pf4 { background: url('assets/posters/pf4.jpg') center/cover no-repeat, linear-gradient(160deg, #5e482b, #ffb24c); }
.wall-poster.pf5 { background: url('assets/posters/pf5.jpg') center/cover no-repeat, linear-gradient(160deg, #2b5e4a, #22c39a); }
.wall-poster.pf6 { background: url('assets/posters/pf6.jpg') center/cover no-repeat, linear-gradient(160deg, #4a2b5e, #d63cf0); }
.wall-poster.pf7 { background: url('assets/posters/pf7.jpg') center/cover no-repeat, linear-gradient(160deg, #202a44, #5a6fd6); }
.wall-poster.pf8 { background: url('assets/posters/pf8.jpg') center/cover no-repeat, linear-gradient(160deg, #44202a, #d65a6f); }

@media (prefers-reduced-motion: reduce) { .marquee-row { animation: none; } }
@media (max-width: 700px) {
  .marquee-row .wall-poster { width: 104px; }
  .marquee-bg, .marquee-row { gap: 14px; }
}

/* ============================== IMPORT BANNER ============================== */

.import-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  border-radius: 980px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 22px;
  transition: background 0.2s ease;
}
.import-banner:hover { background: rgba(0, 113, 227, 0.18); }
.ib-badge {
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 980px;
}
.ib-arrow { font-weight: 400; }

/* ============================== STRIP ============================== */

.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  padding: 22px 0;
}
.strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
}
.strip-label { font-size: 13px; color: var(--text-dim); }
.strip-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-3);
}
.strip-logo .ic { width: 17px; height: 17px; }

/* ============================== SECTIONS ============================== */

.section { padding: 104px 0; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-head .lead { margin-top: 14px; }

/* ============================== TV TIME BAND ============================== */

.tvtime-band {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: center;
}
.tvtime-band h2 { margin: 16px 0 14px; }
.tvtime-band .lead { font-size: 17px; }

.tvtime-checks {
  list-style: none;
  margin-top: 22px;
  display: grid;
  gap: 12px;
}
.tvtime-checks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--text-2);
}
.ck {
  flex: none;
  width: 20px; height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--green);
  display: grid;
  place-items: center;
}
.ck svg { width: 11px; height: 11px; }

.tvtime-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
.tvtime-cta .btn { width: 100%; }

/* ============================== FEATURE CARDS ============================== */

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.card p { color: var(--text-3); font-size: 15px; margin-top: 8px; }
.card h3 { margin-top: 4px; }

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

.ficon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.ficon svg { width: 20px; height: 20px; }

.kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.card-art { width: 100%; }

.mini-rail { display: flex; gap: 10px; }
.mini-poster {
  width: 56px;
  aspect-ratio: 2 / 3;
  border-radius: 9px;
  background: linear-gradient(160deg, #d9e2ef, #b8c6dd);
  box-shadow: 0 6px 16px -8px rgba(0, 0, 0, 0.35);
}
.mini-poster.pf1 { background: url('assets/posters/pf1.jpg') center/cover no-repeat, linear-gradient(160deg, #c6d5ec, #93a9cd); }
.mini-poster.pf2 { background: url('assets/posters/pf2.jpg') center/cover no-repeat, linear-gradient(160deg, #ecd5c6, #cda893); }
.mini-poster.pf3 { background: url('assets/posters/pf3.jpg') center/cover no-repeat, linear-gradient(160deg, #d5ecc9, #a4cd93); }
.mini-poster.pf4 { background: url('assets/posters/pf4.jpg') center/cover no-repeat, linear-gradient(160deg, #e3d0ec, #b797cf); }
.mini-poster.pf5 { background: url('assets/posters/pf5.jpg') center/cover no-repeat, linear-gradient(160deg, #cde8dd, #8fc9b2); }
.mini-poster.pf6 { background: url('assets/posters/pf6.jpg') center/cover no-repeat, linear-gradient(160deg, #e0cdea, #bb8fd0); }
.mini-poster.pf7 { background: url('assets/posters/pf7.jpg') center/cover no-repeat, linear-gradient(160deg, #d0e4ec, #97bfcf); }
.mini-poster.pf8 { background: url('assets/posters/pf8.jpg') center/cover no-repeat, linear-gradient(160deg, #ecd0d6, #cf97a3); }

/* ============================== STEPS ============================== */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step { position: relative; text-align: left; }
.step .num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.step .line {
  position: absolute;
  top: 20px;
  left: 52px;
  right: -28px;
  height: 1px;
  background: var(--line);
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--text-3); font-size: 15px; }

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

.faq {
  max-width: 720px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-item { border-bottom: 1px solid var(--line); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  text-align: left;
  padding: 22px 2px;
  cursor: pointer;
}

.faq-q .pm {
  flex: none;
  width: 22px; height: 22px;
  color: var(--text-dim);
  display: grid;
  place-items: center;
  transition: transform 0.25s ease;
}
.faq-item.open .pm { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a-inner {
  padding: 0 2px 24px;
  color: var(--text-3);
  font-size: 15px;
  line-height: 1.6;
}
.faq-a-inner a { color: var(--accent) !important; text-decoration: none !important; }
.faq-a-inner a:hover { text-decoration: underline !important; }

/* ============================== CTA BAND / SIGNUP ============================== */

.cta-band {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: clamp(44px, 6vw, 72px) clamp(24px, 5vw, 64px);
  text-align: center;
}
.cta-band h2 { margin: 14px 0 16px; }

.signup {
  display: flex;
  gap: 10px;
  justify-content: center;
  max-width: 460px;
  margin: 30px auto 0;
}
.signup input[type="email"] {
  flex: 1;
  min-width: 0;
  font-family: var(--font);
  font-size: 15px;
  padding: 12px 18px;
  border-radius: 980px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.signup input[type="email"]:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.signup-note { margin-top: 16px; font-size: 13px; color: var(--text-dim); }
.signup-note a { color: var(--accent) !important; text-decoration: none !important; font-weight: 500 !important; }
.signup-note a:hover { text-decoration: underline !important; }

.signup-error { color: #d70015 !important; }

.signup-ok {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
  font-weight: 600;
  color: var(--text);
}
.signup-ok.show { display: flex; }
.signup-ok .check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green);
  display: grid;
  place-items: center;
}
.signup-ok .check svg { width: 13px; height: 13px; }

/* ============================== COMPARE TABLE ============================== */

.compare-wrap { overflow-x: auto; }

.compare {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 15px;
}
.compare th, .compare td {
  padding: 15px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.compare tr:last-child td { border-bottom: none; }
.compare th {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
  background: var(--bg-alt);
}
.compare .hl { background: var(--accent-soft); }
.compare .yes { color: var(--green); font-weight: 600; }
.compare .no { color: var(--text-dim); }

/* ============================== SUPPORT ============================== */

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}

.support-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 28px;
}
.support-card h3 { margin-bottom: 6px; }
.support-card p { color: var(--text-3); font-size: 15px; margin-bottom: 16px; }

.support-form {
  max-width: 560px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
  text-align: left;
}
.support-form label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
}
.support-form input[type="email"],
.support-form select,
.support-form textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 15px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.support-form textarea { min-height: 140px; resize: vertical; }
.support-form .btn { justify-self: start; }

.form-status { font-size: 14px; font-weight: 500; display: none; }
.form-status.error { color: #d70015; display: block; }
.form-status.ok { color: var(--green); display: block; }

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

.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  padding: 44px 0 28px;
  margin-top: 104px;
  font-size: 13px;
  color: var(--text-3);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.footer-brand p { margin-top: 12px; max-width: 300px; }
.footer-brand a { color: var(--text-3); }
.footer-brand .brand { color: var(--text); }

.footer h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.footer ul { list-style: none; display: grid; gap: 9px; }
.footer ul a { color: var(--text-3); transition: color 0.2s ease; }
.footer ul a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
  color: var(--text-dim);
}

/* Crawlable language links above the footer bottom line. */
.footer-langs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding-bottom: 18px;
  font-size: 13.5px;
}
.footer-langs a { color: var(--text-3); transition: color 0.2s ease; }
.footer-langs a:hover { color: var(--text); }
.footer-langs a[aria-current="true"] { color: var(--text); font-weight: 700; }

.socials { display: flex; gap: 18px; }
.socials a { color: var(--text-dim); transition: color 0.2s ease; }
.socials a:hover { color: var(--text); }

/* ============================== REVEAL ============================== */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================== RESPONSIVE ============================== */

@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .col-2, .col-3 { grid-column: span 1; }
  .tvtime-band { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .step .line { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .support-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .section { padding: 72px 0; }
  .hero { padding-top: calc(var(--nav-h) + 56px); padding-bottom: 64px; }
  .bento { grid-template-columns: 1fr; }
  .signup { flex-direction: column; }
  .signup .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}


/* ===== Community: episode reactions on the dashboard ===== */
.recent-eps { margin: 28px 0 8px; }
.recent-eps h2 { font-size: 1.05rem; margin: 0 0 12px; }
.recent-ep { display: flex; gap: 14px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border, rgba(128,128,128,.18)); }
.recent-ep:last-child { border-bottom: 0; }
.recent-ep img, .recent-ep .ph { width: 44px; height: 66px; border-radius: 8px; object-fit: cover; background: rgba(128,128,128,.15); flex: none; }
.recent-ep-info { min-width: 0; }
.recent-ep-title { font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.recent-ep-meta { font-size: .85rem; opacity: .65; margin: 2px 0 6px; }
.react-row { display: flex; flex-wrap: wrap; gap: 6px; }
.react-chip { border: 1px solid transparent; background: rgba(128,128,128,.12); border-radius: 999px; padding: 5px 10px; font-size: .95rem; cursor: pointer; line-height: 1; }
.react-chip b { font-size: .8rem; font-weight: 600; opacity: .8; }
.react-chip.mine { background: rgba(139,92,246,.16); border-color: rgba(139,92,246,.55); }
.react-chip:hover { border-color: rgba(139,92,246,.35); }

.comments-panel { margin-top: 10px; padding-top: 8px; border-top: 1px dashed rgba(128,128,128,.2); }
.c-row { margin-bottom: 10px; }
.c-head { display: flex; align-items: baseline; gap: 8px; font-size: .82rem; }
.c-head span { opacity: .55; }
.c-act { background: none; border: 0; padding: 0; font-size: .78rem; color: var(--accent, #8b5cf6); cursor: pointer; }
.c-body { font-size: .92rem; margin-top: 2px; }
.c-empty { font-size: .85rem; opacity: .6; margin-bottom: 8px; }
.c-form { margin-top: 8px; }
.c-form-row { display: flex; gap: 8px; align-items: center; }
.c-form input.c-text { flex: 1; padding: 8px 12px; border-radius: 10px; border: 1px solid rgba(128,128,128,.25); background: transparent; color: inherit; font: inherit; }
.c-form .btn { padding: 8px 14px; }
.c-replies { margin: 0 0 10px 18px; padding-left: 12px; border-left: 2px solid rgba(128,128,128,.22); }
.c-img { display: block; max-width: 240px; max-height: 200px; border-radius: 10px; margin-top: 6px; object-fit: cover; }
.c-attach { cursor: pointer; font-size: 1.1rem; line-height: 1; padding: 6px; border-radius: 8px; }
.c-attach:hover { background: rgba(128,128,128,.12); }
.c-reply-note { font-size: .8rem; opacity: .75; margin-bottom: 6px; }
.c-attach-name { font-size: .8rem; opacity: .75; margin-top: 6px; }
