/* ============================================================================
   ColdSpin — coldspinapp.com
   Design tokens follow the approved ColdSpin brand kit. Where the kit and the
   shipping app disagree on an exact value, the app wins: the accent below is
   the app's #C8FF2E (mobile/src/theme.ts), not the board's #C7FF2E.
   ========================================================================= */

:root {
  /* Foundation */
  --ink:          #0A0B0A;   /* page */
  --carbon:       #111311;   /* raised band */
  --surface:      #141614;   /* card */
  --surface-2:    #1C1F1B;   /* card, one step up */
  --line:         #25291F;   /* border */
  --line-soft:    #1E211C;

  /* Type */
  --white:        #F2F4F0;
  --mist:         #8A9082;
  --faint:        #5A6054;

  /* The accent. One primary action per view. */
  --lime:         #C8FF2E;
  --lime-press:   #A6DB1C;
  --lime-ink:     #0A0B0A;
  --lime-dim:     rgba(200, 255, 46, .12);
  --lime-line:    rgba(200, 255, 46, .32);

  --glow:         0 0 32px rgba(200, 255, 46, .22);
  --glow-soft:    0 0 20px rgba(200, 255, 46, .14);

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --pill: 999px;

  --wrap: 1140px;
  --gut: clamp(20px, 5vw, 40px);

  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
          Helvetica, Arial, sans-serif;
  --display: 'Anton', 'Arial Narrow', 'Segoe UI', Impact, sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body {
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--lime); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--lime); color: var(--lime-ink);
  padding: 12px 20px; font-weight: 700; border-radius: 0 0 var(--r-sm) 0;
}
.skip:focus { left: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   Brand marks
   -------------------------------------------------------------------------- */
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand:hover { text-decoration: none; }

/* The approved borderless S. Glow is applied here rather than baked into the
   PNG so it composites against whatever is behind it. */
.brand-s {
  width: 34px; height: 34px; object-fit: contain; flex: none;
  filter: drop-shadow(0 0 9px rgba(200, 255, 46, .45));
}

/* COLDSPIN wordmark: bold, uppercase, wide-tracked, with the short green
   underline the brand kit and the app header both use. */
.wordmark {
  position: relative;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: .17em;
  line-height: 1;
  color: var(--white);
  padding-bottom: 9px;
  white-space: nowrap;
}
.wordmark::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 30%; height: 3px; border-radius: 2px;
  background: var(--lime);
}
.wordmark.lg { font-size: 30px; }
.wordmark.lg::after { height: 4px; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 11, 10, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.head-in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 74px;
}
.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  color: var(--mist); font-size: 15px; font-weight: 500; text-decoration: none;
  transition: color .15s ease;
}
.nav a:hover { color: var(--white); text-decoration: none; }
.nav-links { display: flex; gap: 30px; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .head-in { min-height: 64px; }
}

/* The header CTA carries the full label on desktop and a short one on phones,
   where "Get Launch Updates" wraps to two lines and swamps the wordmark. Two
   spans rather than JS so it is correct before first paint. */
.lbl-short { display: none; }
@media (max-width: 560px) {
  .lbl-full { display: none; }
  .lbl-short { display: inline; }
  .site-head .btn-sm { padding: 9px 15px; font-size: 12px; }
  .brand-s { width: 28px; height: 28px; }
  .wordmark { font-size: 17px; letter-spacing: .14em; }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans);
  font-size: 15px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 14px 26px; border-radius: var(--r-md);
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  white-space: nowrap;
  transition: background .15s ease, border-color .15s ease, transform .1s ease;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--lime); color: var(--lime-ink); box-shadow: var(--glow-soft); }
.btn-primary:hover { background: var(--lime-press); }
.btn-primary[disabled] { opacity: .55; cursor: not-allowed; box-shadow: none; }

.btn-ghost { background: transparent; color: var(--white); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--lime-line); color: var(--lime); }

.btn-sm { padding: 10px 18px; font-size: 13px; }

