/* ==========================================================================
   audaptiv.com — main landing page
   Cadence design system, LIGHT-COMMITTED. There is deliberately no
   colour-scheme media query anywhere in this file (spec v3 §1 "Visual
   decisions locked 28 Aug"): one committed look per page, no mode logic
   of any kind. The dark-capable stylesheet is css/styles.css,
   which still serves /privacy/ — do not merge the two.
   Token values mirror docs/design/tokens.json.
   ========================================================================== */

@font-face {
  font-family: "Hanken Grotesk";
  src: url("/fonts/hanken-grotesk-latin-wght-normal.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("/fonts/ibm-plex-mono-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

:root {
  /* Type */
  --font: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-display: var(--font);
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Ground + ink (Cadence light) */
  --paper: #f7f6f3;
  --fog: #eeece5;
  --snow: #ffffff;
  --onyx: #0a0f0d;

  --bg: var(--paper);
  --bg-sunken: var(--fog);
  --surface: var(--snow);
  --bg-inverse: var(--onyx);

  --text: var(--onyx);
  --text-secondary: rgba(10, 15, 13, 0.62);
  --text-muted: rgba(10, 15, 13, 0.45);
  --text-on-inverse: #ffffff;
  --text-on-inverse-secondary: rgba(231, 238, 235, 0.78);
  --text-on-inverse-muted: rgba(231, 238, 235, 0.55);

  /* Accent — Signal on light, Beacon on the one dark section */
  --accent: oklch(0.648 0.155 159);
  --accent-on-dark: oklch(0.8 0.175 159);
  --accent-text-on: #ffffff;
  --forest: oklch(0.34 0.085 162);

  --danger: #c0392b;

  /* Lines */
  --border: rgba(10, 15, 13, 0.12);
  --border-subtle: rgba(10, 15, 13, 0.07);
  /* Neutral ink .45 — the lightest step on the ramp that clears the 3:1
     WCAG 1.4.11 floor for component boundaries (≈3.05:1 on paper). */
  --border-input: rgba(10, 15, 13, 0.45);
  --border-on-dark: rgba(255, 255, 255, 0.13);

  /* Chrome — translucent snow over the paper ground */
  --nav-bg: rgba(255, 255, 255, 0.7);
  --nav-panel-bg: rgba(255, 255, 255, 0.92);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  /* Elevation */
  --shadow-card:
    0 1px 2px rgba(8, 14, 11, 0.04),
    0 6px 16px -10px rgba(8, 14, 11, 0.12),
    0 18px 40px -22px rgba(8, 14, 11, 0.16);

  /* Motion */
  --ease-out: cubic-bezier(0.2, 0.7, 0.3, 1);
  --dur-fast: 120ms;
  --dur-base: 180ms;

  /* Layout */
  --gutter: 20px;
  --nav-h: 60px;
  --measure: 1440px;
}

@media (min-width: 760px) {
  :root {
    --gutter: 48px;
    --nav-h: 72px;
  }
}

@media (min-width: 1200px) {
  :root {
    --gutter: 120px;
  }
}

/* --- Reset ---------------------------------------------------------------- */

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

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

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}

a:hover {
  color: var(--forest);
}

:where(a, button, input, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* --- Utilities ------------------------------------------------------------ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mono {
  font-family: var(--font-mono);
}

.muted {
  color: var(--text-secondary);
}

.display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

/* Also used on <h2> section labels, so it fully normalises the heading
   defaults — family, size, weight and margin — and renders identically to
   the <p> eyebrows it sits beside. */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin: 0;
}

/* The hero eyebrow is the longest one on the page; at 11px it wraps to two
   lines on every phone width. 10px holds it to the single line the mock shows,
   with the 0.1em tracking intact. Full size returns at 760px. */
.hero .eyebrow {
  font-size: 10px;
}

@media (min-width: 760px) {
  .display {
    line-height: 1.02;
  }

  .eyebrow,
  .hero .eyebrow {
    font-size: 12px;
  }
}

/* --- Layout --------------------------------------------------------------- */

.section {
  border-top: 1px solid var(--border-subtle);
  scroll-margin-top: var(--nav-h);
}

.section--paper {
  background: var(--bg);
}

.section--fog {
  background: var(--bg-sunken);
}

.section--onyx {
  background: var(--bg-inverse);
  color: var(--text-on-inverse);
}

.section__inner {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 56px var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 760px) {
  .section__inner {
    padding: 96px var(--gutter);
    gap: 40px;
  }
}

.section__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section__title {
  font-size: clamp(1.875rem, 1.35rem + 2.2vw, 2.625rem); /* 30 → 42px */
}

/* --- Buttons -------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition:
    background-color var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out);
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-text-on);
}

.btn-primary:hover {
  background: var(--forest);
  color: var(--accent-text-on);
}

.btn-outline {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border-input);
}

.btn-outline:hover {
  color: var(--text);
  border-color: var(--text);
}

.btn-beacon {
  background: var(--accent-on-dark);
  color: var(--onyx);
}

.btn-beacon:hover {
  background: var(--snow);
  color: var(--onyx);
}

/* --- Card ----------------------------------------------------------------- */

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

/* A green left edge marks one item in a set — never a green fill. */
.card--marked {
  border-left: 2px solid var(--accent);
}

/* --- Nav ------------------------------------------------------------------ */

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--nav-bg);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-bottom: 1px solid var(--border-subtle);
}

