/* ORCL v3 — Ocean Decay palette, EB Garamond + Space Grotesk.
   Website is the LIGHT mode. TV app stays dark. Sunset gradient lives only
   inside the logo mark. */

:root {
  /* Ocean Decay (locked) */
  --bg: #EDEBE6;
  --ink: #0B1E2B;
  --ink-soft: #2a3a4a;
  --ink-mute: #5e6a76;
  --accent: #29D6FF;
  --accent-deep: #0077B6;
  --surface: #FFFFFF;
  --surface-tint: #f5f3ee;
  --hairline: rgba(11, 30, 43, 0.10);
  --danger: #c1352b;
  --success: #2e7d3a;
  /* Sunset gradient (logo only) */
  --grad-1: #FF6A3D;
  --grad-2: #FF3E7F;
  --grad-3: #B63CFF;
  /* Channel accent borders */
  --phosphor: #A6FF66;
  --radioactive: #D4FF00;
  --vhs-dream: #FF9BE1;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
ul, ol { list-style: none; }
a { color: var(--accent-deep); text-decoration: none; }
a:hover { color: var(--ink); }

.serif { font-family: 'EB Garamond', Georgia, 'Times New Roman', serif; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.narrow { max-width: 720px; margin: 0 auto; padding: 0 32px; }

/* Header */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(237, 235, 230, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--hairline);
}
header.site .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; padding-bottom: 18px;
}
.logo-mini { display: flex; align-items: center; gap: 12px; }
.logo-mini .icon { width: 36px; height: 36px; flex-shrink: 0; }
.logo-mini .wordmark {
  font-family: 'EB Garamond', serif; font-weight: 600;
  font-size: 24px; letter-spacing: 6px; color: var(--ink);
}
nav.primary { display: flex; gap: 28px; align-items: center; }
nav.primary a {
  font-family: 'Space Grotesk', sans-serif; font-weight: 500;
  font-size: 15px; color: var(--ink); letter-spacing: 0.2px;
}
nav.primary a.cta {
  background: var(--accent); color: var(--ink);
  padding: 10px 20px; border-radius: 999px; font-weight: 500;
}
nav.primary a.cta:hover { background: var(--ink); color: var(--bg); }

/* Buttons */
.btn {
  display: inline-block; background: var(--accent); color: var(--ink);
  font-family: 'Space Grotesk', sans-serif; font-weight: 500;
  padding: 18px 36px; border-radius: 999px; font-size: 17px;
  border: none; cursor: pointer; line-height: 1;
  transition: background 120ms ease, color 120ms ease, transform 120ms ease;
}
.btn:hover { background: var(--ink); color: var(--bg); }
.btn.large { padding: 22px 44px; font-size: 18px; }
.btn.ghost { background: transparent; color: var(--ink); border: 2px solid var(--ink); padding: 16px 34px; }
.btn.ghost:hover { background: var(--ink); color: var(--bg); }
.btn[disabled] { opacity: 0.45; cursor: wait; }

.link-arrow {
  display: inline-block; margin-top: 18px;
  font-family: 'Space Grotesk', sans-serif; font-size: 15px;
  color: var(--ink); border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}
.link-arrow:hover { color: var(--accent-deep); border-color: var(--accent-deep); }

/* HERO — full-viewport, logo dominant */
.hero {
  min-height: 92vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 100px 32px 60px;
}
.hero .hero-logo {
  width: min(40vw, 540px); height: auto;
  margin-bottom: 56px;
}
.hero h1 {
  font-family: 'EB Garamond', serif; font-weight: 600;
  font-size: clamp(36px, 5.5vw, 64px); line-height: 1.05; letter-spacing: 2px;
  margin-bottom: 14px;
  animation: hero-fade 1.2s ease 0.4s both;
}
.hero .sub {
  font-family: 'Space Grotesk', sans-serif; font-weight: 400;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink-mute); max-width: 680px;
  animation: hero-fade 1.2s ease 0.6s both;
}
.hero .cta-row { margin-top: 44px; animation: hero-fade 1.2s ease 0.9s both; }
@keyframes hero-fade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

