/* ============================================================
   Owed — main stylesheet
   Sections: tokens · base · buttons · nav · hero · ticker ·
   cases · how · explainer · stats · reviews · faq · cta ·
   footer · modal · toast · reveal · responsive
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --blue: #0051ff;
  --blue-600: #0043d6;
  --blue-700: #0036ad;
  --blue-50: #eef3ff;
  --blue-100: #dbe5ff;
  --ink: #121212;
  --ink-2: #454b58;
  --ink-3: #737a8a;
  --ink-4: #a2a8b6;
  --line: #e5e8ef;
  --line-strong: #d3d8e3;
  --bg: #ffffff;
  --bg-2: #f0f2f6;
  --green: #12a150;
  --green-50: #e6f7ee;
  --amber: #f59e0b;
  --amber-50: #fff5e0;
  --red: #e5484d;
  --red-50: #fdecec;
  --violet: #7c3aed;

  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(18, 18, 18, .06), 0 1px 1px rgba(18, 18, 18, .04);
  --shadow-md: 0 8px 24px -8px rgba(18, 18, 18, .18), 0 2px 6px rgba(18, 18, 18, .06);
  --shadow-lg: 0 24px 60px -20px rgba(18, 18, 18, .35), 0 8px 20px -10px rgba(18, 18, 18, .15);
  --shadow-blue: 0 12px 30px -10px rgba(0, 81, 255, .55);

  --font: "Inter", "SF Pro", -apple-system, system-ui, "Helvetica Neue", Arial, sans-serif;
  --container: 1120px;
  --nav-h: 100px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
a, button, .btn, .pill,
a *, button *, .btn *, .pill *,
[role="tab"], [role="tab"] *, .setrow *, .method *, .q__opt *, .cq__opt * {
  touch-action: manipulation; -webkit-tap-highlight-color: transparent;
}
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "cv11", "ss01";
  overflow-x: hidden;
}
body[data-lock] { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4, h5 { margin: 0; letter-spacing: -0.02em; line-height: 1.12; }
h2 { font-size: clamp(30px, 4vw, 44px); font-weight: 700; }
h3 { font-size: 22px; font-weight: 700; }
p { margin: 0; }
strong, b { font-weight: 600; }
:focus-visible { outline: 3px solid rgba(0, 81, 255, .55); outline-offset: 3px; border-radius: 8px; }
::selection { background: var(--blue-100); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 820px; }
.center { display: flex; justify-content: center; }
.section { padding: 96px 0; }
.section--gray { background: var(--bg-2); }
.section__head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section__head--inverted h2 { color: #fff; }
.section__lede { margin-top: 14px; font-size: 18px; color: var(--ink-2); }
.kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: var(--blue-50);
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.kicker--inverted { background: rgba(255, 255, 255, .14); color: #fff; }

/* ---------- Buttons — Jams system ----------
   One pill primitive (.pill / .btn): 1.5px border, fully round, bold
   uppercase label, 0.2s colour transitions. Filled pills invert to
   outline on hover; outline pills fill on hover. Colours come from
   theme tokens so the same markup works over blue (dark theme) and
   over white (light theme). */
:root {
  --pill-radius: 100vw;
  --pill-border: 1.5px;
  --pill-font: 14px;
  --pill-pad-y: 1.2rem;
  --pill-pad-x: 1.25rem;
  /* light theme (page default: over white) */
  --pill-solid-bg: var(--blue);
  --pill-solid-fg: #fff;
  --pill-solid-border: var(--blue);
  --pill-solid-bg-hover: transparent;
  --pill-solid-fg-hover: var(--blue);
  --pill-outline-fg: var(--blue);
  --pill-outline-border: var(--blue);
  --pill-outline-bg-hover: var(--blue);
  --pill-outline-fg-hover: #fff;
}
/* dark theme: over the blue hero / stats / CTA band */
.theme-dark, .hero, .stats, .cta, .nav[data-theme="dark"], .mega {
  --pill-solid-bg: #fff;
  --pill-solid-fg: var(--blue);
  --pill-solid-border: #fff;
  --pill-solid-bg-hover: transparent;
  --pill-solid-fg-hover: #fff;
  --pill-outline-fg: #fff;
  --pill-outline-border: #fff;
  --pill-outline-bg-hover: #fff;
  --pill-outline-fg-hover: var(--blue);
}

.pill, .btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: var(--pill-pad-y) var(--pill-pad-x);
  border: var(--pill-border) solid var(--pill-solid-border);
  border-radius: var(--pill-radius);
  background: var(--pill-solid-bg);
  color: var(--pill-solid-fg);
  font-family: var(--font);
  font-size: var(--pill-font);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: border-color .2s, color .2s, background-color .2s, transform .2s var(--ease-smooth-out), box-shadow .2s;
}
.pill:hover, .btn:hover { background: var(--pill-solid-bg-hover); color: var(--pill-solid-fg-hover); border-color: var(--pill-solid-border); }
.pill:active, .btn:active { transform: scale(.97); transition-duration: 80ms; }
.pill:disabled, .btn:disabled, .btn[aria-disabled="true"] { opacity: .55; cursor: not-allowed; transform: none; }
.pill__icon { display: inline-grid; place-items: center; width: 1rem; height: 1rem; }
.pill__icon svg { width: 1.2rem; height: 1.2rem; }
.pill__text { display: block; }
.pill__icon--dollar { font-size: 1.05rem; font-weight: 800; line-height: 1; letter-spacing: 0; transform: translateY(-1px); }

/* outline variant */
.pill--outline, .btn--ghost {
  background: transparent;
  color: var(--pill-outline-fg);
  border-color: var(--pill-outline-border);
}
.pill--outline:hover, .btn--ghost:hover { background: var(--pill-outline-bg-hover); color: var(--pill-outline-fg-hover); border-color: var(--pill-outline-border); }

