/* ============================================================
   STICKR — scroll-story edition
   Light, editorial, cinematic. One journey, one map, one car.
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-soft: #f4f6f5;
  /* Rolling-Ads flyer palette: zwart / wit / neon-lime */
  --teal: #a6e00a;          /* lime — chips, buttons, fills */
  --teal-deep: #6f9800;     /* deep lime — accent text on white */
  --teal-soft: #f4fbdd;
  --orange: #6f9800;        /* legacy accent slots → deep lime */
  --orange-soft: #f4fbdd;
  --ink: #0b0b0b;
  --ink-soft: #4c525c;
  --line: #e6e8ea;
  --scrim: 244, 246, 245;            /* --bg-soft as RGB, for text backings */
  --card-shadow: 0 10px 30px rgba(11, 11, 11, 0.10);
  --card-shadow-hover: 0 18px 44px rgba(140, 190, 10, 0.25);
  --radius: 20px;
  --font-head: "Space Grotesk", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* author styles (display:flex etc.) must never beat the hidden attribute */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

.accent-teal { color: var(--teal); }
.accent-orange { color: var(--orange); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.08rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  padding: 0.85em 2.1em;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn--primary { background: var(--teal); color: var(--ink); box-shadow: 0 8px 24px rgba(140, 190, 10, 0.45); }
.btn--primary:hover:not(:disabled) { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(140, 190, 10, 0.55); }
.btn--secondary { background: var(--ink); color: var(--teal); box-shadow: 0 8px 24px rgba(11, 11, 11, 0.30); }
.btn--secondary:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(11, 11, 11, 0.40); }
.btn--lg { padding: 1.15em 2.6em; font-size: 1.08rem; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; position: relative; }
.btn:disabled:hover::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.78rem;
  padding: 0.5em 1em;
  border-radius: 8px;
  white-space: nowrap;
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem clamp(1.2rem, 4vw, 3rem);
  transition: background 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  border-color: var(--line);
}
.nav__logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 1.7rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
}
.nav__logo span { color: var(--teal-deep); }
.nav__cta {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.02rem;
  text-decoration: none;
  background: var(--teal);
  color: var(--ink);
  padding: 0.5em 1.4em;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease;
}
.nav__cta:hover { background: var(--ink); color: var(--teal); }

/* ============================================================
   THE JOURNEY — pinned stage
   ============================================================ */
.journey { position: relative; }

.stage {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #edf0f3;
}

.stage__map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  will-change: filter;
}

/* soft cinematic edges */
.stage__vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 120% 90% at 50% 45%, transparent 62%, rgba(237, 240, 243, 0.85) 100%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent 18%);
}

.district-label { text-transform: uppercase; }