@media (max-width: 720px) {
  .hero { min-height: 88vh; }
  .hero .hero-logo { width: 72vw; margin-bottom: 40px; }
  .hero h1 { font-size: 34px; letter-spacing: 1.5px; }
}

/* Service strip */
.services {
  border-top: 1px solid var(--hairline);
  padding: 32px 0;
  text-align: center;
}
.services p {
  font-family: 'Space Grotesk', sans-serif; font-size: 14px;
  color: var(--ink-mute); letter-spacing: 0.5px;
  text-transform: uppercase;
}
.services .row { margin-top: 14px; font-size: 16px; color: var(--ink); letter-spacing: 0.4px; }

/* Sections */
section.s { padding: 100px 0; border-top: 1px solid var(--hairline); }
section.s.center { text-align: center; }
section.s h2 {
  font-family: 'EB Garamond', serif; font-weight: 600;
  font-size: clamp(32px, 4.5vw, 56px); line-height: 1.1;
  letter-spacing: -0.5px; margin-bottom: 22px; color: var(--ink);
}
section.s h2 + p.lede {
  font-family: 'Space Grotesk', sans-serif; font-size: 19px;
  color: var(--ink-soft); max-width: 720px; margin-bottom: 56px;
}
section.s.center h2 + p.lede { margin-left: auto; margin-right: auto; }

section.s .body {
  font-size: 18px; color: var(--ink-soft); max-width: 720px;
  line-height: 1.6;
}
section.s .body + .body { margin-top: 14px; }

/* How it works */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; margin-top: 40px; }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; gap: 36px; } }
.step .num {
  display: inline-block; color: var(--accent-deep); font-weight: 500;
  font-family: 'Space Grotesk', sans-serif; font-size: 13px;
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 12px;
}
.step h3 {
  font-family: 'EB Garamond', serif; font-weight: 600;
  font-size: 28px; margin-bottom: 12px;
}
.step p { color: var(--ink-soft); font-size: 17px; }

/* Era section */
.era-tools {
  margin: 40px 0 50px;
  display: flex; flex-direction: column; gap: 22px; align-items: flex-start;
}
.year-picker { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.year-picker label {
  font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--ink-mute); margin-right: 12px;
}
.year-picker input[type="range"] {
  flex: 1; min-width: 240px; accent-color: var(--accent-deep);
}
.year-picker .current-year {
  font-family: 'EB Garamond', serif; font-weight: 600; font-size: 28px;
  min-width: 80px; color: var(--ink);
}
.era-result {
  background: var(--surface); border: 1px solid var(--hairline);
  border-radius: 14px; padding: 28px;
  display: flex; flex-direction: column; gap: 8px;
  min-height: 200px;
}
.era-result .meta {
  font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink-mute);
}
.era-result h3 {
  font-family: 'EB Garamond', serif; font-weight: 600; font-size: 24px;
  margin-bottom: 8px;
}
.era-result ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px 28px; }
@media (max-width: 720px) { .era-result ul { grid-template-columns: 1fr; } }
.era-result li { color: var(--ink-soft); font-size: 16px; padding: 4px 0; border-top: 1px solid var(--hairline); }
.era-result li:first-child, .era-result li:nth-child(2) { border-top: none; }

.featured-eras {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-top: 30px;
}
@media (max-width: 880px) { .featured-eras { grid-template-columns: 1fr; } }
.era-card {
  background: var(--surface); border: 1px solid var(--hairline);
  border-left: 6px solid;
  border-radius: 14px; padding: 28px;
}
.era-card .year {
  font-family: 'EB Garamond', serif; font-weight: 600;
  font-size: 56px; line-height: 1; margin-bottom: 6px;
}
.era-card .vibe {
  font-size: 14px; color: var(--ink-mute); font-style: italic;
  margin-bottom: 16px;
}
.era-card ul li {
  font-size: 15px; padding: 6px 0; border-top: 1px solid var(--hairline);
  color: var(--ink);
}
.era-card ul li:first-child { border-top: none; }
.eras-note {
  margin-top: 36px; color: var(--ink-mute); font-size: 16px;
  max-width: 720px;
}

