@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #000000;
  --bg-elevated: #141414;
  --bg-card: #1a1a1a;
  --bg-input: #2a2a2a;
  --red: #e50914;
  --red-hover: #f40612;
  --red-deep: #b20710;
  --red-glow: rgba(229, 9, 20, 0.45);
  --text: #ffffff;
  --text-muted: #b3b3b3;
  --text-dim: #808080;
  --border: #333333;
  --success: #46d369;
  --warning: #e87c03;
  --radius: 4px;
  --nav-h: 68px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --shadow-glow: 0 0 40px var(--red-glow);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font-family: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 3rem, 1400px);
  margin-inline: auto;
}

.container-narrow {
  width: min(100% - 3rem, 720px);
  margin-inline: auto;
}

/* ---------- Nav ---------- */
.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
}

.site-nav.scrolled {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.nav-inner {
  width: min(100% - 2.5rem, 1400px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.5rem;
}

.logo img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 0 12px var(--red-glow));
}

.logo-mark {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.85rem;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(180deg, #ff2a35 0%, #e50914 45%, #9f0610 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px var(--red-glow));
  text-shadow: none;
}

.logo-mark span {
  font-weight: 800;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}

.nav-links a {
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-spacer {
  flex: 1;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1.1rem;
  background: var(--red);
  color: var(--text);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--red-hover);
  transform: scale(1.02);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.2s, color 0.2s, border-color 0.2s;
}

.btn:hover {
  transform: scale(1.03);
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--red);
  color: var(--text);
}

.btn-primary:hover {
  background: var(--red-hover);
}

.btn-secondary {
  background: rgba(109, 109, 110, 0.7);
  color: var(--text);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(109, 109, 110, 0.5);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--text);
  color: var(--text);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
  padding: 0.9rem 2.25rem;
  font-size: 1.1rem;
}

.btn svg {
  width: 1.25em;
  height: 1.25em;
  fill: currentColor;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 2rem) 0 6rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.25) 70%, transparent 100%),
    linear-gradient(0deg, #000 0%, transparent 45%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 20%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 3rem, 1400px);
  margin-inline: auto;
  max-width: 580px;
  animation: fadeUp 0.9s var(--ease) both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.hero-title-en {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.meta-match {
  color: var(--success);
  font-weight: 700;
}

.meta-tag {
  border: 1px solid var(--text-dim);
  padding: 0.1rem 0.4rem;
  font-size: 0.75rem;
  border-radius: 2px;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: 42ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ---------- Rows ---------- */
.section {
  padding: 2rem 0 3rem;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-inline: max(1.5rem, calc((100% - 1400px) / 2 + 1.5rem));
}

.row-scroll {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding: 0.5rem max(1.5rem, calc((100% - 1400px) / 2 + 1.5rem)) 1.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.row-scroll::-webkit-scrollbar {
  display: none;
}

.poster-card {
  flex: 0 0 auto;
  width: clamp(140px, 16vw, 200px);
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  background: var(--bg-card);
  aspect-ratio: 2 / 3;
}

.poster-card:hover {
  transform: scale(1.08);
  z-index: 5;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7), var(--shadow-glow);
}

.poster-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster-card .poster-info {
  position: absolute;
  inset: auto 0 0;
  padding: 2.5rem 0.75rem 0.75rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
  opacity: 0;
  transition: opacity 0.25s;
}

.poster-card:hover .poster-info {
  opacity: 1;
}

.poster-info h3 {
  font-size: 0.9rem;
  font-weight: 600;
}

.poster-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.poster-card.featured {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

/* ---------- Featured strip ---------- */
.featured-band {
  margin: 1rem 0 2rem;
  padding: 2.5rem 0;
  background: linear-gradient(135deg, #1a0505 0%, #0a0a0a 50%, #120808 100%);
  border-block: 1px solid #2a1010;
}

.featured-grid {
  display: grid;
  grid-template-columns: minmax(200px, 280px) 1fr;
  gap: 2.5rem;
  align-items: center;
}

.featured-poster {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), var(--shadow-glow);
  aspect-ratio: 2 / 3;
}

.featured-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.featured-copy .subtitle {
  color: var(--red);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.featured-copy p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 48ch;
}

.credits-list {
  display: grid;
  gap: 0.35rem;
  font-size: 0.875rem;
  color: var(--text-dim);
  margin-bottom: 1.75rem;
}

.credits-list strong {
  color: var(--text-muted);
  font-weight: 500;
}

/* ---------- Page header (inner pages) ---------- */
.page-hero {
  padding: calc(var(--nav-h) + 3rem) 0 2.5rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(229, 9, 20, 0.18), transparent 60%),
    var(--bg);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: var(--text-muted);
  max-width: 50ch;
}

.page-body {
  padding: 2rem 0 5rem;
}

/* ---------- Movie detail ---------- */
.movie-layout {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 2.5rem;
  align-items: start;
}

.movie-poster-wrap {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5);
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
}

.movie-poster-wrap img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.movie-details h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4rem);
  letter-spacing: 0.03em;
  line-height: 1;
}

.movie-details .en-title {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0.35rem 0 1rem;
}

.detail-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.chip {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.chip.accent {
  border-color: var(--red);
  color: var(--red);
}

.movie-details .lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  max-width: 55ch;
}