/* ---------- progress rail ---------- */
.rail {
  position: absolute;
  right: clamp(1rem, 3vw, 2.6rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  display: flex;
  gap: 1.1rem;
  align-items: stretch;
  height: min(46vh, 420px);
}
.rail__line {
  position: relative;
  width: 2px;
  background: rgba(29, 33, 40, 0.18);
  border-radius: 2px;
}
.rail__dot {
  position: absolute;
  left: 50%;
  top: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  border: 2.5px solid #fff;
  transform: translate(-50%, -50%);
  box-shadow: 0 2px 8px rgba(111, 152, 0, 0.55);
  transition: top 0.1s linear;
}
.rail__chapters {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.rail__chapters li {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(29, 33, 40, 0.55);
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease, transform 0.3s ease;
}
.rail__chapters li.is-active { color: var(--ink); transform: translateX(-4px); font-weight: 700; }
.rail__chapters li.is-active::before { content: "— "; color: var(--teal); }
@media (max-width: 760px) { .rail { display: none; } }

/* ---------- chapters (overlays) ---------- */
.chapter {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: grid;
  align-content: center;
  padding: clamp(1.4rem, 6vw, 6rem);
  pointer-events: none;
  visibility: hidden;
}

.chapter__no {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  color: var(--orange);
  margin-bottom: 1.2rem;
}
.chapter__no--center { text-align: center; }

.chapter__mega {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(4rem, 12vw, 9.5rem);
  line-height: 0.88;
  letter-spacing: 0;
  color: var(--ink);
  text-shadow: 0 2px 0 #fff, 0 10px 40px rgba(255, 255, 255, 0.7);
}

.chapter__tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  font-size: clamp(1.5rem, 3.6vw, 2.5rem);
  line-height: 1.15;
  margin-top: 1rem;
}
.chapter__tag em {
  font-style: italic;
  color: var(--ink);
  background: var(--teal);
  padding: 0.02em 0.22em 0.06em;
  border-radius: 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.chapter__head {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: 0.005em;
  max-width: 12em;
  text-shadow: 0 1px 0 #fff, 0 8px 32px rgba(255, 255, 255, 0.75);
}
.chapter__head .outline {
  color: transparent;
  -webkit-text-stroke: 2.5px var(--ink);
}

.chapter__aside {
  margin-top: 1.6rem;
  font-size: clamp(0.98rem, 1.6vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 38ch;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(6px);
  border-left: 3px solid var(--teal);
  padding: 0.7em 1em;
  border-radius: 0 12px 12px 0;
  width: fit-content;
}

.chapter__hint {
  margin-top: 2.4rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-soft);
}
.chapter__hint-arrow { display: inline-block; color: var(--teal); font-size: 1.15em; }

/* scroll cue: a tiny road with the lime car driving down it */
.scroll-cue {
  margin-top: 2.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.scroll-cue__road {
  position: relative;
  width: 30px;
  height: 88px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--card-shadow);
  overflow: hidden;
}
/* dashed centre line, like the streets on the map */
.scroll-cue__road::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  bottom: 6px;
  width: 2px;
  transform: translateX(-50%);
  background-image: linear-gradient(to bottom, #c9ced4 0 6px, transparent 6px 12px);
  background-size: 2px 12px;
}
.scroll-cue__car {
  position: absolute;
  left: 50%;
  top: 8px;
  margin-left: -7px;
}
.scroll-cue__label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--ink-soft);
}

/* side-docked chapter blocks: the road stays the protagonist */
.chapter--side { justify-items: start; }
.chapter--side .chapter__block { max-width: min(560px, 88vw); }
.chapter--side-right { justify-items: end; }
/* right-docked copy must clear the progress rail on the right edge */
.chapter--side-right .chapter__block { margin-right: clamp(6rem, 11vw, 11rem); }
@media (max-width: 760px) { .chapter--side-right .chapter__block { margin-right: 0; } }

/* ch1 + ch2 carry cards below the title — keep them clear of the fixed nav
   and size the heads so the lines break cleanly */
#ch1, #ch2 { align-content: center; padding-block: clamp(4.5rem, 9vh, 6.5rem) clamp(1.4rem, 5vw, 3.5rem); }
#ch1 .chapter__no, #ch2 .chapter__no { margin-bottom: 0.7rem; }
#ch1 .chapter__head, #ch2 .chapter__head { font-size: clamp(2.4rem, 5.6vw, 4.6rem); max-width: 14em; }
#ch1 .chapter__notes, #ch2 .chapter__notes { margin-top: 1.3rem; gap: 0.7rem; }
#ch1 .chapter__aside { margin-top: 1.1rem; }

/* a soft gradient scrim behind the text side keeps copy legible over the
   busy map while the road breathes in the centre */
.chapter--side::before,
.chapter--side-right::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.chapter--side::before {
  background: linear-gradient(
    100deg,
    rgba(var(--scrim), 0.96) 0%,
    rgba(var(--scrim), 0.82) 24%,
    rgba(var(--scrim), 0.42) 42%,
    rgba(var(--scrim), 0) 58%);
}
.chapter--side-right::before {
  background: linear-gradient(
    260deg,
    rgba(var(--scrim), 0.96) 0%,
    rgba(var(--scrim), 0.82) 24%,
    rgba(var(--scrim), 0.42) 42%,
    rgba(var(--scrim), 0) 58%);
}
/* #ch0 title scrim is brighter so the giant wordmark really pops */
#ch0.chapter--side::before {
  background: linear-gradient(
    100deg,
    rgba(var(--scrim), 0.98) 0%,
    rgba(var(--scrim), 0.9) 30%,
    rgba(var(--scrim), 0.5) 50%,
    rgba(var(--scrim), 0) 66%);
}