/* Pricing */
.tiers {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-top: 40px;
}
@media (max-width: 1000px) { .tiers { grid-template-columns: 1fr; } }
.tier {
  background: var(--surface); border: 2px solid var(--hairline);
  border-radius: 16px; padding: 32px;
  display: flex; flex-direction: column;
}
.tier.featured { border-color: var(--accent); position: relative; }
.tier.featured::before {
  content: 'Most popular';
  position: absolute; top: -14px; left: 28px;
  background: var(--accent); color: var(--ink);
  font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
}
.tier h3 {
  font-family: 'EB Garamond', serif; font-weight: 600;
  font-size: 28px; margin-bottom: 6px;
}
.tier .price {
  font-family: 'EB Garamond', serif; font-weight: 400;
  font-size: 20px; color: var(--accent-deep); margin-bottom: 24px;
}
.tier ul li {
  color: var(--ink); font-size: 15px; padding: 8px 0;
  border-top: 1px solid var(--hairline);
}
.tier ul li:first-child { border-top: none; }
.trial-note {
  margin-top: 36px; color: var(--ink-soft); font-size: 16px;
}
.parish-note {
  margin-top: 18px; color: var(--ink-mute); font-size: 15px;
}

/* FAQ inline */
.faq-mini { margin-top: 50px; max-width: 760px; }
section.s.center .faq-mini { margin-left: auto; margin-right: auto; text-align: left; }
.faq-mini p {
  color: var(--ink-soft); font-size: 16px; padding: 12px 0;
  border-top: 1px solid var(--hairline);
}
.faq-mini p:first-child { border-top: none; }
.faq-mini p b { color: var(--ink); font-weight: 600; }

/* Parish band */
.parish-band {
  background: var(--ink); color: var(--bg);
  border-radius: 24px; padding: 64px 48px;
  text-align: center;
}
.parish-band h2 { color: var(--bg); margin-bottom: 18px; }
.parish-band p { color: rgba(237, 235, 230, 0.78); max-width: 640px; margin: 0 auto 30px; font-size: 17px; }
.parish-band .btn { background: var(--accent); color: var(--ink); }
.parish-band .btn:hover { background: var(--bg); color: var(--ink); }
.parish-band .small {
  color: rgba(237, 235, 230, 0.55); font-size: 13px; margin-top: 22px;
}

/* Footer */
footer.site {
  padding: 64px 0 48px;
  border-top: 1px solid var(--hairline);
  text-align: center;
}
footer.site .tag {
  font-family: 'EB Garamond', serif; font-weight: 600;
  font-size: 22px; color: var(--ink); margin-bottom: 24px;
}
footer.site .links {
  display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px;
}
footer.site .links a { color: var(--ink-mute); font-size: 14px; }
footer.site .links a:hover { color: var(--ink); }
footer.site .copyright { color: var(--ink-mute); font-size: 13px; }

/* Legal / Support pages */
section.legal { padding: 80px 0 100px; }
section.legal h1 {
  font-family: 'EB Garamond', serif; font-weight: 600;
  font-size: 48px; margin-bottom: 12px;
}
section.legal .tagline-top {
  font-family: 'EB Garamond', serif; font-style: italic;
  color: var(--accent-deep); font-size: 18px; margin-bottom: 28px;
}
section.legal h2 {
  font-family: 'EB Garamond', serif; font-weight: 600;
  font-size: 24px; margin: 44px 0 14px; color: var(--ink);
}
section.legal p { color: var(--ink-soft); margin-bottom: 14px; font-size: 17px; }
section.legal ul.bullets { margin: 8px 0 14px 24px; list-style: disc; color: var(--ink-soft); }
section.legal ul.bullets li { padding: 4px 0; }
section.legal .qa { padding: 16px 0; border-top: 1px solid var(--hairline); }
section.legal .qa:first-of-type { border-top: none; }
section.legal .qa b { color: var(--ink); display: block; margin-bottom: 4px; }
.note { color: var(--ink-mute); font-size: 14px; font-style: italic; margin-top: 28px; }

