/* ============================================================
   Landing Kit — component & design-systeem
   Visuele referentie: superpower.com (getearde tokens).
   Full-bleed fotografie · zware cursieve display-type · pill-CTA's ·
   licht systeem met oranje accent · scroll-reveals.

   Font: referentie = "NB International Pro" (licensed, Neubau).
   Default hieronder = Archivo (gratis, nabije zware grotesk).
   Vervang --font door de echte NB-licentie als je die hebt.

   Alles draait op tokens — herkleuren/hermerken = alleen :root aanpassen.
   ============================================================ */

:root {
  /* Brand tokens (Superpower-geteard) */
  --brand:      #FC5F2B;   /* oranje — primaire merkkleur / accenten */
  --brand-2:    #2FA86C;   /* groen — secundair / succes */
  --ink:        #111111;   /* near-black — knoppen, koppen op licht */
  --text:       #18181B;   /* bodytekst */
  --muted:      #6b6b70;   /* subtiele tekst */
  --bg:         #ffffff;   /* pagina-achtergrond */
  --paper:      #FFEFEA;   /* zachte peach sectie-achtergrond */
  --line:       #ececec;   /* randen op licht */
  --ink-soft:   #f5f5f4;   /* lichtgrijze fill */

  /* Op donkere/foto-secties */
  --on-dark:        #ffffff;
  --on-dark-muted:  rgba(255,255,255,.82);

  /* Vorm */
  --radius:     16px;      /* cards */
  --radius-lg:  28px;      /* grote panelen */
  --pill:       999px;     /* knoppen/inputs — volledig rond */
  --unit:       4px;

  /* Type */
  --font: "Archivo", "NB International Pro", Arial, Helvetica, sans-serif;
  --container: 1120px;

  /* Ritme */
  --section-y: clamp(56px, 11vw, 120px);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: var(--section-y) 0; }
.section--paper { background: var(--paper); }
.section--ink   { background: var(--ink); color: var(--on-dark); }
.section--soft  { background: var(--ink-soft); }
.narrow { max-width: 640px; }

/* ---------- Type ---------- */
.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--brand);
  margin: 0 0 14px;
}
.eyebrow--light { color: var(--on-dark-muted); }

h1, h2, h3, .display { margin: 0; letter-spacing: -0.02em; line-height: 1.05; }

/* Signature display: zwaar, cursief, uppercase, oversized */
.display {
  font-weight: 900; font-style: italic; text-transform: uppercase;
  line-height: .92; letter-spacing: -0.015em;
  font-size: clamp(38px, 10.5vw, 88px);
}
h2.title, .title {
  font-weight: 800; font-size: clamp(28px, 6.4vw, 46px);
  line-height: 1.02; letter-spacing: -0.02em;
}
h3 { font-weight: 750; font-size: clamp(19px, 3.4vw, 24px); }

p { margin: 0; }
.lead { font-size: clamp(17px, 2.6vw, 21px); color: var(--muted); }
.on-dark .lead, .section--ink .lead { color: var(--on-dark-muted); }
.muted { color: var(--muted); }

/* ---------- Buttons (pill) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 700; font-size: 15px; line-height: 1;
  padding: 15px 24px; border-radius: var(--pill); border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: transform .12s ease, background .15s ease, opacity .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary  { background: var(--ink); color: #fff; }
.btn--brand    { background: var(--brand); color: #fff; }
.btn--ghost    { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--on-photo { background: #fff; color: var(--ink); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn--block { display: flex; width: 100%; }
.btn--lg { padding: 17px 28px; font-size: 16px; }
.btn--sm { padding: 10px 16px; font-size: 13px; }

/* ---------- Top bar + nav (over de hero) ---------- */
.topbar {
  position: relative; z-index: 3; text-align: center;
  background: var(--ink); color: #fff; font-size: 13px; font-weight: 600;
  padding: 10px 16px;
}
.nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 3;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
}
.nav__logo { font-weight: 800; font-size: 22px; letter-spacing: -0.03em; color: #fff; text-decoration: none; }
.nav__right { display: flex; align-items: center; gap: 12px; }

/* ---------- HERO: full-bleed foto ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  background: #1b1b1b center/cover no-repeat;
  color: var(--on-dark); overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,.82) 0%, rgba(0,0,0,.35) 42%, rgba(0,0,0,.12) 68%, rgba(0,0,0,.35) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding: 0 20px 40px; }
.hero__inner .container { padding: 0; }
.hero .display { text-shadow: 0 2px 30px rgba(0,0,0,.35); }
.hero__sub { margin: 18px 0 24px; max-width: 34ch; font-size: clamp(16px, 4vw, 19px); color: var(--on-dark-muted); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 10px; }

/* Variant: tekst gecentreerd i.p.v. linksonder */
.hero--center { align-items: center; text-align: center; }
.hero--center .hero__sub { margin-left: auto; margin-right: auto; }
.hero--center .hero__cta { justify-content: center; }

/* ---------- Stat strip ---------- */
.statstrip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.stat { text-align: center; }
.stat b { display: block; font-size: clamp(22px, 6vw, 30px); font-weight: 800; letter-spacing: -0.02em; }
.stat span { font-size: 12px; color: var(--muted); }
.section--ink .stat span, .on-dark .stat span { color: var(--on-dark-muted); }
.stat b .accent, .accent { color: var(--brand); }

/* Stat strip los onder de hero, op licht */
.stripbar { background: var(--bg); border-bottom: 1px solid var(--line); padding: 20px 0; }

/* ---------- Logo bar ---------- */
.logobar { text-align: center; }
.logobar .row { display: flex; flex-wrap: wrap; gap: 22px; justify-content: center; align-items: center; margin-top: 14px; }
.logobar .row span { font-weight: 800; font-size: 17px; color: #b4b4b8; letter-spacing: -0.01em; }

/* ---------- Full-bleed foto-paneel met overlay-tekst ---------- */
.panel {
  position: relative; min-height: 78svh; display: flex; align-items: flex-end;
  background: #1b1b1b center/cover no-repeat; color: var(--on-dark); overflow: hidden;
}
.panel::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.2) 55%, rgba(0,0,0,.1) 100%);
}
.panel__inner { position: relative; z-index: 2; padding: 0 20px 44px; width: 100%; }
.panel--top { align-items: flex-start; }
.panel--top .panel__inner { padding: 96px 20px 0; }

