/* =========================================================
   Second Arc — "Memphis Pop on Black"
   Neubrutalist offset shadows · rotated sticker labels ·
   floating geometry · Space Grotesk / Inter / JetBrains Mono / Caveat
   ========================================================= */

:root {
  --ink: #0A0A0A;
  --ink-hi: #161616;
  --ink-card: #121212;

  --text: #F0F0F0;
  --text-soft: #AAAAAA;
  --text-faint: #8A8A8A;      /* lifted from #555 — #555 fails WCAG on black */

  --orange: #FF8C42;
  --orange-deep: #E67635;
  --cyan: #5DD2FF;
  --yellow: #FFE066;

  --line: rgba(240,240,240,0.08);
  --line-hi: rgba(240,240,240,0.18);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --pad-x: 22px;
  --shell: 1240px;

  --display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --brand: 'Caveat', cursive;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 90px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
a, button { -webkit-tap-highlight-color: transparent; }
mark { background: none; color: inherit; }
img, svg { display: block; max-width: 100%; }

::selection { background: var(--yellow); color: var(--ink); }

a:focus-visible, button:focus-visible {
  outline: 2.5px solid var(--yellow); outline-offset: 3px; border-radius: 4px;
}
section[id] { scroll-margin-top: 90px; }

.shell { max-width: var(--shell); margin: 0 auto; padding: 0 var(--pad-x); }

.skip {
  position: absolute; left: -9999px;
}
.skip:focus {
  left: 16px; top: 16px; z-index: 200;
  background: var(--yellow); color: var(--ink);
  padding: 10px 16px; font-weight: 700; border-radius: 4px;
}

/* Scroll progress */
#progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 100;
  background: linear-gradient(90deg, var(--orange), var(--yellow), var(--cyan));
  transform: scaleX(0); transform-origin: left;
}

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}
.header.scrolled {
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom-color: var(--line);
}
.header__inner {
  max-width: var(--shell); margin: 0 auto;
  padding: 16px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}

.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo__mark { flex: none; }
.logo__word {
  font-family: var(--brand); font-weight: 700; font-size: 26px; line-height: 1;
  color: var(--text);
}
.logo__accent { color: var(--orange); transition: color 0.3s ease; }
.logo:hover .logo__accent { color: var(--yellow); }

.nav { display: none; align-items: center; gap: 4px; }
.nav a {
  position: relative; padding: 8px 14px; border-radius: 6px;
  font-size: 14px; font-weight: 500; color: var(--text-soft);
  transition: color 0.3s ease, background 0.3s ease;
}
.nav a:hover { color: var(--text); background: rgba(255,224,102,0.09); }