/* Parish form */
.signup { display: flex; flex-direction: column; gap: 18px; max-width: 580px; }
.signup label { display: flex; flex-direction: column; gap: 6px; color: var(--ink-mute); font-size: 14px; }
.signup input, .signup textarea, .signup select {
  background: var(--surface); color: var(--ink);
  border: 1.5px solid var(--hairline); border-radius: 10px;
  padding: 14px 16px; font-size: 16px; font-family: inherit;
  transition: border-color 120ms ease;
}
.signup input:focus, .signup textarea:focus, .signup select:focus {
  outline: none; border-color: var(--accent-deep);
}
.signup textarea { resize: vertical; min-height: 100px; }
.signup .btn { align-self: flex-start; cursor: pointer; border: none; margin-top: 6px; }
.signup .btn[disabled] { opacity: 0.5; cursor: wait; }

/* Feature blocks (parish page) */
.feature-blocks {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin: 50px 0 60px;
}
@media (max-width: 880px) { .feature-blocks { grid-template-columns: 1fr; } }
.feature {
  background: var(--surface); border: 1px solid var(--hairline);
  border-radius: 14px; padding: 28px;
}
.feature h3 {
  font-family: 'EB Garamond', serif; font-weight: 600;
  font-size: 22px; margin-bottom: 12px;
}
.feature p { color: var(--ink-soft); font-size: 16px; }

/* Parish pricing table */
.parish-tiers {
  background: var(--surface); border: 1px solid var(--hairline);
  border-radius: 14px; padding: 8px 28px;
  margin: 36px 0;
}
.parish-tiers .row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 18px 0; border-top: 1px solid var(--hairline);
}
.parish-tiers .row:first-child { border-top: none; }
.parish-tiers .name { font-weight: 600; font-size: 17px; }
.parish-tiers .detail { color: var(--ink-mute); font-size: 14px; }
.parish-tiers .price { color: var(--accent-deep); font-weight: 600; font-size: 18px; font-family: 'EB Garamond', serif; }

/* Download page */
.download-cta {
  display: flex; flex-direction: column; gap: 18px; align-items: center;
  padding: 60px 0; text-align: center;
}
.download-cta .btn { min-width: 280px; }

/* ============================================================
   HERO v2 — the queue IS the visual. Logo is small + above.
   ============================================================ */
.hero.v2 {
  min-height: auto;
  padding: 60px 32px 80px;
  display: block; text-align: center;
}
.hero.v2 .hero-logo.small {
  width: 92px; height: 92px;
  margin: 0 auto 32px;
  display: block;
}
.hero.v2 h1 {
  font-family: 'EB Garamond', serif; font-weight: 600;
  font-size: clamp(40px, 6vw, 72px); line-height: 1.05;
  letter-spacing: -0.5px; margin-top: 48px; margin-bottom: 14px;
  animation: hero-fade 1s ease 0.3s both;
}
.hero.v2 .sub {
  font-family: 'Space Grotesk', sans-serif; font-weight: 400;
  font-size: clamp(17px, 1.8vw, 21px); color: var(--ink-mute);
  margin-bottom: 36px;
  animation: hero-fade 1s ease 0.45s both;
}
.hero.v2 .cta-row {
  margin-top: 0;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  animation: hero-fade 1s ease 0.6s both;
}
.hero.v2 .cta-small {
  font-size: 13px; color: var(--ink-mute); letter-spacing: 0.3px;
}

/* ============================================================
   THE QUEUE — six cards in a horizontal scroll, gentle drift,
   "now playing" card pulses with a progress bar.
   ============================================================ */