/* --------------------------------------------------------------------------
   Type scale
   -------------------------------------------------------------------------- */
.display {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: .94;
  letter-spacing: .005em;
}
/* Capped so "STOP SEARCHING." holds one line inside the hero column, which is
   how the brand kit sets it. Above ~76px it breaks to three lines. */
h1.display { font-size: clamp(40px, 6.4vw, 76px); }
h2.display { font-size: clamp(32px, 5vw, 52px); }
.lime { color: var(--lime); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--lime);
  background: var(--lime-dim); border: 1px solid var(--lime-line);
  padding: 7px 14px; border-radius: var(--pill);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--lime); flex: none;
}

.lead { font-size: clamp(17px, 2vw, 20px); color: var(--mist); max-width: 54ch; }
.kicker {
  font-size: 12px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--faint);
}

section { padding-block: clamp(64px, 9vw, 116px); }
.section-head { max-width: 62ch; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head .kicker { margin-bottom: 14px; display: block; }
.section-head h2 { margin-bottom: 16px; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero { position: relative; padding-top: clamp(48px, 7vw, 84px); overflow: hidden; }
.hero::before {
  content: ''; position: absolute; z-index: 0; pointer-events: none;
  width: 780px; height: 780px; top: -320px; right: -240px;
  background: radial-gradient(circle, rgba(200, 255, 46, .10) 0%, transparent 62%);
}
.hero > * { position: relative; z-index: 1; }

.hero-grid {
  display: grid; grid-template-columns: 1.18fr .82fr;
  gap: clamp(32px, 5vw, 64px); align-items: center;
}
.hero h1 { margin: 22px 0 20px; }
.hero-sub {
  font-size: clamp(18px, 2.2vw, 22px); font-weight: 600;
  color: var(--white); margin-bottom: 14px;
}
.hero-copy { color: var(--mist); max-width: 50ch; margin-bottom: 32px; }

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
}

/* --------------------------------------------------------------------------
   Waitlist form
   -------------------------------------------------------------------------- */
.notify {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(20px, 3vw, 28px);
  max-width: 520px;
}
.notify h2 { font-size: 18px; font-weight: 700; margin-bottom: 6px; letter-spacing: -.01em; }
.notify .hint { font-size: 14px; color: var(--mist); margin-bottom: 18px; }

.field { margin-bottom: 14px; }
.field label {
  display: block; font-size: 12px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--mist); margin-bottom: 8px;
}
.field input {
  width: 100%; font-family: var(--sans); font-size: 16px; color: var(--white);
  background: var(--ink); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 14px 16px;
  transition: border-color .15s ease;
}
.field input::placeholder { color: var(--faint); }
.field input:focus { outline: none; border-color: var(--lime-line); box-shadow: var(--glow-soft); }
.field input[aria-invalid='true'] { border-color: #FF5C46; }

/* Bot trap. Off-screen rather than display:none so headless fillers still see
   it, and aria-hidden + tabindex keep it away from real users. */
.trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.notify .btn-primary { width: 100%; margin-top: 4px; }
.consent { font-size: 12.5px; line-height: 1.55; color: var(--faint); margin-top: 14px; }
.consent a { color: var(--mist); text-decoration: underline; }

.form-msg {
  display: none; margin-top: 14px; padding: 13px 16px;
  border-radius: var(--r-md); font-size: 14.5px; line-height: 1.5;
}
.form-msg.show { display: block; }
.form-msg.ok {
  background: var(--lime-dim); border: 1px solid var(--lime-line); color: var(--lime);
}
.form-msg.err {
  background: rgba(255, 92, 70, .1); border: 1px solid rgba(255, 92, 70, .4); color: #FF8B78;
}

.store-note {
  display: flex; align-items: center; gap: 14px; margin-top: 26px;
  color: var(--mist); font-size: 14px;
}
.store-note img {
  width: 44px; height: 44px; border-radius: 11px; flex: none;
  border: 1px solid var(--line);
}

/* --------------------------------------------------------------------------
   Device mockups — the real M5 interface, rebuilt in markup.
   Every business name and number shown is fictional (555-01xx is the reserved
   fiction range). No real prospect data appears anywhere on this site.
   -------------------------------------------------------------------------- */
.device {
  width: 100%; max-width: 300px; margin-inline: auto;
  background: #000; border: 9px solid #1B1D1A; border-radius: 40px;
  padding: 0; overflow: hidden; position: relative;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .7), 0 0 0 1px rgba(200, 255, 46, .1),
              0 0 60px rgba(200, 255, 46, .07);
}
.device-notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 42%; height: 21px; background: #000;
  border-radius: 0 0 13px 13px; z-index: 3;
}
.screen {
  background: var(--ink); padding: 26px 15px 18px;
  font-size: 12px; line-height: 1.4; position: relative; min-height: 520px;
}

