/* ============================================================================
   Leverage — visual language ported from reducto.ai
   Warm off-white ground, deep-purple ink, dashed stone hairlines,
   Fraunces serif display + Inter UI + JetBrains Mono accent, magenta brand.
   ========================================================================== */

:root {
  /* ground + ink */
  --bg:        #f8f8f6;
  --bg-raised: #fdfdfb;
  --bg-panel:  #ffffff;

  --ink:     #310632;   /* reducto dark-purple, deepest */
  --ink-900: #1c1917;
  --ink-800: #292524;
  --ink-700: #44403b;
  --ink-600: #57534d;
  --ink-500: #79716b;
  --ink-400: #a6a09b;
  --ink-300: #d6d3d1;

  /* hairlines */
  --line:       #e7e5e4;   /* stone-200 */
  --line-strong:#d6d3d1;
  --cream:      #d7ccc1;   /* reducto dark-cream border */

  /* brand */
  --brand:      #9D17A0;
  --brand-dark: #8A1589;
  --brand-edge: #690F6B;
  --brand-deep: #310632;
  --lav:        #ddc1fb;
  --lav-soft:   #f5e9f2;
  --peach:      #e9a97c;

  --font-serif: "Fraunces", ui-serif, Georgia, "Times New Roman", serif;
  --font-sans:  "Inter", system-ui, -apple-system, sans-serif;
  --font-mono:  "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --maxw: 1200px;
  --pad: clamp(16px, 5vw, 64px);
  --radius: 10px;
  --radius-lg: 16px;

  --shadow-key: inset 0 2px 0 rgba(255,255,255,.28), inset 0 -2px 0 rgba(0,0,0,.14);
  --shadow-soft: 0 1px 2px rgba(49,6,50,.04), 0 12px 32px -12px rgba(49,6,50,.10);
}

* { box-sizing: border-box; }

/* The [hidden] attribute must win over component display rules (.stage__idle etc.
   set display:flex/grid, which would otherwise override the UA [hidden] rule and
   leave "hidden" overlays visible over the live avatar). */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-800);
  font-family: var(--font-sans);
  font-feature-settings: "ss02" on, "salt" on, "cv05" on;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.accent-mono {
  font-family: var(--font-mono);
  font-weight: 400;
  letter-spacing: -0.055em;
  color: var(--brand);
}
.accent-serif { color: var(--brand); }
.accent-serif-i { font-style: italic; color: var(--brand); }

/* ---------------------------------------------------------------- announce */
.announce {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 20px;
  background: var(--brand);
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-align: center;
  border-bottom: 1px solid var(--brand-edge);
}
.announce__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lav);
  box-shadow: 0 0 0 3px rgba(221,193,251,.28);
}

/* ------------------------------------------------------------------ header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.wordmark {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.wordmark__dot { color: var(--brand); }

.nav {
  display: flex;
  gap: 30px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav a {
  font-size: 14.5px;
  font-weight: 450;
  color: var(--ink-600);
  transition: color .15s ease;
}
.nav a:hover { color: var(--ink-900); }

.site-header__actions { display: flex; align-items: center; gap: 10px; }

/* ----------------------------------------------------------------- buttons */
.btn {
  --btn-bg: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
  transition: background .16s ease, border-color .16s ease, transform .06s ease, box-shadow .16s ease;
}
.btn:active { transform: translateY(1px); }

.btn--sm { height: 38px; padding: 0 14px; font-size: 14px; }
.btn--lg { height: 56px; padding: 0 34px; font-size: 17px; min-width: 200px; }

.btn--primary {
  background:
    linear-gradient(0deg, rgba(0,0,0,.13), rgba(0,0,0,.13)),
    var(--brand);
  color: #fff;
  border-color: var(--brand-edge);
  box-shadow: var(--shadow-key);
}
.btn--primary:hover { background: linear-gradient(0deg, rgba(0,0,0,.05), rgba(0,0,0,.05)), var(--brand-dark); }

.btn--dark {
  background: var(--ink-800);
  color: #fff;
  border-color: var(--ink-900);
  box-shadow: inset 0 2px 0 rgba(255,255,255,.16), inset 0 -2px 0 rgba(0,0,0,.24);
}
.btn--dark:hover { background: var(--ink-900); }

.btn--ghost {
  background: var(--bg-panel);
  color: var(--ink-800);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--ink-400); background: #fff; }