/* ---------- Cards / steps / features ---------- */
.card {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px;
}
.grid { display: grid; gap: 14px; }

.step { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.step:last-child { border-bottom: 0; }
.step .n {
  flex: 0 0 34px; height: 34px; border-radius: var(--pill);
  background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
}
.step h3 { font-size: 17px; }
.step p { color: var(--muted); font-size: 14px; margin-top: 3px; }

/* ---------- Value anchor ---------- */
.anchor { text-align: center; }
.anchor .big { font-size: clamp(34px, 9vw, 56px); font-weight: 900; font-style: italic; letter-spacing: -0.02em; margin-top: 6px; }
.anchor .big s { color: var(--muted); font-weight: 500; font-style: normal; }

/* ---------- Testimonials (scroll-snap carousel) ---------- */
.rail { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 6px; -webkit-overflow-scrolling: touch; }
.rail::-webkit-scrollbar { display: none; }
.rail { scrollbar-width: none; }
.quote { scroll-snap-align: start; flex: 0 0 86%; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.quote p { font-size: 18px; line-height: 1.4; }
.quote .who { margin-top: 16px; font-size: 13px; color: var(--muted); }
.quote .who b { color: var(--text); }

/* ---------- Pricing ---------- */
.price { text-align: center; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 22px; background: var(--bg); }
.price .amount { font-size: clamp(38px, 10vw, 56px); font-weight: 900; letter-spacing: -0.03em; }
.price .amount small { font-size: 16px; font-weight: 600; color: var(--muted); }
.price ul { list-style: none; padding: 0; margin: 18px 0; text-align: left; display: grid; gap: 10px; }
.price li { padding-left: 26px; position: relative; font-size: 15px; }
.price li::before { content: "✓"; position: absolute; left: 0; color: var(--brand-2); font-weight: 800; }
.badges { display: flex; flex-wrap: wrap; gap: 8px 16px; justify-content: center; margin-top: 16px; font-size: 12px; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq details { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq summary { font-weight: 700; font-size: 16px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--brand); font-weight: 800; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); font-size: 15px; margin-top: 12px; }

/* ---------- Kalme sectiekop (dominante Superpower-stem: medium, sentence case) ----------
   Gebruik .headline op wit én op foto (met --light). Reserveer .display (zwaar cursief
   uppercase) voor de hero-flourish, niet voor elke sectie. */
.headline { font-weight: 600; font-size: clamp(29px, 7.4vw, 50px); line-height: 1.04; letter-spacing: -0.025em; }
.headline--light { color: var(--on-dark); }
.subhead { font-size: clamp(17px, 2.6vw, 21px); color: var(--muted); margin-top: 14px; max-width: 34ch; }
.subhead--light { color: var(--on-dark-muted); }
.eyebrow--muted { color: var(--muted); }
.center { text-align: center; }
.center .subhead, .center .headline { margin-left: auto; margin-right: auto; }

/* ---------- Genummerde tab/stap-indicator: 01 label · 02 · 03 ---------- */
.tabnav { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 20px; font-weight: 600; font-size: 15px; padding-left: 14px; border-left: 3px solid var(--ink); }
.tabnav .t { color: #bdbdbd; white-space: nowrap; }
.tabnav .t.on { color: var(--ink); }
.tabnav .t b { font-variant-numeric: tabular-nums; margin-right: 8px; }
.tabnav--light { border-left-color: #fff; }
.tabnav--light .t { color: rgba(255,255,255,.55); }
.tabnav--light .t.on { color: #fff; }

/* ---------- Zwevende dark-glass FAQ-pill (over foto-panelen) ----------
   .q = statische pill; of gebruik <details> voor een openklapbare FAQ. */
.faqfloat { display: grid; gap: 10px; }
.faqfloat .q, .faqfloat summary { display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 15px 18px; color: #fff; font-weight: 600; font-size: 15px; line-height: 1.25; }
.faqfloat .q, .faqfloat details {
  background: rgba(20,20,20,.5); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-radius: 14px; }
.faqfloat details { overflow: hidden; }
.faqfloat summary { list-style: none; cursor: pointer; }
.faqfloat summary::-webkit-details-marker { display: none; }
.faqfloat .pl { width: 30px; height: 30px; border-radius: 8px; background: rgba(255,255,255,.16); display: flex; align-items: center; justify-content: center; font-size: 18px; line-height: 1; flex: 0 0 auto; }
.faqfloat summary .pl::before { content: "+"; }
.faqfloat details[open] summary .pl::before { content: "–"; }
.faqfloat details p { margin: 0; padding: 0 18px 16px; font-size: 13.5px; color: rgba(255,255,255,.82); line-height: 1.5; font-weight: 400; }

/* ---------- Telefoon-mockup (score / app-moment) ---------- */
.phone { width: 260px; max-width: 74vw; margin: 0 auto; border-radius: 42px; padding: 10px; background: #0c0c0c; box-shadow: 0 40px 80px -30px rgba(0,0,0,.5); }
.phone .screen { border-radius: 33px; overflow: hidden; background: #111; aspect-ratio: 9/19.5; display: flex; }

/* ---------- Auto-slider: vaste tekst, wisselende achtergrond (bronnen) ----------
   Zet op een container met .slider__slide lagen + optioneel .tabnav + .slider__seg.
   JS (initSlider) wisselt elke data-interval ms de actieve slide/tab en vult de timer-balk.
   --slider-dur moet gelijk zijn aan data-interval (bv. 4s / 4000). */
.slider__slide { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; background-position: center; background-size: cover; }
.slider__slide.is-active { opacity: 1; }
.slider__top { position: absolute; top: 0; left: 0; right: 0; z-index: 3; padding: 16px 20px 0; }
.slider__seg { display: flex; gap: 6px; }
.slider__seg i { flex: 1; height: 3px; border-radius: 999px; background: rgba(255,255,255,.35); overflow: hidden; position: relative; }
.slider__seg i::after { content: ""; position: absolute; inset: 0; width: 0; background: #fff; border-radius: 999px; }
.slider__seg i.is-done::after { width: 100%; }
.slider__seg i.is-active::after { width: 100%; transition: width var(--slider-dur, 4s) linear; }
@media (prefers-reduced-motion: reduce) { .slider__slide { transition: none; } .slider__seg i.is-active::after { transition: none; } }

/* ---------- Sticky tab-sequence: je scrollt DOOR de tabjes heen (Superpower how-it-works) ----------
   Wrapper .seq krijgt hoogte = n × 100svh (inline). De .seq__pin is 1 viewport hoog en blijft
   plakken; JS wisselt het actieve paneel + de actieve tab op basis van scroll-voortgang.
   Alleen de actieve tab toont zijn label (.lbl), de rest is een kaal nummer. */
.seq { position: relative; }
.seq__pin { position: sticky; top: 0; height: 100svh; overflow: hidden; background: #0d0f0b; }
.seq__tabs { position: absolute; top: 28px; left: 0; right: 0; z-index: 4; }
.seq__panel { position: absolute; inset: 0; opacity: 0; transition: opacity .5s ease; }
.seq__panel.is-active { opacity: 1; }
.seq__panel .bg { position: absolute; inset: 0; background-position: center; background-size: cover; }
.seq__panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,8,5,.5) 0%, rgba(6,8,5,.12) 34%, rgba(6,8,5,.72) 100%); }
.seq__content { position: absolute; inset: 0; z-index: 2; color: #fff; display: flex; flex-direction: column; justify-content: space-between; padding: 100px 0 96px; }
.seq .uicard { position: static; transform: none; }
.tabnav .t .lbl { display: none; margin-left: 8px; }
.tabnav .t.on .lbl { display: inline; }
@media (prefers-reduced-motion: reduce) { .seq__panel { transition: none; } }

/* ---------- Sticky CTA (thumb-zone) ---------- */
.sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line); padding: 12px 20px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  transform: translateY(120%); transition: transform .3s ease;
}
.sticky.is-visible { transform: translateY(0); }
body.has-sticky { padding-bottom: 84px; }

/* ---------- Waitlist form ---------- */
.field { display: grid; gap: 10px; }
.input {
  width: 100%; padding: 15px 18px; font: inherit; font-size: 16px;
  border: 1.5px solid var(--line); border-radius: var(--pill); background: var(--bg); color: var(--text);
}
.input:focus { outline: none; border-color: var(--ink); }
.micro { font-size: 12px; color: var(--muted); }

footer.foot { text-align: center; padding: 34px 0; color: #9a9aa0; font-size: 12px; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-reveal="left"]  { transform: translateX(-26px); }
.reveal[data-reveal="scale"] { transform: scale(.96); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Desktop opschaling ---------- */
@media (min-width: 768px) {
  body { font-size: 18px; }
  .statstrip { gap: 20px; }
  .quote { flex-basis: 42%; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { padding-bottom: 64px; }
  .hero__sub { font-size: 20px; }
}