.scr-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.scr-head .wordmark { font-size: 13px; letter-spacing: .14em; padding-bottom: 6px; }
.scr-head .wordmark::after { height: 2px; }
.scr-tools { display: flex; align-items: center; gap: 7px; }
.pro-pill {
  font-size: 9px; font-weight: 800; letter-spacing: .12em; color: var(--lime);
  border: 1px solid var(--lime-line); border-radius: var(--pill); padding: 3px 9px;
}
.scr-ico {
  width: 20px; height: 20px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--mist); font-size: 9px;
}

.scr-label {
  font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--mist); margin-bottom: 6px;
}
.scr-input {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--r-md); padding: 11px 13px; margin-bottom: 13px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 15px; font-weight: 600; color: var(--white);
}
.scr-input .chev { color: var(--lime); font-size: 11px; }
.scr-help { font-size: 9px; color: var(--faint); margin: -9px 0 13px; letter-spacing: .06em; }

.scr-chips { display: flex; gap: 6px; margin-bottom: 15px; }
.scr-chip {
  flex: 1; text-align: center; font-size: 10px; font-weight: 600;
  color: var(--mist); border: 1px solid var(--line);
  border-radius: var(--pill); padding: 6px 4px;
}
.scr-chip.on { color: var(--lime); border-color: var(--lime); }

.scr-card {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--r-md); padding: 12px; margin-bottom: 16px;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 10px;
}
.scr-card .t {
  font-size: 12px; font-weight: 700; color: var(--white); margin-bottom: 3px;
  display: flex; align-items: center; gap: 6px;
}
.scr-card .t::before {
  content: ''; width: 3px; height: 12px; border-radius: 2px; background: var(--lime);
}
.scr-card .d { font-size: 9.5px; color: var(--faint); line-height: 1.45; }
.scr-toggle {
  width: 34px; height: 19px; border-radius: var(--pill); background: #2A2E26;
  position: relative; flex: none; margin-top: 2px;
}
.scr-toggle::after {
  content: ''; position: absolute; top: 2.5px; left: 2.5px;
  width: 14px; height: 14px; border-radius: 50%; background: #555B4E;
}
.scr-toggle.on { background: rgba(200, 255, 46, .3); }
.scr-toggle.on::after { left: auto; right: 2.5px; background: var(--lime); }

.scr-spin {
  background: var(--lime); color: var(--lime-ink);
  font-size: 20px; font-weight: 900; letter-spacing: .22em; text-align: center;
  padding: 15px; border-radius: var(--r-md); box-shadow: var(--glow);
}