.btn__spinner {
  width: 15px; height: 15px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  animation: spin .7s linear infinite;
  display: none;
}
.btn.is-loading .btn__spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* -------------------------------------------------------------------- hero */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: clamp(10px, 1.6vw, 18px);
  padding-bottom: clamp(24px, 3.5vw, 40px);
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 6px 6px 6px;
  padding-right: 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-panel);
  font-size: 13px;
  font-weight: 450;
  color: var(--ink-600);
  box-shadow: 0 1px 2px rgba(49,6,50,.04);
  transition: border-color .15s ease, color .15s ease;
}
.pill:hover { border-color: var(--cream); color: var(--ink-800); }
.pill__tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--lav-soft);
  color: var(--brand);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero__title {
  margin: 26px 0 0;
  font-family: var(--font-serif);
  font-weight: 470;
  font-variation-settings: "opsz" 130, "SOFT" 0, "WONK" 0;
  color: var(--ink-800);
  letter-spacing: -0.02em;
  line-height: 1.02;
  font-size: clamp(52px, 9vw, 104px);
}
/* Mono has a larger apparent size than the serif at the same px, so scale it down
   and nudge the baseline to sit flush with the serif letters around it. */
.hero__title .accent-mono {
  font-variation-settings: normal;
  font-size: 0.84em;
  vertical-align: 0.02em;
}

.hero__sub {
  margin: 22px 0 0;
  max-width: 680px;
  font-size: clamp(18px, 2.2vw, 20px);
  line-height: 1.55;
  color: var(--ink-500);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 38px;
}
.hero__note {
  margin-top: 22px;
  font-size: 13px;
  color: var(--ink-400);
  font-family: var(--font-mono);
  letter-spacing: -0.02em;
}

/* ------------------------------------------------------------------ ticker */
.ticker {
  border-top: 1px dashed var(--line-strong);
  border-bottom: 1px dashed var(--line-strong);
  overflow: hidden;
  padding: 18px 0;
  margin-top: 20px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker__track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 46s linear infinite;
}
.ticker__track span {
  font-family: var(--font-serif);
  font-style: italic;
  font-variation-settings: "opsz" 40;
  font-size: 19px;
  color: var(--ink-400);
  white-space: nowrap;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ----------------------------------------------------------- section heads */
.section-head { max-width: 720px; margin: 0 auto clamp(36px, 5vw, 56px); text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
}
.section-title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 460;
  font-variation-settings: "opsz" 80;
  font-size: clamp(30px, 4.6vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.018em;
  color: var(--ink-800);
}
.section-lead {
  margin: 18px auto 0;
  max-width: 560px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-500);
}

/* -------------------------------------------------------------------- room */
.room-wrap { padding-top: clamp(4px, 1.5vw, 16px); }

.room {
  max-width: 780px;
  margin-inline: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-panel);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

/* stage (video only) */
.stage {
  display: flex;
  flex-direction: column;
  padding: 22px;
  gap: 18px;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(221,193,251,.20), transparent 60%),
    var(--bg-raised);
}
.stage__frame {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  background: radial-gradient(130% 100% at 50% 0%, #3a1240, #310632 55%, #23041f);
  /* Single clean corner: no border/inset-shadow layered over the radius (those left a
     visible double-corner seam where the clipped video met the rounded border). A soft
     outset ring gives definition without a seam. */
  box-shadow: 0 0 0 1px rgba(49,6,50,.06);
}
/* Every full-bleed layer shares the frame's radius and is clipped by overflow:hidden,
   so all corners coincide exactly. */
.stage__video,
.stage__preview {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  background: transparent;
  border-radius: inherit;
}
.stage__logo {
  position: absolute;
  top: 18px; left: 20px;
  height: 30px;
  width: auto;
  z-index: 6;
  opacity: .95;
  pointer-events: none;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.45));
}

