/* =========================================================================
   SafeWalkr — front page
   Light rebuild of the street-hardware world: paper the colour of fresh
   thermoplastic, asphalt reserved for the crosswalk bands and the framed
   captures, one accent colour driven by theme.css (html[data-accent]).
   Tokens live in theme.css.
   ========================================================================= */

* {
  box-sizing: border-box;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-soft);
  font-family: var(--font-text);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.wrap {
  width: min(1200px, 100% - 3rem);
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--accent-fill);
  color: var(--on-accent);
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  border-radius: 0 0 var(--radius-s) var(--radius-s);
}
.skip:focus {
  left: 1rem;
  top: 0;
}

:where(a, button, input):focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

::selection {
  background: var(--accent-wash-line);
}

/* ---------------------------------------------------------------- lettering */

.section-head,
.hero__head,
.contact__head,
.stage__body h3,
.status__head h3,
.wordmark__text {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.022em;
  text-wrap: balance;
  color: var(--ink);
}

.section-head {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.06;
  margin: 0 0 1.25rem;
}

.lede {
  max-width: 62ch;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.6;
  color: var(--ink-quiet);
  margin: 0 0 2.75rem;
}

/* ---------------------------------------------------------------- crosswalk */
/* Thermoplastic ladder bars on asphalt. The one dark element that survives
   the light rebuild: a structural band marking where the page changes
   surface, the way a crosswalk marks where you cross. */

.crosswalk {
  height: 34px;
  background-color: var(--asphalt);
  background-image: repeating-linear-gradient(
    90deg,
    var(--thermo) 0 40px,
    transparent 40px 76px
  );
  background-position: center;
  filter: none;
  opacity: 1;
}
.crosswalk--top {
  height: 40px;
}

/* ---------------------------------------------------------------- topbar */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.7rem clamp(1rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.wordmark__mark {
  width: 32px;
  height: 32px;
  flex: none;
}
.wordmark__mark .markTile {
  fill: var(--accent-fill);
  transition: fill 0.25s;
}
.wordmark__mark .markRing {
  stroke: var(--on-accent);
  opacity: 0.55;
}
.wordmark__mark .markInk {
  fill: var(--on-accent);
}
.wordmark__text {
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.topnav {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
  font-size: 0.92rem;
  font-weight: 500;
}
.topnav a {
  color: var(--ink-soft);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.18s;
}
.topnav a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ---------------------------------------------------------------- language */

.langSwitch {
  display: flex;
  flex: none;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px var(--line);
  background: var(--paper);
}
.langSwitch__btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  background: transparent;
  color: var(--ink-quiet);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.01em;
  padding: 0.42rem 0.75rem;
  transition: background-color 0.18s, color 0.18s;
}
.langSwitch__btn:hover {
  color: var(--accent);
}
.langSwitch__btn.isActive {
  background: var(--ink);
  color: var(--thermo);
}
.langSwitch__btn.isActive:hover {
  color: var(--thermo);
}

@media (max-width: 900px) {
  .topbar {
    flex-wrap: wrap;
    row-gap: 0.55rem;
    padding-bottom: 0;
  }
  .topbar__cta {
    margin-left: auto;
  }
  .topnav {
    order: 3;
    flex: 1 0 100%;
    margin-left: 0;
    gap: 1.15rem;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 0.55rem;
    -webkit-overflow-scrolling: touch;
  }
  .topnav::-webkit-scrollbar {
    display: none;
  }
  .topnav a {
    white-space: nowrap;
  }
}

/* ---------------------------------------------------------------- buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: transform 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out),
    background-color 0.18s, color 0.18s;
}
.btn:active {
  transform: translateY(1px) scale(0.99);
}

.btn--primary {
  background: var(--accent-fill);
  color: var(--on-accent);
  box-shadow: var(--shadow-1);
}
.btn--primary:hover {
  background: var(--accent-strong);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-2);
}
html[data-accent="gold"] .btn--primary:hover {
  background: #e6a300;
  color: var(--on-accent);
}

.btn--sign {
  background: var(--accent-fill);
  color: var(--on-accent);
  box-shadow: var(--shadow-1);
}
.btn--sign:hover {
  background: var(--accent-strong);
  color: #fff;
  transform: translateY(-1px);
}
html[data-accent="gold"] .btn--sign:hover {
  background: #e6a300;
  color: var(--on-accent);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn--ghost:hover {
  box-shadow: inset 0 0 0 1.5px var(--ink);
}

/* ---------------------------------------------------------------- sign panel */
/* One remaining sign face: the contact panel, printed in the accent. */

.sign {
  background: var(--accent-fill);
  border-radius: var(--radius-lg);
  padding: 6px;
  box-shadow: var(--shadow-2);
  transition: background-color 0.25s;
}

.sign__border {
  border: 2px solid color-mix(in srgb, var(--on-accent) 35%, transparent);
  border-radius: 11px;
  padding: clamp(1.75rem, 3.4vw, 2.75rem);
}

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

.hero {
  position: relative;
  background-color: var(--paper);
  background-image: var(--grit-soft);
  background-size: 180px 180px;
  overflow: hidden;
  isolation: isolate;
}

.hero__beam {
  display: none;
}

#finding,
#pipeline,
#engine,
#scale {
  scroll-margin-top: 88px;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(1200px, 100% - 3rem);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(2.5rem, 4.5vw, 4.25rem) 0 clamp(3rem, 5.5vw, 4.75rem);
}

