/* Zolaro v2 — "Midnight Marquee": a cinematic dark streaming hub.
   Near-black canvas, poster rows that hover-lift, a crimson CTA accent,
   and a bold condensed display face for marquee-scale headlines. */

:root {
  --bg: #0a0a0d;
  --bg-alt: #101014;
  --surface: #17171d;
  --surface-2: #1f1f27;
  --border: #2a2a33;
  --text: #f3f3f0;
  --muted: #a3a3ad;
  --accent: #e6293d;
  --accent-2: #f5a623;
  --accent-glow: rgba(230, 41, 61, 0.35);
  --radius: 10px;
  --radius-lg: 18px;
  --header-h: 76px;
  --font-display: 'Bebas Neue', 'Anton', sans-serif;
  --font-body: 'Manrope', -apple-system, sans-serif;
  --shadow-card: 0 20px 40px -20px rgba(0, 0, 0, 0.65);
}

* { box-sizing: border-box; }
html, body { overflow-x: hidden; }
html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin: 0 0 0.6rem;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: 1.25rem; text-transform: none; font-family: var(--font-body); font-weight: 800; }
p { margin: 0 0 1rem; color: var(--muted); }

.container { width: min(1200px, 92vw); margin-inline: auto; }
.container-narrow { width: min(760px, 92vw); margin-inline: auto; }

section { padding: 5rem 0; position: relative; }
.bg-alt { background: var(--bg-alt); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  color: var(--accent-2);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.section-head { max-width: 640px; margin-bottom: 2.75rem; }
.section-head p { font-size: 1.05rem; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 24px -8px var(--accent-glow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -10px var(--accent-glow); }
.btn-outline { background: transparent; border-color: var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--accent-2); color: var(--accent-2); }
.btn-lg { padding: 1.05rem 2.2rem; font-size: 1.02rem; }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.85rem; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ── Header / Nav ────────────────────────────────────── */
.site-header {
  direction: ltr;
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--header-h);
  display: flex; align-items: center;
  background: linear-gradient(to bottom, rgba(10,10,13,0.95), rgba(10,10,13,0));
  backdrop-filter: blur(6px);
}
.site-header.solid { background: rgba(10,10,13,0.97); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; width: min(1200px, 92vw); margin-inline: auto; }
.logo img { height: 30px; }
.site-nav-desktop { display: flex; align-items: center; gap: 2rem; }
.site-nav-desktop > a:not(.btn) { font-weight: 600; font-size: 0.92rem; color: var(--text); opacity: 0.85; }
.site-nav-desktop > a:not(.btn):hover { opacity: 1; color: var(--accent-2); }
/* Language toggle switch — a sliding pill track, not a pair of separate buttons */
.lang-toggle {
  position: relative;
  display: inline-flex;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
}
.lang-toggle-thumb {
  position: absolute;
  top: 3px; left: 3px;
  width: 34px; height: calc(100% - 6px);
  background: var(--accent-2);
  border-radius: 999px;
  transition: transform 0.25s ease;
  z-index: 0;
}
.lang-toggle-opt {
  position: relative;
  z-index: 1;
  width: 34px;
  text-align: center;
  padding: 0.32rem 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--muted);
  transition: color 0.25s ease;
}
.lang-toggle-opt.active { color: var(--bg); }

.nav-toggle { display: none; }
.header-controls-mobile { display: none; align-items: center; gap: 0.85rem; }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 0.4rem; }
.nav-burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; }
.site-nav { display: none; }

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--bg) 2%, rgba(10,10,13,0.35) 45%, rgba(10,10,13,0.15) 100%),
    linear-gradient(to right, rgba(10,10,13,0.9) 0%, rgba(10,10,13,0.35) 55%, rgba(10,10,13,0.55) 100%);
}
.hero-inner { position: relative; z-index: 1; width: min(1200px, 92vw); margin-inline: auto; max-width: 640px; }
.hero-inner .eyebrow { color: var(--accent-2); }
.hero-inner h1 { text-shadow: 0 4px 30px rgba(0,0,0,0.6); }
.hero-sub { font-size: 1.1rem; color: #d8d8de; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* ── Content rows (poster scroller) ─────────────────────── */
.row-scroller { display: flex; gap: 1rem; overflow-x: auto; padding: 0.5rem 0 1.5rem; scroll-snap-type: x proximity; }
.row-scroller::-webkit-scrollbar { height: 6px; }
.row-scroller::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 6px; }
.poster-card {
  flex: 0 0 auto; width: 190px; aspect-ratio: 2/3;
  border-radius: var(--radius); overflow: hidden;
  scroll-snap-align: start;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}