.pill-cta {
  display: none; align-items: center; gap: 9px;
  padding: 10px 18px; border-radius: 100px;
  background: var(--orange); color: var(--ink);
  font-size: 14px; font-weight: 600;
  box-shadow: 3px 3px 0 var(--yellow);
  transition: background 0.25s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.pill-cta:hover { background: var(--yellow); }
.pill-cta:active { transform: translate(3px, 3px); box-shadow: 0 0 0 var(--yellow); }
.ping { position: relative; display: flex; width: 8px; height: 8px; }
.ping i, .ping b {
  position: absolute; inset: 0; border-radius: 50%; background: var(--ink); display: block;
}
.ping i { opacity: 0.55; animation: ping 1.8s cubic-bezier(0,0,0.2,1) infinite; }
@keyframes ping { 75%, 100% { transform: scale(2.2); opacity: 0; } }

.burger {
  width: 44px; height: 44px; margin-right: -10px; padding: 0;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  background: none; border: 0; cursor: pointer;
}
.burger span {
  width: 22px; height: 2px; background: var(--text); display: block; border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* =========================================================
   MOBILE MENU
   ========================================================= */
.menu {
  position: fixed; inset: 0; z-index: 35;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 100px var(--pad-x) 40px;
  display: flex; flex-direction: column;
  animation: menuIn 0.3s var(--ease) both;
}
.menu[hidden] { display: none; }
@keyframes menuIn { from { opacity: 0; } to { opacity: 1; } }
.menu__nav { display: flex; flex-direction: column; }
.menu__nav a {
  font-family: var(--display); font-weight: 700; font-size: 34px; letter-spacing: -0.02em;
  padding: 13px 0; color: var(--text);
  border-bottom: 1px solid var(--line);
  transition: color 0.2s ease;
}
.menu__nav a:hover { color: var(--yellow); }
.menu__accent { color: var(--orange) !important; border-bottom: 0 !important; }
.menu__reassure {
  margin-top: 26px; font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint);
}

/* =========================================================
   SHARED TYPE / DEVICES
   ========================================================= */

/* Rotated sticker — the chapter marker of this system */
.sticker {
  display: inline-block;
  font-family: var(--body);
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.11em;
  padding: 6px 12px; color: var(--ink);
  box-shadow: 3px 3px 0 rgba(240,240,240,0.22);
}
.sticker--yellow { background: var(--yellow); }
.sticker--orange { background: var(--orange); }
.sticker--cyan   { background: var(--cyan); }
.sticker--ink    { background: var(--ink); color: var(--yellow); box-shadow: 3px 3px 0 rgba(10,10,10,0.35); }
/* Pivot from the left edge so the tilt never nudges the shared left alignment */
.sticker--tiltL  { transform: rotate(-2deg); transform-origin: left center; }
.sticker--tiltR  { transform: rotate(1.5deg); transform-origin: left center; }

.h2 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(28px, 6.2vw, 50px); line-height: 1.04; letter-spacing: -0.025em;
  margin-bottom: 18px; text-wrap: balance;
}
.accent-orange { color: var(--orange); }
.accent-cyan { color: var(--cyan); }
.accent-yellow { color: var(--yellow); }

.ring-word {
  border: 2px solid var(--text); border-radius: 100px;
  padding: 0 14px; display: inline-block;
}

.lead {
  font-size: 15.5px; line-height: 1.6; color: var(--text-soft); max-width: 54ch;
}

.micro {
  margin-top: 14px; font-family: var(--mono);
  font-size: 11.5px; letter-spacing: 0.06em; color: var(--text-faint); line-height: 1.6;
}

/* label + rule */
.rule-label {
  display: flex; align-items: center; gap: 14px;
  margin: 36px 0 20px;
  font-family: var(--mono); font-size: 10.5px; text-transform: uppercase;
  letter-spacing: 0.22em; color: var(--text-faint);
}
.rule-label::after { content: ""; flex: 1; height: 1px; background: var(--line-hi); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 26px; border-radius: 10px;
  background: var(--orange); color: var(--ink);
  font-size: 15.5px; font-weight: 700;
  box-shadow: 6px 6px 0 var(--yellow);
  transition: box-shadow 0.2s ease, transform 0.2s ease, background 0.25s ease;
}
.btn svg { transition: transform 0.3s var(--ease); }
.btn:hover { box-shadow: 3px 3px 0 var(--yellow); transform: translate(3px, 3px); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { box-shadow: 0 0 0 var(--yellow); transform: translate(6px, 6px); }
.btn--lg { padding: 18px 34px; font-size: 17px; }

/* Secondary hard button — cyan, same neubrutalist press behaviour */
.btn--cyan { background: var(--cyan); box-shadow: 6px 6px 0 var(--orange); }
.btn--cyan:hover { box-shadow: 3px 3px 0 var(--orange); transform: translate(3px, 3px); background: var(--cyan); }
.btn--cyan:active { box-shadow: 0 0 0 var(--orange); transform: translate(6px, 6px); }

.closing__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }

.btn-quiet {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--text-soft); transition: color 0.25s ease;
}
.btn-quiet:hover { color: var(--yellow); }
.btn-quiet svg { transition: transform 0.4s var(--ease); }
.btn-quiet:hover svg { transform: translateY(3px); }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; padding: 130px 0 64px; overflow: hidden; }
.hero__grid { display: grid; gap: 40px; }

.hero__title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(40px, 12vw, 76px);
  line-height: 0.98; letter-spacing: -0.03em;
  margin: 26px 0 22px;
}
.line { display: block; overflow: hidden; }
.line__in { display: inline-block; }
.hl {
  background: var(--yellow); color: var(--ink);
  padding: 0 10px; border-radius: 2px;
  box-decoration-break: clone; -webkit-box-decoration-break: clone;
}

