/* =========================================================================
   2012 Mazda3 s — "Zoom-Zoom: The Wisdom Era"
   Palette: graphite ink base + Mazda red -> ember -> violet gradient accent
   Type: condensed-italic system display for headlines, monospace for data,
         system-ui for body copy.
   ========================================================================= */

:root {
  /* ---- color ---- */
  --ink:        #14141a;   /* graphite mica base */
  --panel:      #1d1c24;   /* raised charcoal panel */
  --panel-2:    #262530;
  --line:       #38374280;
  --paper:      #d8d9e0;   /* chrome/silver text */
  --paper-dim:  #9d9caa;
  --red:        #d41128;
  --ember:      #ff6a2b;
  --violet:     #8c3fff;
  --green:      #35d07f;
  --tag:        #f2d979;   /* dealer-lot paper tag */
  --tag-ink:    #2a2210;

  --gradient-main: linear-gradient(100deg, var(--red) 0%, var(--ember) 48%, var(--violet) 100%);
  --gradient-soft: linear-gradient(160deg, rgba(212,17,40,.35), rgba(140,63,255,.28));

  /* ---- type ---- */
  --font-display: ui-sans-serif, "Arial Narrow", "Helvetica Neue Condensed", "Segoe UI", Arial, sans-serif;
  --font-body: "Segoe UI", ui-sans-serif, system-ui, -apple-system, Roboto, Arial, sans-serif;
  --font-mono: ui-monospace, "Cascadia Code", "Consolas", "SFMono-Regular", Menlo, monospace;

  /* ---- layout ---- */
  --max: 1180px;
  --edge: clamp(1.25rem, 5vw, 3rem);
  --radius: 14px;
}

@media (prefers-color-scheme: light) {
  :root { color-scheme: dark; } /* this design commits to dark, regardless of system theme */
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ember);
  color: #141414;
  padding: .75rem 1.25rem;
  font-weight: 700;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 3px solid var(--ember);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ambient speed-line texture, fixed behind everything */
.speedlines {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .5;
  background:
    repeating-linear-gradient(115deg, rgba(255,255,255,.02) 0 2px, transparent 2px 140px);
}

main, header, footer { position: relative; z-index: 1; }

/* =========================================================================
   Buttons + shared bits
   ========================================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 1.8rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--gradient-main);
  background-size: 200% 200%;
  color: #14090a;
  box-shadow: 0 10px 30px -10px rgba(212,17,40,.6);
}
.btn--primary:hover { box-shadow: 0 14px 34px -8px rgba(255,106,43,.65); }
.btn--ghost {
  background: rgba(255,255,255,.04);
  border-color: rgba(216,217,224,.35);
  color: var(--paper);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { border-color: var(--paper); background: rgba(255,255,255,.09); }
.btn--wide { width: 100%; padding: 1.1rem 1.8rem; font-size: 1.05rem; }
.btn[disabled] { opacity: .6; cursor: progress; transform: none; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin: 0 0 .9rem;
}
.eyebrow--light { color: var(--paper-dim); }

.highlight {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head { max-width: 46rem; margin: 0 auto 2.75rem; text-align: center; }
.section-head--left { text-align: left; margin-left: 0; }
.section-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.01em;
  font-size: clamp(1.9rem, 4.5vw, 3.1rem);
  line-height: 1.05;
  margin: 0;
}
.section-sub { color: var(--paper-dim); font-size: 1.05rem; margin: .9rem 0 0; }

section {
  padding: clamp(3.5rem, 8vw, 6rem) var(--edge);
  max-width: var(--max);
  margin: 0 auto;
}

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
  transition-delay: calc(var(--delay, 0) * 90ms);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================================
   Price tag (signature element) — dealer-lot paper tag
   ========================================================================= */