.chapter__notes { list-style: none; margin-top: 2rem; display: grid; gap: 0.9rem; }
.chapter__notes li {
  opacity: 0;
  transform: translateX(-24px);
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.95em 1.2em;
  font-size: clamp(0.92rem, 1.4vw, 1.02rem);
  box-shadow: var(--card-shadow);
  max-width: 460px;
}
.chapter__emoji { font-size: 1.4em; line-height: 1.2; }
.chapter__notes strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.15em;
}

/* how-it-works steps (chapter 03) */
.hiw { list-style: none; margin-top: 1.8rem; display: grid; gap: 0.8rem; }
.hiw__step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.9em 1.2em;
  box-shadow: var(--card-shadow);
  max-width: 460px;
  opacity: 0;
}
.hiw__step > span {
  flex: none;
  width: 1.9em;
  height: 1.9em;
  border-radius: 50%;
  background: var(--ink);
  color: var(--teal);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  display: grid;
  place-items: center;
}
.hiw__step strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
}
.hiw__step div { font-size: 0.92rem; color: var(--ink-soft); }
.hiw__care {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.4rem;
  max-width: 460px;
}
.hiw__care li {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #d3e8a0;
  color: #4c6a00;
  border-radius: 999px;
  padding: 0.45em 1.1em;
  opacity: 0;
}
.hiw__care li::before { content: "\2713\00a0\00a0"; color: var(--teal-deep); font-weight: 700; }

/* How-it-works is the densest chapter — keep it compact so the centred
   block never collides with the fixed nav / logo at the top */
#ch3 { align-content: center; padding-block: clamp(4.5rem, 9vh, 6rem) clamp(1.4rem, 6vw, 4rem); }
#ch3 .chapter__no { margin-bottom: 0.6rem; }
#ch3 .chapter__head { font-size: clamp(2.4rem, 5.6vw, 4.6rem); max-width: 18em; }
#ch3 .hiw { margin-top: 1rem; gap: 0.5rem; }
#ch3 .hiw__step { padding: 0.6em 1em; }
#ch3 .hiw__step strong { font-size: 0.98rem; }
#ch3 .hiw__step div { font-size: 0.86rem; line-height: 1.4; }
#ch3 .hiw__step > span { width: 1.7em; height: 1.7em; font-size: 0.85rem; }
#ch3 .hiw__care { margin-top: 0.9rem; }
#ch3 .chapter__hint { margin-top: 1.1rem; }

/* ============================================================
   SECTIONS AFTER THE JOURNEY
   ============================================================ */
.section { padding: clamp(5rem, 10vw, 9rem) 0; position: relative; }

.section__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  line-height: 1;
  letter-spacing: 0.005em;
  margin-bottom: 0.5em;
}
.section__lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 56ch;
}
.kicker {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--teal-deep);
  margin-bottom: 1rem;
}

/* ============================================================
   SIMULATOR
   ============================================================ */
.simulator { background: var(--bg-soft); }
.sim__grid {
  display: grid;
  grid-template-columns: minmax(380px, 1fr) minmax(340px, 0.92fr);
  gap: clamp(1.6rem, 3.5vw, 3rem);
  margin-top: 3rem;
  align-items: start;
}
@media (max-width: 980px) { .sim__grid { grid-template-columns: 1fr; } }

