/* Rijschool Zwolles - stylesheet
   Signature: asfaltgrijs vlak met een gele wegmarkering als terugkerend element.
   Alle kleuren en maten staan in :root, zodat de hele site vanaf hier te thematiseren is. */

:root {
  --asphalt: #171b21;
  --asphalt-2: #232a33;
  --asphalt-3: #333c48;
  --paper: #ffffff;
  --mist: #f2f4f7;
  --mist-2: #e8ebf0;
  --line: #dde2ea;
  --text: #1b2027;
  --muted: #5a6472;
  --go: #12915a;
  --go-dark: #0d7247;
  --go-soft: #e6f4ed;
  --lane: #f5c518;
  --lane-soft: #fdf4d6;

  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 1px 2px rgba(23, 27, 33, .06), 0 8px 24px rgba(23, 27, 33, .07);
  --shadow-lg: 0 2px 4px rgba(23, 27, 33, .07), 0 18px 46px rgba(23, 27, 33, .14);
  --wrap: 1140px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
}

* { box-sizing: border-box; }

/* Het hidden-attribuut wint altijd van de display-regels hieronder. */
[hidden] { display: none !important; }

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(1rem, .97rem + .18vw, 1.09rem);
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

svg { display: block; }

a { color: var(--go-dark); }
a:hover { color: var(--go); }

h1, h2, h3, h4 {
  line-height: 1.12;
  letter-spacing: -.022em;
  margin: 0 0 .5em;
  font-weight: 800;
  text-wrap: balance;
}

h1 { font-size: clamp(2.05rem, 1.45rem + 2.9vw, 3.6rem); }
h2 { font-size: clamp(1.55rem, 1.2rem + 1.6vw, 2.35rem); }
h3 { font-size: clamp(1.12rem, 1.02rem + .45vw, 1.35rem); }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

:focus-visible {
  outline: 3px solid var(--go);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.narrow { max-width: 760px; }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--paper);
  color: var(--text);
  padding: .8rem 1.2rem;
  z-index: 100;
  font-weight: 700;
}
.skip:focus { left: .5rem; top: .5rem; }

/* ---------- lane marking: het handtekening-element ---------- */

.lane {
  height: 8px;
  background-image: repeating-linear-gradient(
    90deg,
    var(--lane) 0 34px,
    transparent 34px 62px
  );
}

.lane--thin { height: 5px; opacity: .95; }

/* ---------- topbar + header ---------- */

.topbar {
  background: var(--asphalt);
  color: #cfd6e0;
  font-size: .87rem;
}
.topbar .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 1.4rem;
  align-items: center;
  justify-content: center;
  padding-block: .5rem;
  text-align: center;
}
.topbar a { color: #fff; text-decoration: none; font-weight: 600; }
.topbar a:hover { color: var(--lane); }
.topbar strong { color: var(--lane); font-weight: 700; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 72px;
  padding-block: .55rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  color: var(--text);
  margin-right: auto;
  font-weight: 800;
  letter-spacing: -.02em;
}
.brand:hover { color: var(--text); }
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--asphalt);
  display: grid;
  place-items: center;
  flex: none;
}
.brand-name { display: flex; flex-direction: column; line-height: 1.12; white-space: nowrap; }
.brand-name span:first-child { font-size: 1.09rem; }
.brand-name span:last-child {
  font-size: .72rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* mobiel menu zonder javascript: checkbox + label */
.nav-check { position: absolute; opacity: 0; width: 1px; height: 1px; }
.nav-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: .95rem;
  padding: .6rem .85rem;
  border: 1px solid var(--line);
  border-radius: 11px;
  cursor: pointer;
  background: var(--paper);
  user-select: none;
}
.nav-check:focus-visible + .nav-label {
  outline: 3px solid var(--go);
  outline-offset: 3px;
}
.nav-label .bars, .nav-label .bars::before, .nav-label .bars::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  position: relative;
}
.nav-label .bars::before, .nav-label .bars::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-label .bars::before { top: -6px; }
.nav-label .bars::after { top: 6px; }

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: .15rem;
  align-items: center;
}
.site-nav a {
  display: block;
  text-decoration: none;
  color: var(--text);
  font-weight: 650;
  font-size: .97rem;
  padding: .55rem .7rem;
  border-radius: 9px;
}
.site-nav a:hover { background: var(--mist); color: var(--text); }
.site-nav a[aria-current="page"] {
  color: var(--go-dark);
  box-shadow: inset 0 -3px 0 var(--lane);
}
.nav-cta { margin-left: .5rem; }