/* idle overlay */
.stage__idle {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 26px;
  text-align: center;
  color: #fff;
}
/* readability scrim over the looping avatar clip */
.stage__idle::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,4,25,.88) 0%, rgba(28,4,25,.42) 38%, rgba(28,4,25,0) 68%);
  z-index: 1;
}
.stage__idle-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.stage__idle-name { margin: 0; font-family: var(--font-serif); font-size: 22px; font-weight: 500; }
.stage__idle-role { margin: 0 0 14px; font-size: 13px; color: var(--lav); font-family: var(--font-mono); letter-spacing: -0.02em; }
.stage__idle-hint { margin: 12px 0 0; font-size: 12.5px; color: rgba(255,255,255,.66); max-width: 300px; }
.stage__idle-hint:empty { display: none; }
.stage__idle-hint.is-error { color: #ffb3bd; }

/* live chrome */
.stage__chrome {
  position: absolute;
  inset: 14px 14px auto 14px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  pointer-events: none;
}
.stage__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(28,4,25,.55);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}
.stage__live-dot { width: 7px; height: 7px; border-radius: 50%; background: #ff5470; box-shadow: 0 0 0 0 rgba(255,84,112,.6); animation: pulse 1.6s ease-out infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(255,84,112,.5);} 100%{box-shadow:0 0 0 8px rgba(255,84,112,0);} }

/* controls */
.controls { display: flex; gap: 10px; }
.ctl {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: 46px;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background: var(--bg-panel);
  color: var(--ink-700);
  font-family: var(--font-sans); font-weight: 500; font-size: 14.5px;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.ctl:hover { border-color: var(--ink-400); }
.ctl__icon { width: 18px; height: 18px; }
.ctl[aria-pressed="true"] { background: var(--lav-soft); border-color: var(--lav); color: var(--brand); }
.ctl--end { color: #b0322f; }
.ctl--end:hover { background: #fdecec; border-color: #f0b8b6; }

/* transcript side */
.transcript {
  display: flex;
  flex-direction: column;
  background: var(--bg-panel);
  min-height: 480px;
  max-height: 640px;
}
.transcript__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px dashed var(--line-strong);
}
.transcript__title { font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-500); }
.transcript__status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--ink-400); font-family: var(--font-mono); letter-spacing: -0.01em;
}
.transcript__status::before { content:""; width:6px; height:6px; border-radius:50%; background: var(--ink-300); }
.transcript__status.is-live { color: var(--brand); }
.transcript__status.is-live::before { background: var(--brand); box-shadow: 0 0 0 3px rgba(157,23,160,.15); }

.transcript__body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scroll-behavior: smooth;
}
.transcript__empty { margin: auto 0; text-align: center; color: var(--ink-400); }
.transcript__empty p { margin: 0; font-size: 14.5px; }
.transcript__empty-sub { margin-top: 6px !important; font-size: 13px !important; font-family: var(--font-mono); letter-spacing: -0.02em; }

.msg { display: flex; flex-direction: column; gap: 4px; max-width: 92%; }
.msg__who { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-400); }
.msg__bubble {
  font-size: 15px; line-height: 1.5;
  padding: 11px 14px;
  border-radius: 12px;
}
.msg--user { align-self: flex-end; align-items: flex-end; }
.msg--user .msg__bubble { background: var(--ink-800); color: #fff; border-bottom-right-radius: 4px; }
.msg--persona { align-self: flex-start; }
.msg--persona .msg__bubble { background: var(--lav-soft); color: var(--ink-900); border: 1px solid #f0e2ec; border-bottom-left-radius: 4px; }
.msg--persona .msg__who { color: var(--brand); }

/* composer */
.composer { border-top: 1px dashed var(--line-strong); padding: 14px; display: flex; flex-direction: column; gap: 12px; }
.composer__chips { display: flex; flex-wrap: wrap; gap: 7px; }
.chip {
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--bg-raised);
  color: var(--ink-600);
  font-family: var(--font-sans); font-size: 12.5px; font-weight: 450;
  cursor: pointer;
  transition: border-color .15s, color .15s, background .15s;
}
.chip:hover { border-color: var(--lav); color: var(--brand); background: var(--lav-soft); }
.composer__form { display: flex; gap: 8px; }
.composer__input {
  flex: 1;
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--bg-panel);
  font-family: var(--font-sans); font-size: 14.5px; color: var(--ink-900);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.composer__input:focus { border-color: var(--lav); box-shadow: 0 0 0 3px rgba(221,193,251,.35); }
.composer__send {
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center;
  border-radius: var(--radius);
  border: 1px solid var(--brand-edge);
  background: var(--brand); color: #fff;
  cursor: pointer;
  box-shadow: var(--shadow-key);
}
.composer__send:hover { background: var(--brand-dark); }
.composer__send svg { width: 17px; height: 17px; }

.room__disclaimer { text-align: center; margin: 20px 0 0; font-size: 12.5px; color: var(--ink-400); font-family: var(--font-mono); letter-spacing: -0.02em; }

/* ------------------------------------------------------------------- steps */
.how { padding-top: clamp(72px, 10vw, 128px); }
.steps {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-panel);
}
.step { padding: 40px 34px 46px; border-right: 1px dashed var(--line-strong); position: relative; }
.step:last-child { border-right: none; }
.step__num { font-family: var(--font-mono); font-size: 13px; color: var(--brand); letter-spacing: .04em; }
.step__title { margin: 22px 0 10px; font-family: var(--font-serif); font-weight: 480; font-size: 23px; letter-spacing: -0.01em; color: var(--ink-800); }
.step__body { margin: 0; font-size: 15.5px; line-height: 1.55; color: var(--ink-500); }