.sim__form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--card-shadow);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  display: grid;
  gap: 2rem;
}
.sim__block { border: none; display: grid; gap: 1rem; }
.sim__block legend {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.12rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.sim__step-num {
  width: 1.9em;
  height: 1.9em;
  border-radius: 50%;
  background: var(--teal);
  color: var(--ink);
  font-size: 0.85em;
  display: inline-grid;
  place-items: center;
}

/* dropzone */
.dropzone {
  border: 2px dashed #cfe69a;
  border-radius: 16px;
  background: var(--teal-soft);
  padding: 1.8rem 1.4rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.2s ease;
}
.dropzone:hover, .dropzone:focus-visible, .dropzone.is-drag {
  border-color: var(--teal);
  background: #eef8cd;
  transform: scale(1.01);
  outline: none;
}
.dropzone svg { margin: 0 auto 0.7rem; }
.dropzone p strong { font-weight: 600; }
.dropzone__hint { font-size: 0.8rem; color: var(--ink-soft); margin-top: 0.3rem; }
.dropzone__preview {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.8rem 1rem;
}
.dropzone__preview img { height: 56px; max-width: 160px; object-fit: contain; }
.dropzone__preview button {
  margin-left: auto;
  border: none;
  background: var(--line);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.85rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.dropzone__preview button:hover { background: var(--orange); color: #fff; }

/* fields */
.field { display: grid; gap: 0.45rem; flex: 1; }
.field > span, .field-label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.field small { color: var(--ink-soft); font-weight: 400; }
.field-row { display: flex; gap: 1rem; flex-wrap: wrap; }
input[type="text"], input[type="email"], input[type="tel"], select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75em 1em;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(140, 190, 10, 0.22);
}
select:disabled { background: var(--bg-soft); color: var(--ink-soft); }

/* toggles */
.toggle-group { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.toggle input { position: absolute; opacity: 0; pointer-events: none; }
.toggle span {
  display: inline-block;
  padding: 0.6em 1.3em;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.22s ease;
  user-select: none;
}
.toggle:hover span { border-color: var(--teal); }
.toggle input:checked + span {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--teal);
  box-shadow: 0 6px 16px rgba(11, 11, 11, 0.22);
}
.toggle input:focus-visible + span { box-shadow: 0 0 0 4px rgba(140, 190, 10, 0.4); }

/* color picker */
.colorpicker { display: grid; gap: 0.6rem; }
.swatches { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.swatch {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 3px solid #fff;
  background: var(--c);
  cursor: pointer;
  box-shadow: 0 0 0 1.5px var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.swatch:hover { transform: scale(1.12); }
.swatch.is-active { box-shadow: 0 0 0 3px var(--teal); transform: scale(1.08); }

/* neighborhoods */
.hood-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.6rem;
}
.hood {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 0.6em 0.9em;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 400;
  transition: all 0.2s ease;
  user-select: none;
}
.hood:hover { border-color: var(--teal); background: var(--teal-soft); }
.hood input { accent-color: var(--teal); width: 16px; height: 16px; }
.hood.is-checked { border-color: var(--teal); background: var(--teal-soft); font-weight: 500; }

/* sliders */
.field--slider output {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--teal);
}
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 6px;
  background: linear-gradient(to right, var(--teal) var(--fill, 50%), var(--line) var(--fill, 50%));
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--teal);
  box-shadow: 0 3px 10px rgba(140, 190, 10, 0.5);
  transition: transform 0.15s ease;
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff; border: 3px solid var(--teal);
}

/* disclaimers in the form */
.sim__note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.55;
  border-left: 3px solid var(--teal);
  padding: 0.35em 0 0.35em 0.95em;
}