.hero__copy {
  animation: rise 0.7s var(--ease-out) both;
}
.capture {
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: rise 0.7s var(--ease-out) 0.12s both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero__head {
  font-size: clamp(2.4rem, 4.5vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 1.3rem;
}
.hero__head-em {
  display: inline-block;
  position: relative;
  color: var(--accent);
  transition: color 0.25s;
}
/* the underline is a thermoplastic edge line, laid in the accent */
.hero__head-em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.04em;
  height: 5px;
  background: var(--accent-fill);
  border-radius: 3px;
  opacity: 0.45;
}

.hero__sub {
  max-width: 52ch;
  font-size: clamp(1.02rem, 1.4vw, 1.14rem);
  line-height: 1.6;
  color: var(--ink-quiet);
  margin: 0 0 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* -------- classified capture readout: a framed specimen, still asphalt -------- */

.capture__frame {
  background: var(--asphalt-2);
  border: 1px solid var(--asphalt-line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}

.capture__scene {
  position: relative;
  aspect-ratio: 640 / 330;
  background: var(--asphalt);
}
.capture__svg {
  width: 100%;
  height: 100%;
  display: block;
}

.capture__verdicts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--asphalt-line);
}

.verdict {
  padding: 0.8rem 0.9rem;
  border-right: 1px solid var(--asphalt-line);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.verdict:last-child {
  border-right: 0;
}
.verdict__key {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-on-asphalt-quiet);
}
.verdict__val {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--thermo);
  line-height: 1.1;
}
/* One fact, one colour: hazard marks the missing sidewalk here and in the
   scene's hatching. */
.verdict--fail .verdict__val {
  color: #e8613a;
}
.verdict--score .verdict__val {
  color: var(--thermo);
}
.verdict__of {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-on-asphalt-quiet);
}

.capture__caption {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.85rem 0.25rem 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--ink-quiet);
}
.capture__coord {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}
.capture__note {
  max-width: 46ch;
}

@media (max-width: 940px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .capture__verdicts {
    grid-template-columns: repeat(2, 1fr);
  }
  .verdict:nth-child(2) {
    border-right: 0;
  }
  .verdict:nth-child(-n + 2) {
    border-bottom: 1px solid var(--asphalt-line);
  }
}

/* ---------------------------------------------------------------- finding */

.finding {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}

.field {
  background: var(--paper);
  background-image: var(--grit-soft);
  background-size: 180px 180px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3.2vw, 2.5rem);
}

.field__head {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 1.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}
.field__sample {
  color: var(--ink-quiet);
  letter-spacing: 0.08em;
}

.field__rows {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.row__label {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.2rem 0.8rem;
  margin-bottom: 0.5rem;
}
.row__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.04rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.row__n {
  font-size: 0.88rem;
  color: var(--ink-quiet);
}
.row__n b {
  color: var(--ink-soft);
  font-weight: 700;
}

/* The bar is a length of roadway: painted in the accent where a sidewalk
   exists, bare hatched ground where it does not. */
.bar {
  display: flex;
  height: 26px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line);
}
.bar__yes {
  flex: 0 0 var(--pct, 0%);
  background: var(--accent-fill);
  min-width: 4px;
  transition: background-color 0.25s;
}
.bar__no {
  flex: 1 1 auto;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0 8px,
    rgba(23, 27, 28, 0.07) 8px 16px
  );
}

.field__foot {
  margin: 2rem 0 0;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
  max-width: 66ch;
  font-size: 1rem;
  color: var(--ink-soft);
}
.field__foot strong {
  color: var(--hazard);
  font-weight: 700;
}

/* ---------------------------------------------------------------- pipeline */

.pipeline {
  background: var(--paper);
  padding-bottom: clamp(3.5rem, 7vw, 6.5rem);
}
.pipeline .wrap {
  padding-top: clamp(3rem, 6vw, 5rem);
}
.section-head--light {
  color: var(--ink);
}
.lede--light {
  color: var(--ink-quiet);
}

.stages {
  list-style: none;
  margin: 2.25rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
}

/* the route line the stages sit on */
.stages::before {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  top: 33px;
  height: 3px;
  background-image: repeating-linear-gradient(
    90deg,
    var(--accent) 0 14px,
    transparent 14px 26px
  );
  opacity: 0.45;
}

.stage {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.3rem 1.5rem;
  box-shadow: var(--shadow-1);
}

.stage__plate {
  position: relative;
  z-index: 1;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  background: var(--accent-wash);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  margin-bottom: 1.2rem;
  transition: background-color 0.25s, border-color 0.25s;
}
.pict {
  width: 32px;
  height: 32px;
  fill: var(--ink);
}
.pict .pictAccent {
  fill: var(--accent);
}
.pict .pictAccentStroke {
  stroke: var(--accent);
}