.hero__kicker {
  font-size: 17px; font-weight: 600; line-height: 1.45; letter-spacing: -0.015em;
  color: var(--text); margin-bottom: 10px; max-width: 30ch;
}
.hero__body { font-size: 15px; line-height: 1.6; color: var(--text-soft); }

/* Outcomes ledger */
.ledger { margin-top: 22px; display: flex; flex-direction: column; }
.ledger li {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--line);
  font-size: 14.5px; font-weight: 500; color: var(--text);
}
.ledger li:first-child { border-top: 1px solid var(--line); }
.ledger li::before {
  content: "✓"; flex: none;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--cyan); color: var(--ink);
  font-size: 11px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}

.hero__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; margin-top: 30px; }

/* Memphis floating composition */
.hero__art { position: relative; height: 210px; }
.shape { position: absolute; display: block; }
.shape--sq {
  top: 8%; left: 16%; width: 66px; height: 66px; background: var(--orange); border-radius: 8px;
  box-shadow: 6px 6px 0 var(--yellow);
  --rot: 15deg; transform: rotate(15deg); animation: floatY 7s ease-in-out infinite;
}
.shape--ring {
  top: 16%; right: 12%; width: 58px; height: 58px;
  border: 4px solid var(--cyan); border-radius: 50%;
  animation: floatY 7s ease-in-out infinite; animation-delay: 2s;
}
.shape--tri {
  bottom: 16%; left: 26%; width: 0; height: 0;
  border-left: 22px solid transparent; border-right: 22px solid transparent;
  border-bottom: 38px solid var(--yellow);
  animation: floatY 5s ease-in-out infinite; animation-delay: 4s;
}
.shape--dot {
  bottom: 12%; right: 24%; width: 42px; height: 42px; background: var(--text); border-radius: 50%;
  animation: floatY 7s ease-in-out infinite; animation-delay: 1s;
}
.shape--dash {
  top: 50%; left: 44%; width: 92px; height: 6px;
  background: repeating-linear-gradient(90deg, var(--text) 0 5px, transparent 5px 12px);
  transform: rotate(-22deg);
}
.shape--pip {
  top: 30%; right: 38%; width: 12px; height: 12px; background: var(--yellow); border-radius: 50%;
  animation: floatY 7s ease-in-out infinite; animation-delay: 1.5s;
}
.hero__watermark {
  position: absolute; right: 0; bottom: -10px;
  font-family: var(--display); font-weight: 700; font-size: 7rem; line-height: 0.8;
  color: var(--text); opacity: 0.05; user-select: none; pointer-events: none;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-10px) rotate(var(--rot, 0deg)); }
}

