/* ===========================================================================
   AUCTION RING CRAFT — "SILKS"
   Jockey colours. Racing navy, optic white, electric lime and a silk red,
   thrown into hard-edged blocks with no curves and no apologies. Expanded
   uppercase Archivo does the shouting; the numbers stay flat and huge.

   Type      Archivo variable (100–900 weight, 62–125 width)
   Navy #101B3D   Lime #D8F651   Silk red #FF4D3D
   =========================================================================== */

@font-face {
  font-family: 'Archivo';
  src: url('/assets/fonts/archivo-var.woff2') format('woff2-variations'),
       url('/assets/fonts/archivo-var.woff2') format('woff2');
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-style: normal;
  font-display: swap;
}

:root {
  /* ground */
  --navy: #101b3d;
  --navy-2: #16244f;
  --navy-3: #1d2e63;
  --white: #ffffff;
  --bone: #eef0f6;
  --bone-2: #dde1ed;

  /* colours */
  --lime: #d8f651;
  --lime-deep: #b7d62f;
  --pop: #ff4d3d;
  --ink: #0a1129;
  --muted: #9aa4c4;
  --dim: #6c78a0;

  /* structure */
  --line: rgba(255, 255, 255, .18);
  --line-ink: rgba(16, 27, 61, .18);
  --block: 0;
  --hard: 6px 6px 0 var(--ink);
  --hard-lime: 6px 6px 0 var(--lime);
  --gutter: max(1.25rem, calc((100vw - 1260px) / 2));

  /* type */
  --display: 'Archivo', ui-sans-serif, system-ui, 'Helvetica Neue', Arial, sans-serif;
  --sans: 'Archivo', ui-sans-serif, system-ui, 'Helvetica Neue', Arial, sans-serif;

  color-scheme: dark;
}

/* --- base ----------------------------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--navy);
  color: var(--white);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
main { flex: 1 0 auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 112%;
  letter-spacing: -.02em;
  line-height: .95;
  text-transform: uppercase;
  text-wrap: balance;
}
p { text-wrap: pretty; }
strong { font-weight: 700; }
::selection { background: var(--lime); color: var(--navy); }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 2px; }

.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 200; padding: .9rem 1.2rem; background: var(--lime); color: var(--navy); font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; }
.skip-link:focus { top: 1rem; }
.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; }
.muted { color: var(--muted); }

/* Every micro-label is a race-card tag: flat, tight, shouting. */
.eyebrow, .hero__eyebrow, .question-card__section, .record-card__label, .hero__price,
.site-nav a, .deadline-strip span:first-child, .field label span, .review-list > h2,
.checkout-element-group h3, .final-cta > p:first-child, .legal-page th, .seal-note {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 800;
  font-stretch: 100%;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow, .hero__eyebrow { margin: 0; color: var(--lime); }
.eyebrow--gold { color: var(--lime); }

/* --- header --------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  padding: 0 var(--gutter);
  background: var(--ink);
  border-bottom: 4px solid var(--lime);
}
.site-header__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .75rem 2rem; min-height: 78px; margin: 0 auto; }
.wordmark { display: flex; flex-direction: column; gap: .15rem; text-decoration: none; }
.wordmark span { font-family: var(--display); font-size: 1.15rem; font-weight: 900; font-stretch: 118%; letter-spacing: -.01em; text-transform: uppercase; }
.wordmark small { color: var(--lime); font-size: .58rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }

.site-nav { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; }
.site-nav a { color: var(--muted); text-decoration: none; transition: color .15s ease; }
.site-nav a:hover { color: var(--lime); }
.site-nav__cta, .question-nav__save {
  padding: .7rem 1.1rem;
  background: var(--lime);
  color: var(--navy) !important;
  transition: background-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.site-nav__cta:hover, .question-nav__save:hover { background: var(--white); transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--lime); }

/* --- buttons -------------------------------------------------------------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 58px;
  padding: 1rem 1.4rem;
  border: 3px solid transparent;
  border-radius: var(--block);
  font-size: .84rem;
  font-weight: 800;
  font-stretch: 105%;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
}
.button--primary { background: var(--lime); border-color: var(--lime); color: var(--navy); }
.button--primary:hover { transform: translate(-3px, -3px); box-shadow: var(--hard); }
.button--secondary { background: transparent; border-color: var(--white); color: var(--white); }
.button--secondary:hover { background: var(--white); color: var(--navy); }
.button--full { width: 100%; }
.button:disabled { cursor: wait; opacity: .5; transform: none; box-shadow: none; }
.text-button, .quiet-link {
  background: none;
  border: 0;
  padding: 0;
  color: var(--lime);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: .3em;
  cursor: pointer;
}
.text-button:hover, .quiet-link:hover { color: var(--white); }
.quiet-link { display: inline-block; margin-top: 1rem; }

/* --- Beat The Bots campaign ---------------------------------------------- */
.bots-marquee {
  position: relative;
  isolation: isolate;
  padding: 0 var(--gutter) clamp(3.5rem, 7vw, 6.5rem);
  overflow: hidden;
  background:
    linear-gradient(112deg, transparent 0 63%, rgba(10, 17, 41, .14) 63% 77%, transparent 77%),
    var(--pop);
  color: var(--white);
  border-bottom: 8px solid var(--lime);
}
.bots-marquee::before {
  content: '';
  position: absolute;
  z-index: -1;
  right: -10rem;
  bottom: -18rem;
  width: clamp(28rem, 48vw, 44rem);
  height: clamp(28rem, 48vw, 44rem);
  border: clamp(6rem, 10vw, 10rem) solid rgba(10, 17, 41, .08);
  transform: rotate(-14deg);
  pointer-events: none;
}
.bots-marquee__flag {
  margin: 0 calc(var(--gutter) * -1) clamp(2.5rem, 4vw, 4rem);
  padding: .72rem 0;
  overflow: hidden;
  background: var(--ink);
  border-bottom: 2px solid var(--white);
}
.bots-marquee__track {
  display: flex;
  width: max-content;
  animation: bots-marquee-scroll 20s linear infinite;
  will-change: transform;
}
.bots-marquee__group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(.8rem, 1.5vw, 1.4rem);
  padding-right: clamp(.8rem, 1.5vw, 1.4rem);
}
.bots-marquee__group > span {
  padding: .25rem .6rem;
  color: var(--lime);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
}
.bots-marquee__dot { display: block; flex: 0 0 .44rem; width: .44rem; height: .44rem; background: var(--lime); border-radius: 50%; }
.bots-marquee__dot:nth-of-type(even) { flex-basis: .34rem; width: .34rem; height: .34rem; background: var(--white); }
@keyframes bots-marquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
.bots-marquee__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .68fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
}
.bots-marquee__disclaimer {
  position: absolute;
  right: var(--gutter);
  bottom: 2.5rem;
  max-width: min(34rem, calc(100% - (2 * var(--gutter))));
  margin: 0;
  color: var(--ink);
  font-size: .58rem;
  font-weight: 750;
  letter-spacing: .04em;
  line-height: 1.45;
  text-align: right;
}
.campaign-approval-disclaimer {
  margin: 1.35rem 0 0;
  font-size: .58rem;
  font-weight: 750;
  letter-spacing: .04em;
  line-height: 1.45;
}
.bots-marquee > .campaign-approval-disclaimer {
  position: absolute;
  right: var(--gutter);
  bottom: 1.1rem;
  max-width: min(34rem, calc(100% - (2 * var(--gutter))));
  color: var(--ink);
  text-align: right;
}
.bots-marquee.is-observed:not(.is-visible) .bots-marquee__grid { visibility: hidden; }
.bots-marquee__copy .eyebrow {
  display: inline-block;
  padding: .45rem .65rem;
  background: var(--lime);
  color: var(--navy);
}
.bots-marquee.is-visible .bots-marquee__copy .eyebrow { animation: bots-eyebrow-enter .48s ease-out .04s both; }
.bots-marquee h2 {
  max-width: 10ch;
  margin: 1.25rem 0 0;
  font-size: clamp(3.8rem, 8vw, 7.6rem);
  font-weight: 900;
  font-stretch: 125%;
  letter-spacing: -.065em;
  line-height: .78;
  text-shadow: 6px 6px 0 var(--ink);
}
.bots-title__line { display: block; }
.bots-title__line--lime { color: var(--lime); }
.bots-title__word {
  --stamp-angle: -4deg;
  display: inline-block;
  opacity: 1;
  transform-origin: 50% 70%;
  will-change: transform, opacity;
}
.bots-marquee.is-visible .bots-title__word { animation: bots-title-stamp .55s cubic-bezier(.16, 1, .3, 1) both; }
.bots-title__word:not(:last-child) { margin-right: .12em; }
.bots-title__word:nth-child(even) { --stamp-angle: 3deg; }
.bots-title__line:first-child .bots-title__word:nth-child(1) { animation-delay: .12s; }
.bots-title__line:first-child .bots-title__word:nth-child(2) { animation-delay: .25s; }
.bots-title__line--lime .bots-title__word:nth-child(1) { animation-delay: .44s; }
.bots-title__line--lime .bots-title__word:nth-child(2) { animation-delay: .58s; }
.bots-title__line--lime .bots-title__word:nth-child(3) { animation-delay: .72s; }
@keyframes bots-title-stamp {
  0% { opacity: 0; filter: blur(2px); transform: translateY(-.22em) scale(2.15) rotate(var(--stamp-angle)); }
  58% { opacity: 1; filter: blur(0); transform: translateY(.025em) scale(.86) rotate(1deg); }
  78% { opacity: 1; transform: translateY(0) scale(1.08) rotate(-.5deg); }
  100% { opacity: 1; filter: blur(0); transform: translateY(0) scale(1) rotate(0); }
}
.bots-marquee__lead {
  max-width: 57ch;
  margin: 1.5rem 0 0;
  color: var(--white);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 650;
}
.bots-marquee.is-visible .bots-marquee__lead { animation: bots-component-rise .58s ease-out 1.02s both; }
.bots-marquee__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 1.5rem;
}
.bots-marquee.is-visible .bots-marquee__actions { animation: bots-component-rise .58s ease-out 1.17s both; }
.bots-marquee__actions > span {
  color: var(--ink);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.button--bots { min-width: min(100%, 15.5rem); background: var(--ink); border-color: var(--ink); color: var(--lime); box-shadow: 6px 6px 0 var(--white); }
.button--bots:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--lime); }

