/* Winnow — editorial marketing site. Palette from DESIGN.md. No gradients, no radius, no dark mode. */
:root {
  --blue: #2563EB; --signal: #3B82F6; --soft: #93C5FD; --ice: #EFF6FF; --paper: #FEFEFE;
  --ink: #0F172A; --slate: #475569; --muted: #94A3B8; --border: #E2E8F0;
  --display: "Cabinet Grotesk", Inter, system-ui, sans-serif;
  --body: Inter, system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --ease: cubic-bezier(.2,.8,.2,1);
  /* field defaults (paper) */
  --bg: var(--paper); --fg: var(--ink); --fg2: var(--slate);
}
*, *::before, *::after { box-sizing: border-box; border-radius: 0; }
html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 400 17px/1.5 var(--body); font-feature-settings: "cv11", "ss01"; overflow-x: hidden; }
img, svg { display: block; }
a { color: inherit; }
p, h1, h2, ul, ol, dl, figure, pre { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
.field--ink :focus-visible { outline-color: var(--paper); }
.mono { font-family: var(--mono); font-weight: 400; letter-spacing: .02em; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: 16px; top: -100px; z-index: 100; background: var(--ink); color: var(--paper); padding: 12px 16px; font-weight: 500; }
.skip-link:focus { top: 8px; }

/* ---------- layout ---------- */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.field { --bg: var(--paper); --fg: var(--ink); --fg2: var(--slate); background: var(--bg); color: var(--fg); padding: 80px 0; }
.field--soft { --bg: var(--soft); --fg: var(--ink); --fg2: var(--ink); }

.field--ink { --bg: var(--ink); --fg: var(--paper); --fg2: #CBD5E1; }
.field--first { position: relative; }
/* Blocks inside a field: rhythm only, the background never changes. */
.block + .block { margin-top: 72px; }
.block > :last-child { margin-bottom: 0; }
.rule { border: 0; border-top: 1px solid color-mix(in srgb, currentColor 25%, transparent); margin: 80px 0; }
.rule + .block { margin-top: 0; }
.cols + .fig { margin-top: 48px; }
.cols + .plate { margin-top: 72px; }

/* Plate: framed block with print registration marks in the corners */
.plate { position: relative; padding: 24px; margin: 0 0 56px; }
.plate::before, .plate::after, .reg::before, .reg::after {
  content: ""; position: absolute; width: 12px; height: 12px; border: 0 solid currentColor; opacity: .6; pointer-events: none;
}
.plate::before { top: 0; left: 0; border-top-width: 1px; border-left-width: 1px; }
.plate::after { bottom: 0; right: 0; border-bottom-width: 1px; border-right-width: 1px; }
.reg::before { top: 0; right: 0; border-top-width: 1px; border-right-width: 1px; }
.reg::after { bottom: 0; left: 0; border-bottom-width: 1px; border-left-width: 1px; }

/* ---------- type ---------- */
.h1 { font: 700 clamp(4rem, 10.4vw, 9.375rem)/.95 var(--display); letter-spacing: -.035em; margin: 20px 0 0; }
.h2 { font: 700 clamp(2.5rem, 4.4vw, 4rem)/1 var(--display); letter-spacing: -.03em; max-width: 18ch; }
.h2--sm { font-size: clamp(2rem, 3vw, 2.75rem); }
.num { font: 700 clamp(3.5rem, 7vw, 6.5rem)/.95 var(--display); letter-spacing: -.035em; }
.sub { font-size: 20px; line-height: 1.45; max-width: 640px; margin-top: 40px; color: var(--fg2); }
.tag { font-family: var(--mono); font-size: 11px; letter-spacing: .02em; color: var(--fg2); margin-bottom: 14px; }
.sim { font-family: var(--mono); font-size: 11px; letter-spacing: .02em; color: var(--fg2); }
.link { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.link:hover { text-decoration-thickness: 2px; }

/* ---------- nav ---------- */
.nav { position: sticky; top: 0; z-index: 50; height: 64px; display: flex; align-items: center; justify-content: space-between; padding: 0 32px; background: var(--paper); border-bottom: 1px solid var(--border); }
.nav__brand { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; font-weight: 600; text-decoration: none; letter-spacing: -.01em; }
.nav__mark { color: var(--blue); }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { position: relative; display: inline-flex; align-items: center; min-height: 44px; font-size: 15px; font-weight: 500; text-decoration: none; color: var(--slate); }
.nav__links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 12px; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform 180ms cubic-bezier(.2,.8,.2,1); }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after, .nav__links a:focus-visible::after { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce) { .nav__links a::after { transition: none; } }
.btn { display: inline-flex; align-items: center; min-height: 40px; padding: 0 20px; background: var(--ink); color: var(--paper); font-size: 15px; font-weight: 500; letter-spacing: -.005em; text-decoration: none; transition: background 180ms cubic-bezier(.2,.8,.2,1); }
.btn:hover { background: var(--blue); }
.btn:hover { background: var(--blue); }

/* ---------- hero ---------- */
.plate--hero { margin-bottom: 0; padding-bottom: 16px; }
.hero__row { margin-top: 32px; }
.hero__row .sub { margin-top: 0; }
@media (min-width: 1024px) {
  .hero__row { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 48px; align-items: end; }
  .hero__row .fig--hero { margin: 0; max-width: none; }
}
.strip { font-family: var(--mono); font-size: 11px; letter-spacing: .04em; color: var(--muted); white-space: nowrap; user-select: none; }
.strip--h { margin: 48px 0 0; overflow: hidden; text-overflow: ellipsis; padding: 0 32px 24px; }
.eyebrow { display: flex; align-items: baseline; gap: 12px; font-size: 18px; font-weight: 500; max-width: 420px; }
.leader { flex: 1; border-bottom: 2px dotted currentColor; transform: translateY(-5px); }
.cta-row { display: flex; flex-wrap: wrap; gap: 24px 64px; margin-top: 48px; }
.cta { font: 700 clamp(2.5rem, 4.4vw, 4rem)/1.1 var(--display); letter-spacing: -.03em; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 8px; }
.cta:hover { color: var(--blue); }
.fig--hero { max-width: 520px; margin: 56px 0 0; }

/* ---------- figures ---------- */
.fig { position: relative; }
.fig__tag { position: absolute; top: 0; left: 0; z-index: 2; font-family: var(--mono); font-size: 11px; letter-spacing: .02em; line-height: 1; padding: 6px 8px; }
/* Inverted box: text colour as background, field colour as text. */
.fig__tag { background: var(--fg); color: var(--bg); }
.fig__panel { border: 1px solid color-mix(in srgb, currentColor 25%, transparent); padding: 34px 24px 22px; background: transparent; }
.fig--paper .fig__panel { background: var(--paper); color: var(--ink); --fg2: var(--slate); }
.fig--paper .fig__tag { background: var(--paper); color: var(--blue); }
.fig__cap { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; flex-wrap: nowrap; font-family: var(--mono); font-size: 11px; letter-spacing: .02em; margin-top: 12px; color: var(--fg2); }
.fig__cap .sim { margin-left: 10px; }
.fig__cap > span:last-child { text-align: right; }

/* card (product) */
.card__src { display: flex; justify-content: space-between; font-size: 11px; color: var(--fg2); }
.card__title { font-size: 22px; font-weight: 600; letter-spacing: -.01em; line-height: 1.25; margin-top: 10px; }
.card__decision { display: flex; align-items: center; gap: 14px; margin-top: 18px; min-height: 28px; }
.reasons { margin-top: 14px; padding-left: 0; }
.reasons li { position: relative; padding-left: 16px; font-size: 15px; line-height: 1.45; color: var(--fg2); }
.reasons li::before { content: "·"; position: absolute; left: 2px; font-weight: 600; }
.evaluating { font-size: 11px; color: var(--fg2); opacity: 0; }
#hero-card.is-eval .pill, #hero-card.is-eval .reasons { opacity: 0; }
#hero-card.is-eval .evaluating { opacity: 1; }
#hero-card .pill, #hero-card .reasons, #hero-card .evaluating { transition: opacity 220ms var(--ease); }

/* Decision badge: the ONE rounded thing, because it is the product. Never colour-only: the word is always present. */
.pill { display: inline-flex; align-items: center; border-radius: 999px; padding: 4px 11px; font: 600 12px/1.2 var(--body); letter-spacing: .04em; white-space: nowrap; }
.pill__conf { font-weight: 500; opacity: .85; margin-left: .3em; }
.pill--read { background: #2563EB; color: #fff; }
.pill--skim { background: #DBEAFE; color: #1D4ED8; }
.pill--save { background: #F1F5F9; color: #334155; }
.pill--skip { background: #E2E8F0; color: #475569; }
button.pill { position: relative; }
button.pill::after { content: ""; position: absolute; inset: -10px; } /* 44px hit area */

/* feed rows */
.feed { padding: 44px 0 0; }
.feed__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 24px; border-top: 1px solid color-mix(in srgb, currentColor 18%, transparent); font-size: 15px; font-weight: 500; }
.feed__row:last-child { border-bottom: 1px solid color-mix(in srgb, currentColor 18%, transparent); }
.feed__t em { font-style: normal; font-size: 11px; color: var(--fg2); margin-left: 8px; }
.tabs__panel.feed { padding-top: 0; }
.tabs__panel .feed__row:first-child { border-top: 0; }
.feed__row--noise { transition: opacity 600ms var(--ease), filter 600ms var(--ease); }
#fig1.is-in .feed__row--noise { opacity: .3; filter: grayscale(1); }

/* numbers */
.numbers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 32px; }
.numbers dd { margin: 12px 0 0; font-size: 11px; color: var(--fg2); max-width: 26ch; }
.foot { margin-top: 40px; font-size: 11px; color: var(--fg2); }
.foot a { text-underline-offset: 3px; }

/* columns with hairline rules */
.cols { display: grid; gap: 40px 32px; }
.cols--3 { grid-template-columns: repeat(3, 1fr); }
.cols--2 { grid-template-columns: repeat(2, 1fr); }
.col { border-left: 1px solid color-mix(in srgb, currentColor 30%, transparent); padding-left: 20px; }
.col p:not(.tag):not(.col__pill) { color: var(--fg2); }
.col--wide { grid-column: 1 / -1; }
.col__pill { margin-bottom: 12px; }
.links { display: flex; gap: 32px; flex-wrap: wrap; }

/* split: figure + text */
.split > * { min-width: 0; }
.split { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 48px; align-items: start; }
.split--rev { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
.split--rev .fig { order: 2; }
.cols--stack { grid-template-columns: 1fr; }

/* tabs */
.tabs { padding: 0; }
.tabs__list { display: flex; border-bottom: 1px solid var(--border); padding-left: 76px; }
.tabs__tab { min-height: 44px; padding: 0 14px; white-space: nowrap; font-size: 11px; color: var(--slate); border-bottom: 2px solid transparent; margin-bottom: -1px; }
.tabs__tab[aria-selected="true"] { color: var(--ink); border-bottom-color: var(--blue); }
.tabs__panel { position: relative; }
.pop-wrap { position: relative; display: inline-flex; }
.pop { position: absolute; right: 0; top: calc(100% + 10px); z-index: 3; width: 280px; background: var(--ink); color: var(--paper); font-size: 13px; line-height: 1.4; font-weight: 400; padding: 10px 12px; opacity: 0; visibility: hidden; transition: opacity 160ms var(--ease); }
.pop-wrap:hover .pop, .pop-wrap:focus-within .pop { opacity: 1; visibility: visible; }
.feed__row:last-child .pop { top: auto; bottom: calc(100% + 10px); }

/* video segment map (Fig. 03) */
.segmap__sub { margin-top: 24px; max-width: 880px; }
.segmap__head { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px; font-size: 11px; color: var(--fg2); }
.segmap__title { font: 600 22px/1.25 var(--body); letter-spacing: -.01em; text-align: center; color: var(--fg); }
.segmap__verdict { display: flex; justify-content: flex-end; align-items: center; gap: 12px; }
.segmap__cols { display: grid; grid-template-columns: repeat(8, minmax(0, 1fr)); gap: 8px; align-items: end; margin-top: 40px; }
.seg { position: relative; display: flex; flex-direction: column; align-items: center; min-width: 0; text-align: center; }
.seg__track { display: flex; flex-direction: column; justify-content: flex-end; width: 100%; height: 260px; margin-top: 24px; }
.seg__bar { position: relative; width: 100%; height: var(--h); min-height: 6px; background: color-mix(in srgb, var(--ink) 22%, transparent); }
.seg--top .seg__bar { background: var(--blue); }
.seg--run .seg__bar { background: var(--signal); }
.seg:not(.seg--top):not(.seg--run):hover .seg__bar, .seg:not(.seg--top):not(.seg--run):focus-visible .seg__bar { background: color-mix(in srgb, var(--ink) 40%, transparent); }
.seg__p { position: absolute; bottom: 100%; left: 0; right: 0; padding-bottom: 6px; font-size: 12px; line-height: 1; color: var(--ink); }
.seg__t { margin-top: 10px; font-size: 11px; line-height: 1; color: var(--fg2); }
.seg__id { margin-top: 6px; font-size: 10px; line-height: 1; color: var(--fg2); opacity: .55; }
.seg__tip { position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%); z-index: 3; width: 250px; padding: 10px 12px; margin-bottom: 26px; background: var(--paper); color: var(--ink); text-align: left; display: flex; flex-direction: column; gap: 6px; font-size: 11px; opacity: 0; visibility: hidden; transition: opacity 160ms var(--ease); pointer-events: none; }
.seg:first-child .seg__tip { left: 0; transform: none; }
.seg:last-child .seg__tip { left: auto; right: 0; transform: none; }
.seg__snip { font: 400 14px/1.4 var(--body); }
.segmap:not(.is-hush) .seg:hover .seg__tip, .seg:focus-visible .seg__tip { opacity: 1; visibility: visible; }
.segmap__track { position: relative; height: 2px; margin-top: 52px; background: color-mix(in srgb, var(--ink) 30%, transparent); }
.segmap__range { position: absolute; top: 0; left: 49.91%; width: 24.96%; height: 100%; background: var(--blue); }
.segmap__ph { position: absolute; top: -9px; left: 74.87%; width: 2px; height: 20px; margin-left: -1px; background: var(--ink); }
.segmap__ph::before { content: ""; position: absolute; top: -3px; left: -3px; width: 8px; height: 8px; background: var(--ink); }
.segmap__ann { position: absolute; bottom: 22px; left: 31.6%; transform: translateX(-50%); white-space: nowrap; font-size: 11px; color: var(--fg2); }
.segmap__end { position: absolute; right: 0; top: 12px; font-size: 11px; color: var(--fg2); }
.segmap__tipline { display: none; margin-top: 36px; font-size: 11px; min-height: 2.8em; color: var(--fg2); }
.segmap__foot { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 32px 48px; margin-top: 56px; }
.segmap__jump { display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px 20px; }
.segmap__jump .mono { font-size: 11px; color: var(--fg2); }
.segmap__link { font: 700 32px/1.1 var(--display); letter-spacing: -.02em; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; }
.segmap__link:hover { color: var(--blue); }
.segmap__nums { display: flex; gap: 56px; margin: 0; }
.segmap__num { font: 700 72px/.95 var(--display); letter-spacing: -.035em; }
.segmap__nums dd { margin: 8px 0 0; font-size: 11px; color: var(--fg2); }

/* reader toggle */
.toggle { display: inline-flex; border: 1px solid var(--ink); margin-bottom: 20px; }
.toggle__btn { min-height: 44px; padding: 0 16px; font-size: 11px; }
.toggle__btn[aria-pressed="true"] { background: var(--ink); color: var(--soft); }
.card--flat .pill, .card--flat .reasons { transition: opacity 220ms var(--ease); }
.card--flat.is-swap .pill, .card--flat.is-swap .reasons { opacity: 0; }

/* code */
.code { background: var(--ink); color: var(--paper); font-size: 12.5px; line-height: 1.55; overflow-x: auto; border-color: var(--ink); }
.code code { font: inherit; }

/* faq */
.faq { max-width: 720px; }
.faq details { border-top: 1px solid color-mix(in srgb, currentColor 25%, transparent); border-left: 1px dotted color-mix(in srgb, currentColor 50%, transparent); }
.faq details:last-child { border-bottom: 1px solid color-mix(in srgb, currentColor 25%, transparent); }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 56px; padding: 8px 0 8px 20px; list-style: none; cursor: pointer; font-size: 13px; }
.faq summary::-webkit-details-marker { display: none; }
.chev { position: relative; flex: none; width: 20px; height: 20px; border: 1px solid currentColor; }
.chev::after { content: ""; position: absolute; left: 6px; top: 4px; width: 6px; height: 6px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(45deg); }
details[open] .chev::after { top: 8px; transform: rotate(-135deg); }
.faq p { padding: 0 0 20px 20px; color: var(--fg2); max-width: 60ch; }

/* ---------- motion ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(12px); transition: opacity 360ms var(--ease), transform 360ms var(--ease); }
  .reveal.is-in { opacity: 1; transform: none; }
  /* Fig. 03: bars grow staggered, then the playhead scrubs the intro, jumps to 9:20 and creeps to 14:00. Replay = re-add .is-in. */
  #fig3 .seg__bar { height: 0; min-height: 0; transition: height 500ms var(--ease) calc(var(--i) * 60ms); }
  #fig3.is-in .seg__bar { height: var(--h); min-height: 6px; }
  #fig3 .segmap__ph { left: 0; }
  #fig3.is-in .segmap__ph { animation: seg-ph 7780ms linear 920ms forwards; }
  #fig3 .segmap__ann { opacity: 0; }
  #fig3.is-in .segmap__ann { animation: seg-ann 300ms var(--ease) 2520ms forwards; }
}
/* 0:00 → 2:30 over 1.2s (linear), hold 400ms, jump to 9:20 in 180ms, creep to 14:00 over 6s. Percentages of 7780ms. */
@keyframes seg-ph {
  0% { left: 0; }
  15.42% { left: 13.37%; }
  20.57% { left: 13.37%; animation-timing-function: cubic-bezier(.2,.8,.2,1); }
  22.88% { left: 49.91%; }
  100% { left: 74.87%; }
}
@keyframes seg-ann { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
  #fig1 .feed__row--noise { opacity: .3; filter: grayscale(1); }
}

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .split, .split--rev { grid-template-columns: 1fr; }
  .split--rev .fig { order: 0; }
}
@media (max-width: 1023px) {  }
@media (max-width: 820px) {
  .field { padding: 56px 0; }
  .wrap { padding: 0 16px; }
  .nav { padding: 0 16px; }
  .nav__links { display: none; }
  .plate { padding: 20px 16px; margin-bottom: 40px; }
  .h1 { letter-spacing: -.03em; }
  .cta { font-size: 2rem; }
  .cta-row { gap: 16px 32px; }
  .fig--hero { max-width: none; }
  .block + .block { margin-top: 56px; }
  .rule { margin: 64px 0; }
  .cols--3, .cols--2 { grid-template-columns: 1fr; gap: 28px; }
  .col { border-left: 0; border-top: 1px solid color-mix(in srgb, currentColor 30%, transparent); padding-left: 0; padding-top: 16px; }
  .numbers { grid-template-columns: 1fr; }
  .fig__panel { padding: 32px 16px 18px; }
  .feed__row { padding: 12px 16px; }
  .tabs__list { padding-left: 64px; overflow-x: auto; }
  .pop { width: min(280px, calc(100vw - 64px)); }
  .strip--h { padding: 0 16px 20px; }
  .fig__cap { flex-wrap: wrap; gap: 6px 16px; }
  .segmap__head { grid-template-columns: 1fr; gap: 8px; }
  .segmap__title { text-align: left; }
  .segmap__verdict { justify-content: flex-start; }
  .segmap__cols { gap: 4px; margin-top: 28px; }
  .seg__track { height: 180px; }
  .seg__p, .seg__t { font-size: 10px; }
  .seg__tip { display: none; }
  .segmap__tipline { display: block; }
  .segmap__ann { left: 0; transform: none; font-size: 10px; }
  .segmap__foot { flex-direction: column; align-items: flex-start; }
  .segmap__nums { flex-direction: column; gap: 24px; }
  .segmap__num { font-size: 56px; }
}
@media (max-width: 480px) { .seg__id { display: none; } }
@media (max-width: 420px) {
  .h1 { font-size: 3.6rem; }
  .feed__t { font-size: 14px; }
  .feed__t em { display: block; margin: 2px 0 0; }
}

/* Footer: aerial oasis stage */

.credit { position: absolute; left: 44px; bottom: 14px; z-index: 2; font-size: 11px; line-height: 1; color: rgba(255,255,255,.8); padding: 6px 8px; background: rgba(15,23,42,.45); }


/* footer: the oasis, a full-bleed stage */
.footer { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end; background: var(--ink); color: #fff; overflow: hidden; }

.footer :focus-visible { outline-color: var(--paper); }

.footer__media { position: absolute; inset: 0; overflow: hidden; }

.footer__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }

.footer__media::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 40%; background: linear-gradient(to bottom, rgba(15,23,42,.35), rgba(15,23,42,0)); }