@media (max-width: 1080px) {
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: .6rem var(--gutter) 1.1rem;
  }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: .1rem; }
  .site-nav a { padding: .85rem .6rem; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .site-nav li:last-child a { border-bottom: 0; }
  .nav-check:checked ~ .site-nav { display: block; }
  .header-inner { position: relative; }
  .header-inner .nav-cta { display: none; }
}

@media (min-width: 1081px) {
  .nav-label { display: none; }
}

/* ---------- knoppen ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .92rem 1.4rem;
  border-radius: 12px;
  font-weight: 750;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background-color .12s ease, border-color .12s ease;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 20px; height: 20px; flex: none; }

.btn--go { background: var(--go); color: #fff; }
.btn--go:hover { background: var(--go-dark); color: #fff; }

.btn--dark { background: var(--asphalt); color: #fff; }
.btn--dark:hover { background: var(--asphalt-2); color: #fff; }

.btn--ghost { border-color: var(--line); color: var(--text); background: var(--paper); }
.btn--ghost:hover { border-color: var(--asphalt-3); color: var(--text); }

.btn--light { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .35); }
.btn--light:hover { background: rgba(255, 255, 255, .2); color: #fff; }

.btn--sm { padding: .6rem 1rem; font-size: .93rem; }
.btn--wide { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

/* ---------- hero ---------- */