.nav__bar {
  max-width: var(--measure);
  margin: 0 auto;
  height: var(--nav-h);
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Nav brand is a link — 44px touch target. The footer .brand is a plain span,
   so it keeps its natural height. align-items keeps the mark where it was. */
a.brand {
  min-height: 44px;
}

.brand__mark {
  display: block;
  color: var(--accent);
  flex-shrink: 0;
}

.brand__word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
}

.nav__links a:not(.btn) {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.nav__cta {
  min-height: 44px;
  padding: 0 18px;
  font-size: 15px;
}

.nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-right: -10px;
  background: none;
  border: 0;
  color: var(--text);
  cursor: pointer;
}

.nav__panel {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px var(--gutter) 20px;
  border-top: 1px solid var(--border-subtle);
  background: var(--nav-panel-bg);
}

.nav__panel[data-open="true"] {
  display: flex;
}

.nav__panel a:not(.btn) {
  display: flex;
  align-items: center;
  min-height: 48px;
  font-size: 16px;
  font-weight: 500;
}

.nav__panel .btn {
  margin-top: 8px;
}

@media (min-width: 900px) {
  .nav__links {
    display: flex;
  }

  .nav__toggle,
  .nav__panel {
    display: none !important;
  }
}

/* --- Hero ----------------------------------------------------------------- */

.hero {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 56px var(--gutter) 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero__title {
  font-size: clamp(2.75rem, 1.35rem + 5.9vw, 5.25rem); /* 44 → 84px */
  max-width: 14ch;
}

.hero__subhead {
  font-size: clamp(1.1875rem, 1.05rem + 0.6vw, 1.5rem); /* 19 → 24px */
  font-weight: 500;
  letter-spacing: -0.02em;
}

.hero__category {
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.1875rem); /* 16 → 19px */
  max-width: 620px;
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.hero__ctas .btn {
  width: 100%;
}

.wave {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 var(--gutter) 40px;
}

.wave svg {
  width: 100%;
  height: 40px;
  color: var(--accent);
}

.wave .wave__mobile {
  display: block;
}

.wave .wave__desktop {
  display: none;
}

@media (min-width: 760px) {
  .hero {
    padding: 112px var(--gutter) 80px;
    gap: 24px;
  }

  .hero__ctas {
    flex-direction: row;
    gap: 16px;
    margin-top: 8px;
  }

  .hero__ctas .btn {
    width: auto;
  }

  .wave {
    padding-bottom: 64px;
  }

  .wave svg {
    height: 48px;
  }

  .wave .wave__desktop {
    display: block;
  }

  .wave .wave__mobile {
    display: none;
  }
}

/* --- Problem -------------------------------------------------------------- */

.beats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.beat {
  display: flex;
  gap: 12px;
}

.beat__n {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  flex-shrink: 0;
}

.beat__text {
  font-size: 16px;
}

@media (min-width: 760px) {
  .beats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
  }

  .beat {
    flex-direction: column;
    gap: 10px;
  }

  .beat__n {
    font-size: 13.5px;
  }

  .beat__text {
    font-size: 17px;
  }
}