.footer__media::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 30%; background: linear-gradient(to bottom, rgba(15,23,42,0), rgba(15,23,42,.7) 60%, rgba(15,23,42,.7)); }

.footer__stage { position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%); z-index: 1; text-align: center; padding: 48px 16px; }
.footer__stage::before { content: ""; position: absolute; inset: -8% -10%; z-index: -1; background: radial-gradient(60% 70% at 50% 50%, rgba(15,23,42,.62), rgba(15,23,42,.34) 55%, rgba(15,23,42,0) 78%); }

.footer__lockup { display: flex; align-items: center; justify-content: center; gap: 20px; font: 700 clamp(3.25rem, 7.6vw, 6.75rem)/1 var(--display); letter-spacing: -.035em; }

.footer__mark { width: .8em; height: .8em; color: #fff; }

.footer__tag { font-size: 20px; line-height: 1.45; margin-top: 18px; }

.footer__cta { display: inline-flex; align-items: center; min-height: 44px; margin-top: 8px; font-weight: 500; }

.footer__bottom { position: relative; z-index: 1; }

.footer .strip--h { padding-bottom: 48px; }

.footer .credit { left: auto; right: 32px; }

.footer__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 32px; padding: 0 32px; font-size: 12px; color: #CBD5E1; }

.footer__links a { text-decoration: none; min-height: 44px; display: inline-flex; align-items: center; }

.footer__links a:hover { color: var(--paper); text-decoration: underline; text-underline-offset: 4px; }

.footer__links span { display: inline-flex; align-items: center; min-height: 44px; }
@media (max-width: 820px) {
  .credit { left: 16px; bottom: 10px; }
  .footer { min-height: 80svh; }
  .footer__links { padding: 0 16px; }
  .footer__lockup { gap: 14px; }
  .footer__tag { font-size: 17px; }}