/* --------------------------------------------------------------- practice */
.practice { padding-top: clamp(72px, 10vw, 128px); }
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-panel);
}
.cell {
  padding: 34px 30px;
  border-right: 1px dashed var(--line-strong);
  border-bottom: 1px dashed var(--line-strong);
}
.cell--wide { grid-column: span 1; }
.cell:nth-child(3n) { border-right: none; }
.cell:nth-last-child(-n+3) { border-bottom: none; }
.cell__title { margin: 0 0 9px; font-family: var(--font-serif); font-weight: 480; font-size: 20px; letter-spacing: -0.01em; color: var(--ink-800); }
.cell__body { margin: 0; font-size: 15px; line-height: 1.52; color: var(--ink-500); }

.tags {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 28px 0 0; padding: 0;
  justify-content: center;
}
.tags li {
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-500);
  background: var(--bg-panel);
}
.tags li:last-child { color: var(--brand); border-color: var(--lav); background: var(--lav-soft); font-family: var(--font-mono); font-size: 12.5px; letter-spacing: -0.02em; }

/* ------------------------------------------------------------------ quote */
.quote { padding: clamp(80px, 12vw, 150px) var(--pad); text-align: center; }
.quote__text {
  margin: 0 auto;
  max-width: 820px;
  font-family: var(--font-serif);
  font-weight: 400;
  font-variation-settings: "opsz" 120;
  font-size: clamp(30px, 5.2vw, 58px);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--ink-800);
}

/* ----------------------------------------------------------------- cta band */
.cta-band {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(120% 140% at 50% 0%, rgba(221,193,251,.28), transparent 55%),
    var(--bg-raised);
}
.cta-band__inner { text-align: center; padding: clamp(72px, 10vw, 120px) 0; }
.cta-band__title { margin: 0; font-family: var(--font-serif); font-weight: 470; font-variation-settings: "opsz" 110; font-size: clamp(38px, 6vw, 68px); letter-spacing: -0.02em; color: var(--ink-800); }
.cta-band__sub { margin: 16px 0 34px; font-size: 18px; color: var(--ink-500); }

/* ----------------------------------------------------------------- footer */
.site-footer { border-top: 1px solid var(--line); background: var(--bg); }
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 48px;
  padding-top: 64px; padding-bottom: 40px;
}
.site-footer__tag { margin: 14px 0 0; max-width: 280px; font-size: 14.5px; color: var(--ink-500); line-height: 1.5; }
.site-footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.fcol { display: flex; flex-direction: column; gap: 11px; }
.fcol h4 { margin: 0 0 5px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-400); font-weight: 500; }
.fcol a { font-size: 14.5px; color: var(--ink-600); transition: color .15s ease; }
.fcol a:hover { color: var(--ink-900); }

.qa { border: none; }
.qa summary { font-size: 14.5px; color: var(--ink-700); cursor: pointer; list-style: none; padding: 3px 0; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary::before { content: "+ "; color: var(--brand); font-family: var(--font-mono); }
.qa[open] summary::before { content: "– "; }
.qa p { margin: 6px 0 4px; font-size: 13.5px; color: var(--ink-500); line-height: 1.5; }

.site-footer__legal {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  padding-top: 22px; padding-bottom: 40px;
  border-top: 1px dashed var(--line-strong);
  font-size: 12.5px; color: var(--ink-400); font-family: var(--font-mono); letter-spacing: -0.02em;
}
.site-footer__legal a { color: var(--brand); }

/* --------------------------------------------------------------- responsive */
@media (max-width: 940px) {
  .nav { display: none; }
  .room { grid-template-columns: 1fr; }
  .stage { border-right: none; border-bottom: 1px dashed var(--line-strong); }
  .transcript { max-height: 520px; }
  .steps, .grid { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px dashed var(--line-strong); }
  .step:last-child { border-bottom: none; }
  .cell { border-right: none; }
  .cell:nth-last-child(-n+3):not(:last-child) { border-bottom: 1px dashed var(--line-strong); }
  .site-footer__inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .site-header__actions .btn--ghost { display: none; }
  .btn--lg { min-width: 0; width: 100%; }
  .hero__cta { width: 100%; flex-direction: column; }
  .site-footer__cols { grid-template-columns: 1fr; }
  .site-footer__legal { flex-direction: column; align-items: flex-start; }
}

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