.detail-table {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.detail-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  font-size: 0.9rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid #222;
}

.detail-row dt {
  color: var(--text-dim);
}

.detail-row dd {
  color: var(--text-muted);
}

.lock-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  background: rgba(229, 9, 20, 0.08);
  border: 1px solid rgba(229, 9, 20, 0.35);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.lock-note svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  fill: var(--red);
  margin-top: 1px;
}

/* ---------- Plans / Payment ---------- */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.plan-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.plan-card:hover {
  transform: translateY(-4px);
  border-color: #555;
}

.plan-card.popular {
  border-color: var(--red);
  box-shadow: var(--shadow-glow);
}

.plan-card.popular::before {
  content: 'Most Popular';
  position: absolute;
  top: 0;
  right: 0;
  background: var(--red);
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-bottom-left-radius: 6px;
}

.plan-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.plan-price {
  font-family: var(--font-display);
  font-size: 2.75rem;
  letter-spacing: 0.02em;
  line-height: 1;
  margin: 0.75rem 0 0.25rem;
}

.plan-price span {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-dim);
}

.plan-desc {
  color: var(--text-dim);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

.plan-features {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.75rem;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.plan-features svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: var(--success);
  margin-top: 2px;
}

.plan-card .btn {
  width: 100%;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 340px);
  gap: 2rem;
  align-items: start;
}

.card-form {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
}

.card-form h2 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.8rem 0.9rem;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.2);
}

.form-group input::placeholder {
  color: var(--text-dim);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.card-preview {
  background: linear-gradient(135deg, #2a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%);
  border: 1px solid #3a1515;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.card-preview::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 120%;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.25), transparent 70%);
  pointer-events: none;
}

.card-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--red);
}

.card-number-display {
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.card-meta-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.card-meta-row strong {
  display: block;
  color: var(--text);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
  text-transform: none;
  font-weight: 500;
}

.order-summary {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
}

.order-summary h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.order-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.order-item img {
  width: 70px;
  border-radius: 4px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.order-item h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.order-item p {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.summary-rows {
  display: grid;
  gap: 0.5rem;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.summary-rows div {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
}

.summary-rows .total {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  padding-top: 0.65rem;
  border-top: 1px solid var(--border);
  margin-top: 0.25rem;
}

.secure-note {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 0.85rem;
  justify-content: center;
}

.secure-note svg {
  width: 14px;
  height: 14px;
  fill: var(--success);
}

.payment-success {
  display: none;
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.payment-success.visible {
  display: block;
  animation: fadeUp 0.5s var(--ease);
}

.payment-success .check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(70, 211, 105, 0.15);
  display: grid;
  place-items: center;
  margin: 0 auto 1.25rem;
}

.payment-success .check svg {
  width: 32px;
  height: 32px;
  fill: var(--success);
}

.payment-success h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.payment-success p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.form-error {
  color: var(--red);
  font-size: 0.8rem;
  margin-top: 0.35rem;
  display: none;
}

.form-group.invalid input {
  border-color: var(--red);
}

.form-group.invalid .form-error {
  display: block;
}

/* ---------- Policy pages ---------- */
.policy-content {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem 2.25rem;
}

.policy-content h2 {
  font-size: 1.25rem;
  margin: 1.75rem 0 0.75rem;
  color: var(--text);
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p,
.policy-content li {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.policy-content ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.policy-content a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-updated {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

.policy-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.policy-nav a {
  padding: 0.4rem 0.9rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}

.policy-nav a:hover,
.policy-nav a.active {
  border-color: var(--red);
  color: var(--text);
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0a0a0a;
  border-top: 1px solid #1a1a1a;
  padding: 3rem 0 2rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand img {
  height: 36px;
  margin-bottom: 0.85rem;
  filter: drop-shadow(0 0 8px var(--red-glow));
}

.footer-brand p {
  color: var(--text-dim);
  font-size: 0.875rem;
  max-width: 28ch;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
  color: var(--text-muted);
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #1a1a1a;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.tagline-bar {
  text-align: center;
  padding: 1.5rem 1rem 0;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.tagline-bar .brand {
  color: var(--red);
  font-weight: 600;
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 auto;
  background: rgba(0, 0, 0, 0.97);
  padding: 1.25rem 1.5rem 1.75rem;
  z-index: 99;
  border-bottom: 1px solid var(--border);
}

.mobile-menu.open {
  display: block;
  animation: fadeUp 0.25s var(--ease);
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid #222;
  color: var(--text-muted);
  font-size: 1rem;
}

.mobile-menu a:hover {
  color: var(--text);
}

/* ---------- Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-bg img {
    animation: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 85vh;
    align-items: flex-end;
    padding-bottom: 4rem;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, #000 0%, transparent 50%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, transparent 25%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.35) 100%);
  }

  .featured-grid,
  .movie-layout {
    grid-template-columns: 1fr;
  }

  .featured-poster,
  .movie-poster-wrap {
    max-width: 260px;
    margin-inline: auto;
    position: static;
  }

  .detail-row {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .policy-content {
    padding: 1.5rem;
  }

  .container {
    width: min(100% - 2rem, 1400px);
  }
}