.price-tag {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .1rem;
  background: linear-gradient(160deg, var(--tag), #e0c65f);
  color: var(--tag-ink);
  padding: .9rem 1.6rem .9rem 2.4rem;
  clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 10% 100%, 0% 50%);
  transform: rotate(-4deg);
  box-shadow: 0 14px 26px -10px rgba(0,0,0,.55);
  min-width: 11rem;
}
.price-tag::before {
  /* grommet hole */
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: inset 0 1px 2px rgba(0,0,0,.6);
}
.price-tag__label {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .16em;
  font-weight: 700;
  opacity: .75;
}
.price-tag__amount {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 2rem;
  line-height: 1;
}
.price-tag__obo {
  font-family: var(--font-mono);
  font-size: .72rem;
  opacity: .8;
}
.price-tag--footer {
  transform: rotate(-3deg);
  min-width: 8rem;
  padding: .7rem 1.2rem .7rem 1.8rem;
}
.price-tag--footer .price-tag__amount { font-size: 1.4rem; }

/* =========================================================================
   Hero
   ========================================================================= */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  color: var(--paper);
  overflow: hidden;
}

.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,12,16,.55) 0%, rgba(12,12,16,.35) 35%, rgba(15,14,19,.92) 92%);
}
.hero__gradient {
  position: absolute; inset: 0;
  background: var(--gradient-soft);
  mix-blend-mode: color-dodge;
  opacity: .35;
  background-size: 200% 200%;
  animation: driftgradient 18s ease-in-out infinite;
}
@keyframes driftgradient {
  0%, 100% { background-position: 0% 30%; }
  50% { background-position: 100% 70%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__gradient { animation: none; }
}

.hero__nav {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem var(--edge);
}
.hero__navmark {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  letter-spacing: .01em;
  font-size: 1.15rem;
  text-transform: uppercase;
}
.hero__navmark-s {
  background: var(--gradient-main);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__navcta {
  font-family: var(--font-mono);
  font-size: .82rem;
  text-decoration: none;
  border: 1px solid rgba(216,217,224,.4);
  padding: .5rem 1rem;
  border-radius: 999px;
  transition: border-color .2s ease, background .2s ease;
}
.hero__navcta:hover { border-color: var(--paper); background: rgba(255,255,255,.08); }

.hero__content {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 0 var(--edge) clamp(3rem, 8vw, 5rem);
  max-width: 56rem;
}

.hero__headline {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.01em;
  font-size: clamp(2.6rem, 9vw, 6rem);
  line-height: .96;
}
.hero__headline .line { display: block; }
.hero__gradient-text {
  background: var(--gradient-main);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gradientpan 7s ease-in-out infinite;
}
@keyframes gradientpan {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@media (prefers-reduced-motion: reduce) { .hero__gradient-text { animation: none; } }

.hero__sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--paper);
  max-width: 38rem;
  margin: 0 0 2.2rem;
  opacity: .92;
}

.hero__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.75rem 2.5rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; }

.hero__scrollcue {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px; height: 42px;
  border: 2px solid rgba(216,217,224,.55);
  border-radius: 14px;
}
.hero__scrollcue span {
  position: absolute;
  top: 6px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: var(--ember);
  animation: scrolldrop 1.8s ease-in-out infinite;
}
@keyframes scrolldrop {
  0% { top: 6px; opacity: 1; }
  70% { top: 22px; opacity: 0; }
  100% { top: 22px; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .hero__scrollcue span { animation: none; } }

/* =========================================================================
   Stats strip
   ========================================================================= */

.stats {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) var(--edge);
  text-align: center;
}
.stats__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.2rem 0;
}
.stat {
  flex: 1 1 10rem;
  min-width: 8rem;
  padding: 0 1.2rem;
}
.stat__number {
  display: block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.1rem);
  letter-spacing: -.02em;
  background: var(--gradient-main);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat__label {
  display: block;
  margin-top: .35rem;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--paper-dim);
}
.divider {
  width: 1px;
  height: 2.6rem;
  background: var(--line);
  flex: 0 0 auto;
}
.stats__footnote {
  margin: 2rem 0 0;
  font-family: var(--font-mono);
  font-size: .85rem;
  color: var(--paper-dim);
}

/* =========================================================================
   Feature cards
   ========================================================================= */