/* --- Origin --------------------------------------------------------------- */

.origin {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.origin .card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.origin__title {
  font-size: clamp(1.3125rem, 1.2rem + 0.5vw, 1.5rem); /* 21 → 24px */
}

.origin__body {
  font-size: 15px;
}

@media (min-width: 900px) {
  .origin {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
  }

  .origin .card {
    padding: 32px;
    gap: 12px;
  }

  .origin__body {
    font-size: 16px;
  }
}

/* --- Lanes ---------------------------------------------------------------- */

.lanes {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lane {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lane__name {
  font-size: clamp(1.625rem, 1.4rem + 0.9vw, 2rem); /* 26 → 32px */
}

.lane__promise {
  font-weight: 600;
  font-size: 16px;
}

.lane__body {
  font-size: 15px;
}

.lane__points {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
  list-style: none;
}

.lane__points li {
  display: flex;
  gap: 10px;
}

.lane__points li::before {
  content: "\00b7";
  color: var(--accent);
  flex-shrink: 0;
}

.lane__for {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.lane .btn {
  margin-top: auto;
}

@media (min-width: 900px) {
  .lanes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    align-items: stretch;
  }

  .lane {
    padding: 40px;
    gap: 20px;
  }

  .lane__promise {
    font-size: 17px;
  }

  .lane__body,
  .lane__points {
    font-size: 16px;
  }

  .lane .btn {
    align-self: flex-start;
  }
}

/* --- Signals -------------------------------------------------------------- */

.signals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.signal {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* align-self, not the default stretch: a stretched <svg> keeps its 20px height
   but takes the card's full width, and the drawing would centre itself inside
   that box instead of sitting on the card's left edge. */
.signal__icon {
  align-self: flex-start;
  flex-shrink: 0;
  color: var(--accent);
  margin-bottom: 2px;
}

.signal__name {
  font-weight: 700;
  font-size: 15px;
}

.signal__detail {
  font-size: 12.5px;
}

.signals__note {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--text-secondary);
}

@media (min-width: 1100px) {
  .signals {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
  }

  .signal {
    padding: 20px;
    gap: 8px;
  }

  .signal__icon {
    margin-bottom: 4px;
  }

  .signal__name {
    font-size: 16px;
  }

  .signal__detail,
  .signals__note {
    font-size: 13.5px;
  }
}

/* --- Bring your own data (the page's only dark section) -------------------- */

.section--onyx .eyebrow {
  color: var(--text-on-inverse-muted);
}

.byo__title {
  font-size: clamp(1.75rem, 1.15rem + 2.5vw, 2.625rem); /* 28 → 42px */
  color: var(--text-on-inverse);
  max-width: 880px;
}

.byo__cols {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 15px;
  color: var(--text-on-inverse-secondary);
}

.byo__example {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-lg);
  font-size: 14px;
  color: var(--text-on-inverse-secondary);
}

.byo__dot {
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: var(--radius-pill);
  background: var(--accent-on-dark);
  flex-shrink: 0;
}

.byo .btn {
  width: 100%;
}

@media (min-width: 900px) {
  .byo__cols {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    font-size: 16px;
  }

  .byo__example {
    align-items: center;
    padding: 24px 28px;
    gap: 16px;
    font-size: 16px;
  }

  .byo__dot {
    margin-top: 0;
  }

  .byo .btn {
    width: auto;
    align-self: flex-start;
  }
}

/* --- Credibility ---------------------------------------------------------- */

.credibility .section__inner {
  align-items: center;
  text-align: center;
  gap: 20px;
}

.clients {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Each client is an official mark inlined as a monochrome SVG flattened to
   currentColor. Ink is the solid text colour with opacity on the whole svg —
   an rgba fill would double-darken where a logo's own paths overlap (the
   TfNSW swoosh). Heights are per-logo: the three lockups carry different
   visual mass at the same cap height. */
.client {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

.client svg {
  width: auto;
  opacity: 0.62; /* --text-secondary's alpha */
}

.client--tnsw svg { height: 32px; }
.client--acast svg { height: 19px; }
.client--cra svg { height: 40px; }

/* Forced colours substitutes CanvasText for currentColor but leaves opacity
   alone, so the dimmed ink would read as washed-out against the forced bg. */
@media (forced-colors: active) {
  .client svg { opacity: 1; }
}

@media (min-width: 760px) {
  .clients {
    flex-direction: row;
    gap: 64px;
  }

  .client--tnsw svg { height: 37px; }
  .client--acast svg { height: 22px; }
  .client--cra svg { height: 46px; }
}

/* --- Built here ----------------------------------------------------------- */

.pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pillar {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.pillar svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}

.pillar__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pillar strong {
  font-weight: 700;
}

.pillar span.muted {
  font-size: 15px;
}

@media (min-width: 900px) {
  .pillars {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
  }

  .pillar {
    flex-direction: column;
    gap: 10px;
  }

  .pillar svg {
    margin-top: 0;
  }

  .pillar__text {
    gap: 10px;
  }
}

/* --- Contact -------------------------------------------------------------- */

.contact .section__inner {
  gap: 24px;
}

.contact__copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__lead {
  font-size: 17px;
  max-width: 380px;
}

.form-card,
.form-card form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-card {
  padding: 24px;
}

@media (min-width: 900px) {
  .contact .section__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
  }

  .form-card {
    padding: 40px;
  }

  .form-card,
  .form-card form {
    gap: 16px;
  }
}

/* Fields */

.field-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (min-width: 560px) {
  .field-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 13.5px;
  font-weight: 600;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.4;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border-input);
  border-radius: var(--radius-md);
  transition:
    border-color var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out);
}

