@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,700;12..96,800&family=Instrument+Sans:ital,wght@0,400;0,500;0,600;1,400&family=Spline+Sans+Mono:wght@400;500;600&display=swap");

:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: #0e0e0d;
  --panel-2: #161512;
  --text: #f5f4ef;
  --muted: #9c9a8f;
  --line: rgba(255, 255, 255, 0.09);
  --accent: #ffd60a;
  --accent-dim: rgba(255, 214, 10, 0.14);
  --display: "Bricolage Grotesque", "SF Pro Display", sans-serif;
  --body: "Instrument Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "Spline Sans Mono", ui-monospace, "SF Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

::selection {
  background: var(--accent);
  color: #000;
}

/* ---------- nav (shared) ---------- */

.nav {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 26px 0 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 800;
  text-decoration: none;
  font-size: 19px;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-mark {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: linear-gradient(135deg, #ffe14d, var(--accent));
  display: grid;
  place-items: center;
}

.brand-mark svg {
  display: block;
}

.links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 15px;
}

.links a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.links a:hover {
  color: var(--text);
}

.links .nav-cta {
  color: #000;
  background: var(--accent);
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.links .nav-cta:hover {
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(255, 214, 10, 0.35);
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding: 0 28px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(255, 214, 10, 0.13), transparent 60%),
    radial-gradient(700px 500px at -10% 30%, rgba(255, 214, 10, 0.05), transparent 55%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  width: min(100%, 1120px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;
  gap: 48px;
  padding: 90px 0 110px;
  z-index: 1;
}

.eyebrow {
  font-family: var(--mono);
  color: var(--accent);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

h1 {
  font-family: var(--display);
  font-size: clamp(44px, 6.5vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 0;
}

h1 .hl {
  color: var(--accent);
  font-style: italic;
  font-weight: 700;
}

.lede {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
  max-width: 46ch;
  margin: 24px 0 0;
}

.actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(255, 214, 10, 0.4);
}

.secondary {
  color: var(--text);
  font-size: 16px;
  text-decoration: none;
  padding: 15px 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.secondary:hover {
  border-color: rgba(255, 214, 10, 0.5);
  background: var(--accent-dim);
}

.hero-meta {
  display: flex;
  gap: 26px;
  margin-top: 42px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  flex-wrap: wrap;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-meta span::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 1px;
  transform: rotate(45deg);
}

/* staggered load */
.hero .eyebrow,
.hero h1,
.hero .lede,
.hero .actions,
.hero .hero-meta,
.hero .phone {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.hero h1 { animation-delay: 0.08s; }
.hero .lede { animation-delay: 0.16s; }
.hero .actions { animation-delay: 0.24s; }
.hero .hero-meta { animation-delay: 0.32s; }
.hero .phone { animation-delay: 0.2s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- phone mockup ---------- */

.phone-wrap {
  display: flex;
  justify-content: center;
  perspective: 1400px;
}

.phone {
  width: min(320px, 80vw);
  border-radius: 46px;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 0 0 10px #000,
    0 0 0 11px rgba(255, 255, 255, 0.08),
    0 40px 90px rgba(0, 0, 0, 0.8),
    0 0 120px rgba(255, 214, 10, 0.08);
  padding: 14px;
  transform: rotate(2.5deg);
}

.screen {
  border-radius: 34px;
  background: linear-gradient(170deg, #111 0%, #0a0a09 100%);
  padding: 22px 18px 26px;
  overflow: hidden;
  position: relative;
}

.screen .island {
  width: 88px;
  height: 24px;
  background: #000;
  border-radius: 999px;
  margin: 0 auto 20px;
}

.screen-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}

.screen-sub {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.ep {
  display: flex;
  gap: 12px;
  align-items: center;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 11px 12px;
  margin-bottom: 10px;
}

.ep .poster {
  width: 40px;
  height: 56px;
  border-radius: 9px;
  flex-shrink: 0;
  background: linear-gradient(150deg, #2a2a28, #1a1a18 60%, rgba(255, 214, 10, 0.25));
}

.ep:nth-child(odd) .poster {
  background: linear-gradient(150deg, #262624, rgba(255, 214, 10, 0.3), #151513);
}

.ep-info {
  min-width: 0;
  flex: 1;
}

.ep-show {
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

.ep-code {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  margin: 3px 0 7px;
}

.ep-bar {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.ep-bar i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffe14d, var(--accent));
  animation: fill 1.4s 0.6s cubic-bezier(0.2, 0.7, 0.2, 1) backwards;
}

@keyframes fill {
  from { transform: translateX(-100%); }
}

.ep .check {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 214, 10, 0.6);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 14px;
  flex-shrink: 0;
}

.ep.done .check {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

/* ---------- ticker ---------- */

.ticker {
  background: var(--accent);
  color: #000;
  overflow: hidden;
  white-space: nowrap;
  padding: 13px 0;
  width: 104%;
  margin: 10px -2% 10px;
  transform: rotate(-1.2deg);
}

.ticker-track {
  display: inline-block;
  animation: scroll 28s linear infinite;
}

.ticker span {
  font-family: var(--display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 18px;
}

.ticker em {
  font-style: normal;
  opacity: 0.45;
  margin: 0 4px;
}

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

/* ---------- sections ---------- */

section.block {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 110px 28px 30px;
}

.block-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

h2.block-title {
  font-family: var(--display);
  font-size: clamp(32px, 4.4vw, 52px);
  letter-spacing: -0.025em;
  line-height: 1.02;
  font-weight: 800;
  margin: 0;
  max-width: 22ch;
}

.block-note {
  font-family: var(--mono);
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* features */

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

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 26px 30px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.card:hover {
  border-color: rgba(255, 214, 10, 0.45);
  transform: translateY(-4px);
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(300px 160px at 90% -20%, rgba(255, 214, 10, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.card:hover::after {
  opacity: 1;
}

.card .num {
  font-family: var(--mono);
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.2em;
}

.card h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 14px 0 10px;
}

.card p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
  margin: 0;
}

.card.wide {
  grid-column: span 2;
}

/* CTA band */

.cta-band {
  margin: 130px 0 0;
  background: var(--accent);
  color: #000;
  padding: 90px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "TV EPISODE TV EPISODE TV EPISODE TV EPISODE TV EPISODE";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--display);
  font-weight: 800;
  font-size: 150px;
  letter-spacing: -0.04em;
  white-space: nowrap;
  opacity: 0.07;
  pointer-events: none;
}

.cta-band h2 {
  font-family: var(--display);
  font-size: clamp(36px, 5.5vw, 64px);
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  position: relative;
}

.cta-band p {
  font-size: 18px;
  margin: 0 auto 34px;
  max-width: 52ch;
  opacity: 0.75;
  position: relative;
}

.cta-band .button {
  background: #000;
  color: var(--accent);
  position: relative;
}

.cta-band .button:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

/* footer */

footer {
  border-top: 1px solid var(--line);
  padding: 36px 28px 44px;
}

.foot-inner {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

.foot-inner .links {
  font-size: 14px;
}

/* ---------- inner pages (privacy / support) ---------- */

.page {
  min-height: 100vh;
  padding: 0 28px 28px;
}

.content {
  width: min(100%, 760px);
  margin: 11vh auto 0;
  padding-bottom: 90px;
}

.content h1 {
  font-size: clamp(38px, 6vw, 60px);
  margin: 0 0 28px;
}

.content h2 {
  font-family: var(--display);
  font-size: 23px;
  letter-spacing: -0.01em;
  margin: 36px 0 8px;
}

.content p,
.content li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.content a {
  color: var(--text);
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.support-card {
  background: var(--panel);
  border: 1px solid rgba(255, 214, 10, 0.3);
  border-radius: 14px;
  padding: 22px 24px;
  margin-top: 28px;
}

.support-card h2 {
  margin-top: 0;
}

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 60px 0 80px;
    gap: 60px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .card.wide {
    grid-column: span 1;
  }

  section.block {
    padding-top: 80px;
  }
}

@media (max-width: 640px) {
  .hero,
  .page {
    padding-left: 22px;
    padding-right: 22px;
  }

  .nav {
    padding-top: 20px;
  }

  .links {
    gap: 14px;
  }

  .links .nav-cta,
  .links a[href="#features"] {
    display: none;
  }

  .lede,
  .content p {
    font-size: 17px;
  }

  .cta-band::before {
    font-size: 90px;
  }
}

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