/* ==========================================================================
   Pickflix — marketing site stylesheet
   Pure CSS, no build step. Mobile-first.
   ========================================================================== */

:root {
  --bg: #070707;
  --surface: #111111;
  --card: #161616;
  --card-2: #1c1c1c;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --accent: #E50C18;
  --accent-hover: #ff1f2b;
  --accent-soft: rgba(229, 12, 24, 0.14);
  --text: #FFFFFF;
  --muted: #A7A7A7;
  --muted-2: #7a7a7a;
  --green: #3DDC84;
  --green-soft: rgba(61, 220, 132, 0.14);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 24px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.55), 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.35);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --display: "Bebas Neue", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --container: 1160px;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--text); }
p a, li a { color: var(--text); text-decoration: underline; text-decoration-color: var(--muted-2); text-underline-offset: 3px; }
p a:hover, li a:hover { text-decoration-color: var(--accent); }

h1, h2, h3, h4 { margin: 0 0 0.5em; line-height: 1.12; letter-spacing: -0.02em; font-weight: 700; }
h1 { font-size: clamp(2.4rem, 6vw, 4.25rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--muted); max-width: 62ch; }
.muted { color: var(--muted); }
.small { font-size: 0.875rem; }
.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 0.95;
}
.display.h1 { font-size: clamp(3.2rem, 9vw, 6.4rem); }
.accent { color: var(--accent); }
.green { color: var(--green); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--accent); color: #fff; padding: 10px 14px; border-radius: 10px; font-weight: 600;
}
.skip-link:focus { top: 12px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 780px; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px; font-weight: 600; font-size: 1rem;
  border: 1px solid transparent; cursor: pointer; line-height: 1.2; white-space: nowrap;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 30px rgba(229, 12, 24, 0.35); }
.btn-primary:hover { background: var(--accent-hover); color: #fff; box-shadow: 0 12px 34px rgba(229, 12, 24, 0.45); }
.btn-secondary { background: rgba(255, 255, 255, 0.06); color: #fff; border-color: var(--line-strong); }
.btn-secondary:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.25); }
.btn-sm { padding: 10px 18px; font-size: 0.9rem; }
.btn-lg { padding: 18px 32px; font-size: 1.08rem; }
.btn svg { width: 20px; height: 20px; flex: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ----- Header ----- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  height: var(--header-h);
  background: rgba(7, 7, 7, 0.78);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 16px; }