.scrollcue {
  display: none;
  position: absolute; bottom: 22px; left: var(--pad-x);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--text-faint); align-items: center; gap: 12px;
}
.scrollcue span { width: 44px; height: 1px; background: var(--text-faint); display: block; }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  position: relative; overflow: hidden;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: rgba(22,22,22,0.4);
  padding: 26px 0;
}
.marquee__label {
  display: none;
  position: absolute; left: var(--pad-x); top: 50%; transform: translateY(-50%); z-index: 2;
  align-items: center; gap: 9px; padding-right: 20px; background: var(--ink);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--text-faint);
}
.marquee__label .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); display: block; }
.marquee__mask {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track { display: flex; width: max-content; animation: marquee 70s linear infinite; }
.marquee__set { display: flex; align-items: center; flex: none; }
.marquee__set span {
  padding: 0 30px; white-space: nowrap;
  font-family: var(--mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--text-soft);
}
.marquee__set i { width: 1px; height: 12px; background: var(--line-hi); flex: none; display: block; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* =========================================================
   BANDS (numbered sections)
   ========================================================= */
.band {
  position: relative; overflow: hidden;
  padding: 72px 0 76px;
  border-bottom: 1px solid var(--line);
}
/* Single column at every width: the sticker stacks above the content so band
   copy shares the SAME left edge as the hero, the orange panel and the footer.
   (A side-column aside pushed band content 288px inboard of everything else.) */
.band__grid { display: grid; gap: 0; }
.band__aside { margin-bottom: 26px; }
.band__body { max-width: 880px; }

/* Floating confetti accents.
   Content is capped at 880px, so on wide screens the RIGHT side is guaranteed
   empty — that's where these live. They only appear once that gutter actually
   exists (≥1200px); below that they'd collide with copy. */
.confetti { position: absolute; display: none; pointer-events: none; z-index: 0; }
.band .shell, .closing .shell { position: relative; z-index: 1; }

.confetti--ring {
  top: 150px; right: 40px; width: 46px; height: 46px;
  border: 2px solid var(--yellow); border-radius: 50%;
  animation: floatY 7s ease-in-out infinite; animation-delay: 1s;
}
.confetti--sq {
  top: 190px; right: 52px; width: 50px; height: 50px; background: var(--cyan); border-radius: 8px;
  --rot: -10deg; transform: rotate(-10deg);
  animation: floatY 7s ease-in-out infinite; animation-delay: 2s;
}
.confetti--tri {
  top: 170px; right: 48px; width: 0; height: 0;
  border-left: 22px solid transparent; border-right: 22px solid transparent;
  border-bottom: 38px solid var(--orange);
  animation: floatY 5s ease-in-out infinite; animation-delay: 3s;
}
.confetti--dot {
  top: 110px; right: 60px; width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid var(--yellow); opacity: 0.45;
  animation: floatY 6s ease-in-out infinite;
}

/* task cards */
.cards { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; margin-top: 22px; }
.cards li {
  background: var(--ink-card); border: 1px solid var(--line-hi); border-radius: 10px;
  padding: 14px 15px; font-size: 13.5px; font-weight: 500; color: var(--text);
  display: flex; align-items: center; gap: 10px;
  transition: border-color 0.25s ease, transform 0.2s ease;
}
.cards li::before {
  content: ""; flex: none; width: 8px; height: 8px; border-radius: 2px; background: var(--orange);
}
.cards li:hover { border-color: var(--orange); transform: translateY(-2px); }

/* checks */
.checks { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; margin-top: 22px; }
.checks li {
  background: var(--ink-card); border: 1px solid var(--line-hi); border-radius: 10px;
  padding: 14px 15px; font-size: 13.5px; font-weight: 500; color: var(--text);
  display: flex; align-items: center; gap: 10px;
}
.checks li::before {
  content: "✓"; flex: none;
  width: 19px; height: 19px; border-radius: 50%;
  background: var(--cyan); color: var(--ink);
  font-size: 10px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}

/* metrics */
.metric { margin-top: 24px; }
.metric__row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-bottom: 11px; }
.metric__label { font-size: 14px; color: var(--text-soft); }
.metric__value {
  font-family: var(--display); font-weight: 700;
  font-size: 30px; letter-spacing: -0.035em; font-variant-numeric: tabular-nums;
  color: var(--text);
}
.metric__value i { font-style: normal; font-size: 17px; color: var(--text-faint); }
.metric__value--hot { color: var(--orange); }
.metric__value--hot i { color: var(--orange-deep); }
.metric--muted .metric__label { color: var(--text-faint); }
.metric--muted .metric__value { color: var(--text-soft); }

.track { height: 8px; background: rgba(240,240,240,0.07); border-radius: 2px; overflow: hidden; }
.track__fill { display: block; height: 100%; border-radius: 2px; transform-origin: left; }
.track__fill--hot { background: linear-gradient(90deg, var(--orange-deep), var(--orange)); }
.track__fill--dim { background: rgba(240,240,240,0.22); }

.pullline {
  margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line-hi);
  font-family: var(--display); font-weight: 600;
  font-size: 18px; line-height: 1.35; letter-spacing: -0.02em; color: var(--text);
  max-width: 40ch;
}