.bots-scoreboard {
  min-width: 0;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  background: var(--ink);
  border: 3px solid var(--white);
  box-shadow: 10px 10px 0 var(--lime);
  transform: rotate(1deg);
}
.bots-marquee.is-visible .bots-scoreboard { animation: bots-scoreboard-enter .75s cubic-bezier(.16, 1, .3, 1) .32s both; }
.bots-scoreboard__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.1rem;
  border-bottom: 4px solid var(--lime);
}
.bots-marquee.is-visible .bots-scoreboard__header { animation: bots-scoreboard-item .42s ease-out .62s both; }
.bots-scoreboard__header > span,
.bots-scoreboard footer span {
  color: var(--muted);
  font-size: .55rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.bots-scoreboard__header strong { color: var(--white); font-size: .67rem; letter-spacing: .13em; text-transform: uppercase; }
.bots-scoreboard__header b { color: var(--lime); font-size: 1.6rem; line-height: .75; }
.bots-scoreboard__field { list-style: none; margin: 0; padding: 0; }
.bots-scoreboard__field li {
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr) auto .6rem;
  align-items: center;
  gap: .8rem;
  min-height: 3.8rem;
  border-bottom: 1px solid var(--line);
}
.bots-marquee.is-visible .bots-scoreboard__field li { animation: bots-scoreboard-item .42s ease-out both; }
.bots-scoreboard__field li:nth-child(1) { animation-delay: .74s; }
.bots-scoreboard__field li:nth-child(2) { animation-delay: .84s; }
.bots-scoreboard__field li:nth-child(3) { animation-delay: .94s; }
.bots-scoreboard__field li:nth-child(4) { animation-delay: 1.04s; }
.bots-scoreboard__field li:nth-child(5) { animation-delay: 1.14s; }
.bots-scoreboard__field li > span { color: var(--dim); font-size: .65rem; font-weight: 900; font-variant-numeric: tabular-nums; }
.bots-scoreboard__field strong { overflow: hidden; color: var(--white); font-size: .95rem; font-stretch: 110%; letter-spacing: .03em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.bots-scoreboard__field small { color: var(--muted); font-size: .52rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.bots-scoreboard__field i { width: .55rem; height: .55rem; background: var(--lime); border-radius: 50%; box-shadow: 0 0 0 3px rgba(216, 246, 81, .15); }
.bots-scoreboard footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.1rem;
}
.bots-marquee.is-visible .bots-scoreboard footer { animation: bots-scoreboard-item .42s ease-out 1.26s both; }
.bots-scoreboard footer span:last-child { color: var(--lime); }
@keyframes bots-eyebrow-enter {
  from { opacity: 0; transform: translateX(-.8rem); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes bots-component-rise {
  from { opacity: 0; transform: translateY(.7rem); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bots-scoreboard-enter {
  from { opacity: 0; translate: 1.4rem 0; scale: .98; }
  to { opacity: 1; translate: 0 0; scale: 1; }
}
@keyframes bots-scoreboard-item {
  from { opacity: 0; transform: translateX(.65rem); }
  to { opacity: 1; transform: translateX(0); }
}

/* --- hero ----------------------------------------------------------------- */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) var(--gutter) clamp(3rem, 6vw, 5rem);
  background: var(--navy);
  overflow: hidden;
}
/* Silk stripes, on the diagonal, behind the call. */
.hero::before {
  content: '';
  position: absolute;
  inset: -20% -10% auto auto;
  width: 44%;
  height: 140%;
  background: repeating-linear-gradient(
    -52deg,
    rgba(216, 246, 81, .13) 0 26px,
    transparent 26px 52px,
    rgba(255, 77, 61, .12) 52px 78px,
    transparent 78px 104px
  );
  pointer-events: none;
}
.hero > * { position: relative; }
.hero-approval-disclaimer {
  position: absolute;
  right: var(--gutter);
  bottom: 1.1rem;
  max-width: min(34rem, calc(100% - (2 * var(--gutter))));
  margin: 0;
  padding: .32rem .45rem;
  background: rgba(16, 27, 61, .78);
  color: var(--white);
  font-size: .58rem;
  font-weight: 750;
  letter-spacing: .04em;
  line-height: 1.45;
  text-align: right;
}
.hero__eyebrow { display: inline-block; padding: .45rem .7rem; background: var(--lime); color: var(--navy); }
.hero__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, .72fr); gap: clamp(2.5rem, 6vw, 5rem); align-items: start; margin-top: 1.75rem; }
.hero__copy { position: sticky; top: 8.5rem; }
.hero h1 { margin: 0; font-size: clamp(2.7rem, 6.2vw, 5.4rem); font-weight: 900; font-stretch: 118%; letter-spacing: -.035em; line-height: .9; }
.hero--simplified h1 { font-size: clamp(2.5rem, 5.8vw, 5rem); }
.hero__lead { max-width: 44ch; margin: 1.75rem 0 0; color: var(--muted); font-size: clamp(1.02rem, 1.4vw, 1.18rem); }
.hero__lead strong { color: var(--white); }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; margin-top: 2.25rem; }
.hero__price { color: var(--lime); }
.kicker { margin: 0 0 .6rem; color: var(--pop); font-size: 1rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }

/* A staged opening call: energetic like the bots campaign, without a marquee. */
.hero--call-sale.is-observed:not(.is-visible) .hero__eyebrow,
.hero--call-sale.is-observed:not(.is-visible) .hero__copy h1,
.hero--call-sale.is-observed:not(.is-visible) .hero__lead,
.hero--call-sale.is-observed:not(.is-visible) .hero__actions,
.hero--call-sale.is-observed:not(.is-visible) .winner-enclosure { visibility: hidden; }
.call-title__line { display: block; }
.call-title__line--accent { color: var(--lime); }
.call-title__word {
  --call-angle: -2deg;
  display: inline-block;
  transform-origin: 50% 75%;
  will-change: transform, opacity;
}
.call-title__word:not(:last-child) { margin-right: .2em; }
.call-title__word:nth-child(even) { --call-angle: 1.5deg; }
.hero--call-sale.is-visible::before { animation: call-silks-enter .9s ease-out .08s backwards; }
.hero--call-sale.is-visible .hero__eyebrow { animation: call-eyebrow-enter .46s ease-out .04s backwards; }
.hero--call-sale.is-visible .call-title__word { animation: call-title-enter .54s cubic-bezier(.16, 1, .3, 1) backwards; }
.hero--call-sale.is-visible .call-title__line:nth-child(1) .call-title__word:nth-child(1) { animation-delay: .12s; }
.hero--call-sale.is-visible .call-title__line:nth-child(1) .call-title__word:nth-child(2) { animation-delay: .19s; }
.hero--call-sale.is-visible .call-title__line:nth-child(1) .call-title__word:nth-child(3) { animation-delay: .26s; }
.hero--call-sale.is-visible .call-title__line:nth-child(2) .call-title__word:nth-child(1) { animation-delay: .33s; }
.hero--call-sale.is-visible .call-title__line:nth-child(2) .call-title__word:nth-child(2) { animation-delay: .4s; }
.hero--call-sale.is-visible .call-title__line:nth-child(2) .call-title__word:nth-child(3) { animation-delay: .47s; }
.hero--call-sale.is-visible .call-title__line:nth-child(3) .call-title__word:nth-child(1) { animation-delay: .54s; }
.hero--call-sale.is-visible .call-title__line:nth-child(3) .call-title__word:nth-child(2) { animation-delay: .61s; }
.hero--call-sale.is-visible .hero__lead { animation: landing-component-rise .58s ease-out .72s backwards; }
.hero--call-sale.is-visible .hero__actions { animation: landing-component-rise .58s ease-out .84s backwards; }
@keyframes call-silks-enter {
  from { opacity: 0; transform: translateX(3rem); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes call-eyebrow-enter {
  from { opacity: 0; transform: translateX(-.8rem); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes call-title-enter {
  0% { opacity: 0; filter: blur(1px); transform: translateY(.2em) scale(.82) rotate(var(--call-angle)); }
  68% { opacity: 1; filter: blur(0); transform: translateY(-.025em) scale(1.04) rotate(-.35deg); }
  100% { opacity: 1; filter: blur(0); transform: translateY(0) scale(1) rotate(0); }
}
@keyframes landing-component-rise {
  from { opacity: 0; transform: translateY(.75rem); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- winners table -------------------------------------------------------- */
.winner-concepts { min-width: 0; }
.winner-enclosure { min-width: 0; }
.winner-ranking { list-style: none; margin: 0; padding: 0; }
.winner-ranking li { display: grid; grid-template-columns: 2.4rem minmax(0, 1fr); align-items: center; gap: .65rem; }
.winner-ranking strong { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.winner-ranking__place { font-variant-numeric: tabular-nums; }

/* A raised winners' enclosure plaque in the site's silks. */
.enclosure-card {
  position: relative;
  padding: clamp(1.35rem, 4vw, 2rem);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(216, 246, 81, .07) 0 18%, transparent 18% 82%, rgba(255, 77, 61, .08) 82%),
    #09122c;
  color: var(--white);
  border: .55rem solid #1d2e63;
  outline: 2px solid var(--lime);
  outline-offset: -.75rem;
  box-shadow: 0 1.5rem 3.5rem rgba(2, 7, 20, .42), 7px 7px 0 var(--lime);
}
.enclosure-card__stud { position: absolute; z-index: 2; width: .55rem; height: .55rem; background: #cbd38d; border: 2px solid #525b3e; border-radius: 50%; box-shadow: inset 1px 1px 0 #fff9ca; }
.enclosure-card__stud--one { top: .55rem; left: .55rem; }
.enclosure-card__stud--two { top: .55rem; right: .55rem; }
.enclosure-card__stud--three { right: .55rem; bottom: .55rem; }
.enclosure-card__stud--four { bottom: .55rem; left: .55rem; }
.enclosure-card__masthead { display: grid; grid-template-columns: 5rem minmax(0, 1fr); gap: 1rem; align-items: center; padding: .35rem .3rem 1.25rem; border-bottom: 3px solid var(--lime); }
.enclosure-card__masthead > div:last-child > span,
.enclosure-card__masthead p { color: var(--muted); font-size: .5rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.enclosure-card__masthead h3 { margin: .35rem 0 .3rem; color: var(--white); font-size: clamp(1.55rem, 4vw, 2.15rem); line-height: .95; }
.enclosure-card__masthead p { margin: 0; color: var(--lime); }
.enclosure-rosette {
  position: relative;
  z-index: 0;
  display: grid;
  place-content: center;
  width: 4.7rem;
  height: 4.7rem;
  background: var(--pop);
  border: 5px double var(--white);
  border-radius: 50%;
  color: var(--white);
  text-align: center;
  box-shadow: 0 0 0 4px var(--pop);
}
.enclosure-rosette::before,
.enclosure-rosette::after { content: ''; position: absolute; z-index: -1; bottom: -1.7rem; width: 1.2rem; height: 2.7rem; background: #bc281e; }
.enclosure-rosette::before { left: .65rem; transform: rotate(12deg); }
.enclosure-rosette::after { right: .65rem; transform: rotate(-12deg); }
.enclosure-rosette strong { font-size: 1.15rem; font-weight: 900; line-height: 1; }
.enclosure-rosette span { font-size: .4rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.winner-ranking--enclosure { margin-top: 1.25rem; }
.winner-ranking--enclosure li { min-height: 3.25rem; padding: .35rem .5rem; margin-bottom: .4rem; background: #132049; border-left: 4px solid #304271; }
.winner-ranking--enclosure .winner-ranking__place { display: grid; place-items: center; width: 2rem; height: 2rem; background: var(--white); color: var(--navy); font-size: .74rem; font-weight: 900; }
.winner-ranking--enclosure strong { font-size: .82rem; font-stretch: 108%; letter-spacing: .03em; text-transform: uppercase; }
.winner-ranking--enclosure .is-winner { background: var(--lime); border-left-color: var(--pop); color: var(--navy); box-shadow: 4px 4px 0 var(--pop); }
.winner-ranking--enclosure .is-winner .winner-ranking__place { background: var(--navy); color: var(--lime); }
.enclosure-card__footer { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.2rem; padding-top: .8rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .48rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.hero--call-sale.is-visible .enclosure-card { animation: call-enclosure-enter .76s cubic-bezier(.16, 1, .3, 1) .3s backwards; }
.hero--call-sale.is-visible .enclosure-card__masthead { animation: call-enclosure-item .48s ease-out .58s backwards; }
.hero--call-sale.is-visible .enclosure-rosette { animation: call-rosette-settle .62s cubic-bezier(.16, 1, .3, 1) .68s backwards; }
.hero--call-sale.is-visible .winner-ranking--enclosure li { animation: call-enclosure-item .4s ease-out backwards; }
.hero--call-sale.is-visible .winner-ranking--enclosure li:nth-child(1) { animation-delay: .78s; }
.hero--call-sale.is-visible .winner-ranking--enclosure li:nth-child(2) { animation-delay: .86s; }
.hero--call-sale.is-visible .winner-ranking--enclosure li:nth-child(3) { animation-delay: .94s; }
.hero--call-sale.is-visible .winner-ranking--enclosure li:nth-child(4) { animation-delay: 1.02s; }
.hero--call-sale.is-visible .winner-ranking--enclosure li:nth-child(5) { animation-delay: 1.1s; }
.hero--call-sale.is-visible .enclosure-card__footer { animation: call-enclosure-item .42s ease-out 1.18s backwards; }
@keyframes call-enclosure-enter {
  from { opacity: 0; translate: 1.35rem 0; scale: .98; }
  to { opacity: 1; translate: 0 0; scale: 1; }
}
@keyframes call-enclosure-item {
  from { opacity: 0; transform: translateX(.65rem); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes call-rosette-settle {
  from { opacity: 0; transform: scale(1.45) rotate(-8deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

.deadline-strip { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem 1.4rem; margin-top: 3rem; padding-top: 1.25rem; border-top: 3px solid var(--lime); }
.local-time { color: var(--muted); font-size: .86rem; }

/* --- sections ------------------------------------------------------------- */
.section { padding: clamp(3.5rem, 7vw, 6rem) var(--gutter); }
.section--ivory { background: var(--navy); }
.section--paper { background: var(--navy-2); }
.section--dark { background: var(--bone); color: var(--navy); }
.section--dark .eyebrow, .section--dark .eyebrow--gold { color: var(--navy); }
.section--light { background: var(--bone-2); color: var(--navy); }
.section--light .steps { border-top-color: var(--pop); }
.section--light .steps--compact { background: var(--line-ink); border-color: var(--line-ink); }
.section--light .steps--compact li { background: var(--white); }
.section--light .steps > li > span { color: var(--pop); }
.section--light .quiet-link { color: var(--navy); }
.section--light .quiet-link:hover { color: var(--pop); }
.section-heading { max-width: 38rem; margin-bottom: 3rem; }
.section-heading h2, .why-grid h2 { margin: 1rem 0 0; font-size: clamp(2.2rem, 5.6vw, 4.4rem); }
.section-heading p:not(.eyebrow) { color: var(--muted); }

/* --- the two-reason grid -------------------------------------------------- */
.report-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.report-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.report-grid article {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  background: var(--white);
  border: 3px solid var(--navy);
  border-radius: var(--block);
  transition: transform .18s ease, box-shadow .18s ease;
}
.report-grid article:hover { transform: translate(-4px, -4px); box-shadow: 8px 8px 0 var(--navy); }
.report-number {
  display: inline-grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  background: var(--pop);
  color: var(--white);
  font-size: .9rem;
  font-weight: 900;
}
.report-grid h3 { margin: 1rem 0 1rem; font-size: clamp(1.35rem, 2.2vw, 1.9rem); color: var(--navy); }
.report-grid article > .eyebrow { margin: 1.75rem 0 0; color: var(--pop); }
.report-grid p { color: #46507a; font-size: .96rem; }
.report-grid p strong { color: var(--navy); }
.report-grid__cta { align-self: flex-start; min-width: 10.5rem; margin-top: auto; }

/* Subtle editorial reveals for the supporting reasons. */
.why-join.is-observed:not(.is-visible) .section-heading,
.why-join.is-observed:not(.is-visible) .report-grid article { visibility: hidden; }
.why-join.is-visible .section-heading { animation: landing-component-rise .54s ease-out .04s backwards; }
.why-join.is-visible .report-grid article { animation: why-card-enter .62s cubic-bezier(.16, 1, .3, 1) backwards; }
.why-join.is-visible .report-grid article:nth-child(1) { animation-delay: .16s; }
.why-join.is-visible .report-grid article:nth-child(2) { animation-delay: .29s; }
.why-join.is-visible .report-grid article:nth-child(1) .report-number { animation: why-number-settle .42s cubic-bezier(.16, 1, .3, 1) .4s backwards; }
.why-join.is-visible .report-grid article:nth-child(2) .report-number { animation: why-number-settle .42s cubic-bezier(.16, 1, .3, 1) .53s backwards; }
@keyframes why-card-enter {
  from { opacity: 0; transform: translateY(.9rem); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes why-number-settle {
  from { opacity: 0; transform: scale(1.2) rotate(-5deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

/* Long-form headings drop out of expanded caps — shouting is for short lines. */
.report-grid h3, .steps h3, .question-card h1, .rules-grid h3,
.legal-page .prose h2, .checkout-card h2, .review-list > h2 {
  font-stretch: 100%;
  letter-spacing: -.01em;
  text-transform: none;
  line-height: 1.06;
}
.review-list > h2 { font-family: var(--sans); letter-spacing: .16em; text-transform: uppercase; }

/* --- steps ---------------------------------------------------------------- */
.steps { list-style: none; margin: 0; padding: 0; border-top: 3px solid var(--lime); }
.steps li { display: grid; grid-template-columns: 4.5rem minmax(0, 1fr); gap: 1rem; padding: 1.9rem 0; border-bottom: 1px solid var(--line); }
.steps > li > span { color: var(--lime); font-size: 1.5rem; font-weight: 900; font-stretch: 112%; }
.steps h3 { margin: 0; font-size: 1.35rem; }
.steps p { margin: .5rem 0 0; max-width: 60ch; color: var(--muted); }
.steps--compact { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-top: 3px solid var(--lime); }
.steps--compact li { grid-template-columns: 1fr; align-content: start; gap: 1rem; padding: 2rem 1.75rem; background: var(--navy); border: 0; }
.mechanics-link { margin-top: 1.75rem; }

/* The three-step mechanic plays once as a short left-to-right sequence. */
.how-it-works .steps--compact { position: relative; border-top-color: transparent; }
.how-it-works .steps--compact::before {
  content: '';
  position: absolute;
  z-index: 2;
  top: -3px;
  right: -1px;
  left: -1px;
  height: 3px;
  background: var(--pop);
  transform: scaleX(1);
  transform-origin: left center;
  pointer-events: none;
}
.how-it-works.is-observed:not(.is-visible) .steps--compact li,
.how-it-works.is-observed:not(.is-visible) .mechanics-link { visibility: hidden; }
.how-it-works.is-observed:not(.is-visible) .steps--compact::before { transform: scaleX(0); }
.how-it-works.is-visible .steps--compact::before { animation: how-line-draw .68s cubic-bezier(.16, 1, .3, 1) .04s backwards; }
.how-it-works.is-visible .steps--compact li { animation: how-step-enter .56s cubic-bezier(.16, 1, .3, 1) backwards; }
.how-it-works.is-visible .steps--compact li:nth-child(1) { animation-delay: .14s; }
.how-it-works.is-visible .steps--compact li:nth-child(2) { animation-delay: .27s; }
.how-it-works.is-visible .steps--compact li:nth-child(3) { animation-delay: .4s; }
.how-it-works.is-visible .steps--compact li > span { animation: how-number-settle .44s cubic-bezier(.16, 1, .3, 1) backwards; }
.how-it-works.is-visible .steps--compact li:nth-child(1) > span { animation-delay: .32s; }
.how-it-works.is-visible .steps--compact li:nth-child(2) > span { animation-delay: .45s; }
.how-it-works.is-visible .steps--compact li:nth-child(3) > span { animation-delay: .58s; }
.how-it-works.is-visible .steps--compact li div { animation: how-copy-enter .4s ease-out backwards; }
.how-it-works.is-visible .steps--compact li:nth-child(1) div { animation-delay: .37s; }
.how-it-works.is-visible .steps--compact li:nth-child(2) div { animation-delay: .5s; }
.how-it-works.is-visible .steps--compact li:nth-child(3) div { animation-delay: .63s; }
.how-it-works.is-visible .mechanics-link { animation: how-link-enter .44s ease-out .76s backwards; }
@keyframes how-line-draw {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes how-step-enter {
  from { opacity: 0; transform: translateY(.75rem); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes how-number-settle {
  from { opacity: 0; transform: translateY(-.3rem) scale(1.25) rotate(-4deg); }
  to { opacity: 1; transform: translateY(0) scale(1) rotate(0); }
}
@keyframes how-copy-enter {
  from { opacity: 0; transform: translateX(.45rem); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes how-link-enter {
  from { opacity: 0; transform: translateX(-.6rem); }
  to { opacity: 1; transform: translateX(0); }
}

.why-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 6vw, 5rem); }
.rules-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
.rules-grid article { padding-top: 1.1rem; border-top: 3px solid var(--pop); }
.rules-grid h3 { font-size: 1.2rem; }
.rules-grid p, .prose { color: var(--muted); }
.prose { font-size: 1.04rem; line-height: 1.7; }

/* --- closing call --------------------------------------------------------- */
.final-cta {
  margin-top: 3.5rem;
  padding: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
  background: var(--lime);
  color: var(--navy);
  border: 3px solid var(--ink);
  box-shadow: var(--hard);
}
.final-cta > p:first-child { margin: 0; color: var(--navy); }
.final-cta h2 { margin: 1rem 0 1.4rem; font-size: clamp(2.2rem, 5.4vw, 4rem); }
.final-cta .button--primary { background: var(--navy); border-color: var(--navy); color: var(--lime); }
.final-cta .button--primary:hover { box-shadow: 6px 6px 0 var(--white); }
.edition-section { padding-top: 0; }
.edition-section .final-cta { margin-top: 0; }
.edition-actions { justify-content: center; margin-top: 0; }
.final-cta .edition-actions .hero__price { color: var(--navy); }
.edition-copy { max-width: 52ch; margin: 0 auto 1.75rem; color: #2b3355; font-weight: 600; }
.edition-copy p { margin: 0; }
.final-cta .campaign-approval-disclaimer { color: var(--navy); }
.landing-final.is-observed:not(.is-visible) .final-cta { visibility: hidden; }
.landing-final.is-visible .final-cta { animation: final-cta-enter .65s cubic-bezier(.16, 1, .3, 1) backwards; }
.landing-final.is-visible .final-cta > p:first-child { animation: landing-component-rise .42s ease-out .18s backwards; }
.landing-final.is-visible .final-cta h2 { animation: landing-component-rise .48s ease-out .26s backwards; }
.landing-final.is-visible .edition-copy { animation: landing-component-rise .48s ease-out .34s backwards; }
.landing-final.is-visible .edition-actions { animation: landing-component-rise .48s ease-out .42s backwards; }
@keyframes final-cta-enter {
  from { opacity: 0; transform: translateY(.8rem) scale(.99); box-shadow: 0 0 0 var(--ink); }
  to { opacity: 1; transform: translateY(0) scale(1); box-shadow: var(--hard); }
}

/* --- entry flow ----------------------------------------------------------- */
.flow-shell { display: grid; grid-template-columns: minmax(260px, .85fr) minmax(0, 1.15fr); gap: clamp(2rem, 6vw, 4.5rem); max-width: 1120px; margin: 0 auto; padding: clamp(2.5rem, 6vw, 4.5rem) 1.25rem; align-items: start; }
.flow-intro { position: sticky; top: 6.5rem; }
.flow-intro h1, .message-shell h1, .review-header h1, .report-page h1, .legal-page h1 { margin: .9rem 0 1rem; font-size: clamp(2.3rem, 5vw, 3.8rem); }
.flow-intro > p:not(.eyebrow) { color: var(--muted); }
.deadline-note { margin-top: 1.5rem; padding-top: 1.1rem; border-top: 3px solid var(--lime); font-size: .9rem; }
.deadline-note strong { color: var(--lime); }

.entry-card, .question-card, .checkout-card {
  padding: clamp(1.4rem, 4vw, 2.5rem);
  background: var(--white);
  color: var(--navy);
  border: 3px solid var(--ink);
  border-radius: var(--block);
  box-shadow: var(--hard-lime);
}

.field { margin-bottom: 1.4rem; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: .5rem; color: var(--navy); font-size: .92rem; font-weight: 700; }
.field label span { color: var(--dim); }
.field input, .field select {
  width: 100%;
  min-height: 54px;
  padding: .8rem .95rem;
  background: var(--bone);
  border: 2px solid var(--navy);
  border-radius: var(--block);
  color: var(--navy);
  font-weight: 500;
  transition: background-color .15s ease, box-shadow .15s ease;
}
.field input::placeholder { color: var(--dim); }
.field input:hover, .field select:hover { background: var(--white); }
.field input:focus, .field select:focus { outline: 0; background: var(--white); box-shadow: 4px 4px 0 var(--lime); }
.field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 3rem;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--navy) 50%),
    linear-gradient(135deg, var(--navy) 50%, transparent 50%);
  background-position: calc(100% - 1.25rem) calc(50% - 1px), calc(100% - .9rem) calc(50% - 1px);
  background-repeat: no-repeat;
  background-size: .4rem .4rem, .4rem .4rem;
  color-scheme: light;
}
.field select:required:invalid { color: var(--dim); }
.field small, .form-fineprint { display: block; margin-top: .5rem; color: var(--dim); font-size: .8rem; font-weight: 600; }
.form-fineprint { margin-top: 1.25rem; text-transform: uppercase; letter-spacing: .1em; font-size: .68rem; }

.form-errors, .notice, .legal-warning {
  margin-bottom: 1.25rem;
  padding: .85rem 1.1rem;
  background: var(--pop);
  border: 0;
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
}
.form-errors p { margin: 0; }
.notice { background: var(--lime); color: var(--navy); }

/* --- messages ------------------------------------------------------------- */
.message-shell { max-width: 46rem; margin: 0 auto; padding: clamp(3.5rem, 9vw, 6.5rem) 1.25rem; min-height: 56vh; text-align: center; }
.message-mark {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  margin: 0 auto 2rem;
  background: var(--lime);
  color: var(--navy);
  font-size: 1.4rem;
  font-weight: 900;
  box-shadow: 6px 6px 0 var(--pop);
}
.message-mark--logo { display: block; width: 6rem; height: 6rem; padding: 0; background: transparent; box-shadow: none; object-fit: contain; }
.message-shell > p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; }
.message-shell strong { color: var(--white); }
.message-shell .button { margin: .5rem .35rem 0; }
.resend-form { margin-top: 2rem; }

/* --- twenty questions ----------------------------------------------------- */
.question-shell { max-width: 920px; margin: 0 auto; padding: 2rem 1.25rem 4.5rem; }
.question-progress { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1.2rem; margin-bottom: 1rem; color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.question-progress div { display: flex; gap: .4rem; }
.question-progress strong { color: var(--lime); }
.question-progress progress { width: 100%; height: 8px; appearance: none; border: 0; background: var(--navy-3); }
.question-progress progress::-webkit-progress-bar { background: var(--navy-3); }
.question-progress progress::-webkit-progress-value { background: var(--lime); }
.question-progress progress::-moz-progress-bar { background: var(--lime); }
.save-state { min-width: 7rem; text-align: right; color: var(--dim); }
.save-state.is-saved { color: var(--lime); }
.save-state.is-error { color: var(--pop); }
.save-retry { border: 0; background: transparent; padding: 0; color: var(--pop); font-size: .7rem; font-weight: 800; text-transform: uppercase; text-decoration: underline; cursor: pointer; }

.entry-owner { display: flex; flex-wrap: wrap; align-items: baseline; gap: .4rem .8rem; padding: .85rem 1rem; background: var(--navy-2); border-left: 6px solid var(--lime); font-size: .88rem; }
.entry-owner span { color: var(--dim); font-size: .66rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.entry-owner a { margin-left: auto; color: var(--lime); font-size: .8rem; font-weight: 700; }

.question-card { margin-top: 1rem; padding: clamp(1.5rem, 5vw, 3rem); }
.question-card__section { color: var(--pop); }
.question-card h1 { margin: .9rem 0 .8rem; color: var(--navy); font-size: clamp(1.8rem, 4vw, 2.8rem); }
.anchor { margin: 0 0 2rem; padding: 0; background: transparent; color: var(--navy); font-size: .85rem; font-weight: 700; display: inline-block; }
.question-card fieldset { border: 0; margin: 0; padding: 0; }
.answer-list { display: grid; gap: .6rem; }
.answer-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 62px;
  padding: .8rem 1rem;
  background: var(--bone);
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 600;
  cursor: pointer;
  transition: transform .14s ease, box-shadow .14s ease, background-color .14s ease, color .14s ease;
}
.answer-option:hover { transform: translate(-3px, -3px); box-shadow: 5px 5px 0 var(--navy); background: var(--white); }
.answer-option input { position: absolute; opacity: 0; }
.answer-option:has(input:checked) { background: var(--navy); color: var(--white); box-shadow: 5px 5px 0 var(--lime); }
.answer-option:has(input:focus-visible) { outline: 3px solid var(--pop); outline-offset: 3px; }
.answer-letter { display: grid; place-items: center; flex: 0 0 2.1rem; width: 2.1rem; height: 2.1rem; background: transparent; color: var(--navy); font-size: .85rem; font-weight: 900; }
.answer-option:has(input:checked) .answer-letter { background: var(--lime); color: var(--navy); }
.source-note { margin-top: 2rem; padding-top: 1rem; border-top: 2px solid var(--line-ink); color: var(--dim); font-size: .8rem; font-weight: 600; }
.source-note strong { color: var(--navy); }
.question-nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 2rem; font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.question-nav a { color: var(--lime); text-decoration: none; }
.question-nav a:hover { color: var(--white); }
.seal-note { margin-top: 2rem; color: var(--dim); text-align: center; }

/* --- review + checkout ---------------------------------------------------- */
.review-shell, .report-page, .legal-page { max-width: 1000px; margin: 0 auto; padding: clamp(2.5rem, 6vw, 4.5rem) 1.25rem; }
.review-header { max-width: 38rem; margin-bottom: 3rem; }
.review-header > p:last-child { max-width: 52ch; color: var(--muted); font-size: 1.05rem; }
.review-list > h2 { margin: 3rem 0 .5rem; padding: .55rem .8rem; background: var(--lime); color: var(--navy); }
.review-row { display: grid; grid-template-columns: 2.8rem minmax(0, 1fr) auto; gap: 1rem; padding: 1.15rem 0; border-bottom: 1px solid var(--line); }
.review-number { display: grid; place-items: center; width: 2.3rem; height: 2.3rem; background: var(--navy-3); color: var(--white); font-size: .85rem; font-weight: 900; font-variant-numeric: tabular-nums; }
.review-row h3 { margin: 0; font-size: 1rem; font-stretch: 100%; letter-spacing: 0; text-transform: none; }
.review-row p { margin: .3rem 0; color: var(--dim); font-size: .82rem; }
.review-row strong { color: var(--lime); }
.review-row > a { color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; }
.review-row > a:hover { color: var(--lime); }

.checkout-card { display: grid; gap: 1.8rem; margin-top: 3.5rem; }
.checkout-card h2 { margin: .9rem 0 1rem; color: var(--navy); font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.checkout-card .eyebrow { color: var(--pop); }
.checkout-total { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-top: 2rem; padding-top: 1rem; border-top: 3px solid var(--navy); color: var(--dim); font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.checkout-total strong { color: var(--navy); font-size: 1.7rem; font-weight: 900; font-variant-numeric: tabular-nums; }
.check-row { display: grid; grid-template-columns: 22px 1fr; gap: .8rem; margin-bottom: 1.35rem; color: #46507a; font-size: .88rem; }
.check-row input { width: 20px; height: 20px; accent-color: var(--navy); color-scheme: light; }
.check-row a { color: var(--navy); font-weight: 700; }
.checkout-security { margin: 1rem 0 0; color: var(--dim); font-size: .78rem; }
.checkout-card .form-errors { margin: 1rem 0 0; }
.checkout-options { min-width: 0; }
.checkout-option-fields { display: grid; grid-template-columns: minmax(0,1fr); align-items: start; gap: 1.4rem; }
.checkout-option-terms, .checkout-option-coupon { min-width: 0; }
.coupon-form__eyebrow { margin: 0 0 1rem; color: var(--pop); font-size: .7rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.checkout-option-terms .check-row { margin-bottom: 0; }
.coupon-form__code-row { display: grid; gap: .4rem; margin-bottom: 1.1rem; color: var(--navy); font-size: .84rem; font-weight: 800; }
.coupon-form__code-controls { display: flex; align-items: center; gap: .65rem; flex-wrap: wrap; }
.coupon-form__code-controls input { width: 19.2ch; max-width: 100%; min-height: 48px; padding: .7rem .8rem; border: 2px solid var(--navy); background: var(--white); color: var(--navy); font: 750 .95rem/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; letter-spacing: .06em; text-transform: uppercase; }
.coupon-form__code-controls input:focus { outline: 0; box-shadow: 4px 4px 0 var(--lime); }
.coupon-form__check-button { min-height: 34px; padding: .35rem .55rem; border: 1px solid var(--line-ink); background: transparent; color: var(--dim); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
.coupon-form__check-button:hover, .coupon-form__check-button:focus-visible { border-color: var(--navy); color: var(--navy); background: var(--bone); }
.coupon-check { margin: -.45rem 0 1rem; padding: .65rem .75rem; color: var(--white); background: var(--pop); font-size: .78rem; font-weight: 700; }
.coupon-check.is-checking { color: var(--dim); background: var(--bone-2); }
.coupon-check.is-valid { color: var(--navy); background: var(--lime); }
.checkout-option-actions { margin-top: 1.4rem; }
.button--coupon { background: var(--bone); border-color: var(--navy); color: var(--navy); }
.button--coupon:not(:disabled):hover { background: var(--navy); color: var(--white); }
.checkout-options .button--coupon:disabled { cursor: not-allowed; opacity: 1; background: var(--bone-2); border-color: #b5c0da; color: #485577; }
.form-errors--success { background: var(--lime); color: var(--navy); }
.checkout-card.is-active { align-items: start; }
.checkout-elements { min-width: 0; }
.checkout-element-group { margin-bottom: 1.5rem; }
.checkout-element-group h3 { margin: 0 0 .75rem; color: var(--dim); }
#billing-address-element { min-height: 210px; }
#payment-element { min-height: 110px; }
.checkout-card [hidden] { display: none; }

.report-page header { max-width: 44rem; margin-bottom: 3rem; }
.report-pending, .summary-box { padding: 1.5rem; background: var(--navy-2); border-left: 6px solid var(--lime); }
.report-page .summary-box { margin: 0 0 2rem; }
.report-page .summary-box p { margin: .35rem 0 0; color: var(--muted); }
.result-chip { padding: .4rem .7rem; background: var(--navy-3); font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.result-chip.is-correct { background: var(--lime); color: var(--navy); }

/* --- legal ---------------------------------------------------------------- */
.legal-page { max-width: 60rem; }
.legal-warning { margin: 2rem 0; }
.legal-page .prose { color: var(--muted); font-size: .98rem; line-height: 1.72; }
.legal-page .prose h2 { margin: 3rem 0 .9rem; padding-top: 1.2rem; border-top: 3px solid var(--lime); color: var(--white); font-size: clamp(1.2rem, 2.2vw, 1.6rem); }
.legal-page .prose > h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.legal-page .prose ol, .legal-page .prose ul { margin: .8rem 0 1.5rem; padding-left: 1.5rem; }
.legal-page .prose li { margin: .45rem 0; padding-left: .25rem; }
.legal-page .prose li::marker { color: var(--lime); font-weight: 800; }
.legal-page .prose a, .legal-page .prose strong { color: var(--white); }
.legal-page .prose a { text-decoration-color: var(--lime); text-underline-offset: .2em; }
.legal-table-wrapper { max-width: 100%; margin: 1.25rem 0 1.5rem; overflow-x: auto; border: 2px solid var(--line); }
.legal-page table { width: 100%; min-width: 680px; border-collapse: collapse; font-size: .86rem; }
.legal-page th, .legal-page td { padding: .9rem 1rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.legal-page th { background: var(--lime); color: var(--navy); }
.legal-page td { color: var(--muted); }
.legal-page th:first-child, .legal-page td:first-child, .legal-page th:last-child, .legal-page td:last-child { width: 25%; }
.legal-page tbody tr:last-child td { border-bottom: 0; }
.legal-page tbody tr:nth-child(even) { background: var(--navy-2); }

/* --- footer --------------------------------------------------------------- */
.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem 2rem;
  padding: 2.5rem var(--gutter);
  background: var(--ink);
  border-top: 4px solid var(--lime);
}
.site-footer div { display: flex; flex-direction: column; gap: .3rem; }
.site-footer strong { font-family: var(--display); font-size: 1.05rem; font-weight: 900; font-stretch: 118%; text-transform: uppercase; }
.site-footer div span { color: var(--lime); font-size: .62rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.site-footer nav { display: flex; gap: 1.4rem; }
.site-footer nav a { color: var(--muted); font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; text-decoration: none; }
.site-footer nav a:hover { color: var(--lime); }
.site-footer p { grid-column: 1 / -1; margin: 1rem 0 0; padding-top: 1.2rem; border-top: 1px solid var(--line); color: var(--dim); font-size: .74rem; }

/* --- responsive ----------------------------------------------------------- */
@media (max-width: 900px) {
  .bots-marquee__grid, .hero__grid, .flow-shell, .why-grid, .checkout-card, .checkout-option-fields, .report-grid, .report-grid--two, .rules-grid { grid-template-columns: 1fr; }
  .bots-scoreboard { width: min(100%, 38rem); }
  .bots-marquee { padding-bottom: 5rem; }
  .bots-marquee__disclaimer { bottom: 2.9rem; }
  .hero__copy { position: static; }
  .winner-concepts { width: 100%; max-width: 46rem; margin: 1rem auto 0; }
  .steps--compact { grid-template-columns: 1fr; }
  .flow-intro { position: static; }
  .hero::before { width: 100%; opacity: .6; }
}

@media (max-width: 620px) {
  .bots-marquee__flag { margin-bottom: 2.6rem; }
  .bots-marquee__track { animation-duration: 17s; }
  .bots-marquee h2 { font-size: clamp(3.5rem, 18vw, 5.8rem); text-shadow: 4px 4px 0 var(--ink); }
  .bots-marquee__actions { align-items: stretch; flex-direction: column; }
  .button--bots { width: 100%; }
  .bots-scoreboard { padding: 1rem; box-shadow: 6px 6px 0 var(--lime); transform: none; }
  .bots-scoreboard__header { align-items: flex-start; flex-direction: column; }
  .site-header__inner { min-height: 0; padding: .9rem 0; justify-content: center; text-align: center; }
  .wordmark { align-items: center; }
  .site-nav { justify-content: center; gap: .9rem; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .question-progress { grid-template-columns: 1fr auto; }
  .save-retry { grid-column: 2; }
  .question-progress progress { grid-column: 1 / -1; grid-row: 2; }
  .entry-owner a { width: 100%; margin-left: 0; }
  .review-row { grid-template-columns: 2.4rem minmax(0, 1fr); }
  .review-row > a, .result-chip { grid-column: 2; justify-self: start; }
  .enclosure-card { padding: 1.15rem; border-width: .4rem; box-shadow: 4px 4px 0 var(--lime); }
  .enclosure-card__masthead { grid-template-columns: 4.1rem minmax(0, 1fr); gap: .75rem; }
  .enclosure-rosette { width: 3.8rem; height: 3.8rem; border-width: 3px; }
  .enclosure-rosette::before, .enclosure-rosette::after { bottom: -1.25rem; height: 2rem; }
  .enclosure-card__footer { flex-direction: column; gap: .3rem; }
  .site-footer { grid-template-columns: 1fr; }
  :root { --hard: 4px 4px 0 var(--ink); --hard-lime: 4px 4px 0 var(--lime); }
}

@media (max-width: 390px) {
  .bots-scoreboard__field li { grid-template-columns: 1.7rem minmax(0, 1fr) .6rem; gap: .55rem; }
  .bots-scoreboard__field small { display: none; }
  .winner-ranking li { grid-template-columns: 2.1rem minmax(0, 1fr); gap: .45rem; }
  .winner-ranking strong { font-size: .78rem; }
  .enclosure-card__masthead h3 { font-size: 1.3rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .bots-marquee.is-observed .bots-marquee__grid { visibility: visible; }
  .bots-marquee__flag { padding-right: var(--gutter); padding-left: var(--gutter); }
  .bots-marquee__track { width: 100%; animation: none !important; }
  .bots-marquee__group { display: none; }
  .bots-marquee__group:first-child { display: flex; width: 100%; flex-wrap: wrap; justify-content: center; padding: 0; }
  .bots-marquee__dot { display: none; }
  .bots-title__word { opacity: 1; filter: none; transform: none; animation: none !important; }
  .bots-marquee__copy .eyebrow,
  .bots-marquee__lead,
  .bots-marquee__actions,
  .bots-scoreboard,
  .bots-scoreboard__header,
  .bots-scoreboard__field li,
  .bots-scoreboard footer { animation: none !important; }
  .hero--call-sale.is-observed .hero__eyebrow,
  .hero--call-sale.is-observed .hero__copy h1,
  .hero--call-sale.is-observed .hero__lead,
  .hero--call-sale.is-observed .hero__actions,
  .hero--call-sale.is-observed .winner-enclosure,
  .why-join.is-observed .section-heading,
  .why-join.is-observed .report-grid article,
  .how-it-works.is-observed .steps--compact li,
  .how-it-works.is-observed .mechanics-link,
  .landing-final.is-observed .final-cta { visibility: visible; }
  .hero--call-sale *,
  .why-join *,
  .how-it-works *,
  .how-it-works *::before,
  .how-it-works *::after,
  .landing-final * { animation: none !important; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