.poster-card:hover { transform: translateY(-6px) scale(1.03); z-index: 2; }
.poster-card img { width: 100%; height: 100%; object-fit: cover; }
.poster-card .tag {
  position: absolute; left: 0.6rem; bottom: 0.6rem;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  background: rgba(10,10,13,0.75); color: var(--accent-2);
  padding: 0.25rem 0.55rem; border-radius: 999px;
}

/* ── Feature / About cards ──────────────────────────────── */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.feature-card, .value-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.75rem; transition: border-color 0.25s ease, transform 0.25s ease;
}
.feature-card:hover, .value-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.feature-ico {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--accent-glow); color: var(--accent-2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.feature-ico svg { width: 22px; height: 22px; }
.feature-card h3, .value-card h3 { margin-bottom: 0.5rem; }
.feature-card p, .value-card p { margin: 0; font-size: 0.94rem; }

/* ── Steps ───────────────────────────────────────────────── */
.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.step-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; }
.step-card .num { font-family: var(--font-display); font-size: 2.4rem; color: var(--accent); opacity: 0.7; }
.step-card h3 { margin: 0.4rem 0 0.5rem; }
.step-card p { margin: 0; font-size: 0.94rem; }

/* ── Pricing ─────────────────────────────────────────────── */
.plan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-bottom: 1.5rem; }
.plan-card {
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 2rem; text-align: center;
}
.plan-card .eyebrow.solo { display: block; margin-bottom: 0.75rem; }
.plan-price { font-family: var(--font-display); font-size: 2.6rem; color: var(--text); margin: 0.4rem 0; }
.plan-trial { font-size: 0.88rem; margin-bottom: 1.25rem; }
.plan-features { list-style: none; padding: 0; margin: 0 0 1.5rem; text-align: left; }
.plan-features li { padding: 0.5rem 0; border-top: 1px solid var(--border); font-size: 0.92rem; color: var(--text); }
.plan-features li:first-child { border-top: 0; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { display: grid; gap: 0.75rem; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem 1.25rem; }
.faq-item summary { cursor: pointer; font-weight: 700; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-family: var(--font-display); font-size: 1.4rem; color: var(--accent-2); }
.faq-item[open] summary::after { content: '\2212'; }
.faq-body { padding-top: 0.75rem; font-size: 0.94rem; color: var(--muted); }

/* ── CTA band ────────────────────────────────────────────── */
.cta-band { background: radial-gradient(circle at 50% 0%, rgba(230,41,61,0.18), transparent 60%), var(--bg-alt); text-align: center; }
.cta-band .container { max-width: 640px; }

/* ── Contact cards ───────────────────────────────────────── */
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; }
.contact-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; }
.contact-card h3 { margin-bottom: 0.4rem; }
.contact-hours { color: var(--accent-2); font-weight: 700; }
.contact-form, .form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.25rem; }
.form-card.narrow { max-width: 460px; margin-inline: auto; }
.form-section-head { margin-bottom: 1.5rem; }