/* price bar */
.sim__price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  background: var(--ink);
  border-radius: 20px;
  padding: 1.4rem 1.8rem;
  color: #fff;
}
.sim__price-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #aab2bd;
  position: relative;
}
.sim__price-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  color: var(--teal);
}
.sim__price-value small { font-size: 0.45em; color: #aab2bd; font-weight: 600; white-space: nowrap; }
.info-dot {
  width: 17px; height: 17px;
  border-radius: 50%;
  border: none;
  background: #4a5462;
  color: #fff;
  font-size: 0.65rem;
  font-style: italic;
  font-family: Georgia, serif;
  cursor: help;
  vertical-align: 1px;
}
.tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 0;
  background: #fff;
  color: var(--ink);
  font-size: 0.8rem;
  letter-spacing: 0;
  text-transform: none;
  padding: 0.6em 1em;
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.info-dot:hover + .tooltip, .info-dot:focus + .tooltip { opacity: 1; transform: translateY(0); }

/* preview column */
.sim__preview {
  display: grid;
  gap: 1.6rem;
  position: sticky;
  top: 90px;
}
@media (max-width: 980px) { .sim__preview { position: static; } }
.preview-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--card-shadow);
  padding: 1.6rem;
}
.preview-card__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
.preview-stage { position: relative; }
.preview-car { width: 100%; }
.preview-card__hint {
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 0.6rem;
}
#map {
  height: 340px;
  border-radius: 16px;
  border: 1px solid var(--line);
  z-index: 1;
}
.map-summary {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  text-align: center;
  margin-top: 0.9rem;
}
.leaflet-container { font-family: var(--font-body); background: #f3f6f9; }
.vehicle-marker {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  box-shadow: 0 2px 6px rgba(44, 44, 44, 0.3);
}
.vehicle-marker--teal { background: var(--teal); }
.vehicle-marker--orange { background: var(--orange); }

/* ============================================================
   FINALE + FOOTER
   ============================================================ */
/* flyer-style zwarte CTA-banner */
.finale {
  background: var(--ink);
  color: #fff;
  text-align: center;
}
.finale__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: 0.005em;
  margin-bottom: 0.5rem;
}
.finale__title .accent-teal, .finale__title .accent-orange { color: var(--teal); }
.finale__sub { color: #b9bec6; margin-bottom: 2.4rem; }
.finale__actions { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }
.finale .btn--secondary { background: #fff; color: var(--ink); }
.finale .btn--secondary:hover { background: var(--teal); }

.footer {
  border-top: 1px solid var(--line);
  padding: 3rem 0;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.footer__inner { display: grid; gap: 0.6rem; justify-items: center; }
.footer__fine { font-size: 0.78rem; opacity: 0.7; }

/* ============================================================
   VERDIEN-PAGINA (aanmeldpagina voor autobezitters)
   ============================================================ */
.hl {
  font-style: italic;
  color: var(--ink);
  background: var(--teal);
  padding: 0.02em 0.22em 0.06em;
  border-radius: 6px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.earn-hero {
  background: var(--bg-soft);
  padding-top: clamp(7.5rem, 16vh, 10rem);
}
.earn-lead {
  max-width: 56ch;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: var(--ink-soft);
  margin-top: 0.5rem;
}
.earn-lead strong { color: var(--ink); font-weight: 600; }
.earn-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.8rem;
}
.earn-chips li {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  background: #fff;
  border: 1px solid #d3e8a0;
  color: #4c6a00;
  border-radius: 999px;
  padding: 0.5em 1.1em;
}
.earn-chips li::before { content: "\2713\00a0\00a0"; color: var(--teal-deep); font-weight: 700; }
.earn-cta { margin-top: 2rem; }

.earn-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}
.earn-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.3rem 1.4rem;
  box-shadow: var(--card-shadow);
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.earn-step span {
  display: grid;
  place-items: center;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  background: var(--ink);
  color: var(--teal);
  font-family: var(--font-head);
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.earn-step strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.earn-note { margin-top: 1.6rem; max-width: 620px; }

.earn-form-section { background: var(--bg-soft); }
.earn-form { margin-top: 2.2rem; max-width: 760px; }
.earn-consent {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.86rem;
  color: var(--ink-soft);
  line-height: 1.5;
  cursor: pointer;
}
.earn-consent input {
  margin-top: 0.2em;
  width: 17px;
  height: 17px;
  accent-color: var(--teal);
  flex: none;
}
.earn-submit { margin-top: 0.4rem; }

/* ============================================================
   MODAL
   ============================================================ */
.modal {
  border: none;
  border-radius: 26px;
  padding: 0;
  box-shadow: 0 30px 80px rgba(44, 44, 44, 0.3);
  max-width: 420px;
  width: 92vw;
}
.modal::backdrop { background: rgba(44, 44, 44, 0.45); backdrop-filter: blur(4px); }
.modal__inner {
  padding: 2.6rem 2.2rem;
  text-align: center;
  display: grid;
  gap: 1rem;
  justify-items: center;
}
.modal__inner h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; }
.modal__inner p { color: var(--ink-soft); }

/* ============================================================
   A11Y
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rail__dot { transition: none; }
}