/* split bar */
.split { margin-top: 28px; }
.split__bar { display: flex; height: 14px; gap: 3px; margin-bottom: 11px; }
.split__seg { display: block; border-radius: 2px; }
.split__seg--admin { background: rgba(240,240,240,0.18); }
.split__seg--real { flex: 1; background: linear-gradient(90deg, var(--cyan), #9BE4FF); transform-origin: left; }
.split__labels {
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: var(--text-faint);
}
.split__labels .is-cyan { color: var(--cyan); }

/* chips */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.chips span {
  font-size: 12px; font-weight: 600; color: var(--ink); background: var(--cyan);
  border-radius: 100px; padding: 7px 15px;
}

/* contrast */
.contrast { display: flex; align-items: stretch; gap: 12px; margin-top: 24px; max-width: 560px; }
.contrast__card { flex: 1; min-width: 0; border-radius: 12px; padding: 16px 17px; display: flex; flex-direction: column; gap: 6px; }
.contrast__from { background: var(--ink-card); border: 1px dashed var(--line-hi); }
.contrast__to { background: var(--yellow); box-shadow: 5px 5px 0 var(--orange); }
.contrast__tag { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.16em; }
.contrast__from .contrast__tag { color: var(--text-faint); }
.contrast__to .contrast__tag { color: var(--orange-deep); }
.contrast__text { font-family: var(--display); font-size: 16px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; }
.contrast__from .contrast__text { color: var(--text-soft); }
.contrast__to .contrast__text { color: var(--ink); }
.contrast__arrow { align-self: center; flex: none; font-size: 20px; font-weight: 700; color: var(--text-faint); }

/* tags */
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tags li {
  font-size: 12.5px; font-weight: 500; color: var(--text-soft);
  border: 1px solid var(--line-hi); border-radius: 100px; padding: 9px 16px;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.tags li:hover { border-color: var(--yellow); color: var(--yellow); }

/* steps */
.steps { display: flex; flex-direction: column; gap: 14px; margin-top: 26px; }
.step {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--ink-card); border: 1px solid var(--line-hi); border-radius: 12px; padding: 20px;
  transition: border-color 0.25s ease;
}
.step:hover { border-color: var(--cyan); }
.step__num {
  flex: none; width: 38px; height: 38px; border-radius: 50%;
  background: var(--orange); color: var(--ink);
  font-family: var(--display); font-size: 16px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 3px 3px 0 var(--yellow);
}
.step h3 {
  font-family: var(--display); font-size: 17px; font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 6px; color: var(--text);
}
.step p { font-size: 13.5px; line-height: 1.6; color: var(--text-soft); }

/* =========================================================
   INVERTED PANEL — the pivot
   ========================================================= */
.invert {
  position: relative; overflow: hidden;
  background: var(--orange); color: var(--ink);
  padding: 66px 0 70px;
}
.invert__inner { max-width: 780px; }
.invert__line {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(26px, 6vw, 46px); line-height: 1.08; letter-spacing: -0.03em;
  margin-top: 26px; text-wrap: balance;
}
.invert__line .u {
  background: var(--ink); color: var(--yellow); padding: 0 10px; border-radius: 2px;
  box-decoration-break: clone; -webkit-box-decoration-break: clone;
}
.costs { margin-top: 30px; display: flex; flex-direction: column; }
.costs li {
  display: flex; align-items: center; gap: 13px;
  padding: 14px 0; border-bottom: 1px solid rgba(10,10,10,0.2);
  font-size: 16px; font-weight: 600; color: var(--ink);
}
.costs li:first-child { border-top: 1px solid rgba(10,10,10,0.2); }
.costs li::before {
  content: "−"; flex: none;
  width: 23px; height: 23px; border-radius: 50%;
  border: 2px solid var(--ink); color: var(--ink);
  font-size: 15px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
}
.invert__caption {
  margin-top: 20px; font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.06em; color: rgba(10,10,10,0.7);
}

/* =========================================================
   CLOSING
   ========================================================= */
.closing {
  position: relative; overflow: hidden;
  padding: 76px 0 84px;
  border-bottom: 1px solid var(--line);
}
.closing__inner { max-width: 700px; }
.closing__title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(30px, 8vw, 58px); line-height: 1.02; letter-spacing: -0.03em;
  margin-bottom: 18px; text-wrap: balance;
}
.closing__sub { font-size: 15.5px; line-height: 1.6; color: var(--text-soft); margin-bottom: 30px; }
.closing__reassure {
  margin-top: 22px; font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-faint);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer { padding: 54px 0 48px; }
.footer__inner { display: flex; flex-direction: column; align-items: flex-start; }
.footer .logo { margin-bottom: 18px; }
.footer__tagline { font-size: 14.5px; line-height: 1.6; color: var(--text-soft); max-width: 42ch; }
.footer__mail {
  display: inline-block; margin-top: 16px;
  font-size: 15px; font-weight: 600; color: var(--text);
  border-bottom: 2px solid var(--orange); padding-bottom: 2px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.footer__mail:hover { color: var(--yellow); border-color: var(--yellow); }
.footer__legal {
  margin-top: 30px; font-family: var(--mono);
  font-size: 10.5px; letter-spacing: 0.1em; color: var(--text-faint);
}

/* =========================================================
   REVEAL
   ========================================================= */
.js [data-reveal] { opacity: 0; will-change: transform, opacity; }
.js [data-reveal="grow"] { opacity: 1; transform: scaleX(0); }
.js [data-reveal].in { opacity: 1; }
.js [data-reveal="rise"].in { animation: hRise 0.85s var(--ease) both; }
.js [data-reveal="fade"].in { animation: hFade 0.9s ease both; }
.js [data-reveal="word"].in { animation: hWord 0.95s var(--ease) both; }
.js [data-reveal="grow"].in { animation: hGrow 1s var(--ease) both; }

@keyframes hRise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes hFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes hWord { from { opacity: 0; transform: translateY(0.44em); } to { opacity: 1; transform: none; } }
@keyframes hGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.sa-reveal-all [data-reveal],
.js.sa-reveal-all [data-reveal] { opacity: 1 !important; transform: none !important; animation: none !important; }

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1 !important; transform: none !important; animation: none !important; }
  .js [data-reveal="grow"] { transform: none !important; }
  .shape, .confetti { animation: none !important; }
  .ping i { animation: none !important; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (min-width: 720px) {
  :root { --pad-x: 40px; }

  .nav { display: flex; }
  .pill-cta { display: inline-flex; }
  .burger { display: none; }
  .scrollcue { display: flex; }
  .marquee__label { display: flex; }

  .hero { padding: 170px 0 90px; }
  .hero__title { margin: 30px 0 26px; }
  .hero__kicker { font-size: 19px; }
  .hero__body { font-size: 16px; }
  .hero__actions { flex-direction: row; align-items: center; gap: 26px; }
  .hero__art { height: 420px; }
  .hero__watermark { font-size: 11rem; }
  .shape--sq { width: 96px; height: 96px; }
  .shape--ring { width: 80px; height: 80px; }
  .shape--dot { width: 56px; height: 56px; }

  .band { padding: 104px 0 108px; }
  .band__aside { margin-bottom: 32px; }
  .lead { font-size: 17px; }
  .cards, .checks { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; }
  .cards li, .checks li { font-size: 14px; padding: 16px; }
  .metric { margin-top: 32px; }
  .metric__label { font-size: 15px; }
  .metric__value { font-size: 40px; }
  .metric__value i { font-size: 21px; }
  .pullline { font-size: 24px; margin-top: 40px; padding-top: 30px; }
  .split__bar { height: 16px; }
  .steps { flex-direction: row; gap: 16px; }
  .step { flex: 1; flex-direction: column; gap: 16px; padding: 26px 24px; }
  .step h3 { font-size: 18px; }

  .invert { padding: 104px 0 108px; }
  .costs li { font-size: 18px; padding: 16px 0; }

  .closing { padding: 116px 0 124px; }
  .closing__sub { font-size: 17px; }
  .closing__actions { flex-direction: row; align-items: center; gap: 20px; }

  .footer { padding: 76px 0 64px; }
}

@media (min-width: 1000px) {
  .hero__grid { grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
  .hero__art { height: 500px; }
}

/* Confetti appears only once the right gutter is genuinely empty
   (shell padding + 880px content leaves room to spare). */
@media (min-width: 1200px) {
  .confetti { display: block; }
}