/* Result card */
.scr-result {
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 16px;
}
.scr-crumb {
  font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--faint); margin-bottom: 9px; line-height: 1.5;
}
.scr-biz { font-size: 17px; font-weight: 800; letter-spacing: -.01em; margin-bottom: 3px; }
.scr-loc { font-size: 11px; color: var(--mist); margin-bottom: 11px; }
.scr-tel { font-size: 19px; font-weight: 800; margin-bottom: 15px; }
.scr-call {
  background: var(--lime); color: var(--lime-ink); text-align: center;
  font-size: 15px; font-weight: 900; letter-spacing: .2em;
  padding: 12px; border-radius: var(--r-md); margin-bottom: 9px;
  box-shadow: var(--glow-soft);
}
.scr-again {
  border: 1px solid var(--line); border-radius: var(--r-md); text-align: center;
  font-size: 12px; font-weight: 600; padding: 10px; color: var(--white);
}
.scr-quota { text-align: center; font-size: 10px; color: var(--faint); margin-top: 9px; }

/* Recent leads */
.scr-sheet-head {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px;
}
.scr-sheet-head .h { font-size: 16px; font-weight: 800; }
.scr-sheet-head .done { font-size: 12px; font-weight: 600; color: var(--lime); }
.lead-row {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 11px 0; border-bottom: 1px solid var(--line-soft);
}
.lead-row:last-child { border-bottom: 0; }
.lead-row .n { font-size: 12.5px; font-weight: 700; margin-bottom: 2px; }
.lead-row .c { font-size: 10px; color: var(--mist); }
.lead-row .p { font-size: 12px; font-weight: 700; margin-top: 2px; }
.lead-row .t { font-size: 9px; color: var(--faint); margin-top: 2px; }
.call-again {
  background: var(--lime); color: var(--lime-ink); flex: none;
  font-size: 10.5px; font-weight: 800; padding: 8px 13px; border-radius: var(--pill);
}

.demo-note {
  text-align: center; font-size: 12px; color: var(--faint); margin-top: 20px;
}

/* --------------------------------------------------------------------------
   Steps
   -------------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 28px 26px; position: relative;
}
.step .num {
  font-family: var(--display); font-size: 15px; color: var(--lime);
  letter-spacing: .1em; margin-bottom: 16px; display: block;
}
.step h3 { font-size: 19px; font-weight: 700; margin-bottom: 9px; letter-spacing: -.01em; }
.step p { font-size: 15px; color: var(--mist); line-height: 1.6; }

.flowline {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  flex-wrap: wrap; margin-top: 40px;
  font-family: var(--display); text-transform: uppercase;
  font-size: clamp(20px, 3.4vw, 34px); letter-spacing: .04em;
}
.flowline .sep { color: var(--lime); font-size: .7em; }

/* --------------------------------------------------------------------------
   Feature grid
   -------------------------------------------------------------------------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 26px;
}
.feature h3 {
  font-size: 16px; font-weight: 700; margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px;
}
.feature h3::before {
  content: ''; width: 8px; height: 8px; border-radius: 2px;
  background: var(--lime); flex: none; box-shadow: var(--glow-soft);
}
.feature p { font-size: 14.5px; color: var(--mist); line-height: 1.62; }

.shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 34px); }

@media (max-width: 900px) {
  .steps, .features { grid-template-columns: 1fr; }
  .shots { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; }
}

/* --------------------------------------------------------------------------
   Band (CTA / callout)
   -------------------------------------------------------------------------- */
.band {
  background: var(--carbon); border-block: 1px solid var(--line-soft);
}

/* --------------------------------------------------------------------------
   Long-form pages (support / privacy / terms)
   -------------------------------------------------------------------------- */
.page-head { padding-block: clamp(48px, 7vw, 84px) 0; }
.page-head h1 {
  font-family: var(--display); text-transform: uppercase; line-height: 1;
  font-size: clamp(38px, 6.5vw, 64px); margin: 14px 0 12px;
}
.page-head .updated { color: var(--faint); font-size: 14px; }

