/* alleen voor signup flow
.signup .signup-stepper{display:flex;gap:16px;align-items:center;justify-content:center;padding:24px}
.signup .brand{font-weight:1200;font-size:42px}
.signup .pills{display:flex;gap:8px}
.signup .pill{padding:6px 12px;border-radius:9999px;background:#222;color:#999;font-weight:700}
.signup .pill.active{background:#333;color:#fff;box-shadow:0 0 0 2px #444 inset}
.signup .signup-container{max-width:560px;margin:0 auto;padding:24px}
.signup .actions{display:flex;justify-content:flex-end;gap:12px;margin-top:16px}
.signup .signup-plan{background:#121214;border:1px solid #2a2a2a;border-radius:16px;padding:24px}
*/ 
/* ====== Base / theming ====== */
:root {
  --bg: #0b0b0c;
  --panel: #101113;
  --fg: #fafafa;
  --muted: #c6c7c9;
  --accent: #e50914; /* primair rood */
  --outline: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ====== Header ====== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 30;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: saturate(120%) blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.brand {
  font-weight: 800;
  letter-spacing: 0.5px;
  font-size: 35px;
  text-transform: lowercase;
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* ====== Buttons ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.06s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  padding: 0.65rem 1.1rem;
  border-radius: 8px;
  border: 1px solid transparent;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}

.pill {
  border-radius: 9999px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 18px rgba(229, 9, 20, 0.28);
}
.btn-primary:hover {
  box-shadow: 0 10px 24px rgba(229, 9, 20, 0.38);
  opacity: 0.95;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn-lg {
  padding: 0.95rem 1.5rem;
  font-size: 1.05rem;
}

/* ====== HERO ====== */
.hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  overflow: visible;
  padding-top: 300px; /* ruimte voor fixed header */
}

/* Eén grote achtergrondafbeelding + donkere gradient */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.85) 100%),
    url("/static/posters/hero.jpg") center center / cover no-repeat;
  z-index: 0;
}

/* Extra overlay (lichte vignette) */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  height: 25vh;
  background: radial-gradient(circle at 50% 40%, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.75) 80%);
  z-index: 1;
}

/* Tekstcontainer */
.hero-inner {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 900px;
  padding: 0 1rem;
  transform: translateY(200px);
}

/* Titel (Videoland-look: groot, zwaar, tight leading) */
.display {
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.15;
  font-size: clamp(28px, 4.5vw, 52px);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
  margin: 0 0 18px;
  transform: translateY(20px);
}

/* Subtitel / kicker */
.kicker {
  color: var(--muted);
  font-size: clamp(16px, 2.4vw, 18px);
  line-height: 1.6;
  margin: 0 auto 22px;
  max-width: 800px;
}

/* CTA rij onder de titel */
.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 6px 0 24px;
}

/* mini note onder knoppen */
.mini-note {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 10px;
}
.mini-note .link {
  color: #d1e7ff;
  text-decoration: underline;
}
.mini-note .link:hover {
  opacity: 0.85;
}

/* ====== Responsive header op mobiel ====== */
@media (max-width: 640px) {
  .site-header {
    padding: 0 12px;
    height: 64px;
  }
  .nav .btn-ghost {
    display: none;
  }
  .btn-lg {
    padding: 0.85rem 1.2rem;
  }
  .display {
    font-size: clamp(28px, 8vw, 48px);
  }
}

/* ===== Full-bleed rail (Videoland-stijl) ===== */
.rail {
  /* full-width: center de sectie en trek 'm scherm-breed */
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg); /* of zelfde als hero-ondergrond */
  padding: 48px 0 40px;
  margin-top: 30vh; /* zorgt dat je eerst scrollt na de hero */
}

.rail-head {
  max-width: 1100px;
  margin: 0 auto 12px;
  padding: 0 16px;
  text-align: center;
}
.rail-head h2 {
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: clamp(22px, 3.2vw, 36px);
  margin: 0 0 6px;
}
.rail-head .badge {
  background: var(--accent);
  color: #fff;
  padding: .05em .35em;
  border-radius: 8px;
}
.rail-kicker {
  color: var(--muted);
  margin: 0;
}