.queue-stage {
  width: 100%; max-width: 1100px; margin: 0 auto;
  position: relative; overflow: hidden;
  padding: 12px 0;
  mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.queue-rail {
  display: flex; gap: 16px; justify-content: center;
  padding: 6px 24px;
  animation: queue-drift 18s ease-in-out infinite;
}
@keyframes queue-drift {
  0%, 100% { transform: translateX(8px); }
  50%      { transform: translateX(-20px); }
}
@media (prefers-reduced-motion: reduce) {
  .queue-rail { animation: none; }
  .scan-anim .scan { animation: none !important; }
}
.queue-card {
  flex: 0 0 168px;
  height: 196px;
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid var(--hairline);
  border-top: 5px solid var(--ink); /* overridden per service */
  padding: 16px 14px 14px;
  display: flex; flex-direction: column; gap: 6px;
  text-align: left;
  position: relative;
  box-shadow: 0 6px 16px rgba(11, 30, 43, 0.05);
  transition: transform 240ms ease;
}
.queue-card .service {
  font-family: 'Space Grotesk', sans-serif; font-weight: 500;
  font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--ink-mute);
}
.queue-card .show {
  font-size: 22px; line-height: 1.15; font-weight: 600;
  color: var(--ink); margin: 4px 0; flex: 1;
}
.queue-card .meta {
  font-size: 12px; color: var(--ink-mute); letter-spacing: 0.4px;
}
.queue-card .now {
  font-family: 'Space Grotesk', sans-serif; font-weight: 600;
  font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--accent-deep);
  display: flex; align-items: center; gap: 6px;
}
.queue-card .now .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--accent); animation: pulse-dot 1.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}
.queue-card .progress {
  margin-top: auto;
  display: block; height: 4px; background: var(--hairline); border-radius: 999px;
  overflow: hidden;
}
.queue-card .progress .bar {
  display: block; height: 100%; width: 38%;
  background: var(--accent-deep);
  animation: progress-fill 9s linear infinite;
  border-radius: 999px;
}
@keyframes progress-fill {
  0%   { width: 8%; }
  100% { width: 86%; }
}
.queue-card.playing {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 119, 182, 0.18);
  border-color: var(--accent);
}