.prose { max-width: 74ch; padding-block: clamp(32px, 4vw, 48px) clamp(64px, 8vw, 100px); }
.prose h2 {
  font-size: 22px; font-weight: 800; letter-spacing: -.01em;
  margin: 44px 0 14px; padding-top: 22px; border-top: 1px solid var(--line-soft);
}
.prose h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.prose h3 { font-size: 17px; font-weight: 700; margin: 26px 0 8px; }
.prose p, .prose li { color: #C9CEC3; font-size: 16.5px; line-height: 1.72; }
.prose p { margin-bottom: 16px; }
.prose ul, .prose ol { margin: 0 0 18px; padding-left: 22px; }
.prose li { margin-bottom: 9px; }
.prose li::marker { color: var(--lime); }
.prose strong { color: var(--white); font-weight: 700; }
.prose a { text-decoration: underline; }

.callout {
  background: var(--surface); border: 1px solid var(--line);
  border-left: 3px solid var(--lime);
  border-radius: var(--r-md); padding: 20px 22px; margin: 26px 0;
}
.callout p:last-child { margin-bottom: 0; }
.callout .kicker { display: block; margin-bottom: 8px; }

.toc {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 22px 26px; margin-bottom: 40px;
}
.toc .kicker { display: block; margin-bottom: 12px; }
.toc ul { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 30px; }
.toc li { margin-bottom: 7px; break-inside: avoid; }
.toc a { color: var(--mist); font-size: 14.5px; text-decoration: none; }
.toc a:hover { color: var(--lime); text-decoration: underline; }
@media (max-width: 640px) { .toc ul { columns: 1; } }

.contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 26px 0 8px; }
.contact-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 24px;
}
.contact-card .kicker { display: block; margin-bottom: 10px; }
.contact-card .addr { font-size: 18px; font-weight: 700; word-break: break-word; }
.contact-card p { font-size: 14px; color: var(--mist); margin: 8px 0 0; }
@media (max-width: 700px) { .contact-cards { grid-template-columns: 1fr; } }

details.faq {
  border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 0; margin-bottom: 12px; background: var(--surface);
}
details.faq summary {
  cursor: pointer; padding: 17px 20px; font-weight: 600; font-size: 16px;
  list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: '+'; color: var(--lime); font-size: 20px; font-weight: 400; flex: none;
}
details.faq[open] summary::after { content: '\2013'; }
details.faq .body { padding: 0 20px 18px; }
details.faq .body p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-foot {
  border-top: 1px solid var(--line-soft); background: var(--carbon);
  padding-block: clamp(48px, 6vw, 72px) 36px;
}
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px; margin-bottom: 44px;
}
.foot-grid .about { max-width: 40ch; color: var(--mist); font-size: 14.5px; margin-top: 16px; }
.foot-col h4 {
  font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--faint); margin-bottom: 14px;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-col li { margin-bottom: 10px; }
.foot-col a { color: var(--mist); font-size: 15px; text-decoration: none; }
.foot-col a:hover { color: var(--lime); text-decoration: underline; }

.foot-base {
  border-top: 1px solid var(--line-soft); padding-top: 26px;
  display: flex; flex-wrap: wrap; gap: 12px 26px; justify-content: space-between;
  font-size: 13px; color: var(--faint);
}
.foot-base p { max-width: 66ch; }

@media (max-width: 780px) { .foot-grid { grid-template-columns: 1fr; gap: 30px; } }

/* --------------------------------------------------------------------------
   404
   -------------------------------------------------------------------------- */
.center-pane { min-height: 62vh; display: grid; place-content: center; text-align: center; gap: 18px; }
.center-pane .btn { justify-self: center; }

/* --------------------------------------------------------------------------
   Utilities
   These exist so no page needs a style="" attribute, which lets the
   Content-Security-Policy in _headers omit 'unsafe-inline' for styles.
   -------------------------------------------------------------------------- */
.opt { text-transform: none; letter-spacing: 0; font-weight: 500; }
.screen.center { display: flex; align-items: center; }
.w-full { width: 100%; }
.t-center { text-align: center; }
.mt-xl { margin-top: 34px; }
.mb-lg { margin-bottom: 18px; }
.lead-center { margin: 0 auto 30px; }