/* ── Forms (mandatory) ──────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--muted); }
.form-group input, .form-group textarea {
  width: 100%; padding: 0.75rem 0.95rem;
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius);
  color: var(--text); font-family: var(--font-body); font-size: 0.95rem;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent-2); }
.form-group textarea { min-height: 130px; resize: vertical; }
.contact-form h3, .form-card h3 { margin-bottom: 1.5rem; }
.signin-card button, .form-card button { margin-top: 0.5rem; }
@media (max-width: 600px) { .form-grid, .form-row { grid-template-columns: 1fr; } }

.error-msg, .errorMsg { display: none; color: #ff7a70; font-size: 0.82rem; margin-top: 0.35rem; }
.form-success, .form-msg.ok, .successMsg { color: var(--accent-2); font-weight: 700; margin-top: 1rem; }
.form-msg.err { color: #ff7a70; font-weight: 700; margin-top: 1rem; }
.form-disclaimer { color: var(--muted); font-size: 0.8rem; margin-top: 1rem; }

.signin-wrap { padding-top: calc(var(--header-h) + 4rem); padding-bottom: 6rem; min-height: 100vh; display: flex; align-items: center; background: var(--bg-alt); }
.signin-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; width: min(440px, 92vw); margin-inline: auto; text-align: center; }
.signin-card h1 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.signin-card > p { font-size: 0.9rem; }
.phone-row { display: flex; gap: 0.5rem; }
.phone-prefix {
  display: flex; align-items: center; gap: 0.4rem;
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 0 0.75rem; white-space: nowrap; font-size: 0.9rem; color: var(--text);
  flex-shrink: 0;
}
.phone-row input { flex: 1; min-width: 0; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand .logo img { height: 26px; margin-bottom: 1rem; }
.footer-entity { font-size: 0.85rem; line-height: 1.8; }
.footer-col h4 { font-family: var(--font-body); text-transform: none; font-size: 0.85rem; letter-spacing: 0.04em; color: var(--accent-2); margin-bottom: 1rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
.footer-col a { font-size: 0.9rem; color: var(--muted); }
.footer-col a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; font-size: 0.8rem; color: var(--muted); }

/* ── Legal Pages CSS (guide-mandated) ───────────────────── */
/* .page-hero above already reserves space for the fixed header, so
   .legals-wrap / .legals must NOT add a second header-height offset here -
   they only need a small breathing gap below the page-hero title. */
.legals-wrap { padding: 0 0 3.5rem; }
.legals { padding-top: 0.5rem; padding-bottom: 5rem; }
.legals .container { width: min(840px, 92vw); margin-inline: auto; }
.legals h1 { display: none; }
.legals h6 {
  font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--accent-2); margin: 2rem 0 0.5rem;
  font-family: var(--font-body);
}
.legals p { margin-bottom: 0.85rem; line-height: 1.75; color: var(--muted); }
.legals ul { margin: 0.5rem 0 1rem; padding-inline-start: 1.2rem; color: var(--muted); }
.legals li { margin-bottom: 0.4rem; line-height: 1.7; }
.page-hero { padding-top: calc(var(--header-h) + 3.5rem); padding-bottom: 1rem; }
.page-hero h1 { margin-bottom: 0.5rem; }
.section-tight-top { padding-top: 1.5rem; }

/* ── Scroll reveal ───────────────────────────────────────── */
html.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Mobile Nav ──────────────────────────────────────────── */
@media (max-width: 860px) {
  .site-nav-desktop { display: none; }
  .header-controls-mobile { display: flex; }
  .nav-burger { display: flex; }
  .site-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    z-index: 800;
    background: var(--bg-alt); border-bottom: 1px solid var(--border);
    padding: 1rem 6vw;
    display: flex; flex-direction: column; gap: 0.9rem;
    transform: translateY(-110%); visibility: hidden;
    transition: transform 0.25s ease, visibility 0.25s ease;
  }
  .site-nav a:not(.btn) { padding: 0.6rem 0; }
  .site-nav .btn { width: 100%; justify-content: center; }
  .nav-toggle:checked ~ .site-nav { transform: translateY(0); visibility: visible; }
  .card-grid, .steps-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  section { padding: 3.5rem 0; }
  .hero { min-height: 80vh; }
}