.stage__body h3 {
  font-size: 1.3rem;
  margin: 0 0 0.45rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.stage__body p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.56;
  color: var(--ink-quiet);
}

@media (max-width: 900px) {
  .stages {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .stages::before {
    display: none;
  }
  .stage {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 1.15rem;
    align-items: start;
    padding: 1.15rem;
  }
  .stage__plate {
    margin-bottom: 0;
  }
}

/* ---------------------------------------------------------------- engine */

.engine {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}

.status-pair {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) {
  .status-pair {
    grid-template-columns: 1fr;
  }
}

.status {
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid var(--line);
}
.status--live {
  background: var(--accent-wash);
  border-color: var(--accent-wash-line);
  transition: background-color 0.25s, border-color 0.25s;
}
.status--proto {
  background: var(--paper);
}

.status__head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(23, 27, 28, 0.1);
}
.status__head h3 {
  margin: 0;
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}

.status__lamp {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 3px rgba(47, 158, 117, 0.2);
  flex: none;
}
.status__lamp--amber {
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 181, 0, 0.24);
}

.status__list {
  margin: 0 0 1.6rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.status__list li {
  position: relative;
  padding-left: 1.3rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.status__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 3px;
  border-radius: 2px;
  background: currentColor;
  opacity: 0.45;
}
.status__list b {
  color: var(--ink);
  font-weight: 700;
}
.status__note {
  margin: 0;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--ink-quiet);
}

/* -------- specimen: the live app, mounted -------- */

.specimen {
  margin: 0;
}
.specimen__mount {
  background: var(--asphalt);
  padding: clamp(0.6rem, 1.3vw, 1rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
}
.specimen__mount img {
  width: 100%;
  border-radius: 8px;
  background: var(--asphalt-2);
}
.specimen figcaption {
  margin-top: 0.9rem;
  font-size: 0.88rem;
  color: var(--ink-quiet);
}

/* ---------------------------------------------------------------- scale */

.scale {
  background: var(--paper);
  padding-bottom: clamp(3.5rem, 7vw, 6.5rem);
}
.scale .wrap {
  padding-top: clamp(3rem, 6vw, 5rem);
}

.ledger {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 0 clamp(1.25rem, 2.5vw, 2rem);
  box-shadow: var(--shadow-1);
}
.ledger__row {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) 52px minmax(0, 1.15fr);
  gap: 1.1rem;
  align-items: center;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.ledger__row:last-child {
  border-bottom: 0;
}
.ledger__now {
  font-size: 0.95rem;
  color: var(--ink-quiet);
}
.ledger__arrow {
  position: relative;
  height: 4px;
  background-image: repeating-linear-gradient(
    90deg,
    var(--accent) 0 10px,
    transparent 10px 17px
  );
  opacity: 0.85;
}
.ledger__arrow::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 50%;
  translate: 0 -50%;
  border-left: 12px solid var(--accent);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
.ledger__next {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.98rem, 1.4vw, 1.1rem);
  line-height: 1.42;
  color: var(--ink);
  letter-spacing: -0.012em;
}

@media (max-width: 760px) {
  .ledger__row {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  .ledger__arrow {
    width: 52px;
  }
}

.scale__close {
  margin: 2.75rem 0 0;
  max-width: 66ch;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.1vw, 1.5rem);
  line-height: 1.38;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}

/* ---------------------------------------------------------------- contact */

.contact {
  background: var(--paper);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.sign--contact {
  max-width: 620px;
  margin-inline: auto;
  text-align: center;
}
.contact__head {
  font-size: clamp(2rem, 4vw, 2.7rem);
  letter-spacing: -0.035em;
  color: var(--on-accent);
  margin: 0 0 0.7rem;
}
.contact__people {
  margin: 0 0 1.4rem;
  font-size: 1rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--on-accent) 80%, transparent);
}
.contact__mail {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  letter-spacing: -0.02em;
  color: var(--on-accent);
  text-decoration: none;
  border-bottom: 3px solid color-mix(in srgb, var(--on-accent) 45%, transparent);
  padding-bottom: 2px;
  transition: border-color 0.18s;
}
.contact__mail:hover {
  border-bottom-color: var(--on-accent);
}
.sign--contact .sign__border {
  --focus-ring: var(--on-accent);
}
.sign--contact :where(a):focus-visible {
  outline-color: var(--on-accent);
}

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

.foot {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: clamp(2.5rem, 5vw, 4rem) 0 5.5rem;
  font-size: 0.9rem;
  color: var(--ink-quiet);
}
.foot__grid {
  display: grid;
  grid-template-columns: 1.1fr 1.35fr 0.75fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 900px) {
  .foot__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.foot__col h2 {
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 0.9rem;
}
.foot__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  line-height: 1.5;
  max-width: 46ch;
}
.foot__col--end {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.foot__mail {
  margin: 0;
}
.foot__mail a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.foot__mail a:hover {
  text-decoration: underline;
}

/* ---------------------------------------------------------------- motion off */

@media (prefers-reduced-motion: reduce) {
  .hero__copy,
  .capture {
    animation: none;
  }
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