.feature-section { }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15.5rem, 1fr));
  gap: 1.4rem;
}

.feature-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  will-change: transform;
}
.feature-card:hover {
  border-color: rgba(255,106,43,.5);
  box-shadow: 0 18px 40px -18px rgba(140,63,255,.4);
}
@media (prefers-reduced-motion: reduce) {
  .feature-card { transition: border-color .2s ease; }
}
.feature-card__icon {
  width: 3rem; height: 3rem;
  margin-bottom: 1.1rem;
  color: var(--ember);
}
.feature-card__icon svg { width: 100%; height: 100%; }
.feature-card h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.25rem;
  margin: 0 0 .6rem;
}
.feature-card p { margin: 0; color: var(--paper-dim); font-size: .96rem; }
.feature-card em { color: var(--paper); font-style: normal; font-weight: 700; }
.feature-card strong { color: var(--paper); }

.kbb-callout {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .9rem;
  background: linear-gradient(120deg, rgba(212,17,40,.14), rgba(140,63,255,.14));
  border: 1px solid rgba(255,106,43,.35);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
}
.kbb-callout__badge {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--gradient-main);
  padding: .35rem .7rem;
  border-radius: 999px;
  color: #17080a;
  font-weight: 700;
}
.kbb-callout__text { color: var(--paper-dim); font-size: .95rem; }

/* =========================================================================
   Gallery
   ========================================================================= */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11.5rem, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border: none;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--panel);
  aspect-ratio: 4 / 3;
  perspective: 800px;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s cubic-bezier(.22,1,.36,1), filter .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); filter: saturate(1.15); }
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.55), transparent 45%);
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery-item:hover::after { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .gallery-item img { transition: filter .2s ease; }
  .gallery-item:hover img { transform: none; }
}

/* =========================================================================
   Fun visuals placeholders
   ========================================================================= */

.fun-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1.4rem;
}
.fun-slot__frame {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  border: 2px dashed rgba(255,106,43,.45);
  background: linear-gradient(160deg, rgba(212,17,40,.08), rgba(140,63,255,.08));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  text-align: center;
}
.fun-slot__frame--filled {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-style: solid;
  border-color: rgba(255,106,43,.35);
  background: #0c0c10;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}
.fun-slot__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.fun-slot__frame--filled:hover .fun-slot__img { transform: scale(1.05); }
@media (prefers-reduced-motion: reduce) {
  .fun-slot__img { transition: none; }
  .fun-slot__frame--filled:hover .fun-slot__img { transform: none; }
}
.fun-slot__icon {
  font-size: 1.6rem;
  background: var(--gradient-main);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: spinpulse 3.5s ease-in-out infinite;
}
@keyframes spinpulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.2) rotate(180deg); }
}
@media (prefers-reduced-motion: reduce) { .fun-slot__icon { animation: none; } }
.fun-slot__label {
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--paper-dim);
}
.fun-slot__caption {
  margin: .8rem 0 0;
  font-size: .9rem;
  color: var(--paper-dim);
  font-style: italic;
  text-align: center;
}

/* =========================================================================
   Price comparison chart
   ========================================================================= */

.chart {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}
.chart__row {
  display: grid;
  grid-template-columns: minmax(9rem, 15rem) 1fr;
  align-items: center;
  gap: 1rem;
}
.chart__label { font-size: .92rem; color: var(--paper-dim); }
.chart__label em { color: var(--paper); font-style: normal; font-weight: 700; }
.chart__track {
  position: relative;
  height: 2.6rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.chart__bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(216,217,224,.28), rgba(216,217,224,.18));
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: .9rem;
  transition: width 1.1s cubic-bezier(.22,1,.36,1);
}
.chart__bar--hero {
  background: var(--gradient-main);
}
.chart__value {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: .88rem;
  color: var(--ink);
  white-space: nowrap;
}
.chart__bar:not(.chart__bar--hero) .chart__value { color: var(--paper); mix-blend-mode: normal; }
@media (prefers-reduced-motion: reduce) {
  .chart__bar { transition: none; }
}
.chart__footnote {
  margin: 1.6rem 0 0;
  font-size: .9rem;
  color: var(--paper-dim);
  text-align: center;
}