.hero {
  background: var(--asphalt);
  color: #eef1f5;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 8px;
  background-image: repeating-linear-gradient(90deg, var(--lane) 0 34px, transparent 34px 62px);
}
.hero-grid {
  display: grid;
  gap: clamp(1.8rem, 4vw, 3.4rem);
  padding-block: clamp(2.6rem, 6vw, 4.6rem) clamp(3rem, 7vw, 5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.06fr .94fr; }
}
.hero h1 { color: #fff; }
.hero .lead {
  font-size: clamp(1.06rem, 1rem + .5vw, 1.28rem);
  color: #cdd5df;
  max-width: 34em;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lane);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 4px;
  background: var(--lane);
  border-radius: 2px;
}
.hero .btn-row { margin-top: 1.7rem; }
.hero-note {
  margin-top: 1.1rem;
  font-size: .93rem;
  color: #a9b3c0;
}
.hero-note a { color: #fff; }

.hero-card {
  background: var(--paper);
  color: var(--text);
  border-radius: var(--radius-lg);
  padding: clamp(1.3rem, 3vw, 1.9rem);
  box-shadow: var(--shadow-lg);
}
.hero-card h2 {
  font-size: 1.18rem;
  margin-bottom: 1rem;
}
.hero-card ul {
  list-style: none;
  margin: 0 0 1.3rem;
  padding: 0;
  display: grid;
  gap: .7rem;
}
.hero-card li {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  font-size: .99rem;
}
.hero-card li svg { width: 21px; height: 21px; flex: none; margin-top: .17rem; color: var(--go); }
.hero-card .btn { width: 100%; }
.hero-card .fineprint {
  margin-top: .85rem;
  font-size: .87rem;
  color: var(--muted);
  text-align: center;
}

/* ---------- trustbalk ---------- */

.trust {
  background: var(--mist);
  border-bottom: 1px solid var(--line);
}
.trust ul {
  list-style: none;
  margin: 0;
  padding: 1.15rem 0;
  display: grid;
  gap: .8rem 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
}
.trust li {
  display: flex;
  gap: .6rem;
  align-items: center;
  font-size: .95rem;
  font-weight: 600;
}
.trust li svg { width: 22px; height: 22px; color: var(--go); flex: none; }
.trust strong { font-weight: 800; }

/* ---------- secties ---------- */

section { scroll-margin-top: 90px; }

.band { padding-block: clamp(2.8rem, 6vw, 4.6rem); }
.band--mist { background: var(--mist); }
.band--dark { background: var(--asphalt); color: #e8ecf2; }
.band--dark h2, .band--dark h3 { color: #fff; }
.band--dark a { color: var(--lane); }

.section-head { max-width: 720px; margin-bottom: clamp(1.6rem, 3vw, 2.4rem); }
.section-head p { color: var(--muted); font-size: 1.06rem; margin-bottom: 0; }
.band--dark .section-head p { color: #b6c0cc; }

.grid { display: grid; gap: 1.1rem; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(265px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}
.card h3 { margin-bottom: .45rem; }
.card p { color: var(--muted); font-size: .98rem; }
.card .card-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: .6rem;
  font-size: .97rem;
}
.card .card-link:hover { text-decoration: underline; }
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--go-soft);
  color: var(--go-dark);
  display: grid;
  place-items: center;
  margin-bottom: .9rem;
}
.card-icon svg { width: 24px; height: 24px; }
.card--lane .card-icon { background: var(--lane-soft); color: #8a6d00; }

/* prijskaarten */
.price-card { text-align: left; }
.price-card .amount {
  font-size: clamp(1.9rem, 1.5rem + 1.6vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  display: block;
  margin: .2rem 0 .1rem;
}
.price-card .per { color: var(--muted); font-size: .92rem; }
.price-card.is-featured {
  border-color: var(--go);
  box-shadow: 0 0 0 3px var(--go-soft), var(--shadow);
  position: relative;
}
.badge {
  display: inline-block;
  background: var(--go);
  color: #fff;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .28rem .6rem;
  border-radius: 999px;
  margin-bottom: .6rem;
}
.badge--lane { background: var(--lane); color: #4a3b00; }

/* tabel */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
table { border-collapse: collapse; width: 100%; }
.table-wrap table { min-width: 420px; }
caption { text-align: left; padding: 1rem 1.1rem .2rem; font-weight: 700; }
th, td { text-align: left; padding: .85rem 1.1rem; border-bottom: 1px solid var(--line); }
thead th { background: var(--mist); font-size: .87rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
tbody tr:last-child td { border-bottom: 0; }
td.price { font-weight: 800; white-space: nowrap; }

/* stappen */
.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; display: grid; gap: 1rem; }
.steps li {
  counter-increment: step;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem 1.2rem 4.1rem;
  position: relative;
  box-shadow: var(--shadow);
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 1.2rem;
  top: 1.15rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--asphalt);
  color: var(--lane);
  font-weight: 800;
  display: grid;
  place-items: center;
  font-size: 1rem;
}
.steps h3 { font-size: 1.08rem; margin-bottom: .3rem; }
.steps p { margin: 0; color: var(--muted); font-size: .98rem; }

/* opsommingen met vinkje */
.checks { list-style: none; margin: 0 0 1.2rem; padding: 0; display: grid; gap: .6rem; }
.checks li { display: flex; gap: .65rem; align-items: flex-start; }
.checks li svg { width: 21px; height: 21px; flex: none; margin-top: .2rem; color: var(--go); }
.band--dark .checks li svg { color: var(--lane); }

/* faq */
.faq { display: grid; gap: .7rem; max-width: 820px; }
.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .2rem 1.15rem;
  box-shadow: var(--shadow);
}
.faq summary {
  cursor: pointer;
  font-weight: 750;
  padding: 1rem 1.6rem 1rem 0;
  list-style: none;
  position: relative;
  font-size: 1.03rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: .1rem;
  top: 1.42rem;
  width: 10px;
  height: 10px;
  border-right: 2.5px solid var(--muted);
  border-bottom: 2.5px solid var(--muted);
  transform: rotate(45deg);
  transition: transform .15s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq details[open] summary { color: var(--go-dark); }
.faq .answer { padding: 0 0 1.1rem; color: var(--muted); }
.faq .answer p { margin-bottom: .7rem; }

/* citaat */
.quote {
  border-left: 5px solid var(--lane);
  padding: .3rem 0 .3rem 1.2rem;
  font-size: clamp(1.1rem, 1rem + .7vw, 1.4rem);
  font-weight: 600;
  line-height: 1.45;
  margin: 0 0 1.4rem;
}
.quote cite { display: block; font-size: .92rem; font-weight: 600; color: var(--muted); font-style: normal; margin-top: .6rem; }
.band--dark .quote cite { color: #b6c0cc; }

/* cta blok */
.cta-block {
  background: var(--asphalt);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.8rem);
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 6px;
  background-image: repeating-linear-gradient(90deg, var(--lane) 0 34px, transparent 34px 62px);
}
.cta-block h2 { color: #fff; }
.cta-block p { color: #c3cbd6; max-width: 46em; }

/* contactkaart */
.contact-grid { display: grid; gap: 1.3rem; }
@media (min-width: 860px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.nap {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .9rem;
}
.nap li { display: flex; gap: .8rem; align-items: flex-start; }
.nap svg { width: 22px; height: 22px; color: var(--go); flex: none; margin-top: .2rem; }
.nap a { font-weight: 700; text-decoration: none; }
.nap a:hover { text-decoration: underline; }
.nap .label { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 700; }

.hours { width: 100%; }
.hours th, .hours td { padding: .55rem .2rem; border-bottom: 1px solid var(--line); font-size: .97rem; }
.hours th { font-weight: 600; text-transform: none; letter-spacing: 0; background: transparent; color: var(--text); }
.hours td { text-align: right; font-variant-numeric: tabular-nums; }
.hours .closed { color: var(--muted); }

.map-link {
  display: block;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.map-link img { width: 100%; }
.map-placeholder {
  aspect-ratio: 16 / 9;
  background:
    repeating-linear-gradient(135deg, var(--mist) 0 18px, var(--mist-2) 18px 36px);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 700;
}
.map-link span.map-cta {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .85rem 1.1rem;
  font-weight: 750;
  color: var(--go-dark);
  border-top: 1px solid var(--line);
}
.map-link:hover span.map-cta { text-decoration: underline; }

/* meldingen */
.notice {
  background: var(--lane-soft);
  border: 1px solid #f0dda0;
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  font-size: .97rem;
}

.prose > h2 { margin-top: 2.4rem; }
.prose > h3 { margin-top: 1.8rem; }
.prose ul, .prose ol { padding-left: 1.25rem; }
.prose li { margin-bottom: .45rem; }

/* kruimelpad */
.crumbs { font-size: .88rem; color: var(--muted); padding-block: .9rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; }
.crumbs li::after { content: "/"; margin-left: .4rem; color: var(--line); }
.crumbs li:last-child::after { content: ""; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--go-dark); text-decoration: underline; }

/* paginakop van binnenpagina's */
.page-head {
  background: var(--mist);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(1.6rem, 4vw, 2.8rem);
}
.page-head p.lead {
  font-size: clamp(1.05rem, 1rem + .4vw, 1.2rem);
  color: var(--muted);
  max-width: 44em;
  margin-bottom: 0;
}

/* ---------- footer ---------- */

.site-footer {
  background: var(--asphalt);
  color: #b9c2ce;
  font-size: .96rem;
  padding-block: clamp(2.2rem, 5vw, 3.2rem) 1.4rem;
}
.site-footer h2, .site-footer h3 { color: #fff; font-size: 1.02rem; margin-bottom: .8rem; }
.site-footer a { color: #e5eaf1; text-decoration: none; }
.site-footer a:hover { color: var(--lane); text-decoration: underline; }
.footer-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.site-footer .biz { font-size: .86rem; color: #8f9aa8; margin-top: .9rem; line-height: 1.7; }
.footer-hours { display: grid; grid-template-columns: auto 1fr; gap: .35rem 1rem; font-size: .93rem; }
.footer-hours span:nth-child(even) { text-align: right; font-variant-numeric: tabular-nums; }
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid #313944;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.4rem;
  justify-content: space-between;
  font-size: .87rem;
  color: #8f9aa8;
}

/* ---------- mobiele actiebalk ---------- */

.action-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  display: none;
  gap: .5rem;
  padding: .55rem .7rem calc(.55rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .97);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 24px rgba(23, 27, 33, .12);
}
.action-bar .btn { flex: 1; padding: .8rem .5rem; font-size: .95rem; }
@media (max-width: 700px) {
  .action-bar { display: flex; }
  body { padding-bottom: 4.6rem; }
}

/* ---------- videolandingspagina ---------- */

.lander {
  min-height: 100vh;
  background: var(--asphalt);
  color: #e9edf3;
  display: flex;
  flex-direction: column;
}
.lander main { flex: 1; padding-block: clamp(1.8rem, 5vw, 3.4rem); }
.lander h1 { color: #fff; font-size: clamp(1.7rem, 1.25rem + 2.1vw, 2.7rem); }
.lander .lead { color: #c2cbd7; font-size: clamp(1.02rem, .98rem + .4vw, 1.18rem); max-width: 40em; }
.player-shell {
  background: #0f1319;
  border: 1px solid #2b333e;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-block: clamp(1.4rem, 3vw, 2.2rem);
}
.player-shell video { width: 100%; height: auto; display: block; background: #000; aspect-ratio: 16 / 9; }
.player-fallback {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.5rem;
  background:
    radial-gradient(120% 120% at 50% 0%, #232a33 0%, #12161c 100%);
}
.player-fallback .inner { max-width: 30em; }
.player-fallback svg { width: 54px; height: 54px; margin: 0 auto .9rem; color: var(--lane); }
.player-fallback p { color: #aeb8c5; margin-bottom: 0; }
.player-fallback strong { color: #fff; display: block; font-size: 1.15rem; margin-bottom: .4rem; }
.lander .btn-row { margin-top: 1.4rem; }
.lander-foot {
  border-top: 1px solid #2b333e;
  padding-block: 1.2rem;
  font-size: .88rem;
  color: #8f9aa8;
}
.lander-foot a { color: #e5eaf1; }
.lander-note { font-size: .92rem; color: #9aa5b2; margin-top: 1.2rem; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
}

@media print {
  .site-header, .topbar, .action-bar, .cta-block { display: none !important; }
}
