*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0a0908;
  --surface: #141210;
  --surface-2: #1e1b18;
  --text: #faf7f2;
  --text-muted: #9c958a;
  --gold: #e8a317;
  --gold-light: #f5c842;
  --green: #2d8a4e;
  --red: #c0392b;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 72px;
  --fab-size: 56px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--fab-size) + 32px);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

.wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(10, 9, 8, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.header-nav {
  display: flex;
  gap: 28px;
  margin-right: auto;
}

.header-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

.header-nav a:hover {
  color: var(--text);
}

.header-download {
  padding: 10px 22px;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 999px;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}

.header-download:hover {
  background: var(--gold-light);
  transform: scale(1.04);
}

.header-download.is-clicked,
.btn-primary.is-clicked {
  transform: scale(0.96);
}

/* ── Hero ── */

.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-h) + 48px) 24px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(232, 163, 23, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(45, 138, 78, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 40% 30% at 50% 50%, rgba(192, 57, 43, 0.05) 0%, transparent 50%),
    var(--bg);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  flex: 1;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-lead {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 36px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--gold) 0%, #d4920f 100%);
  color: var(--bg);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(232, 163, 23, 0.3);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232, 163, 23, 0.4);
}

.btn-lg {
  padding: 18px 48px;
  font-size: 1.0625rem;
}

.hero-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.poster-stack {
  position: relative;
  width: 320px;
  height: 420px;
}

.poster {
  position: absolute;
  width: 200px;
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
  object-fit: cover;
  aspect-ratio: 2 / 3;
  transition: transform var(--transition);
}

.poster-1 {
  top: 0;
  left: 0;
  transform: rotate(-8deg);
  z-index: 1;
}

.poster-2 {
  top: 30px;
  left: 60px;
  transform: rotate(2deg);
  z-index: 2;
}

.poster-3 {
  top: 60px;
  left: 120px;
  transform: rotate(10deg);
  z-index: 3;
}

.hero:hover .poster-1 { transform: rotate(-10deg) translateY(-4px); }
.hero:hover .poster-2 { transform: rotate(0deg) translateY(-8px); }
.hero:hover .poster-3 { transform: rotate(12deg) translateY(-4px); }

.hero-ticker {
  position: relative;
  z-index: 1;
  margin-top: 48px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ticker-track {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  font-family: Georgia, serif;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.ticker-track span:nth-child(even) {
  color: var(--gold);
  opacity: 0.5;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Blocks ── */

.block {
  padding: 96px 0;
}

.block-header {
  margin-bottom: 56px;
}

.block-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.block-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.block-header h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.block-aside {
  font-size: 0.875rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* ── Why ── */

.block-why {
  background: var(--surface);
}

.why-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why-item {
  display: flex;
  gap: 24px;
  padding: 36px 32px;
  background: var(--surface);
  transition: background var(--transition);
}

.why-item:hover {
  background: var(--surface-2);
}

.why-num {
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
}

.why-item h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Shows ── */

.block-shows {
  background: var(--bg);
}

.shows-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--surface);
}

.shows-scroll::-webkit-scrollbar {
  height: 6px;
}

.shows-scroll::-webkit-scrollbar-track {
  background: var(--surface);
  border-radius: 999px;
}

.shows-scroll::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 999px;
}

.show-card {
  flex: 0 0 180px;
  scroll-snap-align: start;
  cursor: default;
  transition: transform var(--transition);
}

.show-card:hover,
.show-card.is-hovered {
  transform: translateY(-6px);
}

.show-poster {
  aspect-ratio: 2 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
  margin-bottom: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.show-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.show-card:hover .show-poster img {
  transform: scale(1.06);
}

.show-card h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.show-genre {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 500;
}

/* ── Features Bento ── */

.block-features {
  background: var(--surface);
}

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.bento-cell {
  padding: 32px 28px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), transform var(--transition);
}

.bento-cell:hover {
  border-color: rgba(232, 163, 23, 0.25);
  transform: translateY(-3px);
}

.bento-wide {
  grid-column: span 2;
}

.bento-icon {
  display: block;
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.bento-cell h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.bento-cell p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Stats ── */

.block-stats {
  padding: 64px 0;
  background: linear-gradient(135deg, rgba(232, 163, 23, 0.08) 0%, rgba(45, 138, 78, 0.06) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-box strong {
  display: block;
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-box span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── CTA ── */

.block-cta {
  padding: 100px 0;
  background: var(--bg);
}

.cta-inner {
  text-align: center;
  max-width: 560px;
}

.cta-inner h2 {
  font-family: Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-inner p {
  color: var(--text-muted);
  margin-bottom: 36px;
  font-size: 1.0625rem;
}

/* ── Footer ── */

.site-footer {
  padding: 32px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.site-footer p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ── FAB Download ── */

.fab-download {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: var(--fab-size);
  height: var(--fab-size);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold) 0%, #d4920f 100%);
  color: var(--bg);
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(232, 163, 23, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}

.fab-download svg {
  width: 24px;
  height: 24px;
}

.fab-download:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(232, 163, 23, 0.55);
}

.fab-download.is-clicked {
  transform: scale(0.92);
}

/* ── Responsive ── */

@media (max-width: 1024px) {
  .bento {
    grid-template-columns: 1fr 1fr;
  }

  .bento-wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .header-nav {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    align-items: center;
  }

  .hero-visual {
    order: -1;
  }

  .poster-stack {
    width: 260px;
    height: 340px;
  }

  .poster {
    width: 160px;
  }

  .block {
    padding: 64px 0;
  }

  .block-header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .why-list {
    grid-template-columns: 1fr;
  }

  .bento {
    grid-template-columns: 1fr;
  }

  .bento-wide {
    grid-column: span 1;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .wrap,
  .header-inner {
    padding: 0 16px;
  }

  .header-download {
    padding: 8px 16px;
    font-size: 0.75rem;
  }

  .brand-name {
    display: none;
  }

  .poster-stack {
    width: 220px;
    height: 300px;
  }

  .poster {
    width: 140px;
  }

  .show-card {
    flex: 0 0 150px;
  }

  .fab-download {
    bottom: 16px;
    right: 16px;
  }
}