/* Service brand color stripes */
.queue-card[data-service="netflix"]    { border-top-color: #E50914; }
.queue-card[data-service="disney"]     { border-top-color: #0F3D8A; }
.queue-card[data-service="paramount"]  { border-top-color: #0064FF; }
.queue-card[data-service="hulu"]       { border-top-color: #1CE783; }
.queue-card[data-service="max"]        { border-top-color: #6A2EE9; }
.queue-card[data-service="tubi"]       { border-top-color: #FBA919; }
.queue-card[data-service="peacock"]    { border-top-color: #FA1B5C; }
.queue-card[data-service="prime"]      { border-top-color: #00A8E1; }
.queue-card[data-service="appletv"]    { border-top-color: #0B1E2B; }
.queue-card[data-service="pluto"]      { border-top-color: #FCE21B; }
.queue-card[data-service="pbs"]        { border-top-color: #2638C4; }

@media (max-width: 820px) {
  .queue-rail { gap: 10px; padding: 6px 12px; justify-content: flex-start; }
  .queue-card { flex: 0 0 152px; height: 184px; }
  .queue-stage { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ============================================================
   Bigger body type for the pitch sections (less marketing-y feel)
   ============================================================ */
section.s .body.big {
  font-size: 22px; line-height: 1.5; color: var(--ink);
  max-width: 720px;
}
section.s .body.big + .body.big { margin-top: 18px; }
section.s .body.big:last-of-type {
  font-family: 'EB Garamond', serif; font-style: italic;
  color: var(--ink); font-size: 24px; margin-top: 24px;
}

/* Era + pricing tweaks */
.era-result { background: var(--surface-tint); border-color: transparent; }
.tier .price-yr {
  font-family: 'Space Grotesk', sans-serif; font-size: 13px;
  color: var(--ink-mute); letter-spacing: 0.4px; margin-top: -16px;
  margin-bottom: 24px;
}

/* Year picker dial */
.year-picker .current-year {
  font-size: 44px; min-width: 100px; line-height: 1;
}
.year-picker input[type="range"] { height: 6px; }

/* Subtle hover lift on era cards */
.era-card { transition: transform 200ms ease, box-shadow 200ms ease; }
.era-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(11, 30, 43, 0.08);
}

/* ============================================================
   HERO v3 — big sunset back, queue cards become orbital satellites.
   ============================================================ */
.hero.v3 {
  min-height: auto;
  padding: 40px 32px 80px;
  display: block; text-align: center;
}
.orbit-stage {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  height: 560px;
  display: flex; align-items: center; justify-content: center;
}
.orbit-stage .hero-logo.big {
  width: clamp(280px, 38vw, 440px);
  height: auto;
  position: relative;
  z-index: 1;
}

.orbit-card {
  position: absolute;
  width: 168px;
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid var(--hairline);
  border-top: 5px solid var(--ink);
  padding: 14px 14px 12px;
  display: flex; flex-direction: column; gap: 4px;
  text-align: left;
  box-shadow: 0 10px 24px rgba(11, 30, 43, 0.08);
  z-index: 2;
}
.orbit-card .service {
  font-family: 'Space Grotesk', sans-serif; font-weight: 500;
  font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--ink-mute);
}
.orbit-card .show {
  font-size: 20px; line-height: 1.15; font-weight: 600;
  color: var(--ink); margin: 2px 0 6px;
}
.orbit-card .meta {
  font-size: 12px; color: var(--ink-mute); letter-spacing: 0.3px;
}
.orbit-card .now {
  font-family: 'Space Grotesk', sans-serif; font-weight: 600;
  font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--accent-deep);
  display: flex; align-items: center; gap: 6px;
}
.orbit-card .now .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--accent); animation: pulse-dot 1.4s ease-in-out infinite;
}
.orbit-card .progress {
  margin-top: 8px;
  display: block; height: 4px; background: var(--hairline);
  border-radius: 999px; overflow: hidden;
}
.orbit-card .progress .bar {
  display: block; height: 100%; width: 38%;
  background: var(--accent-deep);
  animation: progress-fill 9s linear infinite;
  border-radius: 999px;
}
.orbit-card.playing {
  border-color: var(--accent);
  box-shadow: 0 16px 36px rgba(0, 119, 182, 0.22);
  z-index: 3;
}

/* Positions — relative to the centered sunset.
   Numbers tuned so cards don't overlap the disc. */
.orbit-card.pos-tr { top: 4%;  right: 6%; }
.orbit-card.pos-r  { top: 38%; right: -2%; }
.orbit-card.pos-br { top: 64%; right: 8%; }
.orbit-card.pos-l  { top: 18%; left: 4%; }
.orbit-card.pos-bl { top: 56%; left: -1%; }

/* Independent floating animations per card */
.float-1 { animation: float-1 7s ease-in-out infinite; }
.float-2 { animation: float-2 9s ease-in-out infinite; }
.float-3 { animation: float-3 8s ease-in-out infinite; }
.float-4 { animation: float-4 6.5s ease-in-out infinite; }
.float-5 { animation: float-5 10s ease-in-out infinite; }
@keyframes float-1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-4px,-10px); } }
@keyframes float-2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(6px,-6px); } }
@keyframes float-3 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-6px,6px); } }
@keyframes float-4 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(5px,8px); } }
@keyframes float-5 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-8px,4px); } }