.field textarea {
  min-height: 96px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-muted);
}

.field input:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.field .hint {
  font-size: 12.5px;
  color: var(--text-secondary);
}

.field [aria-invalid="true"] {
  border-color: var(--danger);
}

.field-error {
  font-size: 12.5px;
  color: var(--danger);
  min-height: 0;
}

.field-error:empty {
  display: none;
}

/* Lane pills — radio group. Selected = neutral fog fill + green left
   marker (Cadence selection rule); never a green fill. */
.lanes-field {
  border: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lanes-field legend {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 0;
  margin-bottom: 8px;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  position: relative;
  display: inline-flex;
}

.pill input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
}

.pill label {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--border-input);
  border-left-width: 2px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  cursor: pointer;
  transition:
    background-color var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out);
}

.pill input:checked + label {
  background: var(--bg-sunken);
  border-color: transparent;
  border-left-color: var(--accent);
  font-weight: 600;
}

.pill input:focus-visible + label {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Honeypot — off-screen, skipped by assistive tech and by tab order. */
.hp {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-card .btn {
  width: 100%;
}

@media (min-width: 560px) {
  .form-card .btn {
    width: auto;
    align-self: flex-start;
  }
}

.form-status {
  font-size: 15px;
}

.form-status[data-state="error"] {
  color: var(--danger);
}

.form-done {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 8px 0;
}

.form-done__title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.035em;
  font-size: 24px;
}

[hidden] {
  display: none !important;
}

/* --- Footer --------------------------------------------------------------- */

.site-footer {
  border-top: 1px solid var(--border-subtle);
  background: var(--bg);
}

.site-footer__inner {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 28px var(--gutter) 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  /* ink.62 rather than the mock's ink.45 — ink.45 lands at ~3:1 on paper,
     under AA for text this size. */
  color: var(--text-secondary);
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--text-secondary);
}

.site-footer a:hover {
  color: var(--text);
}

@media (min-width: 760px) {
  .site-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    padding: 32px var(--gutter) 48px;
    font-size: 13.5px;
  }
}

/* --- Motion --------------------------------------------------------------- */

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