.rail-viewport {
  overflow: hidden;
  width: 100%;
}

.rail-track {
  display: inline-flex;         /* één rij */
  gap: 14px;
  align-items: center;
  will-change: transform;
  transition: transform 0.1s linear;
}

.rail-item {
  display: inline-block;
  flex: 0 0 auto;
}

.rail-item img {
  display: block;
  height: 220px;                /* ⇦ pas aan naar 170–260px naar smaak */
  width: auto;                  /* behoud verhoudingen */
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.06);
  background: #151518;
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
  transition: transform .15s ease, box-shadow .2s ease;
}
.rail-item img:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,.35);
}

/* Mobiel afmetingen wat kleiner */
@media (max-width: 720px) {
  .rail-item img { height: 160px; }
}

/* ==== SUBSCRIPTION / PLANS ==== */
.plans{
  width:100vw; left:50%; transform:translateX(-50%);
  position:relative; background:var(--bg); padding:56px 16px 48px; margin-top:40px;
}
.plans-head{max-width:1100px; margin:0 auto 20px; text-align:center}
.plans-head h2{
  font-weight:800; letter-spacing:-.01em; font-size:clamp(22px,3.2vw,40px); margin:0 0 6px;
}
.plans-head .badge{background:var(--accent); color:#fff; padding:.05em .35em; border-radius:8px}
.plans-kicker{color:var(--muted); margin:0}

.plans-grid{
  max-width:900px; margin:22px auto 0; display:grid; place-items:center;
}

.plan-card{
  width:min(520px, 92vw);
  background:#0f1012; border:1px solid rgba(255,255,255,.12);
  border-radius:14px; overflow:hidden; box-shadow:0 14px 28px rgba(0,0,0,.28);
}
.plan-featured{outline:2px solid var(--accent);}

.plan-top{padding:18px 20px 14px; border-bottom:1px solid rgba(255,255,255,.08)}
.plan-name{margin:0 0 4px; font-size:1.6rem; font-weight:800}
.plan-price{color:#ddd}
.plan-price .amount{font-weight:800}
.trial-pill{
  display:inline-block; margin-top:10px; font-size:.9rem;
  background:#2a2b2f; color:#fff; border:1px solid rgba(255,255,255,.18);
  padding:.45rem .7rem; border-radius:8px;
}

.plan-features{list-style:none; margin:0; padding:14px 20px 6px}
.plan-features li{
  display:flex; align-items:center; gap:10px; padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,.06); color:#e9e9ea;
}
.plan-features li:last-child{border-bottom:none}

/* check / cross */
.plan-features li.ok::before{
  content:""; width:18px; height:18px; border-radius:50%;
  background: radial-gradient(circle at 50% 50%, #2fe277, #1fb861);
  display:inline-block; flex:0 0 18px;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24"><path fill="white" d="M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z"/></svg>') no-repeat center / 14px 14px;
}
.plan-features li.no::before{
  content:""; width:18px; height:18px; border-radius:50%;
  background:#2a2b2f; border:1px solid rgba(255,255,255,.25);
  display:inline-block; flex:0 0 18px;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24"><path fill="white" d="M19 6.4 17.6 5 12 10.6 6.4 5 5 6.4 10.6 12 5 17.6 6.4 19 12 13.4 17.6 19 19 17.6 13.4 12z"/></svg>') no-repeat center / 12px 12px;
}

.plan-cta{padding:16px 20px 20px; display:flex; justify-content:center}

.fineprint{
  color:var(--muted); text-align:center; max-width:960px; margin:18px auto 0; line-height:1.6;
}

/* klaar voor toekomst: meerdere plannen naast elkaar */
@media (min-width: 980px){
  .plans-grid{
    max-width:1200px;
    grid-template-columns: repeat( auto-fit, minmax(280px, 1fr) );
    gap:20px;
  }
  .plan-card{width:auto}
}

/* ===== Features (Videoland-stijl layout) ===== */
.feature {
  background: var(--bg);
  padding: 100px 8vw;
  position: relative;
}

/* grid voor tekst + afbeelding */
.feat-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  align-items: center;
  justify-items: stretch;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

/* tekst */
.feat-copy {
  color: #fff;
  text-align: left;
  justify-self: start;
}

.feat-title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .5rem;
    font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
  margin: 0 0 16px;
}

.badge {
  background: var(--accent);
  color: #fff;
  padding: 0.05em 0.35em;
  border-radius: 8px;
}

.feat-kicker {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 600px;
}

/* afbeelding */
.feat-img {
  display: flex;
  justify-self: flex-end;
  justify-content: flex-end;
}

.feat-img img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.35));
}