/* glass ("tertiary") variant — Jams' frosted pill */
.btn--glass, .pill--glass {
  background-color: transparent;
  background-image: linear-gradient(rgba(255, 255, 255, .18) 40%, rgba(255, 255, 255, .55));
  -webkit-backdrop-filter: blur(15px); backdrop-filter: blur(15px);
  color: #fff;
  border-color: rgba(255, 255, 255, .8);
  box-shadow: none;
}
.btn--glass:hover, .pill--glass:hover { color: #fff; background-color: transparent; background-image: linear-gradient(rgba(255, 255, 255, .28) 40%, rgba(255, 255, 255, .7)); border-color: #fff; box-shadow: none; }

/* explicit colour variants (used inside light sections / modal) */
.btn--primary { --pill-solid-bg: var(--blue); --pill-solid-fg: #fff; --pill-solid-border: var(--blue); --pill-solid-fg-hover: var(--blue); }
.btn--dark    { --pill-solid-bg: var(--ink); --pill-solid-fg: #fff; --pill-solid-border: var(--ink); --pill-solid-fg-hover: var(--ink); }
.btn--light   { --pill-solid-bg: #fff; --pill-solid-fg: var(--blue); --pill-solid-border: #fff; --pill-solid-fg-hover: #fff; }

/* sizes */
.btn--sm, .pill--sm { --pill-pad-y: .85rem; --pill-pad-x: 1rem; --pill-font: 12.5px; }
.btn--lg, .pill--lg { --pill-pad-y: 1.4rem; --pill-pad-x: 1.6rem; --pill-font: 15px; }
.btn--wide { width: 100%; }
.btn__arrow { width: 16px; height: 16px; transition: transform 250ms var(--ease-smooth-out); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* Loading / success states — driven by data-state on the button */
.btn__spinner {
  position: absolute;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, .35);
  border-top-color: currentColor;
  opacity: 0;
  transform: scale(.6);
  transition: opacity 150ms ease-out, transform 150ms var(--ease-smooth-out);
}
.btn__label { transition: opacity 150ms ease-out, transform 150ms var(--ease-smooth-out), filter 150ms ease-out; }
.btn[data-state="loading"] { pointer-events: none; }
.btn[data-state="loading"] .btn__label { opacity: 0; transform: translateY(4px); filter: blur(2px); }
.btn[data-state="loading"] .btn__spinner { opacity: 1; transform: scale(1); animation: spin 800ms linear infinite; }
.btn[data-state="success"] { --pill-solid-bg: var(--green); --pill-solid-border: var(--green); --pill-solid-fg: #fff; pointer-events: none; }
@keyframes spin { to { transform: rotate(360deg); } }

.link-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; opacity: .85;
  border-bottom: 1.5px solid transparent;
  transition: opacity 150ms ease-out, border-color 150ms ease-out;
}
.link-ghost:hover { opacity: 1; border-color: currentColor; }

/* ---------- Nav — Jams-style fixed header ----------
   Transparent, never paints a bar. A soft top scrim (brand-dark → 0)
   sits behind it over the hero (Jams: brand-500 → transparent).
   data-hidden="true" slides it away while scrolling down; scrolling up
   brings it back. data-theme flips pill colours over white sections. */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  color: #fff;
  transition: transform 450ms var(--ease-smooth-out), opacity 300ms ease-out;
}
.nav[data-hidden="true"] { transform: translateY(-110%); opacity: 0; pointer-events: none; }
.nav[data-menu-open="true"] { transform: none; opacity: 1; pointer-events: auto; }
/* frosted gradient behind the bar: blue over the hero, white-ish over light sections — never a solid white header.
   The blur + colour both fade to nothing at the bottom edge so it reads as a soft scrim, not a box. */
.nav__scrim {
  position: absolute; inset: 0 0 -34px 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 54, 173, .6) 0%, rgba(0, 54, 173, .25) 55%, rgba(0, 54, 173, 0) 100%);
  -webkit-backdrop-filter: blur(18px) saturate(140%); backdrop-filter: blur(18px) saturate(140%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 45%, transparent 100%); mask-image: linear-gradient(180deg, #000 0%, #000 45%, transparent 100%);
  transition: opacity 300ms ease-out, background 300ms ease-out;
}
.nav[data-theme="light"] .nav__scrim { background: linear-gradient(180deg, rgba(255, 255, 255, .88) 0%, rgba(255, 255, 255, .6) 55%, rgba(255, 255, 255, 0) 100%); }
.nav[data-scrolled="false"][data-theme="light"] .nav__scrim { opacity: 0; }
.nav[data-theme="light"] { color: var(--blue); }
.nav__layout {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-top: 1.7rem; padding-bottom: 1.7rem;
}
.nav__links { display: flex; align-items: center; gap: .75rem; width: 33.333%; margin: 0; padding: 0; list-style: none; }
.nav__links .pill { --pill-pad-y: 1.1rem; }
.nav__actions { display: flex; align-items: center; justify-content: flex-end; gap: .75rem; width: 33.333%; }
.brand { display: flex; justify-content: center; align-items: center; gap: 9px; width: 33.333%; color: inherit; }
.brand__mark { height: 34px; width: auto; transition: transform 300ms var(--ease-smooth-out); }
.brand__word { font-family: "Paytone One", var(--font); font-size: 26px; font-weight: 400; letter-spacing: -0.06em; /* ≈ -6px at 100px */ line-height: 1; }
.brand:hover .brand__mark { transform: scale(1.06) rotate(-6deg); }
/* nav wordmark — no icon mark; the letters themselves get the glass-pill treatment (translucent gradient fill + light stroke) */
.nav .brand__word { font-size: 39px; line-height: 1; padding: 4px 2px; color: transparent; background-image: linear-gradient(rgba(255, 255, 255, .38) 30%, rgba(255, 255, 255, .9)); -webkit-background-clip: text; background-clip: text; -webkit-text-stroke: 1.4px rgba(255, 255, 255, .85); paint-order: stroke fill; filter: drop-shadow(0 1px 0 rgba(0, 40, 140, .18)); transition: filter 200ms ease-out, transform 300ms var(--ease-smooth-out); }
.brand:hover .brand__word { filter: drop-shadow(0 2px 6px rgba(255, 255, 255, .35)); transform: translateY(-1px); }
.nav[data-theme="light"]:not([data-menu-open="true"]) .brand__word { background-image: linear-gradient(rgba(0, 81, 255, .45) 30%, rgba(0, 81, 255, .95)); -webkit-text-stroke: 1.4px rgba(0, 81, 255, .9); filter: none; }
.nav[data-theme="light"]:not([data-menu-open="true"]) .brand:hover .brand__word { filter: drop-shadow(0 2px 6px rgba(0, 81, 255, .25)); }
.nav[data-theme="dark"] .brand__mark--blue, .nav[data-menu-open="true"] .brand__mark--blue { display: none; }
.nav[data-theme="light"]:not([data-menu-open="true"]) .brand__mark--white { display: none; }
/* on light theme, solid pills get a soft glass backing so they read over any section */
.nav[data-theme="light"] .pill--outline { -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); background: rgba(255, 255, 255, .55); }
.nav[data-theme="light"] .pill--outline:hover { background: var(--pill-outline-bg-hover); }

/* burger → X morph, lives inside the Menu pill */
.burger { display: inline-flex; flex-direction: column; justify-content: center; gap: 3px; width: 1rem; height: 1rem; }
.burger span { display: block; width: 100%; height: 2px; border-radius: 2px; background: currentColor; transition: transform 300ms var(--ease-smooth-out), opacity 200ms ease-out, width 300ms var(--ease-smooth-out); }
.nav[data-menu-open="true"] .burger span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav[data-menu-open="true"] .burger span:nth-child(2) { opacity: 0; width: 0; }
.nav[data-menu-open="true"] .burger span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
.nav[data-menu-open="true"] { color: #fff; }
.nav[data-menu-open="true"] .nav__scrim { opacity: 0; }

/* Mega menu — Jams' full-screen blurred overlay with oversized links */
.mega {
  position: fixed; inset: 0; z-index: 55;
  background: rgba(0, 54, 173, .72);
  -webkit-backdrop-filter: blur(40px); backdrop-filter: blur(40px);
  color: #fff;
  opacity: 0; visibility: hidden;
  transition: opacity 350ms ease-out, visibility 0s linear 350ms;
}
.mega[data-open="true"] { opacity: 1; visibility: visible; transition: opacity 350ms ease-out, visibility 0s; }
.mega__layout { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 40px; padding-top: 80px; }
.mega__list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.mega__list li, .mega__foot {
  opacity: 0; transform: translateY(14px);
  transition: opacity 400ms ease-out, transform 500ms var(--ease-smooth-out);
  transition-delay: 0s;
}
.mega[data-open="true"] .mega__list li, .mega[data-open="true"] .mega__foot { opacity: 1; transform: none; transition-delay: calc(120ms + var(--i, 0) * 50ms); }
.mega__link {
  display: block;
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.15;
  color: rgba(255, 255, 255, .55);
  transition: color 300ms ease-out, font-size 400ms var(--ease-smooth-out), letter-spacing 400ms var(--ease-smooth-out);
}
.mega__link:hover, .mega__link:focus-visible { color: #fff; font-size: clamp(38px, 6.5vw, 72px); }
.mega__foot { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.mega__link--small { font-size: clamp(18px, 2.4vw, 22px) !important; font-weight: 700; margin-top: 8px; color: rgba(255, 255, 255, .8); }
.mega__link--small:hover { font-size: clamp(20px, 2.6vw, 24px) !important; }
.mega__meta { font-size: 13px; font-weight: 600; letter-spacing: .02em; text-transform: uppercase; opacity: .7; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 72px) 0 96px;
  background: var(--blue);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.blob {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: .7;
  animation: drift 18s ease-in-out infinite alternate;
}
.blob--1 { width: 620px; height: 620px; left: -160px; top: -240px; background: #3d7bff; }
.blob--2 { width: 520px; height: 520px; right: -140px; bottom: -260px; background: #0038c9; animation-delay: -9s; }
@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(60px, 40px, 0) scale(1.08); }
}
.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 20%, transparent 70%);
  mask-image: radial-gradient(ellipse at 50% 30%, #000 20%, transparent 70%);
}
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 48px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; width: max-content;
  padding: 6px 12px 6px 8px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .14);
  font-size: 13.5px; font-weight: 600;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.eyebrow__dot { width: 8px; height: 8px; border-radius: 50%; background: #5cf29a; box-shadow: 0 0 0 0 rgba(92, 242, 154, .7); animation: pulse 2s ease-out infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(92, 242, 154, .7); } 100% { box-shadow: 0 0 0 10px rgba(92, 242, 154, 0); } }
.hero__title { margin-top: 22px; font-size: clamp(42px, 6vw, 72px); font-weight: 750; letter-spacing: -0.035em; line-height: 1.02; }
.hero__em { font-style: normal; position: relative; white-space: nowrap; }
.hero__em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .06em; height: .14em;
  background: #fff; border-radius: 4px; opacity: .95;
  transform: scaleX(0); transform-origin: left;
  transition: transform 600ms var(--ease-smooth-out) 700ms;
}
.t-stagger.is-shown .hero__em::after { transform: scaleX(1); }
.hero__lede { margin-top: 24px; max-width: 520px; font-size: 18px; color: rgba(255, 255, 255, .82); }
.hero__lede strong { color: #fff; }
.hero__cta { margin-top: 32px; display: flex; flex-wrap: wrap; align-items: center; gap: 22px; }
/* hero social proof — glass laurels (replaces the old eyebrow chip + avatar row) */
.hero__laurels { display: flex; align-items: center; gap: 34px; margin-bottom: 26px; }
.laurel { display: inline-flex; align-items: center; gap: 0; filter: drop-shadow(0 6px 14px rgba(0, 20, 90, .28)); }
.laurel__leaf { width: 36px; height: 74px; flex: none; opacity: .95; overflow: visible; }
.laurel__leaf--r { transform: scaleX(-1); }
.laurel__body { display: flex; flex-direction: column; align-items: center; gap: 1px; min-width: 96px; padding: 0 2px; }
.laurel__num { font-size: 30px; font-weight: 900; font-style: italic; letter-spacing: -0.04em; line-height: 1; background: linear-gradient(180deg, #fff 30%, rgba(255, 255, 255, .72)); -webkit-background-clip: text; background-clip: text; color: transparent; filter: drop-shadow(0 2px 0 rgba(0, 40, 140, .35)); }
.laurel__body small { font-size: 13.5px; font-weight: 500; color: rgba(255, 255, 255, .82); margin-top: 4px; }
.laurel__stars { display: flex; gap: 3px; height: 30px; align-items: center; }
.laurel__stars i { width: 20px; height: 20px; background: linear-gradient(180deg, #ffe27a 0%, #ffb800 100%); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l2.9 6.3 6.9.8-5.1 4.7 1.4 6.8L12 17.2 5.9 20.6l1.4-6.8L2.2 9.1l6.9-.8z'/%3E%3C/svg%3E") center / contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l2.9 6.3 6.9.8-5.1 4.7 1.4 6.8L12 17.2 5.9 20.6l1.4-6.8L2.2 9.1l6.9-.8z'/%3E%3C/svg%3E") center / contain no-repeat; filter: drop-shadow(0 1px 0 rgba(120, 70, 0, .35)); }
.hero__proof { flex-basis: 100%; display: flex; align-items: center; gap: 12px; margin-top: 4px; }
.hero__proof-text { font-size: 14px; font-weight: 500; opacity: .9; display: flex; gap: 8px; align-items: center; }
.stars { color: #ffd166; letter-spacing: 1px; }
.avatars { display: flex; }
.avatar {
  --c: var(--blue);
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--c); color: #fff; font-size: 12px; font-weight: 700;
  border: 2px solid var(--blue);
  transition: transform 250ms var(--ease-smooth-out);
}
.avatars .avatar + .avatar { margin-left: -10px; }
.avatars:hover .avatar { transform: translateX(calc(var(--n, 0) * 0px)); }
.avatars .avatar:hover { transform: translateY(-4px) scale(1.08); z-index: 1; }

/* Phone mockup */
.hero__visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 520px; }
.phone {
  position: relative; width: 300px; height: 620px;
  border-radius: 46px; padding: 10px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .34), rgba(255, 255, 255, .10) 55%, rgba(255, 255, 255, .22));
  border: 1.5px solid rgba(255, 255, 255, .6);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: 0 40px 80px -30px rgba(0, 20, 90, .55), inset 0 1px 0 rgba(255, 255, 255, .5);
  animation: phone-float 7s ease-in-out infinite;
  will-change: transform;
}
@keyframes phone-float { 0%, 100% { transform: translateY(0) rotate(-1.5deg); } 50% { transform: translateY(-12px) rotate(-1.5deg); } }
.phone__notch { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 92px; height: 26px; border-radius: 99px; background: #e6eaf3; z-index: 2; }
.phone__screen { width: 100%; height: 100%; border-radius: 38px; background: #f6f8fc; box-shadow: inset 0 0 0 1px rgba(0, 40, 120, .06); color: var(--ink); overflow: hidden; display: flex; flex-direction: column; }
.phone__top, .phone__earn, .phone__tabs { flex: none; }
.phone__top { display: flex; align-items: center; justify-content: space-between; padding: 54px 18px 0; }
.phone__hi { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; }
.phone__wave { display: inline-block; animation: wave 2.4s ease-in-out infinite; transform-origin: 70% 70%; }
@keyframes wave { 0%, 60%, 100% { transform: rotate(0); } 10% { transform: rotate(14deg); } 20% { transform: rotate(-8deg); } 30% { transform: rotate(14deg); } 40% { transform: rotate(-4deg); } }
.phone__avatar { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--blue); color: #fff; font-size: 12px; font-weight: 800; }
/* earnings card — brand blue, centred, Jams-style uppercase label + white pill */
.phone__earn { position: relative; margin: 12px 14px 0; padding: 16px 14px 14px; border-radius: 20px; background: linear-gradient(135deg, #2f6bff 0%, var(--blue) 45%, #0037b8 100%); color: #fff; overflow: hidden; box-shadow: 0 14px 30px -16px rgba(0, 81, 255, .7); display: flex; flex-direction: column; align-items: center; text-align: center; }
.phone__earn-glow { position: absolute; right: -40px; top: -60px; width: 160px; height: 160px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 255, 255, .35), transparent 65%); animation: drift 10s ease-in-out infinite alternate; }
.phone__earn-label { position: relative; display: block; font-size: 10.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; opacity: .85; }
.phone__bal { position: relative; display: block; margin-top: 6px; font-size: 32px; font-weight: 800; letter-spacing: -0.035em; font-variant-numeric: tabular-nums; line-height: 1; }
.phone__earn-sub { position: relative; display: inline-block; margin-top: 8px; padding: 3px 9px; border-radius: 99px; background: rgba(255, 255, 255, .18); font-size: 11px; font-weight: 700; }
.phone__earn-cta { position: relative; margin-top: 12px; width: 100%; padding: 10px 13px; border-radius: 99px; background: #fff; color: var(--blue); font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; text-align: center; }
/* segmented tabs */
.phone__tabs { display: flex; gap: 2px; margin: 12px 14px 0; padding: 3px; border-radius: 99px; background: #e9edf5; }
.phone__tab { flex: 1; text-align: center; padding: 7px 0; border-radius: 99px; font-size: 11.5px; font-weight: 700; color: var(--ink-3); }
.phone__tab.is-on { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.phone__list { flex: 1; min-height: 0; overflow: hidden; padding: 10px 14px 14px; display: flex; flex-direction: column; gap: 8px; }
/* rich reward-style settlement card */
.pcard { --c: var(--blue); border-radius: 18px; background: #fff; border: 1px solid var(--line); overflow: hidden; animation: row-in 600ms var(--ease-smooth-out) both; animation-delay: calc(1s + var(--d, 0s)); }
.pcard__hero { position: relative; height: 62px; display: grid; place-items: center; background: linear-gradient(135deg, color-mix(in srgb, var(--c) 78%, #fff), var(--c) 55%, color-mix(in srgb, var(--c) 75%, #000)); }
.pcard__hero img { width: 30px; height: 30px; opacity: .95; filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .25)); }
.pcard__flag { position: absolute; top: 8px; right: 8px; padding: 3px 7px; border-radius: 99px; background: rgba(255, 255, 255, .92); color: #b26a00; font-size: 9.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .02em; }
.pcard__flag--new { color: var(--blue); }
.pcard__row { display: flex; align-items: center; gap: 9px; padding: 9px 10px 6px; }
.pcard__row .ptile { width: 30px; height: 30px; border-radius: 9px; }
.pcard__row .prow__meta small { font-size: 9.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-3); }
.pcard__row .prow__meta b { font-size: 12.5px; }
.pcard__cta { display: block; margin: 0 10px 10px; padding: 8px; border-radius: 99px; text-align: center; font-size: 11.5px; font-weight: 800; color: #fff; background: linear-gradient(90deg, #2f6bff, var(--blue) 50%, #12a150 100%); background-size: 200% 100%; animation: cta-sheen 4s ease-in-out infinite; }
@keyframes cta-sheen { 0%, 100% { background-position: 0% 0; } 50% { background-position: 100% 0; } }
.prow {
  display: flex; align-items: center; gap: 10px;
  padding: 10px; border-radius: 16px;
  background: #fff; border: 1px solid var(--line);
  animation: row-in 600ms var(--ease-smooth-out) both;
  animation-delay: calc(1s + var(--d, 0s));
}
@keyframes row-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.prow--paid { background: var(--green-50); border-color: transparent; }
.prow__meta { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.prow__meta b { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.prow__meta small { font-size: 11px; color: var(--ink-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ptile {
  --c: var(--blue);
  flex: none;
  width: 34px; height: 34px; border-radius: 11px;
  display: grid; place-items: center;
  background: var(--c); color: #fff; font-weight: 800; font-size: 14px; letter-spacing: -0.02em;
}


/* Floating cards — bubbly, Jams-style pills */
.float {
  position: absolute;
  display: flex; align-items: center; gap: 12px;
  padding: 10px 22px 10px 10px;
  border-radius: 999px;
  background: #fff; color: var(--ink);
  border: 1.5px solid rgba(255, 255, 255, .9);
  box-shadow: 0 24px 48px -18px rgba(0, 30, 110, .55), 0 6px 14px -8px rgba(0, 30, 110, .25);
  font-size: 13px;
  animation: float-in 700ms var(--ease-bounce) both, float-bob 5s ease-in-out infinite;
}
.float b { display: block; font-size: 12.5px; font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; line-height: 1.1; }
.float small { display: block; margin-top: 2px; color: var(--ink-3); font-size: 12px; font-weight: 500; }
.float__icon { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; flex: none; }
.float__icon svg { width: 18px; height: 18px; }
.float__icon--green { background: var(--green-50); color: var(--green); }
.float__icon--blue { background: var(--blue-50); color: var(--blue); }
.float__icon--amber { background: var(--amber-50); color: #b26a00; }
.float--1 { top: -1%; left: -6%; animation-delay: 1.4s, 1.4s; }
.float--2 { top: 44%; right: -6%; animation-delay: 1.9s, 1.9s; }
.float--3 { bottom: -8%; left: -6%; animation-delay: 2.4s, 2.4s; }
@keyframes float-in { from { opacity: 0; transform: translateY(18px) scale(.8); } to { opacity: 1; transform: none; } }
@keyframes float-bob { 0%, 100% { translate: 0 0; rotate: -1.5deg; } 50% { translate: 0 -10px; rotate: 1.5deg; } }

/* ---------- Premium chips & mini-buttons (shared) ----------
   Solid pills: vertical gradient + inner top highlight + colored depth shadow.
   Soft pills: white→tint gradient, crisp tinted edge, inner highlight.      */
*, *::before, *::after {
  --chip-solid: linear-gradient(180deg, color-mix(in srgb, var(--c, var(--blue)) 82%, #fff) 0%, var(--c, var(--blue)) 45%, color-mix(in srgb, var(--c, var(--blue)) 84%, #000) 100%);
  --chip-solid-shadow: inset 0 1px 0 rgba(255, 255, 255, .38), inset 0 -1px 0 rgba(0, 0, 0, .18), 0 1px 0 color-mix(in srgb, var(--c, var(--blue)) 70%, #000), 0 6px 12px -6px color-mix(in srgb, var(--c, var(--blue)) 70%, transparent);
}
.chip-solid { --c: var(--blue); background: var(--chip-solid); color: #fff; border: 0; box-shadow: var(--chip-solid-shadow); text-shadow: 0 1px 0 rgba(0, 0, 0, .18); }
.chip-soft { --t: var(--blue-50); --e: var(--blue-100); background: linear-gradient(180deg, #fff 0%, var(--t) 100%); border: 1px solid var(--e); box-shadow: inset 0 1px 0 #fff, 0 1px 2px rgba(18, 18, 18, .05); }

/* hero phone status pills */
.pstatus { font-size: 11px; font-weight: 800; letter-spacing: -0.005em; padding: 5px 9px; border-radius: var(--radius-pill); white-space: nowrap; flex: none; }
.pstatus--notify { background: linear-gradient(180deg, #fff, var(--blue-50)); color: var(--blue); border: 1px solid var(--blue-100); box-shadow: inset 0 1px 0 #fff, 0 1px 2px rgba(18, 18, 18, .05); }
/* hero phone — small green/grey chips inside the mockup */
.phone .ob__chip { font-size: 9px; padding: 2px 7px 2px 3px; gap: 4px; }
.phone .ob__chip::before { width: 11px; height: 11px; background-size: 7px, 100%; }
.pcard__row .ob__chip { flex: none; }
/* hero phone — mobile-simple rows (Claim-style: amount + chip + due + button) */
.phone__list--simple { display: none; }
.srow { display: flex; align-items: center; gap: 9px; padding: 10px 11px; border-radius: 16px; background: #fff; border: 1px solid var(--line); animation: row-in 600ms var(--ease-smooth-out) both; animation-delay: calc(1s + var(--d, 0s)); }
.srow .ptile { width: 38px; height: 38px; border-radius: 12px; flex: none; }
.srow__meta { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.srow__meta b { display: flex; align-items: center; gap: 6px; font-size: 14.5px; letter-spacing: -0.01em; min-width: 0; flex-wrap: wrap; }
.srow__meta small { font-size: 11.5px; color: var(--ink-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.srow__btn { --c: var(--blue); flex: none; padding: 7px 12px 8px; border-radius: 999px; background: var(--chip-solid); box-shadow: var(--chip-solid-shadow); color: #fff; font-size: 12.5px; font-weight: 800; text-shadow: 0 1px 0 rgba(0, 0, 0, .18); }
.srow__btn--notify { background: linear-gradient(180deg, #fff, var(--blue-50)); color: var(--blue); border: 1px solid var(--blue-100); box-shadow: inset 0 1px 0 #fff, 0 1px 2px rgba(18, 18, 18, .05); text-shadow: none; }
.srow--dim { opacity: .68; }
.pstatus--paid { --c: #12a150; background: var(--chip-solid); color: #fff; box-shadow: var(--chip-solid-shadow); text-shadow: 0 1px 0 rgba(0, 0, 0, .18); }
.pstatus--filed { background: linear-gradient(180deg, #fff, var(--blue-50)); color: var(--blue); border: 1px solid var(--blue-100); box-shadow: inset 0 1px 0 #fff, 0 1px 2px rgba(18, 18, 18, .05); }
.pstatus--review { background: linear-gradient(180deg, #fff, var(--amber-50)); color: #b26a00; border: 1px solid #f5dcaa; box-shadow: inset 0 1px 0 #fff, 0 1px 2px rgba(18, 18, 18, .05); }
.pstatus--match { --c: #1a1a1f; background: var(--chip-solid); color: #fff; box-shadow: var(--chip-solid-shadow); text-shadow: 0 1px 0 rgba(0, 0, 0, .25); }
/* reward-card CTA + flag in the hero phone */
.pcard__cta { --c: var(--blue); background: var(--chip-solid) !important; box-shadow: var(--chip-solid-shadow); text-shadow: 0 1px 0 rgba(0, 0, 0, .18); animation: none !important; }
.pcard__flag { background: linear-gradient(180deg, #fff, #fff7e8); border: 1px solid #f5dcaa; box-shadow: inset 0 1px 0 #fff, 0 2px 6px rgba(0, 0, 0, .12); }
.pcard__flag--new { background: linear-gradient(180deg, #fff, var(--blue-50)); border-color: var(--blue-100); }
.phone__earn-cta { background: linear-gradient(180deg, #fff, #eef3ff) !important; box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba(0, 30, 120, .25), 0 6px 12px -6px rgba(0, 20, 90, .5); }
/* tile badges */
.badge { background: linear-gradient(180deg, #fff, #f3f5fa); border: 1px solid rgba(18, 18, 18, .08); box-shadow: inset 0 1px 0 #fff, 0 2px 8px rgba(0, 0, 0, .12); }
.badge--new { background: linear-gradient(180deg, #fff, var(--blue-50)); border-color: var(--blue-100); }
.badge--closing { background: linear-gradient(180deg, #fff, var(--amber-50)); border-color: #f5dcaa; }
/* sticky bar deadline chip */
.sticky__deadline { background: linear-gradient(180deg, #fff, var(--amber-50)); border: 1px solid #f5dcaa; box-shadow: inset 0 1px 0 #fff, 0 1px 2px rgba(18, 18, 18, .05); }
.sticky__deadline[data-tone="calm"] { background: linear-gradient(180deg, #fff, var(--green-50)); border-color: #bfe9cd; }
/* section kickers */
.kicker { background: linear-gradient(180deg, #fff, var(--blue-50)); border: 1px solid var(--blue-100); box-shadow: inset 0 1px 0 #fff, 0 1px 2px rgba(18, 18, 18, .05); }
.kicker--inverted { background: linear-gradient(180deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, .12)); border-color: rgba(255, 255, 255, .35); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35); }
.eyebrow { border: 1px solid rgba(255, 255, 255, .28); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3); }

/* status markers ("No proof", "Proof required", "Eligible"…) — premium soft/solid pills */
.ob__chip { display: inline-flex; align-items: center; gap: 5px; padding: 3px 9px 3px 6px; border-radius: 999px; background: linear-gradient(180deg, #fff, #f1f3f8); color: var(--ink-2); border: 1px solid rgba(18, 18, 18, .1); font-size: 11px; font-weight: 800; letter-spacing: -0.005em; font-style: normal; white-space: nowrap; line-height: 1.2; box-shadow: inset 0 1px 0 #fff, 0 1px 2px rgba(18, 18, 18, .06); }
.ob__chip::before { content: ""; width: 12px; height: 12px; border-radius: 50%; flex: none; background: #9aa1af url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M10 6v5M10 14h.01' stroke='white' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E") center / 10px no-repeat; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35), 0 1px 1px rgba(0, 0, 0, .15); }
.ob__chip--ok { background: linear-gradient(180deg, #fff, #e3f7ea); color: #0b7a3b; border-color: #bfe9cd; }
.ob__chip--ok::before { background: linear-gradient(180deg, #2fbf6b, #12a150) center / 10px no-repeat, #12a150; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5.5 10.5l3 3L14.5 7' stroke='white' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"), linear-gradient(180deg, #2fbf6b, #12a150); background-size: 10px, 100%; background-position: center; background-repeat: no-repeat; }
.ob__chip--blue { --c: var(--blue); background: var(--chip-solid); color: #fff; border: 0; box-shadow: var(--chip-solid-shadow); text-shadow: 0 1px 0 rgba(0, 0, 0, .18); }
.ob__chip--blue::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5.5 10.5l3 3L14.5 7' stroke='%230051ff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"), linear-gradient(180deg, #fff, #eef3ff); background-size: 10px, 100%; background-position: center; background-repeat: no-repeat; }
.ob__chip--amber { background: linear-gradient(180deg, #fff, var(--amber-50)); color: #b26a00; border-color: #f5dcaa; }
.ob__chip--amber::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='10' cy='10' r='5.5' stroke='white' stroke-width='2'/%3E%3Cpath d='M10 7.5v3l2 1' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"), linear-gradient(180deg, #ffb547, #f59e0b); background-size: 10px, 100%; background-position: center; background-repeat: no-repeat; }
.ob__chip--date { background: linear-gradient(180deg, #fff, var(--blue-50)); color: var(--blue-700); border-color: var(--blue-100); }
.ob__chip--date::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Crect x='4' y='5.5' width='12' height='10' rx='2' stroke='white' stroke-width='1.8'/%3E%3Cpath d='M4 9h12M7.5 3.5v3M12.5 3.5v3' stroke='white' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E"), linear-gradient(180deg, #3d7bff, var(--blue)); background-size: 10px, 100%; background-position: center; background-repeat: no-repeat; }
.ob__chip--muted { background: linear-gradient(180deg, #fff, #f1f3f8); color: var(--ink-3); }
.ob__chip--muted::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M6 6l8 8M14 6l-8 8' stroke='white' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E"), linear-gradient(180deg, #b4bac6, #9aa1af); background-size: 9px, 100%; background-position: center; background-repeat: no-repeat; }
.ob__chip--lg { font-size: 12.5px; padding: 5px 11px 5px 7px; gap: 6px; }
.ob__chip--lg::before { width: 14px; height: 14px; background-size: 11px, 100%; }

/* ---------- Ticker — white band, Jams-style gradient text, 3D money assets between items ---------- */
.ticker { position: relative; overflow: hidden; background: #fff; padding: 22px 0; border-bottom: 1px solid var(--line); }
.ticker::before, .ticker::after { content: ""; position: absolute; top: 0; bottom: 0; width: 140px; z-index: 1; pointer-events: none; }
.ticker::before { left: 0; background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0)); }
.ticker::after { right: 0; background: linear-gradient(-90deg, #fff, rgba(255, 255, 255, 0)); }
.ticker__track { display: flex; align-items: center; gap: 44px; width: max-content; animation: ticker 70s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 22px; font-weight: 800; letter-spacing: -0.03em; text-transform: uppercase; white-space: nowrap; line-height: 1;
  background: linear-gradient(90deg, var(--blue-700) 0%, var(--blue) 45%, #7fa6ff 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.ticker__item b { font-weight: 800; }
.ticker__amt { color: transparent; }
.ticker__asset { width: 52px; height: 52px; flex: none; object-fit: contain; filter: drop-shadow(0 8px 14px rgba(0, 81, 255, .22)); animation: asset-bob 4s ease-in-out infinite; animation-delay: var(--d, 0s); }
@keyframes asset-bob { 0%, 100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-5px) rotate(4deg); } }
@keyframes ticker { to { transform: translateX(-50%); } }
@media (max-width: 560px) { .ticker__item { font-size: 17px; } .ticker__asset { width: 40px; height: 40px; } .ticker__track { gap: 28px; } }
@media (prefers-reduced-motion: reduce) { .ticker__asset { animation: none; } }

/* ---------- Cases — Claim-style tiles ----------
   Big square logo tile (radius 32px) → payout → brand name, all
   centred. No card chrome. Grid gap 36px 22px like claimmoney.com. */
.section__title-xl { font-size: clamp(34px, 4.6vw, 52px); font-weight: 700; letter-spacing: -0.03em; }
.cases__toolbar { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin: -12px 0 10px; }
.t-tabs { max-width: 100%; overflow-x: auto; scrollbar-width: none; }
.t-tabs::-webkit-scrollbar { display: none; }
.t-tab { font-weight: 600; font-size: 14px; white-space: nowrap; }
.t-tabs-pill { box-shadow: var(--shadow-sm); }
.search {
  position: relative; display: flex; align-items: center; gap: 8px;
  height: 40px; padding: 0 10px 0 14px; min-width: 240px;
  border-radius: var(--radius-pill);
  background: var(--bg-2); border: 1.5px solid transparent;
  transition: border-color 150ms ease-out, box-shadow 200ms ease-out, background-color 150ms ease-out;
}
.search:focus-within { background: #fff; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0, 81, 255, .12); }
.search__icon { width: 18px; height: 18px; color: var(--ink-3); flex: none; }
.search__input { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; font: inherit; font-size: 15px; color: var(--ink); }
.search__input::-webkit-search-cancel-button { display: none; }
.search__input::placeholder { color: var(--ink-4); }
.search__clear {
  width: 24px; height: 24px; border: 0; border-radius: 50%; padding: 0;
  background: var(--line); color: var(--ink-2); cursor: pointer;
  display: grid; place-items: center;
  opacity: 0; transform: scale(.6); pointer-events: none;
  transition: opacity 150ms ease-out, transform 200ms var(--ease-bounce), background-color 150ms ease-out;
}
.search__clear svg { width: 14px; height: 14px; }
.search__clear:hover { background: var(--line-strong); }
.search[data-has-value="true"] .search__clear { opacity: 1; transform: scale(1); pointer-events: auto; }
.cases__count { margin: 0 0 36px; text-align: center; font-size: 14px; color: var(--ink-3); font-variant-numeric: tabular-nums; }
.cases__count span { color: var(--ink); font-weight: 600; }

.cases__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 36px 22px; margin: 0; padding: 0; list-style: none; }
.cases__grid[data-state="loading"] .case { pointer-events: none; }
.cases__grid[data-expanded="false"] .case:nth-child(n+13) { display: none; }
.case {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 0; border: 0; background: transparent; text-align: center; cursor: pointer;
  animation: card-in 500ms var(--ease-smooth-out) both;
  animation-delay: calc(var(--i, 0) * 40ms);
  -webkit-tap-highlight-color: transparent;
}
@keyframes card-in { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
.case:focus-visible { outline: none; }
.case:focus-visible .case__logo { outline: 3px solid rgba(0, 81, 255, .55); outline-offset: 4px; }
.case[data-status="closed"] { opacity: .5; }
.case[data-status="closed"] .case__logo { filter: grayscale(1); }
/* the tile — square, radius 32px, gradient "app icon" with the brand initials */
.case__logo {
  --c: var(--blue);
  position: relative; width: 100%; aspect-ratio: 1;
  border-radius: 32px;
  display: grid; place-items: center;
  background:
    radial-gradient(120% 90% at 20% 10%, rgba(255, 255, 255, .34), transparent 55%),
    linear-gradient(160deg, color-mix(in srgb, var(--c) 82%, #fff) 0%, var(--c) 48%, color-mix(in srgb, var(--c) 78%, #000) 100%);
  color: #fff;
  font-weight: 800; font-size: clamp(34px, 3.4vw, 46px); letter-spacing: -0.05em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18), 0 1px 2px rgba(18, 18, 18, .08);
  overflow: hidden;
  transition: transform 350ms var(--ease-smooth-out), box-shadow 350ms var(--ease-smooth-out);
}
.case__logo::after { /* glossy sweep on hover */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, .28) 50%, transparent 65%);
  transform: translateX(-120%); transition: transform 600ms var(--ease-smooth-out);
}
.case:hover .case__logo { transform: translateY(-6px) scale(1.03); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18), 0 22px 40px -18px color-mix(in srgb, var(--c) 70%, #000); }
.case:hover .case__logo::after { transform: translateX(120%); }
.case:active .case__logo { transform: translateY(-2px) scale(1.01); transition-duration: 80ms; }
.case__logo-text { position: relative; text-shadow: 0 2px 10px rgba(0, 0, 0, .18); }
.case__logo-img { position: relative; width: 46%; height: 46%; object-fit: contain; filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .18)); transition: transform 350ms var(--ease-smooth-out); }
.case:hover .case__logo-img { transform: scale(1.08); }
.ptile__img { width: 56%; height: 56%; object-fit: contain; }
.badge {
  position: absolute; top: 10px; right: 10px;
  display: inline-flex; align-items: center; gap: 5px; height: 22px; padding: 0 8px;
  border-radius: var(--radius-pill); font-size: 11px; font-weight: 700; letter-spacing: .01em; white-space: nowrap;
  background: #fff; color: var(--ink);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
}
.badge--new { color: var(--blue); }
.badge--closing { color: #b26a00; }
.badge--closing::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--amber); animation: pulse-amber 1.6s ease-out infinite; }
.badge--closed { color: var(--ink-3); }
@keyframes pulse-amber { 0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, .6); } 100% { box-shadow: 0 0 0 7px rgba(245, 158, 11, 0); } }
.case__payout { font-size: 15.5px; font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; }
.case__name { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; }
.case__meta { display: inline-flex; align-items: center; gap: 6px; margin-top: -2px; }

/* skeleton tiles (state: loading) */
.skel { display: flex; flex-direction: column; align-items: center; gap: 10px; animation: skel-in 200ms ease-out both; }
.skel__b { border-radius: 10px; background: linear-gradient(90deg, var(--bg-2) 25%, #e6e9f0 37%, var(--bg-2) 63%); background-size: 400% 100%; animation: shimmer 1.4s linear infinite; }
.skel__tile { width: 100%; aspect-ratio: 1; border-radius: 32px; }
@keyframes shimmer { from { background-position: 100% 0; } to { background-position: 0 0; } }
@keyframes skel-in { from { opacity: 0; } to { opacity: 1; } }

.empty { text-align: center; padding: 56px 24px; border-radius: var(--radius-lg); border: 1.5px dashed var(--line-strong); animation: card-in 400ms var(--ease-smooth-out) both; }
.empty__art { width: 64px; height: 64px; margin: 0 auto 16px; color: var(--ink-4); }
.empty h3 { font-size: 20px; }
.empty p { margin: 8px auto 20px; max-width: 420px; color: var(--ink-3); }
.cases__more { margin-top: 48px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.cases__toggle-chev { width: 16px; height: 16px; margin-left: 6px; transition: transform 250ms var(--ease-smooth-out); }
.cases__toggle[aria-expanded="true"] .cases__toggle-chev { transform: rotate(180deg); }
.cases__toggle[hidden] { display: none; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.step { position: relative; padding: 24px; border-radius: var(--radius-lg); background: #fff; border: 1.5px solid var(--line); transition: transform 300ms var(--ease-smooth-out), box-shadow 300ms var(--ease-smooth-out); }
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.step__head { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.step__num { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: var(--blue); color: #fff; font-weight: 800; font-size: 14px; box-shadow: var(--shadow-blue); flex: none; }
.step p { margin-top: 8px; color: var(--ink-2); font-size: 15px; }
.step__art { height: 190px; border-radius: 18px; background: linear-gradient(180deg, var(--blue-50), #f7f9ff); display: grid; place-items: center; overflow: hidden; }

.art-match { display: flex; flex-direction: column; gap: 12px; width: 70%; }
.art-match__row { display: flex; align-items: center; gap: 12px; }
.art-match__box { width: 26px; height: 26px; border-radius: 8px; border: 2px solid var(--blue); background: #fff; color: #fff; display: grid; place-items: center; flex: none; position: relative; overflow: hidden; }
.art-match__box::before { content: ""; position: absolute; inset: 0; background: var(--blue); transform: scale(0); border-radius: 4px; animation: tick 3.6s ease-in-out infinite; animation-delay: var(--d, 0s); }
.art-match__box svg { position: relative; width: 16px; height: 16px; opacity: 0; animation: tick-mark 3.6s ease-in-out infinite; animation-delay: var(--d, 0s); }
@keyframes tick { 0%, 20% { transform: scale(0); } 30%, 80% { transform: scale(1); } 90%, 100% { transform: scale(0); } }
@keyframes tick-mark { 0%, 24% { opacity: 0; } 32%, 80% { opacity: 1; } 88%, 100% { opacity: 0; } }
.art-match__line { height: 12px; border-radius: 6px; background: var(--blue-100); width: var(--w, 60%); }

.art-form { width: 72%; display: flex; flex-direction: column; gap: 8px; }
.art-form__label { display: block; width: 30%; height: 8px; border-radius: 4px; background: var(--blue-100); }
.art-form__field { display: flex; align-items: center; gap: 2px; height: 34px; padding: 0 12px; border-radius: 10px; background: #fff; border: 1.5px solid var(--line-strong); }
.art-form__type { display: block; height: 10px; border-radius: 5px; background: var(--ink); width: 0; animation: typing 4s ease-in-out infinite; }
.art-form__field--2 .art-form__type { animation-delay: 1.2s; }
@keyframes typing { 0%, 10% { width: 0; } 45%, 85% { width: 60%; } 95%, 100% { width: 0; } }
.art-form__caret { width: 2px; height: 14px; background: var(--blue); animation: blink 1s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.art-form__btn { margin-top: 4px; align-self: flex-end; padding: 6px 12px; border-radius: var(--radius-pill); background: var(--green); color: #fff; font-size: 12px; font-weight: 700; }

.art-track { width: 72%; }
.art-track__bar { height: 10px; border-radius: 5px; background: #fff; border: 1.5px solid var(--line-strong); overflow: hidden; }
.art-track__fill { display: block; height: 100%; width: 0; border-radius: 5px; background: linear-gradient(90deg, var(--blue), var(--green)); animation: fill 4.5s var(--ease-smooth-out) infinite; }
@keyframes fill { 0% { width: 0; } 30% { width: 40%; } 60% { width: 72%; } 85%, 100% { width: 100%; } }
.art-track__labels { display: flex; justify-content: space-between; margin-top: 8px; font-size: 11px; font-weight: 600; color: var(--ink-3); }
.art-track__pill { margin: 18px auto 0; width: max-content; padding: 8px 14px; border-radius: var(--radius-pill); background: var(--ink); color: #fff; font-size: 12.5px; font-weight: 700; animation: pill-pop 4.5s var(--ease-bounce) infinite; }
@keyframes pill-pop { 0%, 82% { opacity: 0; transform: translateY(8px) scale(.9); } 88%, 100% { opacity: 1; transform: none; } }

/* ---------- Explainer ---------- */
.explainer { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.explainer h2 { margin-top: 0; }
.statutes { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0 0; padding: 0; list-style: none; }
.statutes li { padding: 8px 12px; border-radius: 10px; background: var(--bg-2); font-size: 13px; font-weight: 600; font-family: ui-monospace, "SF Mono", Menlo, monospace; color: var(--ink-2); transition: background-color 150ms ease-out, color 150ms ease-out, transform 200ms var(--ease-smooth-out); }
.statutes li:hover { background: var(--blue-50); color: var(--blue); transform: translateY(-2px); }
/* Path — thick rounded track (like a progress rail), fill sweeps
   down when the block scrolls in; each icon flips blue → white with a
   pop as the fill front reaches it. */
.path { position: relative; --path-w: 56px; --path-gap: 24px; --path-dur: 1800ms; }
.path__track {
  position: absolute; left: 0; top: 0; bottom: 0; width: var(--path-w);
  border-radius: calc(var(--path-w) / 2);
  background: var(--blue-100);
  overflow: hidden;
}
.path__fill {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #3d7bff, var(--blue) 40%);
  transform-origin: top; transform: scaleY(var(--path-progress, 0));
  transition: transform 180ms linear; /* scroll-driven; small smoothing only */
}
.path__fill::after { /* glowing head at the fill front */
  content: ""; position: absolute; left: 0; right: 0; bottom: -18px; height: 36px;
  background: radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, .55), transparent 70%);
}
.path[data-complete="true"] .path__fill::after { opacity: 0; transition: opacity 400ms ease-out; }
.path__list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; }
.path__item { display: grid; grid-template-columns: var(--path-w) 1fr; column-gap: var(--path-gap); align-items: start; padding: 22px 0; }
.path__item:first-child { padding-top: 22px; }
.path__item:last-child { padding-bottom: 26px; }
.path__icon {
  position: relative; z-index: 1;
  width: var(--path-w); height: 44px; display: grid; place-items: center;
  color: var(--blue);
  transform: scale(.88);
  transition: color 300ms ease-out, transform 450ms var(--ease-bounce);
}
.path__icon svg { width: 26px; height: 26px; }
/* icons light up as the scroll-driven fill front passes them (JS toggles .is-lit) */
.path__item.is-lit .path__icon { color: #fff; transform: scale(1); }
.path__item.is-lit .path__icon { animation: path-pop 500ms var(--ease-bounce) both; }
@keyframes path-pop { 0% { transform: scale(1); } 40% { transform: scale(1.28); } 100% { transform: scale(1); } }
.path__body h4 { font-size: 20px; font-weight: 600; letter-spacing: -0.015em; }
.path__body p { margin-top: 4px; color: var(--ink-2); font-size: 16px; line-height: 1.5; }
.path__body { opacity: 0; transform: translateX(8px); transition: opacity 500ms ease-out, transform 600ms var(--ease-smooth-out); }
.path__item:nth-child(1) .path__body { transition-delay: 120ms; }
.path__item:nth-child(2) .path__body { transition-delay: 380ms; }
.path__item:nth-child(3) .path__body { transition-delay: 720ms; }
.path__item:nth-child(4) .path__body { transition-delay: 1150ms; }
.reveal.is-in .path__body, .path.is-in .path__body { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .path__fill, .path__icon, .path__body { transition: none !important; animation: none !important; }
  .path__fill { transform: scaleY(1) !important; } .path__icon { color: #fff; transform: none; } .path__body { opacity: 1; transform: none; }
}

/* ---------- Stats ---------- */
/* Stats — blue → white sky gradient (transcript.study-style) with glass cards */
.stats { padding: 96px 0 40px; color: #fff; position: relative; overflow: hidden; background: linear-gradient(180deg, var(--blue) 0%, #1e5dff 60%, #3d7bff 100%); }
.stats::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 50% 40% at 20% 10%, rgba(255, 255, 255, .12), transparent 70%); }
.stats .container { position: relative; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat { padding: 28px 24px; border-radius: var(--radius-lg); background: rgba(255, 255, 255, .22); border: 1px solid rgba(255, 255, 255, .55); -webkit-backdrop-filter: blur(14px) saturate(140%); backdrop-filter: blur(14px) saturate(140%); box-shadow: 0 20px 40px -24px rgba(0, 30, 120, .35), inset 0 1px 0 rgba(255, 255, 255, .6); transition: background-color 200ms ease-out, transform 300ms var(--ease-smooth-out), box-shadow 300ms var(--ease-smooth-out); }
.stat:hover { background: rgba(255, 255, 255, .32); transform: translateY(-4px); box-shadow: 0 28px 50px -24px rgba(0, 30, 120, .4), inset 0 1px 0 rgba(255, 255, 255, .7); }
.stat__value { display: block; font-size: clamp(38px, 4.5vw, 52px); font-weight: 800; letter-spacing: -0.04em; line-height: 1; font-variant-numeric: tabular-nums; }
.stat__label { display: block; margin-top: 10px; font-weight: 700; font-size: 15px; }
.stat__sub { display: block; margin-top: 4px; font-size: 13.5px; opacity: .88; }
.stat__value, .stat__label, .stat__sub { text-shadow: 0 1px 2px rgba(0, 30, 120, .18); }

/* ---------- Reviews ---------- */
/* Reviews — the sky gradient continues from the stats band down to white */
.section--reviews { position: relative; background: linear-gradient(180deg, #3d7bff 0%, #6d9bff 26%, #b3caff 52%, #e6eeff 78%, #fff 100%); padding-top: 72px; }
.section--reviews::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 60% 30% at 12% 62%, rgba(255, 255, 255, .55), transparent 70%), radial-gradient(ellipse 50% 28% at 88% 48%, rgba(255, 255, 255, .5), transparent 70%), radial-gradient(ellipse 45% 22% at 50% 82%, rgba(255, 255, 255, .6), transparent 70%); }
.section--reviews .container { position: relative; }
.section--reviews .section__head h2 { color: #fff; text-shadow: 0 1px 2px rgba(0, 30, 120, .18); }
.section--reviews .section__lede { color: rgba(255, 255, 255, .88); }
.section--reviews .kicker { background: rgba(255, 255, 255, .18); color: #fff; }
.section--reviews .review { background: rgba(255, 255, 255, .78); }
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.reviews--2x2 { grid-template-columns: repeat(2, 1fr); gap: 22px; }
.review { margin: 0; padding: 30px 32px; border-radius: 28px; border: 1px solid rgba(255, 255, 255, .9); background: rgba(255, 255, 255, .72); -webkit-backdrop-filter: blur(16px) saturate(140%); backdrop-filter: blur(16px) saturate(140%); box-shadow: 0 24px 50px -30px rgba(0, 40, 140, .28), inset 0 1px 0 rgba(255, 255, 255, .9); display: flex; flex-direction: column; gap: 16px; transition: transform 300ms var(--ease-smooth-out), box-shadow 300ms var(--ease-smooth-out); }
.review:hover { transform: translateY(-4px); box-shadow: 0 32px 60px -30px rgba(0, 40, 140, .38), inset 0 1px 0 rgba(255, 255, 255, .9); }
.review__stars { color: #f5b301; letter-spacing: 2px; font-size: 15px; }
.reviews--2x2 blockquote { font-size: 19px; line-height: 1.5; font-weight: 500; letter-spacing: -0.01em; }
.reviews--2x2 .avatar { width: 40px; height: 40px; font-size: 13px; }
.reviews--2x2 figcaption b { font-size: 15px; }
.review blockquote { margin: 0; font-size: 16.5px; line-height: 1.5; font-weight: 500; }
.review figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review .avatar { border-color: #fff; box-shadow: var(--shadow-sm); }
.review figcaption b { display: block; font-size: 14px; }
.review figcaption small { color: var(--ink-3); font-size: 12.5px; }
.reviews__more { margin-top: 36px; }

/* ---------- FAQ — Claim-style rows ----------
   Narrow list, "›" chevron that turns down when open, 1px hairline
   between rows, no card boxes. Height animates via the grid-rows
   accordion from transitions.dev. */
.faq-section { background: #fff; }
.faq { display: flex; flex-direction: column; max-width: 720px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--bg-2); }
.faq__head { width: 100%; display: flex; align-items: center; gap: 10px; padding: 18px 0; border: 0; background: transparent; text-align: left; font-size: 16px; font-weight: 500; color: var(--ink); cursor: pointer; }
.faq__head:focus-visible { outline-offset: 2px; }
.faq__q { transition: color 150ms ease-out; }
.faq__head:hover .faq__q { color: var(--blue); }
/* override the generic t-acc-chevron flip: our chevron is a "›" that rotates to "⌄" */
.faq__chev { width: 20px; height: 20px; color: var(--ink-2); flex: none; transform: rotate(0deg); transition: transform var(--acc-chevron) var(--acc-ease), color 150ms ease-out; }
.faq__chev svg { width: 16px; height: 16px; }
.faq__item[data-open="true"] .faq__chev { transform: rotate(90deg); color: var(--blue); }
.faq__a { margin: 0; padding: 0 0 20px 30px; color: var(--ink-2); font-size: 16px; line-height: 1.6; }

/* ---------- CTA ---------- */
.cta { padding: 96px 0; background: linear-gradient(135deg, var(--blue) 0%, #0038c9 100%); color: #fff; }
.cta__inner { display: flex; flex-direction: column; align-items: flex-start; gap: 28px; }
.cta__inner > div:first-child { max-width: 600px; }
.cta p { margin-top: 10px; opacity: .85; font-size: 17px; }
.cta__actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.cta { position: relative; overflow: hidden; }
.cta__inner { position: relative; z-index: 1; }
.cta__art { position: absolute; right: 24px; top: 50%; translate: 0 -50%; width: 340px; height: 260px; pointer-events: none; }
.cta__art img { position: absolute; width: var(--w); height: auto; filter: drop-shadow(0 20px 30px rgba(0, 20, 90, .35)); animation: float-bob 6s ease-in-out infinite; animation-delay: var(--d, 0s); }
.cta__art .a1 { --w: 150px; left: 90px; top: 30px; --d: 0s; }
.cta__art .a2 { --w: 96px; left: 0; top: 120px; --d: -2s; }
.cta__art .a3 { --w: 92px; left: 240px; top: 20px; --d: -4s; }
.cta__art .a4 { --w: 84px; left: 230px; top: 160px; --d: -1s; }
@media (max-width: 1024px) { .cta__art { display: none; } }

/* ---------- Subpages (lawyers / contact / reviews) ---------- */
.hero--page { padding-bottom: 80px; }
.hero--short { padding-bottom: 72px; }
.hero__inner--page { grid-template-columns: 1.1fr .9fr; }
.hero__copy--center { max-width: 720px; margin: 0 auto; text-align: center; }
.hero__copy--center .eyebrow { margin: 0 auto; }
.hero__copy--center .hero__lede { margin-left: auto; margin-right: auto; }
.hero__copy--center .hero__cta { justify-content: center; }
.hero__visual--art { min-height: 380px; }
.hero__art { position: absolute; filter: drop-shadow(0 24px 40px rgba(0, 20, 90, .45)); animation: float-bob 6s ease-in-out infinite; }
.hero__art--1 { width: 230px; left: 50%; top: 50%; translate: -60% -55%; --d: 0s; }
.hero__art--2 { width: 130px; right: 6%; top: 8%; animation-delay: -2s; }
.hero__art--3 { width: 110px; left: 8%; bottom: 6%; animation-delay: -4s; }
.rating { margin: 28px auto 0; display: inline-flex; align-items: center; gap: 14px; padding: 12px 20px; border-radius: 999px; background: rgba(255, 255, 255, .14); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.rating__num { font-size: 30px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.rating__stars { color: #ffd166; letter-spacing: 2px; font-size: 18px; }
.rating__meta { font-size: 14px; opacity: .9; }
.rating__meta b { color: #fff; }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pillar { padding: 28px; border-radius: var(--radius-lg); border: 1.5px solid var(--line); background: #fff; transition: transform 300ms var(--ease-smooth-out), box-shadow 300ms var(--ease-smooth-out); }
.pillar:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pillar__icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: var(--blue-50); color: var(--blue); margin-bottom: 18px; }
.pillar__icon svg { width: 24px; height: 24px; }
.pillar h3 { font-size: 20px; }
.pillar p { margin-top: 8px; color: var(--ink-2); font-size: 15.5px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.checks { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 18px; }
.checks li { display: flex; gap: 14px; align-items: flex-start; }
.checks__icon { flex: none; width: 26px; height: 26px; margin-top: 1px; border-radius: 50%; background: var(--blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 10.5l3.5 3.5L15 7' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 15px 15px no-repeat; }
.checks b { font-size: 16.5px; }
.checks p { margin-top: 3px; color: var(--ink-2); font-size: 15px; }

.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature { padding: 24px; border-radius: var(--radius-lg); background: var(--bg-2); transition: background-color 200ms ease-out, transform 300ms var(--ease-smooth-out); }
.feature:hover { background: var(--blue-50); transform: translateY(-3px); }
.feature__num { display: block; font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 13px; font-weight: 700; color: var(--blue); margin-bottom: 14px; }
.feature h3 { font-size: 18px; }
.feature p { margin-top: 6px; color: var(--ink-2); font-size: 14.5px; }

.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.compare__col { padding: 32px; border-radius: var(--radius-lg); background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .14); }
.compare__tag { display: inline-block; padding: 6px 12px; border-radius: 999px; background: rgba(255, 255, 255, .16); font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.compare__big { margin-top: 18px; font-size: clamp(44px, 5vw, 64px); font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.compare__lede { margin-top: 4px; font-size: 16px; opacity: .85; }
.compare ul { margin: 22px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.compare li { position: relative; padding-left: 26px; font-size: 15.5px; }
.compare li::before { content: ""; position: absolute; left: 0; top: 5px; width: 16px; height: 16px; border-radius: 50%; background: #5cf29a url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 10.5l3.5 3.5L15 7' stroke='%230036ad' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 11px 11px no-repeat; }

.formcard { position: relative; padding: 32px; border-radius: 28px; background: #fff; border: 1.5px solid var(--line); box-shadow: var(--shadow-md); }
.section--gray .formcard { border-color: transparent; }
.stack { display: flex; flex-direction: column; gap: 16px; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field__control.field__control--area { height: auto; min-height: 120px; padding: 14px 16px; align-items: stretch; }
.field__control--area textarea { display: block; width: 100%; border: 0; outline: 0; resize: vertical; font: inherit; font-size: 16px; line-height: 1.5; color: var(--ink); background: transparent; min-height: 96px; }
.field__control--area textarea::placeholder { color: var(--ink-4); }
.field__control--select select { width: 100%; height: 100%; border: 0; outline: 0; background: transparent; font: inherit; font-size: 16px; color: var(--ink); appearance: none; -webkit-appearance: none; }
.field__control--select { position: relative; }
.field__control--select::after { content: ""; position: absolute; right: 18px; top: 50%; width: 8px; height: 8px; border: solid var(--ink-3); border-width: 0 2px 2px 0; transform: translateY(-70%) rotate(45deg); pointer-events: none; }
.form-done { text-align: center; padding: 20px 0 8px; display: flex; flex-direction: column; align-items: center; gap: 8px; animation: card-in 400ms var(--ease-smooth-out) both; }
.form-done .success__check { width: 84px; height: 84px; margin: 0 auto 8px; }

.contacts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.contact { position: relative; display: flex; flex-direction: column; gap: 8px; padding: 28px 28px 24px; border-radius: var(--radius-lg); border: 1.5px solid var(--line); background: #fff; transition: transform 300ms var(--ease-smooth-out), box-shadow 300ms var(--ease-smooth-out), border-color 200ms ease-out; }
.contact:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-100); }
.contact__icon { width: 64px; height: 64px; display: grid; place-items: center; margin-bottom: 8px; }
.contact__icon img { width: 60px; height: 60px; object-fit: contain; filter: drop-shadow(0 8px 14px rgba(0, 81, 255, .22)); transition: transform 350ms var(--ease-bounce); }
.contact:hover .contact__icon img { transform: translateY(-4px) rotate(-6deg) scale(1.06); }
.contact h3 { font-size: 20px; }
.contact p { color: var(--ink-2); font-size: 15px; }
.contact__mail { margin-top: 8px; font-weight: 700; color: var(--blue); width: max-content; border-bottom: 1.5px solid transparent; transition: border-color 150ms ease-out; }
.contact__mail:hover { border-color: currentColor; }
.contact__copy { position: absolute; right: 20px; top: 20px; padding: 7px 12px; border: 1.5px solid var(--line); border-radius: 999px; background: #fff; font-size: 12px; font-weight: 700; text-transform: uppercase; color: var(--ink-2); cursor: pointer; opacity: 0; transform: translateY(-4px); transition: opacity 200ms ease-out, transform 250ms var(--ease-smooth-out), background-color 150ms ease-out, color 150ms ease-out, border-color 150ms ease-out; }
.contact:hover .contact__copy, .contact__copy:focus-visible { opacity: 1; transform: none; }
.contact__copy:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

.proof { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 40px; padding: 26px 24px; border-radius: var(--radius-lg); background: var(--bg-2); }
.proof__stat { text-align: center; }
.proof .stat__value { font-size: clamp(30px, 3.6vw, 40px); color: var(--blue); }
.proof__label { display: block; margin-top: 4px; font-size: 13.5px; font-weight: 600; color: var(--ink-3); text-transform: uppercase; letter-spacing: .04em; }
.wall { columns: 3; column-gap: 20px; }
.review--wall { display: inline-flex; width: 100%; margin: 0 0 20px; break-inside: avoid; }
.review__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.review__paid { padding: 5px 10px; border-radius: 999px; background: var(--green-50); color: #0b7a3b; font-size: 12px; font-weight: 800; }
.verified { color: var(--blue); font-weight: 600; }

@media (max-width: 1024px) { .features { grid-template-columns: repeat(2, 1fr); } .wall { columns: 2; } }
@media (max-width: 880px) {
  .hero__inner--page { grid-template-columns: 1fr; }
  .hero__visual--art { display: none; }
  .pillars { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .compare { grid-template-columns: 1fr; }
  .contacts { grid-template-columns: 1fr; }
  .proof { grid-template-columns: repeat(2, 1fr); }
  .contact__copy { opacity: 1; transform: none; }
}
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } .grid2 { grid-template-columns: 1fr; } .wall { columns: 1; } .formcard { padding: 22px; } .proof { grid-template-columns: 1fr 1fr; } }

/* ---------- Legal pages (terms / privacy) ---------- */
.legal { padding-top: 64px; }
.legal__grid { display: grid; grid-template-columns: 240px 1fr; gap: 56px; align-items: start; }
.legal__toc { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 2px; padding: 18px 0; }
.legal__toc b { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-3); margin-bottom: 8px; }
.legal__toc a { padding: 6px 10px; border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--ink-2); transition: background-color 150ms ease-out, color 150ms ease-out; }
.legal__toc a:hover { background: var(--bg-2); color: var(--ink); }
.legal__toc a.is-active { background: var(--blue-50); color: var(--blue); font-weight: 600; }
.legal__body { max-width: 760px; font-size: 16.5px; line-height: 1.65; color: var(--ink-2); }
.legal__body h2 { font-size: 26px; font-weight: 700; color: var(--ink); margin: 44px 0 14px; scroll-margin-top: 110px; }
.legal__body h2:first-child { margin-top: 0; }
.legal__body h3 { font-size: 18px; font-weight: 700; color: var(--ink); margin: 26px 0 8px; }
.legal__body p { margin: 0 0 14px; }
.legal__body ul { margin: 0 0 16px; padding-left: 22px; }
.legal__body li { margin: 6px 0; }
.legal__body a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.legal__body strong { color: var(--ink); }
.legal__note { margin-top: 40px; padding: 14px 16px; border-radius: 12px; background: var(--amber-50); color: #7a4b00; font-size: 14px; }
.legal__table-wrap { overflow-x: auto; margin: 0 0 16px; }
.legal__table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.legal__table th, .legal__table td { padding: 10px 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.legal__table th { font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-3); }
.hero--legal { padding-bottom: 60px; }
@media (max-width: 880px) { .legal__grid { grid-template-columns: 1fr; gap: 24px; } .legal__toc { position: static; flex-direction: row; flex-wrap: wrap; gap: 6px; } .legal__toc b { width: 100%; } .legal__toc a { font-size: 13px; padding: 6px 10px; background: var(--bg-2); } }

/* ---------- Dev bar (floating, bottom-right — remove before launch) ---------- */
.devbar { position: fixed; right: 16px; bottom: 16px; z-index: 300; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; font-family: var(--font); pointer-events: none; /* the container spans the (hidden) menu's box — never let it eat clicks */ }
.devbar__btn, .devbar[data-open="true"] .devbar__menu { pointer-events: auto; }
body[data-sticky] .devbar { bottom: 96px; }
.devbar__btn { width: 44px; height: 44px; border-radius: 50%; border: 1.5px dashed rgba(255, 255, 255, .5); background: #0f0f12; color: #fff; font-size: 20px; line-height: 1; cursor: pointer; box-shadow: 0 10px 24px -10px rgba(0, 0, 0, .5); transition: transform 300ms var(--ease-bounce), background-color 150ms ease-out; }
.devbar__btn:hover { background: var(--blue); }
.devbar[data-open="true"] .devbar__btn { transform: rotate(90deg); background: var(--blue); }
.devbar__menu { display: flex; flex-direction: column; min-width: 190px; padding: 8px; border-radius: 16px; background: #0f0f12; color: #fff; box-shadow: 0 20px 40px -18px rgba(0, 0, 0, .55); transform-origin: bottom right; opacity: 0; transform: scale(.94) translateY(6px); pointer-events: none; transition: opacity 150ms ease-out, transform 200ms var(--ease-smooth-out); }
.devbar[data-open="true"] .devbar__menu { opacity: 1; transform: none; pointer-events: auto; }
.devbar__menu b { padding: 8px 10px 4px; font-size: 10.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: rgba(255, 255, 255, .5); }
.devbar__menu a, .devbar__menu button { display: block; width: 100%; padding: 8px 10px; border: 0; border-radius: 10px; background: transparent; color: #fff; font: inherit; font-size: 13.5px; font-weight: 600; text-align: left; cursor: pointer; transition: background-color 120ms ease-out; }
.devbar__menu a:hover, .devbar__menu button:hover { background: rgba(255, 255, 255, .12); }
.devbar__menu a.is-here { color: #7fa6ff; }
@media (max-width: 960px) { .app-body .devbar { bottom: 92px; } }
@media (max-width: 760px) { .ob-body .devbar { bottom: 100px; } }

/* ---------- Footer ---------- */
.footer { padding: 64px 0 32px; background: #fff; border-top: 1px solid var(--line); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.footer__grid > div { display: flex; flex-direction: column; gap: 10px; }
.footer__brand p { max-width: 300px; color: var(--ink-3); font-size: 14.5px; }
.brand--footer { width: auto; justify-content: flex-start; color: var(--ink); }
.brand--footer .brand__mark { height: 30px; }
.footer h5 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-3); margin-bottom: 4px; }
.footer a:not(.logo) { font-size: 15px; font-weight: 500; color: var(--ink-2); width: max-content; transition: color 150ms ease-out; }
.footer a:not(.logo):hover { color: var(--blue); }
.footer__legal { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 13px; color: var(--ink-3); }

/* ---------- Modal ---------- */
.modal-root { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; pointer-events: none; }
.modal-root[data-state="open"], .modal-root[data-state="closing"] { pointer-events: auto; }
.modal-root[data-state="closed"] { visibility: hidden; }
.modal-root[data-state="closed"] * { pointer-events: none !important; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(9, 12, 24, .55); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); opacity: 0; transition: opacity var(--modal-close-dur) ease-out; }
.modal-root[data-state="open"] .modal-backdrop { opacity: 1; transition-duration: var(--modal-open-dur); }
.modal { position: relative; width: 100%; max-width: 460px; padding: 36px 32px 28px; border-radius: 28px; background: #fff; color: var(--ink); box-shadow: var(--shadow-lg); }
.modal__close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border: 0; border-radius: 50%; background: var(--bg-2); color: var(--ink-2); display: grid; place-items: center; cursor: pointer; transition: background-color 150ms ease-out, transform 200ms var(--ease-smooth-out); }
.modal__close svg { width: 16px; height: 16px; }
.modal__close:hover { background: var(--line); transform: rotate(90deg); }
.modal h3 { font-size: 26px; letter-spacing: -0.025em; }
.modal__lede { margin-top: 10px; color: var(--ink-2); font-size: 15.5px; }
.modal__case { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; padding: 12px; border-radius: 16px; background: var(--bg-2); animation: card-in 300ms var(--ease-smooth-out) both; }
.modal__case small { display: block; font-size: 12px; color: var(--ink-3); }
.modal__case b { display: block; font-size: 15px; }
.modal__form { margin-top: 22px; display: flex; flex-direction: column; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field__label { font-size: 13.5px; font-weight: 600; color: var(--ink-2); }
.field__control { display: flex; align-items: center; gap: 10px; height: 54px; padding: 0 16px; border-radius: 16px; border: 1.5px solid var(--line-strong); background: #fff; transition: border-color 150ms ease-out, box-shadow 200ms ease-out; }
.field__control:focus-within { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0, 81, 255, .12); }
.field__control.is-error, .field__control.is-error:focus-within { border-color: var(--red); box-shadow: 0 0 0 4px rgba(229, 72, 77, .12); }
.field__icon { width: 20px; height: 20px; color: var(--ink-4); flex: none; transition: color 150ms ease-out; }
.field__control:focus-within .field__icon { color: var(--blue); }
.field__control.is-error .field__icon { color: var(--red); }
.field__control input { flex: 1; min-width: 0; height: 100%; border: 0; outline: 0; background: transparent; font: inherit; font-size: 16px; color: var(--ink); }
.field__control input::placeholder { color: var(--ink-4); }
.field__error { font-size: 13px; color: var(--red); font-weight: 500; margin: 0; }
.modal__fine { font-size: 12.5px; color: var(--ink-3); text-align: center; }
.modal__fine a { text-decoration: underline; text-underline-offset: 2px; }

.modal__view--success { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.success__check { width: 84px; height: 84px; margin: 4px auto 12px; }
.success__matches { width: 100%; margin: 12px 0 18px; display: flex; flex-direction: column; gap: 6px; }
.match { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 14px; border: 1px solid var(--line); text-align: left; animation: card-in 400ms var(--ease-smooth-out) both; animation-delay: calc(400ms + var(--i, 0) * 70ms); }
.match .ptile { width: 34px; height: 34px; border-radius: 10px; font-size: 12px; }
.match__meta { flex: 1; min-width: 0; }
.match__meta b { display: block; font-size: 14px; }
.match__meta small { color: var(--ink-3); font-size: 12px; }
.match__amt { font-weight: 800; color: var(--blue); font-size: 14px; white-space: nowrap; font-variant-numeric: tabular-nums; }

/* ---------- How-it-works popup ---------- */
.how { max-width: 520px; padding: 0; overflow: hidden; }
.how .modal__close { z-index: 3; background: rgba(255, 255, 255, .85); }
.how__pages { height: 470px; }
.how__page { display: flex; flex-direction: column; }
.how__art { position: relative; height: 270px; display: grid; place-items: center; overflow: hidden; background: linear-gradient(180deg, var(--blue-50), #f4f7ff); }
.how__art-glow { position: absolute; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(0, 81, 255, .18), transparent 60%); filter: blur(10px); animation: drift 12s ease-in-out infinite alternate; }
.how__art .art-match, .how__art .art-form, .how__art .art-track { position: relative; width: 62%; transform: scale(1.25); transform-origin: center; }
.how__art .art-form { transform: scale(1.15); }
.how__chips { position: absolute; right: 26px; bottom: 22px; display: flex; gap: 8px; }
.how__chips .ptile { width: 34px; height: 34px; border-radius: 10px; box-shadow: var(--shadow-md); animation: chip-in 600ms var(--ease-bounce) both; }
.how__chips .ptile:nth-child(1) { animation-delay: 300ms; } .how__chips .ptile:nth-child(2) { animation-delay: 450ms; } .how__chips .ptile:nth-child(3) { animation-delay: 600ms; }
@keyframes chip-in { from { opacity: 0; transform: translateY(10px) scale(.7); } to { opacity: 1; transform: none; } }
.how__art--3 { background: linear-gradient(180deg, #e8f7ee, #f3fbf6); }
.how__art--3 .how__art-glow { background: radial-gradient(circle, rgba(18, 161, 80, .2), transparent 60%); }
.how__body { padding: 22px 28px 8px; }
.how__title { font-size: 24px; letter-spacing: -0.02em; }
.how__body p { margin-top: 8px; color: var(--ink-2); font-size: 15.5px; line-height: 1.55; }
.how__fine { font-size: 13px !important; color: var(--ink-3) !important; }
.how__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 4px 28px 26px; }
.how__dots { display: flex; gap: 6px; }
.how__dot { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 4px; background: var(--line-strong); cursor: pointer; transition: width 300ms var(--ease-smooth-out), background-color 200ms ease-out; }
.how__dot[aria-selected="true"] { width: 24px; background: var(--blue); }
.how__nav { display: flex; gap: 8px; }
.how__nav .btn { --pill-pad-y: 1rem; --pill-pad-x: 1.4rem; min-width: 118px; }
.how__ctas { gap: 12px; flex-wrap: wrap; }
/* confetti on the final step */
.confetti { position: absolute; inset: 0; pointer-events: none; }
.confetti i { position: absolute; top: -12px; left: calc(var(--x) * 1%); width: 7px; height: 12px; border-radius: 2px; background: var(--c); opacity: 0; transform: rotate(var(--r)); }
.t-page[data-pos="current"] .confetti i { animation: confetti-fall 2.6s linear infinite; animation-delay: var(--d); }
@keyframes confetti-fall { 0% { opacity: 0; transform: translateY(0) rotate(0deg); } 10% { opacity: 1; } 100% { opacity: 0; transform: translateY(290px) rotate(540deg); } }
.confetti i:nth-child(1)  { --x: 6;  --c: #12a150; --r: 20deg;  --d: 0s; }
.confetti i:nth-child(2)  { --x: 14; --c: #0051ff; --r: 60deg;  --d: .5s; }
.confetti i:nth-child(3)  { --x: 22; --c: #f59e0b; --r: 10deg;  --d: 1.1s; }
.confetti i:nth-child(4)  { --x: 30; --c: #7c3aed; --r: 80deg;  --d: .3s; }
.confetti i:nth-child(5)  { --x: 38; --c: #12a150; --r: 35deg;  --d: 1.7s; }
.confetti i:nth-child(6)  { --x: 46; --c: #0051ff; --r: 15deg;  --d: .9s; }
.confetti i:nth-child(7)  { --x: 54; --c: #e5484d; --r: 70deg;  --d: 2s; }
.confetti i:nth-child(8)  { --x: 62; --c: #f59e0b; --r: 25deg;  --d: .2s; }
.confetti i:nth-child(9)  { --x: 70; --c: #12a150; --r: 50deg;  --d: 1.4s; }
.confetti i:nth-child(10) { --x: 78; --c: #7c3aed; --r: 5deg;   --d: .7s; }
.confetti i:nth-child(11) { --x: 86; --c: #0051ff; --r: 40deg;  --d: 1.9s; }
.confetti i:nth-child(12) { --x: 94; --c: #e5484d; --r: 65deg;  --d: .4s; }
.confetti i:nth-child(13) { --x: 10; --c: #f59e0b; --r: 30deg;  --d: 2.3s; }
.confetti i:nth-child(14) { --x: 50; --c: #12a150; --r: 75deg;  --d: 1.2s; }
.confetti i:nth-child(15) { --x: 66; --c: #0051ff; --r: 45deg;  --d: 2.5s; }
.confetti i:nth-child(16) { --x: 90; --c: #7c3aed; --r: 55deg;  --d: 1.6s; }
@media (max-width: 560px) {
  .how__pages { height: 500px; }
  .how__art { height: 240px; }
  .how__body { padding: 18px 20px 6px; }
  .how__foot { padding: 4px 20px 20px; }
  .how__nav .btn { min-width: 0; }
}
@media (prefers-reduced-motion: reduce) { .confetti i, .how__chips .ptile, .how__art-glow { animation: none !important; opacity: 1; } }

/* ---------- Sticky claim bar ---------- */
.sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
  padding: 12px 0 max(12px, env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .92);
  -webkit-backdrop-filter: saturate(180%) blur(16px); backdrop-filter: saturate(180%) blur(16px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 40px -20px rgba(18, 18, 18, .35);
  transform: translateY(110%);
  transition: transform 450ms var(--ease-smooth-out);
  will-change: transform;
}
.sticky[data-state="shown"] { transform: translateY(0); }
body[data-lock] .sticky { transform: translateY(110%); }
.sticky__inner { display: flex; align-items: center; gap: 18px; }
.sticky__case { display: flex; align-items: center; gap: 12px; min-width: 0; padding: 4px 8px 4px 4px; margin-left: -4px; border: 0; border-radius: 16px; background: transparent; text-align: left; cursor: pointer; transition: background-color 150ms ease-out; }
.sticky__case:hover { background: var(--bg-2); }
.sticky__tile { width: 44px; height: 44px; border-radius: 13px; transition: background-color 300ms ease-out; }
.sticky__meta { display: flex; flex-direction: column; min-width: 0; }
.sticky__label { font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-3); }
.sticky__line { font-size: 16px; color: var(--ink-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky__line b { color: var(--ink); font-weight: 700; }
.sticky__amt { color: var(--blue) !important; }
/* text swap when the current claim rotates */
.t-swap { display: inline-block; transition: opacity 150ms ease-in-out, transform 150ms ease-in-out, filter 150ms ease-in-out; }
.t-swap.is-out { opacity: 0; transform: translateY(4px); filter: blur(2px); }
.sticky__deadline { display: inline-flex; align-items: center; gap: 7px; margin-left: auto; padding: 8px 12px; border-radius: var(--radius-pill); background: var(--amber-50); color: #b26a00; font-size: 13px; font-weight: 700; white-space: nowrap; }
.sticky__deadline[data-tone="calm"] { background: var(--green-50); color: #0b7a3b; }
.sticky__dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; animation: pulse-dot 1.6s ease-out infinite; }
@keyframes pulse-dot { 0% { box-shadow: 0 0 0 0 rgba(178, 106, 0, .45); } 100% { box-shadow: 0 0 0 7px rgba(178, 106, 0, 0); } }
.sticky__actions { display: flex; align-items: center; gap: 8px; }
.sticky__actions .btn { --pill-pad-y: 1rem; --pill-pad-x: 1.3rem; }
.sticky__close { width: 36px; height: 36px; border: 0; border-radius: 50%; background: transparent; color: var(--ink-3); display: grid; place-items: center; cursor: pointer; transition: background-color 150ms ease-out, color 150ms ease-out; }
.sticky__close svg { width: 16px; height: 16px; }
.sticky__close:hover { background: var(--bg-2); color: var(--ink); }
body[data-sticky] .toast { bottom: 96px; }
@media (max-width: 880px) {
  .sticky__deadline { display: none; }
  .sticky__from { display: none; }
  .sticky__line b:last-child::before { content: " · "; color: var(--ink-3); font-weight: 400; }
}
@media (max-width: 560px) {
  .sticky { padding-top: 10px; }
  .sticky__inner { gap: 10px; }
  .sticky__label { display: none; }
  .sticky__line { font-size: 14.5px; }
  .sticky__tile { width: 38px; height: 38px; border-radius: 11px; }
  .sticky__actions .btn { --pill-pad-x: 1rem; --pill-font: 12.5px; }
  .sticky__close { width: 30px; height: 30px; }
}
@media (prefers-reduced-motion: reduce) { .sticky, .t-swap { transition: none !important; } .sticky__dot { animation: none; } }

/* ---------- Toast ---------- */
.toast { position: fixed; left: 50%; bottom: 28px; z-index: 200; margin-left: -1px; translate: -50% 0; display: flex; align-items: center; gap: 10px; padding: 12px 18px 12px 12px; border-radius: var(--radius-pill); background: var(--ink); color: #fff; box-shadow: var(--shadow-lg); font-size: 14.5px; font-weight: 500; pointer-events: none; }
.toast__icon { width: 26px; height: 26px; border-radius: 50%; background: var(--green); display: grid; place-items: center; }
.toast__icon svg { width: 14px; height: 14px; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 600ms var(--ease-smooth-out), transform 700ms var(--ease-smooth-out); transition-delay: calc(var(--i, 0) * 90ms); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .blob, .phone, .float, .prow, .case, .eyebrow__dot, .ticker__track, .art-match__box::after, .art-form__type, .art-form__caret, .art-track__fill, .art-track__pill, .badge--closing::before, .skel__b { animation: none !important; }
  .float { opacity: 1; }
  .prow { opacity: 1; }
  .timeline::after { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .nav__links { width: auto; }
  .nav__links .pill__text { display: none; }
  .nav__links li:not(:first-child) { display: none; }
  .nav__cta .pill__text { display: none; }
}
@media (max-width: 1024px) {
  .cases__grid { grid-template-columns: repeat(4, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { gap: 24px; }
  .float--1 { left: 0; }
  .float--2 { right: 0; }
}
@media (max-width: 880px) {
  .nav { padding-top: max(8px, env(safe-area-inset-top)); }
  .nav__layout { padding-top: 1.1rem !important; padding-bottom: 1rem; }
  .nav__actions .pill { --pill-pad-y: .85rem; --pill-pad-x: 1rem; --pill-font: 12px; }
  .nav__links { display: none; }
  .brand { width: auto; justify-content: flex-start; }
  .brand__mark { height: 30px; } .brand__word { font-size: 23px; }
  .nav .brand__word { font-size: 30px; }
  .nav__actions { width: auto; }
  .hero { padding-top: calc(var(--nav-h) + 40px); padding-bottom: 64px; }
  .hero__inner { grid-template-columns: 1fr; }
  /* simpler mockup on stacked hero: swap the rich card list for Claim-style rows */
  .phone__tabs, .phone__list--rich { display: none; }
  .phone__list--simple { display: flex; }
  .hero__visual { min-height: 0; margin-top: 24px; transform: none; padding: 30px 0 20px; }
  .phone { width: min(340px, 92vw); height: 620px; }
  .float--1 { left: 0; top: 0; }
  .float--2 { right: 0; top: 46%; }
  .float--3 { left: 0; bottom: 0; }
  .section { padding: 72px 0; }
  .steps { grid-template-columns: 1fr; }
  .explainer { grid-template-columns: 1fr; gap: 40px; }
  .reviews, .reviews--2x2 { grid-template-columns: 1fr; }
  .cases__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .cta__inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .stats { padding: 64px 0 24px; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat { padding: 18px 16px; border-radius: 18px; }
  .stat__value { font-size: 30px; }
  .stat__label { font-size: 13.5px; margin-top: 6px; }
  .stat__sub { font-size: 12px; }
  .section--reviews { padding-top: 56px; }
  .review { padding: 22px 20px; border-radius: 22px; }
  .reviews--2x2 blockquote { font-size: 16.5px; }
  .footer { padding: 48px 0 28px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
  .footer__brand { grid-column: 1 / -1; }
  .cta { padding: 64px 0; }
  .section__head { margin-bottom: 32px; }
  .section__title-xl { font-size: 32px; }
  .t-tabs { -webkit-mask-image: linear-gradient(90deg, #000 85%, transparent); mask-image: linear-gradient(90deg, #000 85%, transparent); padding-right: 24px; }
  .cases__count { margin-bottom: 24px; }
  .path { --path-w: 48px; --path-gap: 16px; }
  .path__body h4 { font-size: 18px; }
  .path__body p { font-size: 15px; }
  .explainer .statutes li { font-size: 12px; padding: 7px 10px; }
  .hero__lede { font-size: 17px; }
  .hero__title { font-size: clamp(48px, 13.4vw, 58px); letter-spacing: -0.04em; }
  .hero__cta .btn { width: 100%; }
  .hero__visual { transform: none; margin: 8px 0 0; padding: 36px 0 24px; }
  .hero { padding-bottom: 40px; }
  .float { padding: 8px 16px 8px 8px; font-size: 12px; }
  .float b { font-size: 11.5px; }
  .float small { font-size: 11px; }
  .float__icon { width: 34px; height: 34px; }
  .float--1 { left: -4px; top: 0; }
  .float--2 { right: -4px; top: 44%; }
  .float--3 { left: -4px; bottom: 0; }
  .cases__grid { grid-template-columns: repeat(2, 1fr); gap: 28px 18px; position: relative; max-height: 4000px; transition: max-height 600ms var(--ease-smooth-out); }
  /* collapsed on mobile: clip the long list and fade it out under a "Show more" button */
  .cases__grid[data-expanded="false"] { max-height: 760px; overflow: hidden; }
  .cases__grid[data-expanded="false"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 200px; background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 78%); pointer-events: none; }
  .cases__grid[data-expanded="false"] .case:nth-child(n+13) { display: flex; }
  .cases__more { margin-top: -56px; position: relative; z-index: 1; }
  .cases__grid[data-expanded="true"] + .empty + .cases__more, .cases__grid[data-expanded="true"] ~ .cases__more { margin-top: 36px; }
  .case__logo { font-size: 40px; }
  .cases__toolbar { flex-direction: column; align-items: stretch; }
  .search { min-width: 0; }
  .stats__grid { grid-template-columns: 1fr; }
  .modal { padding: 32px 22px 22px; }
  .footer__grid { grid-template-columns: 1fr; }
  .toast { width: calc(100% - 36px); justify-content: center; }
}

@media (max-width: 560px) {
  .hero__laurels { gap: 18px; margin-bottom: 18px; }
  .laurel__leaf { width: 29px; height: 60px; }
  .laurel__body { min-width: 70px; }
  .laurel__num { font-size: 25px; }
  .laurel__stars i { width: 16px; height: 16px; }
  .laurel__body small { font-size: 12px; }
}

.modal__case-link { margin-left: auto; font-size: 13px; font-weight: 600; color: var(--blue); white-space: nowrap; }
.modal__case-link:hover { text-decoration: underline; }

/* ---------- Blog (blog.html + blog/*.html) ---------- */
.pill-tag { display: inline-flex; align-items: center; height: 24px; padding: 0 10px; border-radius: var(--radius-pill); font-size: 11.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; background: var(--bg-2); color: var(--ink-2); }
.pill-tag--blue { --c: var(--blue); background: var(--chip-solid); color: #fff; box-shadow: var(--chip-solid-shadow); text-shadow: 0 1px 0 rgba(0, 0, 0, .18); }
.blog-section { padding-top: 56px; }
.blog-tabs { background: var(--bg-2); border-radius: var(--radius-pill); padding: 4px; }
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 24px; }
.posts--3 { grid-template-columns: repeat(3, 1fr); }
.post-card { display: flex; flex-direction: column; border-radius: 22px; background: #fff; border: 1px solid var(--line); overflow: hidden; color: inherit; text-decoration: none; transition: transform 280ms var(--ease-smooth-out), box-shadow 280ms var(--ease-smooth-out), border-color 200ms ease-out; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.post-card[hidden] { display: none; }
.post-card--soon { cursor: default; }
.post-card--soon:hover { transform: none; box-shadow: none; }
.post-card--soon .post-card__img img { filter: grayscale(.6); opacity: .75; }
.post-card__img { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: linear-gradient(135deg, color-mix(in srgb, var(--c, var(--blue)) 18%, #fff), color-mix(in srgb, var(--c, var(--blue)) 42%, #fff)); }
.post-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 600ms var(--ease-smooth-out); }
.post-card:hover .post-card__img img { transform: scale(1.04); }
.post-card__body { display: flex; flex-direction: column; gap: 10px; padding: 18px 20px 22px; }
.post-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.post-card__meta small { color: var(--ink-3); font-size: 12.5px; font-weight: 500; }
.post-card__body b { font-size: 18px; line-height: 1.3; letter-spacing: -0.01em; }
.post-card__body p { margin: 0; color: var(--ink-2); font-size: 14.5px; line-height: 1.55; }
.posts__empty { text-align: center; color: var(--ink-3); padding: 40px 0; }
.blog-cta { margin-top: 64px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 40px 44px; border-radius: 28px; background: linear-gradient(135deg, var(--blue) 0%, #2d6dff 55%, #5b8dff 100%); color: #fff; box-shadow: var(--shadow-blue); }
.blog-cta h2 { margin: 0 0 6px; font-size: 28px; letter-spacing: -0.02em; }
.blog-cta p { margin: 0; color: rgba(255, 255, 255, .85); font-size: 16px; }

/* article */
.post__hero { padding: calc(var(--nav-h) + 28px) 0 0; }
.post__hero .container { max-width: 820px; }
.crumbs { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--ink-3); margin-bottom: 18px; flex-wrap: wrap; }
.crumbs a { color: var(--ink-3); }
.crumbs a:hover { color: var(--blue); }
.crumbs [aria-current] { color: var(--ink); font-weight: 600; }
.post__title { font-size: clamp(32px, 4.6vw, 50px); line-height: 1.06; letter-spacing: -0.03em; font-weight: 800; margin: 14px 0 16px; }
.post__lede { font-size: 19px; line-height: 1.55; color: var(--ink-2); margin: 0 0 22px; }
.post__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.post__meta > span:last-child { display: flex; flex-direction: column; }
.post__meta b { font-size: 14.5px; }
.post__meta small { color: var(--ink-3); font-size: 13px; }
.post__cover { margin: 0; }
.post__cover img { width: 100%; height: auto; border-radius: 24px; display: block; box-shadow: var(--shadow-md); aspect-ratio: 1200 / 630; object-fit: cover; }
.post__cover figcaption, .post__fig figcaption { margin-top: 10px; font-size: 13px; color: var(--ink-3); text-align: center; }
.post__grid { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 56px; padding-top: 48px; padding-bottom: 40px; max-width: 1120px; }
.post__side { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 110px; align-self: start; }
.post__toc { display: flex; flex-direction: column; gap: 2px; padding: 4px 0; }
.post__toc b { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-3); margin-bottom: 8px; padding: 0 10px; }
.post__toc a { padding: 6px 10px; border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--ink-2); transition: background-color 150ms ease-out, color 150ms ease-out; }
.post__toc a:hover { background: var(--bg-2); color: var(--ink); }
.post__toc a.is-active { background: var(--blue-50); color: var(--blue); font-weight: 600; }
.post__promo { border-radius: 22px; padding: 22px; background: linear-gradient(180deg, #fff, var(--blue-50)); border: 1px solid var(--blue-100); box-shadow: inset 0 1px 0 #fff, var(--shadow-sm); display: flex; flex-direction: column; gap: 12px; }
.post__promo h3 { margin: 0; font-size: 17px; line-height: 1.3; letter-spacing: -0.01em; }
.post__promo ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.post__promo li { font-size: 13.5px; line-height: 1.45; color: var(--ink-2); }
.post__promo li b { color: var(--ink); }
.post__promo small { text-align: center; color: var(--ink-3); font-size: 12px; }
.post__body { max-width: 720px; font-size: 17px; line-height: 1.7; color: var(--ink); }
.post__body > p, .post__body > ul, .post__body > ol { margin: 0 0 20px; }
.post__body h2 { font-size: 27px; letter-spacing: -0.02em; margin: 44px 0 14px; scroll-margin-top: 110px; }
.post__body a:not(.btn) { color: var(--blue); text-decoration: underline; text-decoration-color: var(--blue-100); text-underline-offset: 3px; }
.post__body a:not(.btn):hover { text-decoration-color: var(--blue); }
.post__body ul, .post__body ol { padding-left: 22px; }
.post__body li { margin-bottom: 8px; }
.post__body li::marker { color: var(--blue); font-weight: 700; }
.post__body strong, .post__body li b { font-weight: 700; }
.callout { border-radius: 20px; background: var(--blue-50); border: 1px solid var(--blue-100); padding: 22px 26px; margin-bottom: 28px; scroll-margin-top: 110px; }
.callout > b { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--blue); margin-bottom: 8px; }
.callout p { margin: 0 0 14px; }
.score { display: flex; align-items: center; gap: 12px; }
.score > span { display: inline-flex; align-items: baseline; gap: 2px; padding: 6px 12px; border-radius: 12px; background: #fff; border: 1px solid var(--blue-100); color: var(--blue); font-weight: 600; }
.score b { font-size: 22px; }
.score small { color: var(--ink-2); font-size: 13.5px; }
.post__fig { margin: 8px 0 28px; }
.post__fig img { width: 100%; height: auto; border-radius: 18px; display: block; border: 1px solid var(--line); }
.table-wrap { overflow-x: auto; margin: 0 0 20px; border-radius: 16px; border: 1px solid var(--line); -webkit-overflow-scrolling: touch; }
.post__table { width: 100%; border-collapse: collapse; font-size: 15px; line-height: 1.45; min-width: 520px; }
.post__table th, .post__table td { padding: 12px 16px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.post__table thead th { background: var(--bg-2); font-size: 12.5px; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-3); font-weight: 700; }
.post__table tbody tr:last-child td { border-bottom: 0; }
.post__table tbody tr:nth-child(even) td { background: #fafbfd; }
.post__table td.is-hl { background: var(--blue-50) !important; font-weight: 500; }
.post__table th.is-hl { color: var(--blue); }
.post__table caption { caption-side: top; text-align: left; padding: 10px 16px; font-size: 12.5px; font-weight: 600; color: var(--ink-3); background: #fff; border-bottom: 1px solid var(--line); }
.tldr { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 0 0 26px; }
.tldr__cell { display: flex; flex-direction: column; gap: 3px; padding: 14px 16px; border-radius: 16px; background: var(--blue-50); border: 1px solid var(--blue-100); }
.tldr__cell b { font-size: 22px; letter-spacing: -0.02em; color: var(--blue); line-height: 1.1; }
.tldr__cell small { font-size: 12.5px; color: var(--ink-2); font-weight: 500; line-height: 1.35; }
.tip { padding: 14px 18px; border-radius: 14px; background: var(--amber-50); border: 1px solid #f5dcaa; color: #6b4400; font-size: 15.5px; line-height: 1.55; margin: 0 0 22px; }
.tip a { color: inherit; }
.t-tab__n { font-size: 11px; font-weight: 700; opacity: .55; margin-left: 2px; }
.blog-toolbar { display: flex; justify-content: center; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.blog-search { display: flex; align-items: center; gap: 8px; height: 44px; padding: 0 14px; border-radius: var(--radius-pill); background: var(--bg-2); border: 1.5px solid transparent; min-width: 220px; transition: border-color 150ms ease-out, box-shadow 200ms ease-out, background-color 150ms ease-out; }
.blog-search:focus-within { background: #fff; border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-50); }
.blog-search svg { width: 18px; height: 18px; color: var(--ink-3); flex: none; }
.blog-search input { border: 0; background: transparent; font: inherit; font-size: 14.5px; outline: none; width: 100%; color: var(--ink); }
.blog-search input::-webkit-search-cancel-button { -webkit-appearance: none; }
/* blog pager — numbered page switcher under the grid */
.pager { display: flex; justify-content: center; align-items: center; gap: 6px; margin-top: 40px; flex-wrap: wrap; }
.pager[hidden] { display: none; }
.pager__btn { min-width: 42px; height: 42px; padding: 0 12px; border-radius: var(--radius-pill); border: 1px solid var(--line); background: #fff; color: var(--ink); font: inherit; font-size: 14.5px; font-weight: 600; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: background-color 150ms ease-out, border-color 150ms ease-out, color 150ms ease-out, transform 150ms ease-out; }
.pager__btn:hover:not(:disabled) { border-color: var(--blue); color: var(--blue); transform: translateY(-1px); }
.pager__btn:disabled { opacity: .4; cursor: default; }
.pager__btn svg { width: 18px; height: 18px; }
.pager__num[aria-current="page"] { --c: var(--blue); background: var(--chip-solid); color: #fff; border-color: transparent; box-shadow: var(--chip-solid-shadow); }
.pager__gap { color: var(--ink-3); padding: 0 4px; }
@media (max-width: 560px) { .pager { gap: 4px; } .pager__btn { min-width: 38px; height: 38px; padding: 0 10px; font-size: 13.5px; } }
@media (max-width: 640px) { .tldr { grid-template-columns: 1fr; gap: 8px; } .tldr__cell { flex-direction: row; align-items: baseline; justify-content: space-between; padding: 10px 14px; } .tldr__cell b { font-size: 18px; } .blog-search { width: 100%; } }
.steps-list li::marker { font-weight: 800; }
.checks-list { list-style: none; padding-left: 0 !important; }
.checks-list li { padding: 12px 16px; border-radius: 14px; background: var(--bg-2); }
.cta-inline { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 26px; border-radius: 20px; background: linear-gradient(180deg, #fff, var(--blue-50)); border: 1px solid var(--blue-100); margin: 8px 0 32px; }
.cta-inline b { display: block; font-size: 17px; }
.cta-inline small { color: var(--ink-2); font-size: 14px; }
.glossary { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 20px; margin: 0 0 24px; }
.glossary dt { font-weight: 700; font-size: 15px; }
.glossary dd { margin: 2px 0 0; font-size: 14.5px; color: var(--ink-2); line-height: 1.5; }
.glossary > div, .glossary dt { grid-column: span 1; }
.glossary dt + dd { margin-bottom: 0; }
.post__faq { max-width: none; }
.post__faq .faq__q { font-size: 16px; }
.post__sources { margin: 40px 0 28px; padding: 22px 24px; border-radius: 18px; background: var(--bg-2); font-size: 14.5px; }
.post__sources > b { display: block; margin-bottom: 8px; }
.post__sources ul { margin: 0 0 12px; padding-left: 20px; }
.post__sources li { margin-bottom: 4px; }
.post__disclosure { margin: 0; color: var(--ink-3); font-size: 13px; line-height: 1.55; }
.post__author { display: flex; align-items: center; gap: 14px; padding-top: 24px; border-top: 1px solid var(--line); }
.post__author .avatar { width: 48px; height: 48px; font-size: 16px; }
.post__author p { margin: 2px 0 0; font-size: 14px; color: var(--ink-2); line-height: 1.5; }
.post__related { padding: 24px 24px 96px; }
.post__related h2 { font-size: 26px; letter-spacing: -0.02em; margin: 0 0 22px; }
.postbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; background: var(--blue); color: #fff; box-shadow: 0 -8px 30px rgba(0, 30, 120, .18); transform: translateY(110%); transition: transform 380ms var(--ease-smooth-out); }
.postbar[data-state="shown"] { transform: none; }
.postbar__inner { display: flex; align-items: center; gap: 18px; padding-top: 12px; padding-bottom: 12px; }
.postbar__stars { font-size: 14px; letter-spacing: .05em; color: #ffd34d; display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.postbar__stars small { color: rgba(255, 255, 255, .85); letter-spacing: 0; font-size: 12.5px; }
.postbar__text { flex: 1; font-size: 15px; }
.postbar .btn { --pill-pad-y: 1rem; --pill-pad-x: 1.3rem; }
body.has-postbar { padding-bottom: 72px; }
@media (max-width: 1024px) { .posts { grid-template-columns: repeat(2, 1fr); } .post__grid { grid-template-columns: 1fr; gap: 32px; } .post__side { position: static; order: 2; } .post__toc { display: none; } .post__body { max-width: none; } }
/* mobile TOC (injected by main.js on ≤1024px) */
.post__mtoc { margin: 0 0 22px; border: 1px solid var(--line); border-radius: 16px; background: #fff; overflow: hidden; }
.post__mtoc summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 14px 16px; font-size: 14px; font-weight: 700; cursor: pointer; -webkit-tap-highlight-color: transparent; }
.post__mtoc summary::-webkit-details-marker { display: none; }
.post__mtoc summary::after { content: ""; width: 9px; height: 9px; border-right: 2px solid var(--ink-3); border-bottom: 2px solid var(--ink-3); transform: rotate(45deg) translateY(-2px); transition: transform 200ms ease-out; }
.post__mtoc[open] summary::after { transform: rotate(-135deg) translateY(-2px); }
.post__mtoc[open] summary { border-bottom: 1px solid var(--line); }
.post__mtoc ol { margin: 0; padding: 8px 16px 12px 34px; counter-reset: toc; }
.post__mtoc li { margin: 0; padding: 5px 0; font-size: 14.5px; line-height: 1.4; }
.post__mtoc li::marker { color: var(--blue); font-weight: 700; }
.post__mtoc a { color: var(--ink-2); text-decoration: none !important; }
.post__mtoc a:hover { color: var(--blue); }
.table-wrap { position: relative; }
.table-wrap[data-scroll="true"]::after { content: "Swipe →"; position: absolute; right: 10px; top: 8px; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-3); background: #fff; padding: 2px 8px; border-radius: 999px; border: 1px solid var(--line); pointer-events: none; }
@media (max-width: 1024px) { .post__toc { display: none; } }
@media (max-width: 640px) {
  .posts, .posts--3 { grid-template-columns: 1fr; }
  .blog-cta { flex-direction: column; text-align: center; padding: 32px 24px; }
  .glossary { grid-template-columns: 1fr; }
  .cta-inline { flex-direction: column; text-align: center; padding: 20px 18px; }
  .cta-inline .btn { width: 100%; }
  .postbar__stars, .postbar__text { display: none; }
  .postbar__inner { justify-content: center; }
  .postbar .btn { width: 100%; }
  .post__hero { padding-top: calc(var(--nav-h) + 4px); }
  .post__hero .container, .post__grid { padding-left: 18px; padding-right: 18px; }
  .crumbs { font-size: 12.5px; margin-bottom: 12px; }
  .post__title { font-size: 30px; margin: 10px 0 12px; }
  .post__lede { font-size: 16.5px; line-height: 1.5; margin-bottom: 16px; }
  .post__meta { margin-bottom: 18px; }
  .tldr { margin-bottom: 18px; }
  .post__cover img { border-radius: 16px; }
  .post__cover figcaption { display: none; }
  .post__grid { padding-top: 24px; gap: 24px; }
  .post__body { font-size: 16px; line-height: 1.65; }
  .post__body h2 { font-size: 23px; margin: 34px 0 12px; }
  .callout { padding: 16px 18px; border-radius: 16px; margin-bottom: 22px; }
  .callout p { font-size: 15.5px; }
  .score { flex-wrap: wrap; }
  .tip { font-size: 14.5px; padding: 12px 14px; }
  .post__table { font-size: 14px; min-width: 480px; }
  .post__table th, .post__table td { padding: 10px 12px; }
  .steps-list, .post__body ul, .post__body ol { padding-left: 20px; }
  .post__sources { padding: 18px 16px; font-size: 14px; }
  .post__promo { padding: 20px 18px; }
  .post__promo h3 { font-size: 16.5px; }
  .post__related { padding: 8px 18px 72px; }
  .post__related h2 { font-size: 23px; }
  .post__author { align-items: flex-start; }
  body.has-postbar { padding-bottom: 84px; }
  .blog-section { padding-top: 36px; }
  .blog-toolbar { margin-bottom: 22px; gap: 10px; }
  .blog-tabs { max-width: 100%; }
  .post-card__body { padding: 16px 16px 18px; }
  .post-card__body b { font-size: 17px; }
}

/* ---------- Settlements directory (settlements.html) ---------- */
.sdir { padding: calc(var(--nav-h) + 40px) 0 60px; }
.sdir__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; margin-bottom: 36px; }
.sdir__title { font-size: clamp(38px, 5.4vw, 62px); letter-spacing: -0.035em; line-height: 1.02; margin: 0 0 14px; font-weight: 800; }
.sdir__lede { margin: 0; max-width: 760px; font-size: 19px; line-height: 1.5; color: var(--ink-2); }
.sdir__stat { flex: none; display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 20px 26px; border-radius: 18px; background: var(--bg-2); min-width: 170px; }
.sdir__stat b { font-size: 34px; color: var(--blue); letter-spacing: -0.03em; line-height: 1; }
.sdir__stat small { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-2); }
.sdir__search { display: flex; align-items: center; gap: 12px; max-width: 1000px; margin: 0 auto 18px; padding: 8px 8px 8px 22px; border-radius: var(--radius-pill); background: var(--bg-2); border: 1.5px solid transparent; transition: border-color 150ms ease-out, box-shadow 200ms ease-out, background-color 150ms ease-out; }
.sdir__search:focus-within { background: #fff; border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-50); }
.sdir__search svg { width: 22px; height: 22px; color: var(--ink-3); flex: none; }
.sdir__search input { flex: 1; min-width: 0; border: 0; background: transparent; font: inherit; font-size: 17px; color: var(--ink); outline: none; height: 44px; }
.sdir__search input::placeholder { color: var(--ink-4); }
.sdir__search input::-webkit-search-cancel-button { -webkit-appearance: none; }
.sdir__search .btn { --pill-pad-y: 1rem; --pill-pad-x: 1.4rem; }
.sdir__chips { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.schip { height: 38px; padding: 0 16px; border-radius: var(--radius-pill); border: 1px solid var(--blue-100); background: linear-gradient(180deg, #fff, var(--blue-50)); color: var(--blue); font: inherit; font-size: 14px; font-weight: 600; cursor: pointer; box-shadow: inset 0 1px 0 #fff, 0 1px 2px rgba(18, 18, 18, .05); transition: background-color 150ms ease-out, color 150ms ease-out, border-color 150ms ease-out, transform 150ms ease-out, box-shadow 150ms ease-out; }
.schip:hover { border-color: var(--blue); transform: translateY(-1px); }
.schip[aria-pressed="true"] { --c: var(--blue); background: var(--chip-solid); color: #fff; border-color: transparent; box-shadow: var(--chip-solid-shadow); }
.sdir__grid { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 48px; align-items: start; }
.sdir__rail { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 2px; }
.sdir__rail a { padding: 8px 12px; border-radius: 10px; font-size: 15.5px; font-weight: 500; color: var(--ink-2); transition: background-color 150ms ease-out, color 150ms ease-out; }
.sdir__rail a:hover { background: var(--bg-2); color: var(--ink); }
.sdir__rail a.is-active { color: var(--blue); font-weight: 600; background: var(--blue-50); }
.sdir__bar { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.sdir__bar h2 { margin: 0; font-size: 30px; letter-spacing: -0.025em; }
.sdir__bar small { color: var(--ink-3); font-size: 15px; }
.scards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.scards--3 { grid-template-columns: repeat(3, 1fr); }
.scard { display: flex; flex-direction: column; gap: 10px; padding: 24px; border-radius: 22px; border: 1px solid var(--line); background: #fff; color: inherit; transition: transform 260ms var(--ease-smooth-out), box-shadow 260ms var(--ease-smooth-out), border-color 200ms ease-out; }
.scard:hover { transform: translateY(-3px); border-color: var(--blue-100); box-shadow: var(--shadow-md); }
.scard:hover .scard__title { color: var(--blue); }
.scard[hidden] { display: none; }
.scard__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 4px; }
.scard__logo { display: grid; place-items: center; width: 96px; height: 96px; border-radius: 26px; background: var(--c, var(--blue)); box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .05), 0 10px 24px -14px rgba(0, 0, 0, .45); }
.scard__logo img { width: 52%; height: 52%; filter: brightness(0) invert(1); }
.scards--3 .scard__logo { width: 64px; height: 64px; border-radius: 18px; }
.scard__status { display: inline-flex; align-items: center; gap: 6px; height: 26px; padding: 0 12px; border-radius: var(--radius-pill); font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; background: var(--bg-2); color: var(--ink-2); white-space: nowrap; }
.scard__status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.scard__status--closing { background: var(--amber-50); color: #b26a00; }
.scard__status--new { background: var(--blue-50); color: var(--blue); }
.scard__status--open { background: var(--green-50); color: #0b7a3b; }
.scard__status--closed { background: var(--bg-2); color: var(--ink-3); }
.scard__title { font-size: 22px; letter-spacing: -0.015em; line-height: 1.25; transition: color 150ms ease-out; }
.scards--3 .scard__title { font-size: 17px; }
.scard__payout { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.scard__payout > span:first-child { font-size: 34px; font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; }
.scards--3 .scard__payout > span:first-child { font-size: 22px; }
.scard__meta { display: flex; flex-direction: column; gap: 8px; margin-top: 6px; padding-top: 14px; border-top: 1px solid var(--line); color: var(--ink-2); font-size: 14.5px; font-weight: 500; }
.scard__row { display: inline-flex; align-items: center; gap: 8px; }
.scard__row svg { width: 17px; height: 17px; color: var(--ink-3); }
.scard__row--claimed svg { color: var(--amber); }
.sdir__review { margin-top: 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 32px 56px; padding: 40px 44px; border-radius: 28px; background: var(--bg-2); }
.sdir__review h2 { margin: 0 0 10px; font-size: 28px; letter-spacing: -0.02em; }
.sdir__review p { margin: 0; color: var(--ink-2); font-size: 16.5px; line-height: 1.55; }
.sdir__review ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 14px; }
.sdir__review li { position: relative; padding-left: 22px; font-size: 16px; line-height: 1.5; }
.sdir__review li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); }
.postbar--static { position: sticky; transform: none; margin-top: 40px; }
.postbar--static .postbar__text { font-weight: 500; }
.postbar--static strong { font-weight: 800; }
@media (max-width: 1024px) { .sdir__grid { grid-template-columns: 1fr; gap: 20px; } .sdir__rail { position: static; flex-direction: row; flex-wrap: wrap; gap: 6px; } .sdir__rail a { background: var(--bg-2); font-size: 13.5px; padding: 7px 12px; } .sdir__review { grid-template-columns: 1fr; padding: 30px; } }
@media (max-width: 720px) { .sdir { padding-top: calc(var(--nav-h) + 8px); } .sdir__head { flex-direction: column; gap: 18px; } .sdir__stat { flex-direction: row; gap: 10px; align-items: baseline; padding: 12px 18px; min-width: 0; } .sdir__stat b { font-size: 24px; } .scards, .scards--3 { grid-template-columns: 1fr; } .sdir__search { padding-left: 16px; } .sdir__search .btn { --pill-pad-x: 1rem; } .scard__logo { width: 72px; height: 72px; border-radius: 20px; } .scard__payout > span:first-child { font-size: 28px; } .postbar--static .postbar__text { display: block; font-size: 13.5px; } .postbar--static .postbar__inner { justify-content: space-between; } .postbar--static .btn { width: auto; } }

/* ---------- Settlement detail (settlements/*.html) ---------- */
.sdet { padding: calc(var(--nav-h) + 28px) 0 80px; }
.sdet__grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 56px; align-items: start; }
.sdet__head { display: flex; align-items: center; gap: 24px; margin: 6px 0 22px; }
.sdet__head small { display: block; font-size: 17px; color: var(--ink-2); margin-bottom: 4px; }
.sdet__head h1 { margin: 0; font-size: clamp(32px, 4.6vw, 54px); letter-spacing: -0.035em; line-height: 1.04; font-weight: 800; }
.sdet__logo { flex: none; display: grid; place-items: center; width: 120px; height: 120px; border-radius: 32px; background: var(--c, var(--blue)); box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .05), 0 16px 34px -18px rgba(0, 0, 0, .5); }
.sdet__logo img { width: 54%; height: 54%; filter: brightness(0) invert(1); }
.sdet__summary { font-size: 19px; line-height: 1.55; color: var(--ink-2); margin: 0 0 18px; }
.sdet__meta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; color: var(--ink-3); font-size: 15px; margin: 0 0 22px; }
.sdet__claimed { display: inline-flex; align-items: center; gap: 6px; color: var(--ink-2); font-weight: 600; }
.sdet__claimed svg { width: 16px; height: 16px; color: var(--amber); }
.sdet__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.sdet__actions .btn svg { width: 18px; height: 18px; }
.sdet__closed { padding: 14px 18px; border-radius: 14px; background: var(--amber-50); color: #8a5200; font-size: 14.5px; line-height: 1.5; margin-bottom: 24px; border: 1px solid #f5dcaa; }
.sdet__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 44px; }
.stat3 { display: flex; flex-direction: column; gap: 6px; padding: 22px 24px; border-radius: 18px; background: var(--bg-2); }
.stat3 b { font-size: 26px; letter-spacing: -0.025em; line-height: 1.1; }
.stat3:first-child b { color: var(--blue); }
.stat3 small { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
.sdet__main h2 { font-size: 30px; letter-spacing: -0.025em; margin: 0 0 18px; }
.facts { border: 1px solid var(--line); border-radius: 18px; overflow: hidden; margin-bottom: 40px; }
.facts__row { display: grid; grid-template-columns: 230px 1fr; gap: 16px; padding: 16px 24px; border-bottom: 1px solid var(--line); font-size: 16px; line-height: 1.45; }
.facts__row:last-child { border-bottom: 0; }
.facts__row:nth-child(even) { background: #fafbfd; }
.facts__row span { color: var(--ink-3); }
.facts__row b { font-weight: 600; }
.sdet__body { font-size: 18px; line-height: 1.7; color: var(--ink); margin: 0 0 36px; }
.sdet__body p { margin: 0 0 18px; }
p.sdet__body { margin-bottom: 28px; }
.sdet__cta { display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; padding: 34px 32px; border-radius: 22px; background: var(--bg-2); margin: 0 0 44px; }
.sdet__cta p { margin: 0; max-width: 620px; font-size: 17px; line-height: 1.55; }
.sdet__steps { font-size: 16.5px; line-height: 1.6; padding-left: 22px; margin: 0 0 44px; }
.sdet__steps li { margin-bottom: 10px; }
.sdet__steps li::marker { color: var(--blue); font-weight: 800; }
.sdet__related { margin-bottom: 40px; }
.sdet__related-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.sdet__related-head h2 { margin: 0; }
.sdet__related-head a { color: var(--blue); font-weight: 600; }
.sdet__disclaimer { padding-top: 28px; border-top: 1px solid var(--line); color: var(--ink-3); font-size: 14px; line-height: 1.6; }
.sdet__disclaimer p { margin: 0 0 12px; }
.sdet__disclaimer a { color: var(--blue); font-weight: 600; }
.sdet__side { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 18px; }
.sdet__promo { display: flex; flex-direction: column; gap: 12px; padding: 34px 30px; border-radius: 26px; background: linear-gradient(160deg, var(--blue) 0%, #2d6dff 100%); color: #fff; box-shadow: var(--shadow-blue); }
.sdet__promo img { width: 40px; height: 35px; margin-bottom: 6px; }
.sdet__promo h3 { margin: 0; font-size: 25px; letter-spacing: -0.02em; line-height: 1.18; }
.sdet__promo p { margin: 0 0 14px; color: rgba(255, 255, 255, .85); font-size: 15.5px; line-height: 1.5; }
.sdet__browse { padding: 26px 24px; border-radius: 22px; background: var(--bg-2); }
.sdet__browse h3 { margin: 0 0 6px; font-size: 19px; letter-spacing: -0.01em; }
.sdet__browse p { margin: 0 0 16px; color: var(--ink-2); font-size: 14.5px; line-height: 1.5; }
.sdet__cats { display: flex; flex-direction: column; gap: 8px; }
.sdet__cats a { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; border-radius: 12px; background: #fff; border: 1px solid var(--line); font-weight: 600; font-size: 15px; color: var(--ink); transition: border-color 150ms ease-out, transform 150ms ease-out; }
.sdet__cats a:hover { border-color: var(--blue-100); transform: translateX(2px); }
.sdet__cats a span { color: var(--ink-3); }
.sdet__all { display: inline-block; margin-top: 14px; color: var(--blue); font-weight: 600; }
@media (max-width: 1024px) { .sdet__grid { grid-template-columns: 1fr; gap: 32px; } .sdet__side { position: static; } }
@media (max-width: 720px) { .sdet { padding-top: calc(var(--nav-h) + 4px); } .sdet__head { gap: 16px; } .sdet__logo { width: 76px; height: 76px; border-radius: 22px; } .sdet__stats { grid-template-columns: 1fr; } .facts__row { grid-template-columns: 1fr; gap: 4px; padding: 14px 18px; } .sdet__actions .btn { flex: 1; } .sdet__main h2 { font-size: 25px; } .sdet__body { font-size: 16.5px; } .sdet__cta { padding: 26px 20px; } }

/* ---------- 404 ---------- */
.nf { min-height: calc(100vh - 120px); display: flex; align-items: center; padding: calc(var(--nav-h) + 40px) 0 80px; }
.nf__inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px; }
.nf__eyes { display: flex; gap: 12px; margin-bottom: 14px; }
.nf__eye { position: relative; width: 54px; height: 88px; border-radius: 50%; background: var(--blue); box-shadow: var(--shadow-blue); animation: nf-blink 5s infinite; }
.nf__eye i { position: absolute; left: 10px; top: 32px; width: 16px; height: 16px; border-radius: 50%; background: #fff; animation: nf-look 6s ease-in-out infinite; }
.nf__eye:nth-child(2) { animation-delay: .12s; }
.nf__eye:nth-child(2) i { animation-delay: .05s; }
@keyframes nf-look { 0%, 20% { transform: translate(0, 0); } 30%, 45% { transform: translate(18px, -10px); } 55%, 70% { transform: translate(6px, 14px); } 80%, 100% { transform: translate(0, 0); } }
@keyframes nf-blink { 0%, 92%, 100% { transform: scaleY(1); } 95% { transform: scaleY(.08); } }
.nf__title { margin: 0; font-size: clamp(40px, 6vw, 68px); letter-spacing: -0.04em; font-weight: 800; line-height: 1; }
.nf__lede { margin: 0; font-size: 19px; color: var(--ink-2); }
.nf__actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 10px; }
.nf__links { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; margin-top: 18px; font-size: 14.5px; }
.nf__links a { color: var(--ink-3); font-weight: 500; }
.nf__links a:hover { color: var(--blue); }
@media (prefers-reduced-motion: reduce) { .nf__eye, .nf__eye i { animation: none; } }

/* ---------- Affiliates (affiliates.html) ---------- */
.aff-stats { padding: 0 0 72px; margin-top: -36px; position: relative; z-index: 1; }
.aff-stats__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.aff-stat { display: flex; flex-direction: column; gap: 6px; padding: 24px 26px; border-radius: 22px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.aff-stat b { font-size: 32px; letter-spacing: -0.03em; line-height: 1; color: var(--blue); }
.aff-stat small { font-size: 13.5px; line-height: 1.4; color: var(--ink-2); font-weight: 500; }
.aff-how { padding-top: 24px; }
.section__head--left { text-align: left; margin-left: 0; }
.aff-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 48px; align-items: center; }
.aff-steps { display: flex; flex-direction: column; gap: 14px; }
.aff-step { border-radius: 22px; border: 1px solid var(--line); background: #fff; transition: background-color 250ms ease-out, border-color 250ms ease-out, box-shadow 250ms ease-out; }
.aff-step[data-open="true"] { background: var(--blue-50); border-color: var(--blue-100); box-shadow: inset 0 1px 0 #fff; }
.aff-step__head { width: 100%; display: flex; align-items: center; gap: 16px; padding: 20px 22px; border: 0; background: transparent; cursor: pointer; text-align: left; font: inherit; color: var(--ink-4); transition: color 250ms ease-out; }
.aff-step__head:hover { color: var(--ink-2); }
.aff-step[data-open="true"] .aff-step__head { color: var(--ink); cursor: default; }
.aff-step__ic { flex: none; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px; background: var(--bg-2); color: var(--ink-4); transition: background-color 250ms ease-out, color 250ms ease-out; }
.aff-step__ic svg { width: 22px; height: 22px; }
.aff-step[data-open="true"] .aff-step__ic { background: var(--blue); color: #fff; box-shadow: var(--shadow-blue); }
.aff-step__title { font-size: 22px; font-weight: 600; letter-spacing: -0.015em; }
.aff-step__body { margin: 0; padding: 0 22px 22px 78px; color: var(--ink-2); font-size: 16px; line-height: 1.6; }
.aff-stage { position: relative; aspect-ratio: 1.18 / 1; border-radius: 32px; overflow: hidden; background: linear-gradient(145deg, var(--blue) 0%, #2d6dff 55%, #7aa4ff 100%); box-shadow: var(--shadow-blue); }
.aff-stage::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 15%, rgba(255, 255, 255, .35), transparent 45%), repeating-linear-gradient(0deg, rgba(255, 255, 255, .06) 0 1px, transparent 1px 56px), repeating-linear-gradient(90deg, rgba(255, 255, 255, .06) 0 1px, transparent 1px 56px); }
.aff-visual { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px; opacity: 0; transform: translateY(14px) scale(.96); filter: blur(6px); transition: opacity 380ms var(--ease-smooth-out), transform 480ms var(--ease-smooth-out), filter 380ms ease-out; pointer-events: none; }
.aff-visual[data-active="true"] { opacity: 1; transform: none; filter: none; }
.aff-visual img { width: 44%; height: auto; filter: drop-shadow(0 30px 40px rgba(0, 20, 90, .45)); animation: aff-float 5s ease-in-out infinite; }
@keyframes aff-float { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-12px) rotate(2deg); } }
.aff-visual__card { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 14px 26px; border-radius: 18px; background: rgba(255, 255, 255, .92); color: var(--ink); box-shadow: var(--shadow-lg); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.aff-visual__card b { font-size: 22px; letter-spacing: -0.02em; }
.aff-visual__card small { color: var(--ink-3); font-size: 13px; font-weight: 500; }
.aff-who__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.aff-who__card { display: flex; flex-direction: column; gap: 8px; padding: 26px 24px; border-radius: 22px; background: #fff; border: 1px solid var(--line); }
.aff-who__card span { font-size: 28px; line-height: 1; margin-bottom: 6px; }
.aff-who__card b { font-size: 18px; letter-spacing: -0.01em; }
.aff-who__card p { margin: 0; color: var(--ink-2); font-size: 14.5px; line-height: 1.55; }
.aff-faq { padding-top: 80px; }
@media (max-width: 1024px) { .aff-stats__row { grid-template-columns: repeat(2, 1fr); } .aff-grid { grid-template-columns: 1fr; } .aff-stage { order: -1; aspect-ratio: 16 / 10; } .aff-who__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .aff-stats__row, .aff-who__grid { grid-template-columns: 1fr; } .aff-stat b { font-size: 26px; } .aff-step__title { font-size: 18px; } .aff-step__head { padding: 16px 18px; gap: 12px; } .aff-step__body { padding-left: 18px; } .aff-stage { aspect-ratio: 4 / 3; border-radius: 24px; } .aff-visual img { width: 50%; } }

/* ---------- Settlement detail — centered Poppi-style layout ---------- */
.sdet--center .sdet__main { max-width: 660px; margin: 0 auto; }
.sdet--center .crumbs { justify-content: center; }
.sdet--center .sdet__head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; margin: 10px 0 26px; }
.sdet__logo-ring { display: inline-grid; place-items: center; padding: 10px; border-radius: 30px; background: #fff; border: 1.5px solid var(--line); box-shadow: var(--shadow-sm); }
.sdet--center .sdet__logo { width: 84px; height: 84px; border-radius: 22px; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .05); }
.sdet--center .sdet__head h1 { margin: 6px 0 0; font-size: clamp(26px, 4vw, 34px); letter-spacing: -0.03em; line-height: 1.1; font-weight: 800; text-wrap: balance; }
.sdet__cat { margin: 0; color: var(--ink-3); font-size: 14.5px; font-weight: 500; }
.sdet__chips { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.sdet__due { display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px; border-radius: var(--radius-pill); background: var(--bg-2); color: var(--ink-2); font-size: 11.5px; font-weight: 800; }
.sdet--center .sdet__notice { margin: 6px 0 0; }
.sdet--center .sdet__meta { justify-content: center; margin: 4px 0 0; }
.sdet--center .sdet__main h2 { font-size: 22px; margin: 34px 0 12px; }
.sdet--center .sdet__body { font-size: 16.5px; margin-bottom: 8px; }
.sdet--center .facts__row { grid-template-columns: 200px 1fr; }
/* floating payout bubble — all sizes */
body.has-sdetbar .sdet { padding-bottom: 140px; }
.sdet__bar { position: fixed; left: 50%; bottom: 14px; translate: -50% 0; z-index: 40; width: min(600px, calc(100% - 24px)); display: flex; align-items: center; gap: 10px; padding: 13px 14px 13px 20px; border-radius: 24px; background: linear-gradient(180deg, #fdfdff, var(--blue-50)); border: 1px solid var(--blue-100); box-shadow: 0 18px 44px -14px rgba(0, 40, 140, .35), inset 0 1px 0 #fff; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.sdet__bar-amt { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.sdet__bar-amt small { font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); }
.sdet__bar-amt b { font-size: 21px; letter-spacing: -0.025em; color: var(--blue); line-height: 1.15; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sdet__bar .btn { --pill-pad-y: 1rem; --pill-pad-x: 1.2rem; flex: none; }
.sdet__bar-claim { min-width: 104px; justify-content: center; }

/* ---------- Settlement detail: review pipeline + mobile sticky payout bar ---------- */
.sdet__pipe { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 0 0 40px; position: relative; }
.sdet__pipe::before { content: ""; position: absolute; left: 12.5%; right: 12.5%; top: 8px; height: 3px; border-radius: 3px; background: var(--line); }
.sdet__pipe-step { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 3px; padding-top: 22px; }
.sdet__pipe-step i { position: absolute; top: 1px; width: 17px; height: 17px; border-radius: 50%; background: #fff; border: 3px solid var(--line-strong); }
.sdet__pipe-step.is-now i { border-color: var(--blue); background: var(--blue); box-shadow: 0 0 0 5px var(--blue-50); }
.sdet__pipe-step b { font-size: 13.5px; letter-spacing: -0.01em; }
.sdet__pipe-step.is-now b { color: var(--blue); }
.sdet__pipe-step small { font-size: 11.5px; color: var(--ink-3); }
.sdet__notice { display: inline-flex; align-items: center; gap: 7px; padding: 9px 16px; border-radius: var(--radius-pill); background: linear-gradient(180deg, #fff, var(--blue-50)); border: 1px solid var(--blue-100); color: var(--blue); font-weight: 700; font-size: 13.5px; box-shadow: inset 0 1px 0 #fff, 0 1px 2px rgba(18, 18, 18, .05); margin: 0 0 16px; }
@media (max-width: 720px) {
  .sdet__pipe { margin-bottom: 28px; }
  .sdet__pipe-step small { display: none; }
  .sdet--center .facts__row { grid-template-columns: 1fr; gap: 4px; }
  .sdet__bar { bottom: 10px; padding: 11px 12px 11px 16px; }
  .sdet__bar .btn { --pill-pad-y: 0.95rem; --pill-pad-x: 1rem; --pill-font: 12.5px; }
  .sdet__bar-share { --pill-pad-x: 0.85rem; }
  .sdet__bar-amt b { font-size: 18px; }
}
body.has-sdetbar .devbar { bottom: 104px; }

@media (max-width: 880px) {
  .nav__actions .nav__cta { display: none; }   /* mobile top nav: burger only */
}
@media (max-width: 640px) {
  /* sticky claim bar: keep every line readable */
  .sticky__inner { gap: 10px; }
  .sticky__case { flex: 1; min-width: 0; }
  .sticky__meta { min-width: 0; flex: 1; }
  .sticky__label { font-size: 10px; }
  .sticky__line { display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 14px; }
  .sticky__deadline { display: none; }
  .sticky__actions .btn { --pill-pad-y: .85rem; --pill-pad-x: .95rem; --pill-font: 11.5px; white-space: nowrap; }
  .sticky__tile { width: 38px; height: 38px; }
}

/* Social proof — avatar stack + "Loved by" pill (all sizes; replaced the laurels) */
.hero__loved { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 28px; }
.hero__loved-avs { display: flex; }
.hero__loved-avs img { width: 54px; height: 54px; border-radius: 50%; border: 3px solid #fff; object-fit: cover; background: #dbe5ff; margin-left: -14px; box-shadow: 0 6px 14px rgba(0, 20, 90, .28); }
.hero__loved-avs img:first-child { margin-left: 0; }
.hero__loved-pill { display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px 12px 16px; border-radius: var(--radius-pill); background: #fff; color: var(--blue); font-size: 16px; font-weight: 600; letter-spacing: -0.01em; line-height: 1; white-space: nowrap; box-shadow: 0 12px 28px -12px rgba(0, 20, 90, .5); }
.hero__loved-pill b { font-weight: 800; }
.hero__loved-pill svg { width: 18px; height: 18px; fill: var(--blue); flex: none; }
@media (max-width: 880px) {
  .hero__loved { align-items: center; width: 100%; margin-bottom: 22px; }
}

/* Mobile hero: center the copy under the avatar stack */
@media (max-width: 880px) {
  .hero__copy { text-align: center; align-items: center; }
  .hero__title, .hero__lede, .hero__cta { margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }
}

/* Post ↔ settlement cross-links */
.post__settle { display: flex; align-items: center; gap: 14px; margin: 26px 0; padding: 16px 18px; border: 1px solid var(--line); border-radius: 18px; background: var(--bg); box-shadow: var(--shadow-sm); }
.post__settle-logo { flex: none; width: 48px; height: 48px; border-radius: 14px; background: var(--c, var(--blue)); display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 20px; }
.post__settle-logo img { width: 28px; height: 28px; filter: brightness(0) invert(1); }
.post__settle-txt { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.post__settle-txt small { font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--green); }
.post__settle-txt b { font-size: 16px; letter-spacing: -0.01em; }
.post__settle-txt span { font-size: 13px; color: var(--ink-3); }
.post__settle .btn { flex: none; }
@media (max-width: 640px) { .post__settle { flex-wrap: wrap; } .post__settle .btn { width: 100%; justify-content: center; } }
.sdet__reads { margin-top: 34px; }
.sdet__reads h2 { font-size: 20px; letter-spacing: -0.02em; margin-bottom: 12px; }
.sdet__reads ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.sdet__reads a { display: flex; align-items: center; gap: 12px; padding: 13px 16px; border: 1px solid var(--line); border-radius: 14px; background: var(--bg); color: var(--ink); text-decoration: none; transition: border-color 150ms ease-out, transform 150ms ease-out; }
.sdet__reads a:hover { border-color: var(--blue); transform: translateY(-1px); }
.sdet__reads b { flex: 1; font-size: 15px; letter-spacing: -0.01em; }
.sdet__read-cat { flex: none; font-size: 10.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--blue); background: var(--blue-50); border-radius: var(--radius-pill); padding: 4px 9px; }
.sdet__reads i { width: 8px; height: 8px; border-right: 2px solid var(--ink-4); border-bottom: 2px solid var(--ink-4); transform: rotate(-45deg); flex: none; }
.sdet__updated { margin-top: 18px; font-size: 13px; color: var(--ink-3); }