/* Service brand color stripes (shared between hero + future queue uses) */
.orbit-card[data-service="netflix"]    { border-top-color: #E50914; }
.orbit-card[data-service="disney"]     { border-top-color: #0F3D8A; }
.orbit-card[data-service="paramount"]  { border-top-color: #0064FF; }
.orbit-card[data-service="hulu"]       { border-top-color: #1CE783; }
.orbit-card[data-service="max"]        { border-top-color: #6A2EE9; }
.orbit-card[data-service="tubi"]       { border-top-color: #FBA919; }
.orbit-card[data-service="peacock"]    { border-top-color: #FA1B5C; }
.orbit-card[data-service="prime"]      { border-top-color: #00A8E1; }
.orbit-card[data-service="appletv"]    { border-top-color: #0B1E2B; }
.orbit-card[data-service="pluto"]      { border-top-color: #FCE21B; }
.orbit-card[data-service="pbs"]        { border-top-color: #2638C4; }

.hero.v3 h1 {
  font-family: 'EB Garamond', serif; font-weight: 600;
  font-size: clamp(40px, 6vw, 72px); line-height: 1.05;
  letter-spacing: -0.5px; margin-top: 32px; margin-bottom: 14px;
  animation: hero-fade 1s ease 0.3s both;
}
.hero.v3 .sub {
  font-family: 'Space Grotesk', sans-serif; font-weight: 400;
  font-size: clamp(17px, 1.8vw, 21px); color: var(--ink-mute);
  margin-bottom: 36px;
  animation: hero-fade 1s ease 0.45s both;
}
.hero.v3 .cta-row {
  margin-top: 0;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  animation: hero-fade 1s ease 0.6s both;
}
.hero.v3 .cta-small {
  font-size: 13px; color: var(--ink-mute); letter-spacing: 0.3px;
}

/* Mobile: stack cards behind/around a smaller sunset */
@media (max-width: 820px) {
  .orbit-stage {
    height: auto; min-height: 380px;
    flex-wrap: wrap; gap: 12px; padding: 8px 0;
  }
  .orbit-stage .hero-logo.big {
    width: 220px; margin: 8px auto 0;
  }
  .orbit-card {
    position: static;
    width: calc(50% - 8px);
    max-width: 220px;
  }
  .orbit-card .show { font-size: 17px; }
  /* keep only 4 cards on mobile for breathing room */
  .orbit-card.pos-bl { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .float-1,.float-2,.float-3,.float-4,.float-5 { animation: none; }
}

/* ============================================================
   Year picker — Nick year markers on the slider track.
   ============================================================ */
.year-picker.year-picker-v2 {
  display: flex; flex-direction: column; gap: 6px;
  width: 100%; max-width: 720px;
}
.year-picker .picker-row {
  display: flex; align-items: center; gap: 18px;
}
.year-picker .picker-row .current-year {
  font-family: 'EB Garamond', serif; font-weight: 600;
  font-size: 56px; min-width: 100px; line-height: 1; color: var(--ink);
}
.year-picker input[type="range"] {
  flex: 1; height: 6px; accent-color: var(--accent-deep);
}
.year-picker .picker-marks {
  position: relative;
  margin-left: 118px; /* aligns with slider start, after the year label */
  height: 28px;
  pointer-events: none; /* allow individual marks to override */
}
.year-picker .picker-marks .mark {
  position: absolute;
  transform: translateX(-50%);
  top: 0;
  font-family: 'Space Grotesk', sans-serif; font-weight: 500;
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--ink-mute);
  padding: 4px 0 0;
  cursor: pointer;
  pointer-events: auto;
  white-space: nowrap;
  user-select: none;
}
.year-picker .picker-marks .mark::before {
  content: '';
  display: block;
  width: 10px; height: 10px;
  border-radius: 999px;
  margin: 0 auto 4px;
  background: var(--ink-mute);
  transition: transform 160ms ease, background 160ms ease;
}
.year-picker .picker-marks .mark.mark-98::before { background: #FF6B00; }
.year-picker .picker-marks .mark.mark-99::before { background: #8BC34A; }
.year-picker .picker-marks .mark.mark-04::before { background: #E91E63; }
.year-picker .picker-marks .mark:hover::before,
.year-picker .picker-marks .mark.active::before {
  transform: scale(1.5);
}
.year-picker .picker-marks .mark.active {
  color: var(--ink); font-weight: 600;
}

/* Era result panel — accent when on a curated year */
.era-result {
  background: var(--surface-tint);
  border: 1px solid transparent;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.era-result.curated {
  border-left: 6px solid var(--era-accent, var(--accent-deep));
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(11, 30, 43, 0.06);
}

@media (max-width: 720px) {
  .year-picker .picker-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .year-picker .picker-row .current-year { font-size: 44px; }
  .year-picker input[type="range"] { width: 100%; }
  .year-picker .picker-marks { margin-left: 0; }
}