/* =========================================================================
   Fine print
   ========================================================================= */

.fineprint-section { }
.fineprint-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3rem);
  overflow: hidden;
}
.fineprint-stamp {
  position: absolute;
  top: 1.6rem;
  right: 1.8rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--red);
  border: 4px solid var(--red);
  border-radius: 10px;
  padding: .2rem .8rem;
  transform: rotate(9deg);
  opacity: .55;
  letter-spacing: .04em;
  pointer-events: none;
  mix-blend-mode: screen;
}
.fineprint-list {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
  max-width: 42rem;
}
.fineprint-list li {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  font-size: .96rem;
  color: var(--paper-dim);
}
.fineprint-list__mark {
  flex: 0 0 auto;
  color: var(--green);
  font-weight: 900;
  margin-top: .15rem;
}
.fineprint-list strong { color: var(--paper); }

/* =========================================================================
   Contact
   ========================================================================= */

.contact-form {
  max-width: 34rem;
  margin: 0 auto;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-row { display: flex; flex-direction: column; gap: .45rem; }
.form-row--split { flex-direction: row; gap: 1rem; }
.form-field { flex: 1 1 0; display: flex; flex-direction: column; gap: .45rem; }
.form-row--hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

label {
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--paper-dim);
}
input, textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .75rem .9rem;
  color: var(--paper);
  resize: vertical;
}
input:focus, textarea:focus {
  border-color: var(--ember);
}
.form-hint { margin: -.6rem 0 0; font-size: .82rem; color: var(--paper-dim); }

.form-status {
  min-height: 1.4rem;
  font-family: var(--font-mono);
  font-size: .92rem;
  text-align: center;
}
.form-status[data-state="ok"] { color: var(--green); }
.form-status[data-state="error"] { color: var(--ember); }

/* =========================================================================
   Footer
   ========================================================================= */

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 4.5rem) var(--edge) 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  text-align: center;
  border-top: 1px solid var(--line);
}
.site-footer__text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.4rem;
  margin: 0;
}
.site-footer__fine {
  font-family: var(--font-mono);
  font-size: .78rem;
  color: var(--paper-dim);
  max-width: 34rem;
  margin: 0;
}

/* =========================================================================
   Lightbox
   ========================================================================= */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(8,8,11,.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.is-open { display: flex; flex-direction: column; }
.lightbox__img {
  max-width: min(90vw, 1100px);
  max-height: 74vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.7);
}
.lightbox__caption {
  color: var(--paper-dim);
  font-size: .95rem;
  margin-top: 1rem;
  font-family: var(--font-mono);
  text-align: center;
}
.lightbox__close {
  position: absolute;
  top: 1.2rem; right: 1.4rem;
  background: none; border: none;
  color: var(--paper);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  padding: .3rem .6rem;
}
.lightbox__nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--paper);
  width: 2.8rem; height: 2.8rem;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
}
.lightbox__nav:hover { background: rgba(255,255,255,.15); }
.lightbox__nav--prev { left: 1rem; }
.lightbox__nav--next { right: 1rem; }

/* =========================================================================
   Responsive tweaks
   ========================================================================= */

@media (max-width: 640px) {
  .hero__row { flex-direction: column; align-items: flex-start; }
  .form-row--split { flex-direction: column; }
  .stat { flex-basis: 40%; }
  .divider:nth-of-type(2) { display: none; }
  .fineprint-stamp { top: .8rem; right: .8rem; font-size: 1.2rem; padding: .1rem .5rem; }
  .lightbox__nav { width: 2.3rem; height: 2.3rem; }

  /* Chart: stack label above the bar so the track gets full width
     instead of being squeezed by the label column's min-width. */
  .chart__row {
    grid-template-columns: 1fr;
    row-gap: .5rem;
  }
  .chart__label { font-size: .85rem; }
}