/* tweede sectie (afbeelding links, tekst rechts) */
.feature.alt .feat-grid {
  grid-template-columns: 1fr 1fr;
}
.feature.alt .feat-copy {
  order: 2;
  text-align: left;
}
.feature.alt .feat-img {
  order: 1;
  justify-content: flex-start;
}

/* derde sectie (alleen tekst centraal) */
.feature.center {
  background: #0d0e10;
  padding: 120px 16px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.feature.center .feat-grid {
  display: block;
}
.feature.center .feat-title {
  font-weight: 800;
}
.feature.center .feat-kicker {
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto;
}

/* mobiel: stack onder elkaar */
@media (max-width: 900px) {
  .feat-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .feat-copy {
    text-align: center;
  }
  .feat-img {
    justify-content: center;
  }
  .feature.alt .feat-copy {
    order: 1;
  }
  .feature.alt .feat-img {
    order: 2;
  }
}

/* ===== FAQ / Accordion (gecentreerd, compact) ===== */
.faq{
  background:#0d0e10;
  padding:96px 16px;                 /* niet fullscreen hoog */
}

.faq-title{
  text-align:center;
  font-weight:800;
  letter-spacing:-.01em;
  font-size:clamp(24px,3.6vw,40px);
  margin:0 0 28px;
  color:#fff;
}

/* Binnenkolom: content gecentreerd en smal */
.accordion{
  width:100%;
  max-width:780px;                   /* ✅ centrale kolom */
  margin:0 auto;
  text-align:left;
}

/* Kaarten */
.acc-item{
  background:#141518;
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 12px 26px rgba(0,0,0,.28);
  transition:transform .2s ease;
}
.acc-item + .acc-item{ margin-top:14px; }
.acc-item:hover{ transform:translateY(-1px); }

/* Kop (button) */
.acc-head{
  width:100%;
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding:18px 20px;
  background:transparent;
  color:#fff;
  font-weight:800; font-size:1rem;
  border:0; cursor:pointer; text-align:left;
}
.acc-head:hover{ background:#191a1d; }
.acc-head:focus-visible{ outline:2px solid rgba(229,9,20,.6); outline-offset:2px; border-radius:8px; }
.acc-head .label{ flex:1; }
.acc-head .chev{
  width:36px; height:36px; border-radius:999px;
  display:grid; place-items:center;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.04);
  transition:transform .25s ease, background .2s ease;
  font-size:18px; line-height:1;
}
.acc-item.open .acc-head .chev{
  transform:rotate(180deg);
  background:rgba(255,255,255,.08);
}

/* Inhoud met smooth open/dicht */
.acc-body{
  max-height:0; overflow:hidden;
  padding:0 20px;
  transition:max-height .28s ease, padding .28s ease;
  color:#e9e9ea; line-height:1.7;
}
.acc-item.open .acc-body{
  padding:12px 20px 18px;           /* pas in JS max-height aan */
}
.acc-body p{ margin:0 0 12px; }

/* Mobile tweaks */
@media (max-width:640px){
  .accordion{ max-width:92%; }
  .acc-head{ padding:16px 16px; }
  .acc-item.open .acc-body{ padding:10px 16px 16px; }
}

/* ===== Pricing (alleen signup) ===== */
.signup .pricing{padding:48px 16px 80px; text-align:center}
.signup .pricing-title{
  font-weight:800; letter-spacing:-.02em;
  font-size:clamp(24px,4.2vw,44px); margin:8px 0 8px;
}
.signup .pricing-sub{color:#c6c7c9; margin:0 0 28px}

.signup .plans{
  max-width:1100px; margin:0 auto;
  display:grid; gap:20px;
  grid-template-columns: repeat(auto-fit,minmax(270px,1fr));
  align-items:stretch;
}

.signup .plan-card{
  background:#1a1b1e; border:1px solid rgba(255,255,255,.08);
  border-radius:16px; padding:18px;
  display:flex; flex-direction:column; gap:16px;
  transition:transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.signup .plan-card:hover{ transform:translateY(-2px); box-shadow:0 18px 40px rgba(0,0,0,.35) }

.signup .plan-card--featured{
  border:1.5px solid rgba(229,9,20,.55);
  box-shadow:0 20px 46px rgba(229,9,20,.12);
}

.signup .plan-head{ text-align:left; background:#2a2b2f; border-radius:12px; padding:16px }
.signup .plan-name{ margin:0; font-weight:800; font-size:20px }
.signup .tag{ font-size:.75rem; font-weight:800; padding:.18rem .45rem; border-radius:6px; background:#333; margin-left:.4rem }

.signup .plan-price{ margin-top:6px; font-size:14px; color:#c6c7c9 }
.signup .plan-price span{ font-size:22px; color:#fff; font-weight:800; margin-right:6px }

.signup .plan-ribbon{
  display:inline-block; align-self:flex-start;
  padding:.45rem .7rem; border-radius:10px;
  background:#fff; color:#111; font-weight:800; font-size:.9rem;
}
.signup .plan-ribbon.muted{ background:#2a2b2f; color:#c6c7c9 }

.signup .plan-features{ list-style:none; padding:0; margin:0; text-align:left; display:grid; gap:10px }
.signup .plan-features li{ display:flex; align-items:center; gap:10px; }
.signup .plan-features li::before{
  content:""; width:22px; height:22px; border-radius:50%;
  border:1px solid rgba(255,255,255,.18); display:inline-grid; place-items:center;
  font-size:14px; background:rgba(255,255,255,.04);
}
.signup .plan-features li.ok::before{ content:"✓"; color:#3ad07a; border-color:rgba(58,208,122,.35) }
.signup .plan-features li.no::before{ content:"✕"; color:#d36c6c; border-color:rgba(211,108,108,.35) }

.signup .plan-cta{ margin-top:6px; width:100%; }
.signup .plan-note{ color:#8b8c8f; text-align:left }

/* Buttons fallback (als je ze nog niet had) */
.signup .btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  font-weight:800; text-decoration:none; cursor:pointer; border-radius:9999px;
  border:1px solid transparent; padding:.9rem 1.25rem; transition:transform .06s ease, box-shadow .2s ease, opacity .2s ease}
.signup .btn-primary{background:#e50914;color:#fff;box-shadow:0 10px 24px rgba(229,9,20,.3)}
.signup .btn-primary:hover{opacity:.96;box-shadow:0 14px 30px rgba(229,9,20,.4)}
.signup .btn-ghost{background:rgba(255,255,255,.08);color:#fff;border:1px solid rgba(255,255,255,.14)}
.signup .btn-ghost[disabled]{opacity:.5;cursor:not-allowed}


/* Payment CSS */
.payment-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 16px;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
    margin-top: 12px;
    cursor: pointer;
    transition: background 0.2s ease, border 0.2s ease;
}

.payment-option:hover {
    background: #161616;
    border-color: #444;
}