.brand img { width: 118px; height: auto; aspect-ratio: 246 / 86; }
.site-nav { display: none; align-items: center; gap: 26px; }
.site-nav a { color: var(--muted); font-weight: 500; font-size: 0.95rem; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--text); }
.site-nav .btn { color: #fff; }
.lang-switch {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--line-strong); border-radius: 999px; padding: 6px 12px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; color: var(--muted);
}
.lang-switch:hover { border-color: rgba(255, 255, 255, 0.35); color: #fff; }
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line-strong);
  background: transparent; color: #fff; cursor: pointer;
}
.nav-toggle span { position: relative; width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.2s ease, background 0.2s ease; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.2s ease, top 0.2s ease;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 899px) {
  .site-nav.is-open {
    display: flex; flex-direction: column; align-items: stretch; gap: 4px;
    position: fixed; top: var(--header-h); left: 0; right: 0;
    padding: 12px 20px 24px; background: rgba(7, 7, 7, 0.97);
    border-bottom: 1px solid var(--line);
  }
  .site-nav.is-open a { padding: 12px 6px; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
  .site-nav.is-open .lang-switch { align-self: flex-start; margin-top: 12px; border-bottom: 1px solid var(--line-strong); padding: 8px 14px; }
  .site-nav.is-open .btn { margin-top: 14px; border-bottom: 0; }
}
@media (min-width: 900px) {
  .site-nav { display: flex; }
  .nav-toggle { display: none; }
}

/* ----- Sections ----- */
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section + .section { border-top: 1px solid var(--line); }
.section-head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head .eyebrow { display: inline-block; color: var(--accent); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 14px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .lead { margin-left: auto; margin-right: auto; }
.surface { background: var(--surface); }

.grid-2 { display: grid; gap: clamp(28px, 5vw, 64px); align-items: center; }
@media (min-width: 900px) { .grid-2 { grid-template-columns: 1fr 1fr; } .grid-2.rev > :first-child { order: 2; } }

/* ----- Hero ----- */
.hero { position: relative; padding: clamp(56px, 8vw, 104px) 0 clamp(48px, 7vw, 96px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(700px 420px at 78% 38%, rgba(229, 12, 24, 0.22), transparent 60%),
    radial-gradient(520px 380px at 12% 10%, rgba(229, 12, 24, 0.08), transparent 60%);
}
.hero .container { position: relative; display: grid; gap: 48px; align-items: center; }
@media (min-width: 960px) { .hero .container { grid-template-columns: 1.05fr 0.95fr; } }
.hero-copy { max-width: 600px; }
.hero-logo { width: clamp(150px, 20vw, 190px); height: auto; aspect-ratio: 246 / 86; margin-bottom: 28px; }
.hero h1 { margin-bottom: 20px; }
.hero .lead { margin-bottom: 32px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 16px 22px; margin-top: 26px; color: var(--muted); font-size: 0.9rem; }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta svg { width: 16px; height: 16px; color: var(--green); }
.hero-visual { display: flex; justify-content: center; }

/* ----- Phone mockup ----- */
.phone {
  --w: 300px;
  width: var(--w); aspect-ratio: 300 / 612;
  background: #0b0b0b; border-radius: 46px; padding: 10px;
  box-shadow: var(--shadow), inset 0 0 0 2px #2a2a2a, inset 0 0 0 5px #000;
  position: relative; flex: none;
}
.phone::before {
  content: ""; position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 84px; height: 24px; background: #000; border-radius: 20px; z-index: 3;
}
.phone-screen {
  width: 100%; height: 100%; border-radius: 38px; overflow: hidden;
  background: #0d0d0d; position: relative;
  display: flex; flex-direction: column;
  font-size: 11px; line-height: 1.35;
}
.status-bar { display: flex; justify-content: space-between; align-items: center; padding: 14px 24px 0; font-weight: 600; font-size: 12px; height: 44px; }
.status-icons { display: inline-flex; gap: 5px; align-items: center; }
.status-icons i { display: inline-block; width: 14px; height: 9px; border: 1.5px solid #fff; border-radius: 3px; position: relative; opacity: 0.9; }
.status-icons i::after { content: ""; position: absolute; left: 1.5px; top: 1.5px; bottom: 1.5px; width: 8px; background: #fff; border-radius: 1px; }
.app-top { display: flex; justify-content: space-between; align-items: center; padding: 6px 18px 4px; font-weight: 600; font-size: 12px; color: var(--muted); }
.app-top strong { color: #fff; }
.app-body { padding: 4px 14px 0; flex: 1; display: flex; flex-direction: column; }
.pick-label { font-size: 9.5px; letter-spacing: 0.16em; font-weight: 700; color: var(--accent); margin-bottom: 8px; }
.poster {
  position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 2 / 1.1;
  background:
    radial-gradient(120% 80% at 80% 10%, #f0a64a 0%, rgba(240, 166, 74, 0) 55%),
    radial-gradient(90% 70% at 20% 100%, #6b2a12 0%, rgba(107, 42, 18, 0) 60%),
    linear-gradient(160deg, #2a1507 0%, #0d0a08 60%, #050505 100%);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
}
.poster::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0) 55%);
}
.poster-dunes {
  position: absolute; left: -10%; right: -10%; bottom: -30%; height: 70%;
  background: radial-gradient(ellipse at 50% 100%, #c77a2a 0%, #7a4213 45%, rgba(60, 30, 10, 0) 72%);
  filter: blur(2px);
}
.poster-sun {
  position: absolute; right: 12%; top: 14%; width: 34%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 214, 140, 0.9) 0%, rgba(240, 166, 74, 0.35) 40%, rgba(240, 166, 74, 0) 70%);
  filter: blur(6px);
}
.more-picks { margin-top: 12px; }
.more-picks .app-row-label { margin: 0 0 6px; }
.more-picks .poster-row { grid-template-columns: repeat(3, 1fr); }
.more-picks .poster-row div { aspect-ratio: 2 / 2.4; position: relative; }
.more-picks .poster-row span { position: absolute; left: 6px; bottom: 6px; font-size: 9px; font-weight: 700; color: var(--green); background: rgba(7, 7, 7, 0.7); padding: 2px 5px; border-radius: 999px; }
.poster-meta { position: absolute; left: 12px; bottom: 10px; display: flex; gap: 6px; align-items: center; }
.match { display: inline-flex; align-items: center; gap: 4px; background: rgba(7, 7, 7, 0.7); color: var(--green); font-weight: 700; font-size: 10.5px; padding: 4px 8px; border-radius: 999px; border: 1px solid rgba(61, 220, 132, 0.35); }
.match::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.pick-title { font-size: 19px; font-weight: 700; letter-spacing: -0.02em; margin: 12px 0 2px; line-height: 1.1; }
.pick-meta { color: var(--muted); font-size: 10.5px; display: flex; gap: 6px; flex-wrap: wrap; }
.pick-meta b { color: #fff; font-weight: 600; }
.pick-genres { color: var(--muted); font-size: 10.5px; margin-top: 2px; }
.why { margin-top: 10px; background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 9px 10px; }
.why-label { font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 3px; display: flex; align-items: center; gap: 5px; }
.why-label::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.why p { margin: 0; font-size: 10.5px; color: #e8e8e8; }
.avail { margin-top: 10px; display: flex; gap: 6px; flex-wrap: wrap; }
.app-chip { display: inline-flex; align-items: center; gap: 5px; border: 1px solid var(--line-strong); background: rgba(255, 255, 255, 0.04); border-radius: 999px; padding: 4px 9px; font-size: 10px; font-weight: 600; color: #fff; }
.app-chip.provider { border-color: rgba(255, 255, 255, 0.25); }
.app-chip.provider::before { content: ""; width: 6px; height: 6px; border-radius: 2px; background: linear-gradient(135deg, #6a4cff, #b39cff); }
.pick-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: auto; padding-top: 12px; }
.app-btn { border-radius: 12px; padding: 10px 0; text-align: center; font-weight: 700; font-size: 11.5px; border: 1px solid var(--line-strong); color: #fff; background: rgba(255, 255, 255, 0.05); }
.app-btn.solid { background: var(--accent); border-color: var(--accent); box-shadow: 0 6px 18px rgba(229, 12, 24, 0.35); }
.home-indicator { width: 96px; height: 4px; background: rgba(255, 255, 255, 0.6); border-radius: 4px; margin: 10px auto 8px; flex: none; }

.phone.small { --w: 230px; border-radius: 38px; padding: 8px; }
.phone.small::before { width: 64px; height: 18px; top: 16px; }
.phone.small .phone-screen { border-radius: 31px; font-size: 10px; }
.phone.small .status-bar { height: 38px; padding-top: 12px; font-size: 10.5px; }

/* Mini app screens */
.app-greet { font-size: 10.5px; color: var(--muted); }
.app-h { font-size: 17px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; margin: 2px 0 10px; }
.app-cta { background: var(--accent); color: #fff; border-radius: 14px; padding: 12px; font-weight: 700; font-size: 11.5px; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 8px 22px rgba(229, 12, 24, 0.35); }
.app-cta small { font-weight: 500; opacity: 0.85; display: block; font-size: 9.5px; }
.app-row-label { font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; color: var(--muted); margin: 14px 0 8px; }
.poster-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.poster-row div { aspect-ratio: 2 / 3; border-radius: 9px; box-shadow: 0 8px 18px rgba(0, 0, 0, 0.45); }
.poster-row .p1 { background: linear-gradient(160deg, #1d3a5c, #071120); }
.poster-row .p2 { background: linear-gradient(160deg, #5c1d1d, #200707); }
.poster-row .p3 { background: linear-gradient(160deg, #3f3f3f, #0b0b0b); }
.poster-row .p4 { background: linear-gradient(160deg, #1f5c3a, #061a0f); }
.poster-row .p5 { background: linear-gradient(160deg, #5c4b1d, #1c1505); }
.poster-row .p6 { background: linear-gradient(160deg, #3a1d5c, #0c0620); }
.step-dots { display: flex; gap: 4px; margin: 4px 0 12px; }
.step-dots i { height: 3px; flex: 1; background: rgba(255, 255, 255, 0.14); border-radius: 3px; }
.step-dots i.on { background: var(--accent); }
.mood-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.mood { border: 1px solid var(--line-strong); border-radius: 12px; padding: 10px 9px; font-weight: 600; font-size: 10.5px; background: rgba(255, 255, 255, 0.03); }
.mood span { display: block; font-size: 14px; margin-bottom: 3px; }
.mood.on { border-color: var(--accent); background: var(--accent-soft); }
.app-next { margin-top: auto; background: var(--accent); color: #fff; border-radius: 12px; padding: 10px; text-align: center; font-weight: 700; font-size: 11.5px; }
.search-bar { display: flex; align-items: center; gap: 6px; background: var(--card-2); border: 1px solid var(--line-strong); border-radius: 12px; padding: 9px 10px; font-size: 11px; color: #fff; }
.search-bar::before { content: ""; width: 10px; height: 10px; border: 1.5px solid var(--muted); border-radius: 50%; flex: none; box-shadow: 4px 4px 0 -2px var(--muted); }
.result { display: flex; gap: 9px; margin-top: 10px; }
.result .thumb { width: 52px; aspect-ratio: 2 / 3; border-radius: 8px; background: linear-gradient(160deg, #d97b2a 0%, #3a1506 55%, #050505 100%); flex: none; }
.result h4 { margin: 0 0 2px; font-size: 12px; font-weight: 700; }
.result .sub { color: var(--muted); font-size: 9.5px; }
.avail-group { margin-top: 8px; }
.avail-group .lbl { font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 4px; }
.avail-group .chips { display: flex; gap: 4px; flex-wrap: wrap; }
.avail-group .app-chip { padding: 3px 7px; font-size: 9px; }
.avail-group .app-chip.stream { color: var(--green); border-color: rgba(61, 220, 132, 0.35); }
.country-pill { display: inline-flex; align-items: center; gap: 5px; font-size: 10px; color: var(--muted); border: 1px solid var(--line-strong); border-radius: 999px; padding: 3px 8px; margin: 8px 0 2px; }

/* ----- Chips (site-level) ----- */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 999px; font-weight: 600; font-size: 0.95rem;
  background: var(--card); border: 1px solid var(--line-strong); color: #fff; white-space: nowrap;
}
.chip .k { color: var(--muted); font-weight: 500; }
.chip.on { border-color: var(--accent); background: var(--accent-soft); }
.chip.green { color: var(--green); border-color: rgba(61, 220, 132, 0.35); background: var(--green-soft); }
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip-row.providers .chip { background: rgba(255, 255, 255, 0.03); }

/* Flow illustration (section 2) */
.flow { display: grid; gap: 22px; align-items: center; }
@media (min-width: 900px) { .flow { grid-template-columns: 1fr auto 1fr; } }
.flow-arrow { display: flex; justify-content: center; color: var(--accent); }
.flow-arrow svg { width: 42px; height: 42px; transform: rotate(90deg); }
@media (min-width: 900px) { .flow-arrow svg { transform: none; } }
.flow-chips { display: grid; gap: 10px; }
.flow-chips .chip { justify-self: start; }

.rec-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 16px; box-shadow: var(--shadow-soft); max-width: 420px; width: 100%;
}
.rec-card .poster { aspect-ratio: 16 / 9; border-radius: 14px;
  background:
    radial-gradient(100% 80% at 85% 15%, #9b1c2e 0%, rgba(155, 28, 46, 0) 55%),
    radial-gradient(90% 70% at 15% 90%, #1a1f3a 0%, rgba(26, 31, 58, 0) 60%),
    linear-gradient(160deg, #1d1d27 0%, #0a0a0d 70%);
}
.rec-card .poster-meta { left: 14px; bottom: 12px; }
.rec-card .match { font-size: 0.85rem; padding: 6px 10px; }
.rec-card h3 { margin: 14px 0 4px; font-size: 1.3rem; }
.rec-card .meta { color: var(--muted); font-size: 0.9rem; display: flex; flex-wrap: wrap; gap: 8px; }
.rec-card .meta b { color: #fff; font-weight: 600; }
.rec-card .why { margin-top: 12px; padding: 12px 14px; border-radius: 14px; }
.rec-card .why-label { font-size: 0.72rem; }
.rec-card .why p { font-size: 0.92rem; }
.rec-card .avail { margin-top: 12px; }
.rec-card .app-chip { font-size: 0.8rem; padding: 6px 12px; }

/* Feature cards */
.cards { display: grid; gap: 18px; }
@media (min-width: 700px) { .cards { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-soft);
}
.card .icon {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent); margin-bottom: 18px;
}
.card .icon svg { width: 22px; height: 22px; }
.card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card p { color: var(--muted); margin: 0; font-size: 0.97rem; }

/* Availability panel (section 3) */
.panel {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 22px; box-shadow: var(--shadow-soft);
}
.panel-search {
  display: flex; align-items: center; gap: 10px; background: var(--surface); border: 1px solid var(--line-strong);
  border-radius: 14px; padding: 14px 16px; color: #fff; font-weight: 500;
}
.panel-search svg { width: 18px; height: 18px; color: var(--muted); flex: none; }
.panel-search .caret { width: 2px; height: 18px; background: var(--accent); border-radius: 2px; }
.panel-search .sel { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; border: 1px solid var(--line-strong); border-radius: 999px; padding: 5px 10px; font-size: 0.8rem; color: var(--muted); }
.panel-title { display: flex; justify-content: space-between; align-items: baseline; margin: 20px 0 6px; gap: 10px; flex-wrap: wrap; }
.panel-title h3 { margin: 0; font-size: 1.2rem; }
.panel-title .muted { font-size: 0.85rem; }
.avail-block { margin-top: 14px; }
.avail-block .lbl { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; color: var(--muted); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.avail-block .lbl::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--muted-2); }
.avail-block.stream .lbl::before { background: var(--green); }
.avail-block.stream .lbl { color: var(--green); }
.avail-block .chip { padding: 8px 14px; font-size: 0.88rem; }
.country-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.country-list span { font-size: 0.85rem; color: var(--muted); border: 1px solid var(--line); border-radius: 999px; padding: 5px 11px; }
.country-list span.on { color: #fff; border-color: var(--accent); background: var(--accent-soft); }

/* Movie DNA bars */
.dna { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-soft); }
.dna h3 { display: flex; align-items: center; gap: 10px; font-size: 1.15rem; margin-bottom: 18px; }
.dna h3 .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); }
.bar { display: grid; grid-template-columns: 90px 1fr 48px; gap: 12px; align-items: center; margin-bottom: 14px; font-size: 0.95rem; }
.bar:last-child { margin-bottom: 0; }
.bar .track { height: 10px; border-radius: 6px; background: rgba(255, 255, 255, 0.06); overflow: hidden; }
.bar .fill { height: 100%; width: var(--v); border-radius: 6px; background: linear-gradient(90deg, var(--accent), #ff5f68); transform-origin: left; }
.bar .val { text-align: right; font-variant-numeric: tabular-nums; color: var(--muted); font-weight: 600; }
.is-visible .bar .fill { animation: grow 1s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
@keyframes grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.learn-steps { display: grid; gap: 14px; margin: 24px 0 0; padding: 0; list-style: none; }
.learn-steps li { display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: start; }
.learn-steps .n { width: 40px; height: 40px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; font-weight: 700; }
.learn-steps strong { display: block; margin-bottom: 2px; }
.learn-steps span { color: var(--muted); font-size: 0.95rem; }

/* Phone trio (section 5) */
.phones { display: grid; gap: 28px; justify-items: center; }
@media (min-width: 760px) { .phones { grid-template-columns: repeat(3, 1fr); align-items: end; } .phones > :nth-child(2) { transform: translateY(-18px); } }
.phone-item { text-align: center; }
.phone-item p { margin: 18px 0 0; color: var(--muted); font-size: 0.95rem; }
.phone-item p strong { color: #fff; display: block; }

/* CTA band */
.cta-band { position: relative; overflow: hidden; text-align: center; padding: clamp(72px, 10vw, 130px) 0; }
.cta-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(700px 360px at 50% 110%, rgba(229, 12, 24, 0.28), transparent 65%);
}
.cta-band .container { position: relative; }
.cta-band .app-icon { width: 96px; height: 96px; border-radius: 22px; margin: 0 auto 26px; box-shadow: var(--shadow); }
.cta-band .lead { margin: 0 auto 30px; }
.cta-band .btn-row { justify-content: center; }

/* ----- Footer ----- */
.site-footer { border-top: 1px solid var(--line); background: var(--surface); padding: 56px 0 32px; color: var(--muted); font-size: 0.92rem; }
.footer-grid { display: grid; gap: 32px; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-brand img { width: 110px; height: auto; aspect-ratio: 246 / 86; margin-bottom: 14px; }
.footer-brand p { max-width: 32ch; }
.site-footer h4 { color: #fff; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.site-footer ul a { color: var(--muted); }
.site-footer ul a:hover { color: #fff; }
.footer-bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); display: grid; gap: 10px; font-size: 0.8rem; color: var(--muted-2); }
.footer-bottom p { margin: 0; }
@media (min-width: 760px) { .footer-bottom { grid-template-columns: 1fr auto; align-items: center; } }

/* ----- Content pages ----- */
.page-hero { padding: clamp(48px, 7vw, 88px) 0 clamp(28px, 4vw, 48px); position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(600px 300px at 50% -10%, rgba(229, 12, 24, 0.18), transparent 65%); }
.page-hero .container { position: relative; }
.page-hero .eyebrow { color: var(--accent); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; display: block; margin-bottom: 14px; }
.prose { max-width: 780px; }
.prose h2 { font-size: 1.6rem; margin-top: 2.2em; }
.prose h3 { font-size: 1.2rem; margin-top: 1.8em; }
.prose p, .prose li { color: #d6d6d6; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: 0.5em; }
.prose table { width: 100%; border-collapse: collapse; font-size: 0.95rem; margin: 1em 0 1.5em; }
.prose th, .prose td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { color: #fff; font-weight: 600; }
.prose td { color: #d6d6d6; }
.table-wrap { overflow-x: auto; }
.notice {
  background: var(--card); border: 1px solid var(--line-strong); border-left: 3px solid var(--accent);
  border-radius: 12px; padding: 14px 18px; margin: 1.4em 0; color: #d6d6d6; font-size: 0.95rem;
}
.notice.review { border-left-color: #f2b84b; }
.notice strong { color: #fff; }
.toc { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; margin: 1.5em 0 2em; }
.toc strong { display: block; color: #fff; margin-bottom: 10px; }
.toc ol { margin: 0; padding-left: 1.2em; columns: 2; column-gap: 24px; }
.toc li { margin-bottom: 6px; font-size: 0.93rem; }
.toc a { text-decoration: none; color: var(--muted); }
.toc a:hover { color: #fff; }
@media (max-width: 600px) { .toc ol { columns: 1; } }

/* Steps (how it works) */
.steps { display: grid; gap: 18px; counter-reset: step; }
.step {
  display: grid; gap: 18px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px; box-shadow: var(--shadow-soft);
}
@media (min-width: 760px) { .step { grid-template-columns: 72px 1fr auto; align-items: start; } }
.step .num { font-family: var(--display); font-size: 3rem; line-height: 1; color: var(--accent); letter-spacing: 0.02em; }
.step h3 { margin-bottom: 8px; font-size: 1.3rem; }
.step p { color: var(--muted); margin: 0; }
.step .chip-row { margin-top: 14px; }
.step .chip-row .chip { padding: 7px 13px; font-size: 0.85rem; }
.principle { display: grid; gap: 18px; }
@media (min-width: 760px) { .principle { grid-template-columns: repeat(2, 1fr); } }

/* FAQ */
.faq-list { max-width: 820px; display: grid; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 600; font-size: 1.05rem;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--line-strong); color: var(--muted); font-weight: 500; font-size: 1.2rem; transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); color: #fff; }
.faq-item .answer { padding: 0 24px 22px; color: #d6d6d6; }
.faq-item .answer p:last-child { margin-bottom: 0; }

/* Support */
.support-grid { display: grid; gap: 18px; }
@media (min-width: 760px) { .support-grid { grid-template-columns: repeat(2, 1fr); } }
.support-grid .card ol, .support-grid .card ul { color: var(--muted); padding-left: 1.2em; margin: 0; font-size: 0.95rem; }
.support-grid .card li { margin-bottom: 6px; }
.support-grid .card li:last-child { margin-bottom: 0; }

/* Contact form */
.form { display: grid; gap: 16px; max-width: 640px; }
.form label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 6px; }
.form input, .form textarea, .form select {
  width: 100%; font: inherit; color: #fff; background: var(--card); border: 1px solid var(--line-strong);
  border-radius: 12px; padding: 13px 14px; transition: border-color 0.15s ease;
}
.form input:focus, .form textarea:focus, .form select:focus { border-color: var(--accent); outline: none; }
.form textarea { min-height: 160px; resize: vertical; }
.form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form .row { display: grid; gap: 16px; }
@media (min-width: 600px) { .form .row { grid-template-columns: 1fr 1fr; } }
.form-status { display: none; border-radius: 12px; padding: 14px 16px; font-weight: 500; }
.form-status.ok { display: block; background: var(--green-soft); border: 1px solid rgba(61, 220, 132, 0.35); color: var(--green); }
.form-status.err { display: block; background: var(--accent-soft); border: 1px solid rgba(229, 12, 24, 0.4); color: #ff8a90; }
.contact-aside .card { margin-bottom: 16px; }
.contact-aside .card p { margin: 0; }
.contact-aside .card a { color: #fff; }

/* 404 */
.err-page { min-height: calc(100vh - var(--header-h)); display: grid; place-items: center; text-align: center; padding: 60px 20px; }
.err-page .display { font-size: clamp(6rem, 22vw, 12rem); color: var(--accent); line-height: 0.9; }

/* ----- Reveal animation ----- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .is-visible .bar .fill { animation: none; }
}

/* Utilities */
.mt-0 { margin-top: 0; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; } .mt-6 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.center { text-align: center; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
