﻿/* ============================================================
   Loans NG — Site stylesheet
   Built fresh for the iOS app. Inspired by the in-app palette:
   acid lime, electric blue, deep black, and a coral accent.
   ============================================================ */

/* -------- Reset & base -------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: #0b0b0b; color-scheme: dark; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--bg-blue); outline-offset: 3px; }

h1, h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin: 0;
  text-transform: uppercase;
}
h3, h4 {
  font-family: var(--font-chunk);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin: 0;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.18; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); line-height: 1.18; }
h3 { font-size: clamp(1rem, 1.8vw, 1.2rem); line-height: 1.25; }
h4 { font-size: 0.95rem; line-height: 1.25; }

p { margin: 0 0 1em; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); line-height: 1.55; }

/* -------- Tokens -------- */
:root {
  --font-display: "Stalinist One", "Arial Black", system-ui, sans-serif;
  --font-chunk:   "Bungee", "Stalinist One", "Arial Black", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Light text on dark canvas. Old --ink kept as link/highlight ink color. */
  --ink: #f4f4f0;
  --ink-soft: rgba(244,244,240,0.78);
  --ink-muted: rgba(244,244,240,0.50);
  --ink-faint: rgba(244,244,240,0.30);

  /* Black canvas + small lifts for cards / panels */
  --bg: #0b0b0b;
  --bg-soft: #131318;
  --bg-elev: #1a1a22;
  --bg-elev-2: #22222c;
  --bg-black: #0b0b0b;

  /* Accent palette — used only pointwise */
  --bg-lime: #c8ff00;
  --bg-blue: #1a4cff;
  --bg-blue-deep: #0030d6;
  --bg-coral: #e8632e;

  /* Borders use a faint white on dark */
  --border:        rgba(255,255,255,0.10);
  --border-strong: rgba(255,255,255,0.18);

  --paper-line: rgba(255,255,255,0.12);

  /* Soft elevation — no more hard offset shadows */
  --shadow-1: 0 6px 18px -8px rgba(0,0,0,0.85);
  --shadow-2: 0 14px 30px -14px rgba(0,0,0,0.95);
  --shadow-3: 0 22px 44px -18px rgba(0,0,0,1);

  --radius-sm: 6px;
  --radius-md: 12px;

  --container: 1180px;
  --gutter: clamp(20px, 4vw, 40px);
}

/* -------- Layout helpers -------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(60px, 9vw, 120px); }
.section--tight { padding-block: clamp(40px, 6vw, 70px); }

/* All surfaces stay dark; the accent colors (lime, blue, coral) are no longer used as huge section fills. */
.surface-lime  { background: var(--bg-soft); color: var(--ink); }
.surface-black { background: var(--bg);      color: var(--ink); }
.surface-blue  { background: var(--bg-soft); color: var(--ink); }
.surface-soft  { background: var(--bg-soft); color: var(--ink); }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-chunk);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  margin: 0 0 18px;
  padding: 0;
  background: transparent;
  color: var(--bg-lime);
  border: 0;
  box-shadow: none;
  line-height: 1;
}
.kicker--lime  { color: var(--bg-lime); }
.kicker--white { color: var(--ink); }
.kicker--coral { color: var(--bg-coral); }
.kicker--blue  { color: #5a7bff; }
.kicker::before {
  content: "";
  width: 6px; height: 6px;
  background: currentColor;
  display: inline-block;
  border-radius: 50%;
}

/* -------- Skip link -------- */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--bg-black); color: #fff;
  padding: 10px 16px; z-index: 999;
}
.skip-link:focus { left: 12px; top: 12px; }

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 28px;
  font-family: var(--font-chunk);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  background: var(--bg-blue);
  color: #fff;
  box-shadow: 0 8px 24px -10px rgba(26,76,255,0.55);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s;
  cursor: pointer;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 14px 32px -12px rgba(26,76,255,0.65); background: #2a5cff; }
.btn:active { transform: translateY(0); }
.btn--lime { background: var(--bg-lime); color: #0b0b0b; box-shadow: 0 8px 24px -10px rgba(200,255,0,0.45); }
.btn--lime:hover { background: var(--bg-lime); box-shadow: 0 14px 32px -12px rgba(200,255,0,0.55); }
.btn--white { background: var(--ink); color: #0b0b0b; box-shadow: var(--shadow-1); }
.btn--white:hover { background: #fff; }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border-strong);
  box-shadow: none;
}
.btn--ghost:hover { background: var(--bg-elev); border-color: var(--ink); box-shadow: none; }
.btn--ghost.btn--on-dark { color: var(--ink); border-color: var(--border-strong); }
.btn--lg { padding: 18px 32px; font-size: 14px; letter-spacing: 0.1em; }

/* -------- Pixel decoration -------- */
.pixel-art {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.pixel-art .px {
  position: absolute;
  background: var(--bg-blue);
  border: 0;
  opacity: 0.55;
}

/* -------- Header / Nav -------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(11,11,11,0.78);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 14px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand__logo {
  width: 42px; height: 42px;
  border: 1px solid var(--border-strong);
  background: var(--bg-elev);
  display: grid; place-items: center;
  overflow: hidden;
}
.brand__logo img { width: 100%; height: 100%; object-fit: cover; }
.brand__name {
  font-family: var(--font-chunk);
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav a {
  text-decoration: none;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  border: 2px solid transparent;
  transition: background 0.15s, border-color 0.15s;
}
.nav a { color: var(--ink-soft); border: 0; padding: 8px 14px; }
.nav a:hover { background: var(--bg-elev); color: var(--ink); border-color: transparent; }
.nav a[aria-current="page"] {
  background: var(--bg-elev);
  color: var(--ink);
  border-color: transparent;
}
.nav__cta {
  margin-left: 8px;
  background: var(--bg-lime) !important;
  color: #0b0b0b !important;
  border: 0 !important;
  box-shadow: none;
  font-family: var(--font-chunk);
  font-size: 11px !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 18px !important;
  transition: transform 0.15s, background 0.15s;
}
.nav__cta:hover {
  background: var(--bg-lime) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px -8px rgba(200,255,0,0.35);
}
.nav__cta:active {
  transform: translateY(0);
  box-shadow: none;
}
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  background: transparent;
  border: 1px solid var(--border-strong);
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 8px; right: 8px; height: 2px;
  background: var(--ink);
  transition: transform 0.2s, top 0.2s, opacity 0.2s;
}
.nav-toggle span:nth-child(1) { top: 12px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: var(--bg-elev);
    padding: 18px var(--gutter) 22px;
    border-bottom: 1px solid var(--border);
  }
  .nav.is-open { display: flex; }
  .nav a { width: auto; text-align: center; }
  .nav__cta { margin-left: 0; margin-top: 10px; }
}

/* -------- Hero -------- */
.hero {
  position: relative;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  overflow: clip;
}
/* soft accent glows behind the mascot visual */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 38%, rgba(200,255,0,0.10), transparent 45%),
    radial-gradient(circle at 12% 88%, rgba(26,76,255,0.10), transparent 50%);
  pointer-events: none;
  z-index: 1;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  grid-template-areas:
    "head   visual"
    "body   visual";
  column-gap: clamp(28px, 5vw, 60px);
  row-gap: 22px;
  align-items: center;
  padding-block: clamp(70px, 11vw, 130px);
  /* room on the right so the bookmark drop-shadow + sway swing fully render. */
  padding-right: clamp(36px, 5vw, 70px);
  position: relative;
  z-index: 2;
}
.hero__head { grid-area: head; align-self: end; }
.hero__body { grid-area: body; align-self: start; }
.hero__visual { grid-area: visual; }
.hero h1 {
  font-size: clamp(1.3rem, 2.6vw, 2.05rem);
  line-height: 1.22;
  margin-bottom: 0;
}
.hero h1 .accent { color: var(--bg-blue); }
.hero__lead { font-size: clamp(1rem, 1.55vw, 1.15rem); max-width: 540px; }
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: stretch;
  margin-block: 30px 18px;
}
.hero__actions .btn {
  align-self: stretch;
  flex: 1 1 220px;
  padding-block: 18px;
}
.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 0;
  background: transparent;
  display: grid;
  max-width: 440px;
  justify-self: end;
  align-self: center;
  width: 100%;
  transform-origin: top center;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.6));
  transition: filter 0.4s ease, transform 0.4s ease;
  animation: bookmark-sway 5s ease-in-out infinite;
  place-items: center;
  overflow: hidden;
  cursor: pointer;
}
.hero__visual img { width: 100%; height: 100%; object-fit: cover; }
.hero__visual:hover {
  animation: bookmark-sway-active 1.5s ease-in-out infinite;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.7));
}

@media (max-width: 880px) {
  .hero__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "visual"
      "body";
    padding-right: 0;
    row-gap: 18px;
  }
  .hero__head, .hero__body { align-self: stretch; }
  .hero__visual {
    max-width: 360px;
    justify-self: center;
    margin-inline: auto;
    /* On mobile the bookmark-sway tilt makes the visual feel off-balance —
       stand the screenshot upright and disable the animation. */
    animation: none;
    transform: none;
  }
  .hero__visual:hover { animation: none; transform: none; }
  .eligibility__visual {
    animation: none;
    transform: none;
    margin-right: 0;
  }
  .eligibility__visual:hover { animation: none; transform: none; }
}

/* Shared sway keyframes — used by .hero__visual and .eligibility__visual.
   Idle: a barely-there pendulum, slow cycle. Active: faster sway with a tiny
   scale lift, like the bookmark is being nudged. */
@keyframes bookmark-sway {
  0%   { transform: rotate(-1.4deg); }
  50%  { transform: rotate(-2.4deg); }
  100% { transform: rotate(-1.4deg); }
}
@keyframes bookmark-sway-active {
  0%   { transform: rotate(-0.8deg) scale(1.015); }
  50%  { transform: rotate(-2.8deg) scale(1.015); }
  100% { transform: rotate(-0.8deg) scale(1.015); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__visual,
  .eligibility__visual {
    animation: none !important;
    transform: rotate(-2deg);
  }
  .hero__visual:hover,
  .eligibility__visual:hover {
    animation: none !important;
    transform: rotate(-1.4deg);
  }
}

/* -------- Zigzag dividers between sections -------- */
.zigzag {
  --zz-color: var(--bg-black);
  --zz-bg: var(--bg-lime);
  height: 28px;
  background:
    linear-gradient(135deg, var(--zz-bg) 50%, var(--zz-color) 50%) 0 0/28px 28px,
    var(--zz-color);
  border-bottom: 1.5px solid var(--border-strong);
}
.zigzag--up   { background: linear-gradient(45deg, var(--zz-color) 50%, var(--zz-bg) 50%) 0 0/28px 28px, var(--zz-bg); }
.zigzag.from-lime  { --zz-bg: var(--bg-lime); }
.zigzag.from-blue  { --zz-bg: var(--bg-blue); }
.zigzag.from-soft  { --zz-bg: var(--bg-soft); }
.zigzag.from-white { --zz-bg: #fff; }
.zigzag.to-black   { --zz-color: var(--bg-black); }
.zigzag.to-lime    { --zz-color: var(--bg-lime); }
.zigzag.to-blue    { --zz-color: var(--bg-blue); }
.zigzag.to-white   { --zz-color: #fff; }
.zigzag.to-soft    { --zz-color: var(--bg-soft); }

/* -------- Trust strip (specific, no vague claims) -------- */
.trust-strip {
  border-block: 1px solid var(--border);
  background: var(--bg-soft);
  padding-block: 22px;
}
.trust-strip__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: center;
}
.trust-strip__cell {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 600;
  border-right: 2px solid #d4d4cc;
  padding-right: 16px;
}
.trust-strip__cell:last-child { border-right: 0; }
.trust-strip__cell .dot {
  flex: none;
  width: 36px; height: 36px;
  background: var(--bg-blue);
  color: #fff;
  display: grid; place-items: center;
  border-radius: 50%;
}
.trust-strip__cell .dot svg { width: 18px; height: 18px; stroke: currentColor; }
.trust-strip__cell .dot--lime { background: var(--bg-blue); color: #fff; }
.trust-strip__cell em { font-style: normal; color: var(--ink-muted); display: block; font-size: 12px; }
@media (max-width: 880px) {
  .trust-strip__row { grid-template-columns: repeat(2, 1fr); }
  .trust-strip__cell { border-right: 0; padding-right: 0; }
}

/* -------- Section headings -------- */
.section-head { max-width: 760px; margin: 0 auto 50px; text-align: center; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }
.section-head--left { margin-inline: 0; text-align: left; }
.surface-black .section-head p { color: rgba(255,255,255,0.78); }
.surface-blue  .section-head p { color: rgba(255,255,255,0.85); }

/* -------- Steps -------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-1);
  padding: 0;
  overflow: hidden;
  position: relative;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.step:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); border-color: rgba(200,255,0,0.30); }
.step__cap {
  background: transparent;
  color: var(--ink-muted);
  border-bottom: 1px solid var(--border);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-chunk);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.step__cap em {
  font-style: normal;
  width: 30px; height: 30px;
  background: var(--bg-blue);
  color: #fff;
  display: grid; place-items: center;
  font-size: 14px;
  border-radius: 50%;
}
.step:nth-child(2) .step__cap em { background: var(--bg-lime); color: #0b0b0b; }
.step:nth-child(3) .step__cap em { background: var(--bg-coral); color: #fff; }
.step__body { padding: 22px; color: var(--ink); }
.step__body h3 { margin-bottom: 10px; font-size: clamp(1.05rem, 1.7vw, 1.25rem); line-height: 1.25; color: var(--ink); }
.step__body p { color: var(--ink-soft); margin: 0; font-size: 0.97rem; }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }

/* -------- Rates / Schumer-style example -------- */
.rates-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
}
.rates-card {
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-1);
  padding: 30px;
  color: var(--ink);
}
.rates-card h3 { margin-bottom: 18px; }
.rates-row {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.rates-row:last-child { border-bottom: 0; }
.rates-row .icon {
  width: 36px; height: 36px;
  background: var(--bg-blue);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
}
.rates-row .icon svg { width: 18px; height: 18px; stroke: currentColor; }
.rates-row .icon.lime { background: var(--bg-blue); color: #fff; }
.rates-row .icon.coral { background: var(--bg-coral); color: #fff; }
.rates-row .label {
  font-weight: 600;
  font-size: 14.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.rates-row .value {
  font-family: var(--font-chunk);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  white-space: nowrap;
}
.example-card {
  background: var(--bg-elev);
  color: var(--ink);
  border: 1px solid var(--border-strong);
  border-left: 3px solid var(--bg-blue);
  box-shadow: var(--shadow-1);
  padding: 30px;
}
.example-card .ex-amount { color: var(--bg-lime); }
.example-card h3 { margin-bottom: 16px; }
.example-card .ex-amount {
  font-family: var(--font-chunk);
  font-size: clamp(1.05rem, 2.2vw, 1.7rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin-block: 6px 14px;
  white-space: nowrap;
}
.example-card dl {
  display: grid;
  grid-template-columns: 1fr auto;
  row-gap: 8px;
  font-size: 0.95rem;
  margin-block: 14px 22px;
  border-block: 2px solid rgba(255,255,255,0.2);
  padding-block: 14px;
}
.example-card dt { opacity: 0.85; }
.example-card dd { margin: 0; font-family: var(--font-chunk); font-size: 0.95rem; }
.example-card .fine {
  font-size: 0.84rem;
  opacity: 0.85;
  line-height: 1.5;
}
@media (max-width: 880px) { .rates-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) {
  /* Tighter padding so cards fit inside narrow viewports without overflow. */
  .example-card { padding: 22px 18px; }

  /* Mobile: rates list becomes a 2-column tile grid for a more compact view. */
  .rates-card {
    padding: 22px 18px 6px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 12px;
  }
  .rates-card h3 { grid-column: 1 / -1; }
  .rates-row {
    grid-template-columns: 28px 1fr;
    grid-template-areas:
      "icon label"
      "value value";
    column-gap: 10px;
    row-gap: 4px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }
  .rates-row:last-child { border-bottom: 1px solid var(--border); }
  .rates-row .icon { grid-area: icon; width: 28px; height: 28px; }
  .rates-row .icon svg { width: 14px; height: 14px; }
  .rates-row .label {
    grid-area: label;
    align-self: center;
    font-size: 11.5px;
    letter-spacing: 0.04em;
  }
  .rates-row .value {
    grid-area: value;
    white-space: normal;
    font-size: 0.95rem;
    line-height: 1.25;
  }

  /* Last item is alone on its row: span both columns. */
  .rates-card .rates-row:nth-child(6) { grid-column: 1 / -1; border-bottom: 0; }

  /* Example card — let amounts wrap if absolutely necessary. */
  .example-card .ex-amount { white-space: normal; word-break: keep-all; }
  .example-card dl { font-size: 0.92rem; }
  .example-card .fine { font-size: 0.8rem; }
}

/* -------- Two-column "what we do / don't do" -------- */
.dual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.dual__card {
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-1);
  padding: 28px;
  position: relative;
}
.dual__card--do  { border-left: 3px solid var(--bg-lime); }
.dual__card--dont { border-left: 3px solid var(--bg-coral); }
.dual__card h3 { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.dual__card h3 .badge {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  flex: none;
  border-radius: 50%;
}
.dual__card h3 .badge svg { width: 20px; height: 20px; stroke: currentColor; }
.dual__card--do  h3 .badge { background: var(--bg-blue); color: #fff; }
.dual__card--dont h3 .badge { background: var(--bg-coral); color: #fff; }
.dual__card ul { padding: 0; margin: 16px 0 0; list-style: none; }
.dual__card li {
  padding: 12px 0 12px 28px;
  position: relative;
  border-top: 1px solid var(--border);
  font-size: 0.97rem;
}
.dual__card li:first-child { border-top: 0; }
.dual__card--do li::before {
  content: "";
  position: absolute; left: 4px; top: 19px;
  width: 14px; height: 14px;
  background: var(--bg-blue);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
}
.dual__card--dont li::before {
  content: "";
  position: absolute; left: 4px; top: 19px;
  width: 14px; height: 14px;
  background: var(--bg-coral);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><line x1='18' y1='6' x2='6' y2='18'/><line x1='6' y1='6' x2='18' y2='18'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><line x1='18' y1='6' x2='6' y2='18'/><line x1='6' y1='6' x2='18' y2='18'/></svg>") center/contain no-repeat;
}
@media (max-width: 880px) { .dual { grid-template-columns: 1fr; } }

/* -------- Eligibility -------- */
.eligibility {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
}
.eligibility__visual {
  border: 0;
  background: transparent;
  aspect-ratio: 4/5;
  overflow: hidden;
  display: grid;
  place-items: center;
  transform-origin: top center;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.6));
  transition: filter 0.4s ease;
  animation: bookmark-sway 5.4s ease-in-out infinite;
  animation-delay: -1.2s;
  margin-right: clamp(20px, 2.5vw, 32px);
  cursor: pointer;
}
.eligibility__visual:hover {
  animation: bookmark-sway-active 1.5s ease-in-out infinite;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.7));
}
.eligibility__visual img { width: 100%; height: 100%; object-fit: cover; }
.eligibility ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 8px;
}
.eligibility li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 18px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  font-size: 0.97rem;
}
.eligibility li .num {
  flex: none;
  width: 28px; height: 28px;
  background: var(--bg-blue);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-chunk);
  font-size: 12px;
  border-radius: 50%;
}
@media (max-width: 880px) {
  .eligibility { grid-template-columns: 1fr; }
  /* On mobile the visual takes a single column — keep it compact and centered. */
  .eligibility__visual {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .eligibility__visual { max-width: 240px; }
}

/* -------- FAQ accordion -------- */
.faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 760px) {
  .faq { grid-template-columns: 1fr; }
}
.faq details {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  box-shadow: none;
  transition: box-shadow 0.15s, border-color 0.15s, background 0.15s;
}
.faq details[open] { box-shadow: var(--shadow-2); background: var(--bg-elev-2); border-color: rgba(200,255,0,0.30); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  min-height: 80px;
  box-sizing: border-box;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  width: 32px; height: 32px;
  flex: none;
  /* Whole badge (blue circle + white plus) rendered as a single SVG — pixel-perfect centering */
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><circle cx='16' cy='16' r='16' fill='%231a4cff'/><path d='M16 9v14M9 16h14' stroke='white' stroke-width='2.6' stroke-linecap='round'/></svg>") center/contain no-repeat;
  transition: transform 0.2s, background 0.2s;
}
.faq details[open] summary::after {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><circle cx='16' cy='16' r='16' fill='%231a4cff'/><path d='M9 16h14' stroke='white' stroke-width='2.6' stroke-linecap='round'/></svg>") center/contain no-repeat;
}
.faq .faq-body {
  padding: 0 22px 22px;
  border-top: 1px dashed var(--border-strong);
  padding-top: 18px;
  margin-top: 0;
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.faq details[open] .faq-body { color: var(--ink); }

/* -------- Plain-English glossary (terminology accordion) -------- */
.glossary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 760px) {
  .glossary { grid-template-columns: 1fr; }
}
.glossary details {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  box-shadow: none;
  transition: box-shadow 0.15s, background 0.15s, border-color 0.15s;
}
.glossary details[open] { box-shadow: var(--shadow-2); background: var(--bg-elev-2); border-color: rgba(232,99,46,0.30); }
.glossary summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  min-height: 80px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.glossary summary::-webkit-details-marker { display: none; }
.glossary__term {
  font-family: var(--font-chunk);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.15;
  flex: none;
}
.glossary__hint {
  font-size: 0.86rem;
  color: var(--ink-soft);
  font-style: italic;
  flex: 1;
  text-align: right;
}
.glossary details[open] .glossary__hint { color: rgba(255,255,255,0.85); font-style: normal; }
.glossary summary::after {
  content: "";
  width: 36px; height: 36px;
  flex: none;
  /* Question mark badge — single SVG */
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><circle cx='16' cy='16' r='16' fill='%231a4cff'/><path d='M11.5 12.5a4.5 4.5 0 0 1 9 0c0 2.5-2 3.2-3.4 4.2-.9.6-1.1 1.2-1.1 2.1' stroke='white' stroke-width='2.4' stroke-linecap='round' fill='none'/><circle cx='16' cy='23.5' r='1.6' fill='white'/></svg>") center/contain no-repeat;
  transition: transform 0.2s, background 0.2s;
}
.glossary details[open] summary::after {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><circle cx='16' cy='16' r='16' fill='%23e8632e'/><path d='M11 11l10 10M21 11L11 21' stroke='white' stroke-width='2.6' stroke-linecap='round'/></svg>") center/contain no-repeat;
}
.glossary .glossary-body {
  padding: 0 22px 22px;
  border-top: 2px dashed rgba(255,255,255,0.32);
  padding-top: 18px;
  font-size: 0.96rem;
  line-height: 1.6;
}
.glossary details[open] .glossary-body em { color: #fff; font-style: normal; font-weight: 700; }
@media (max-width: 600px) {
  /* Switch the summary to grid so the ? icon stays pinned on the right
     while the term + hint stack vertically on the left. */
  .glossary summary {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 4px;
    align-items: center;
  }
  .glossary__term { grid-column: 1; grid-row: 1; }
  .glossary__hint {
    grid-column: 1;
    grid-row: 2;
    text-align: left;
    flex: none;
    margin: 0;
  }
  .glossary summary::after {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
  }
}

/* -------- CTA blocks -------- */
.cta {
  position: relative;
  background: var(--bg);
  color: var(--ink);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: clamp(60px, 8vw, 100px);
  overflow: visible;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(26,76,255,0.12), transparent 45%),
    radial-gradient(circle at 90% 0%, rgba(200,255,0,0.08), transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.cta > * { position: relative; z-index: 1; }
.cta .container { position: relative; }
.cta h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); line-height: 1.2; margin-bottom: 18px; }
.cta__inner {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.cta__content { max-width: 640px; }
.cta__content p { font-size: 1.08rem; line-height: 1.6; opacity: 0.92; margin-bottom: 22px; }
.cta__steps {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 10px;
}
.cta__steps li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: start;
  font-size: 0.98rem;
  line-height: 1.5;
}
.cta__steps li > span {
  width: 30px; height: 30px;
  border: 1px solid var(--border-strong);
  background: var(--bg-elev);
  display: grid; place-items: center;
  font-family: var(--font-chunk);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--bg-lime);
  border-radius: 50%;
}
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.btn--ghost-light {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border-strong);
  box-shadow: none;
}
.btn--ghost-light:hover { background: var(--bg-elev); border-color: var(--ink); }
.cta__reassure {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  font-size: 0.86rem;
  color: var(--ink-muted);
}
.cta__reassure li { display: inline-flex; align-items: center; gap: 8px; }
.cta__reassure li::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--bg-lime);
  border: 0;
  border-radius: 50%;
  flex: none;
}
@media (max-width: 880px) {
  .cta__inner { grid-template-columns: 1fr; }
  .cta__content { max-width: none; }
}

/* -------- Mascot placeholder slot -------- */
.mascot-slot {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 240px;
  padding: 18px;
  margin: 0;
  border: 1px dashed var(--border-strong);
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.03) 0 8px,
      transparent 8px 16px
    );
}
.mascot-slot::before {
  content: attr(data-label);
  position: absolute;
  top: 8px; left: 8px;
  font-family: var(--font-chunk);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--bg-coral);
  background: rgba(232,99,46,0.10);
  padding: 4px 8px;
  border: 1px solid rgba(232,99,46,0.40);
  text-transform: uppercase;
}
.mascot-slot::after {
  content: attr(data-prompt);
  display: block;
  max-width: 280px;
  font-size: 0.78rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--ink-soft);
  text-align: center;
  padding: 22px 6px 6px;
}
.mascot-slot img {
  display: block;
  max-width: 100%;
  height: auto;
}
.mascot-slot:has(img) {
  border: 0;
  background: none;
  padding: 0;
  min-height: 0;
  /* Bookmark effect — uniform across the site */
  transform: rotate(-2deg);
  transform-origin: center center;
  filter: drop-shadow(8px 10px 0 rgba(0,0,0,0.35));
  transition: transform 0.4s ease;
}
.mascot-slot:has(img):hover { transform: rotate(-0.5deg); }
.mascot-slot:has(img)::before,
.mascot-slot:has(img)::after { display: none; }
.mascot-slot--inline {
  width: clamp(120px, 14vw, 180px);
  min-height: 160px;
  flex: none;
}
.mascot-slot--inline:has(img) {
  transform: rotate(-2.5deg);
  filter: drop-shadow(6px 8px 0 rgba(0,0,0,0.3));
}
.mascot-slot--inline:has(img):hover { transform: rotate(0deg); }
.mascot-slot--cta {
  min-height: 320px;
  background-color: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.4);
}
.mascot-slot--cta::after { color: rgba(255,255,255,0.78); }
.mascot-slot--cta:has(img) {
  align-self: center;
  transform: rotate(-2.5deg);
  transform-origin: center center;
  filter: drop-shadow(10px 12px 0 rgba(0,0,0,0.45));
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), filter 0.4s ease;
  cursor: pointer;
}
.mascot-slot--cta:has(img)::before,
.mascot-slot--cta:has(img)::after { display: none; }
.mascot-slot--cta:has(img):hover {
  transform: rotate(-0.6deg) translate(-4px, -6px);
  filter: drop-shadow(14px 16px 0 rgba(0,0,0,0.5));
}
@media (max-width: 880px) {
  .mascot-slot--cta:has(img) {
    transform: rotate(-1.5deg);
    max-width: 260px;
    width: 100%;
    margin-inline: auto;
    justify-self: center;
  }
}
@media (max-width: 480px) {
  .mascot-slot--cta:has(img) { max-width: 220px; }
}
.mascot-slot--example {
  min-height: 160px;
  margin-top: 18px;
}
.section-head--with-mascot {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(14px, 3vw, 50px);
  align-items: center;
  max-width: 1040px;
  text-align: left;
}
.section-head--with-mascot > div { max-width: 720px; }
.section-head--with-mascot:not(.section-head--left) {
  margin-inline: auto;
}
@media (max-width: 700px) {
  /* Mascot stays in its own right-hand column even on small screens —
     just shrinks so it never crowds the heading column. */
  .section-head--with-mascot .mascot-slot--inline {
    width: clamp(86px, 22vw, 130px);
    min-height: 0;
  }
}
@media (max-width: 360px) {
  /* Last-resort collapse for very narrow phones. */
  .section-head--with-mascot { grid-template-columns: 1fr; }
  .section-head--with-mascot .mascot-slot--inline {
    justify-self: start;
    width: clamp(120px, 36vw, 160px);
  }
}

/* Mascot on the LEFT, heading copy stays visually centered.
   Symmetric layout: [mascot] [copy] [invisible spacer of equal width]. */
.section-head--with-mascot-left {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(14px, 3vw, 50px);
  align-items: center;
  max-width: 1040px;
  margin: 0 auto 50px;
  text-align: center;
}
.section-head--with-mascot-left .section-head__copy {
  max-width: 720px;
  margin: 0 auto;
}
.section-head--with-mascot-left .mascot-slot--spacer {
  width: clamp(120px, 14vw, 180px);
  visibility: hidden;
}
@media (max-width: 700px) {
  /* Drop the right-side spacer; keep mascot tight to the left. */
  .section-head--with-mascot-left { grid-template-columns: auto 1fr; }
  .section-head--with-mascot-left .mascot-slot--spacer { display: none; }
  .section-head--with-mascot-left .mascot-slot--inline {
    width: clamp(86px, 22vw, 130px);
    min-height: 0;
  }
  .section-head--with-mascot-left .section-head__copy { text-align: left; }
}
@media (max-width: 480px) {
  /* Stack on very narrow phones — mascot on top-left, copy below. */
  .section-head--with-mascot-left { grid-template-columns: 1fr; }
  .section-head--with-mascot-left .mascot-slot--inline {
    justify-self: start;
    width: clamp(120px, 36vw, 160px);
  }
}

/* -------- Footer -------- */
.site-footer {
  background: var(--bg-black);
  color: rgba(255,255,255,0.78);
  padding-block: 60px 30px;
  border-top: 1.5px solid var(--border-strong);
}
.site-footer a { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 2px solid rgba(255,255,255,0.12);
}
.footer-brand { max-width: 320px; }
.footer-brand .brand__logo { background: var(--bg-lime); }
.footer-brand p { font-size: 0.9rem; opacity: 0.7; margin-top: 14px; line-height: 1.55; }
.footer-col h4 {
  font-size: 13px;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
  font-family: var(--font-chunk);
  color: var(--bg-lime);
}
.footer-col ul { padding: 0; list-style: none; margin: 0; display: grid; gap: 10px; }
.footer-col a { text-decoration: none; font-size: 0.95rem; }
.footer-col a:hover { color: var(--bg-lime); }
.footer-col .footer-meta {
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
  font-size: 0.84rem;
  line-height: 1.55;
}
.footer-col .footer-meta strong { color: rgba(255,255,255,0.9); font-weight: 700; display: block; margin-bottom: 2px; letter-spacing: 0.02em; }
.footer-bottom {
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  font-size: 0.82rem;
  opacity: 0.75;
}
.footer-disclaimer {
  margin-top: 26px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 22px;
  font-size: 0.84rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
}
.footer-disclaimer p { margin-bottom: 12px; }
.footer-disclaimer p:last-child { margin-bottom: 0; }
.footer-disclaimer a {
  color: var(--bg-lime);
  text-decoration: none;
  border-bottom: 1px dashed rgba(200,255,0,0.35);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.footer-disclaimer a:hover { color: #def080; border-bottom-color: var(--bg-lime); }
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; max-width: none; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* -------- Page hero (legal/contact) -------- */
.page-hero {
  background: linear-gradient(180deg, var(--bg-soft), var(--bg));
  border-bottom: 1px solid var(--border);
  padding-block: clamp(60px, 9vw, 110px);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(26,76,255,0.10), transparent 45%),
    radial-gradient(circle at 88% 80%, rgba(200,255,0,0.06), transparent 45%);
  pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  line-height: 1.2;
  max-width: 18ch;
}
.page-hero p {
  margin-top: 18px;
  max-width: 60ch;
  font-size: 1.05rem;
}
.meta-line {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  background: var(--bg-elev);
  font-size: 0.9rem;
}
.meta-line strong { font-family: var(--font-chunk); font-size: 0.78rem; letter-spacing: 0.18em; }

/* -------- Contact cards & form -------- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 320px));
  justify-content: center;
  gap: 20px;
  margin-block: 40px;
}
.contact-card {
  border: 1px solid var(--border-strong);
  background: var(--bg-elev);
  box-shadow: var(--shadow-1);
  padding: 26px;
}
.contact-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.contact-card h3 .badge {
  width: 36px; height: 36px;
  background: var(--bg-blue);
  color: #fff;
  display: grid; place-items: center;
  flex: none;
  border-radius: 50%;
}
.contact-card h3 .badge svg { width: 18px; height: 18px; stroke: currentColor; }
.contact-card:nth-child(2) h3 .badge { background: var(--bg-coral); color: #fff; }
.contact-card p { margin: 0; font-size: 0.97rem; }
.contact-card a { color: var(--ink); font-weight: 600; }
@media (max-width: 880px) { .contact-cards { grid-template-columns: 1fr; } }

/* -------- Reasons people write (help-and-support) -------- */
.reasons-heading { text-align: center; }
.reasons-lead {
  max-width: 760px;
  margin: 0 auto 24px;
  color: var(--ink-soft);
  text-align: center;
}
.reasons-list {
  list-style: none;
  padding: 0;
  margin: 24px auto 0;
  display: grid;
  gap: 14px;
  max-width: 820px;
}
.reasons-list li {
  display: flex;
  gap: 18px;
  padding: 18px 22px;
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  border-left: 3px solid var(--bg-blue);
  color: var(--ink);
}
.reasons-list li:nth-child(2) { border-left-color: var(--bg-coral); }
.reasons-list li:nth-child(3) { border-left-color: var(--bg-lime); }
.reasons-list li:nth-child(4) { border-left-color: #5a7bff; }
.reasons-list strong {
  font-family: var(--font-chunk);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  min-width: 130px;
  flex: none;
  color: var(--bg-lime);
  align-self: flex-start;
  padding-top: 2px;
}
.reasons-list li:nth-child(2) strong { color: var(--bg-coral); }
.reasons-list li:nth-child(3) strong { color: var(--bg-lime); }
.reasons-list li:nth-child(4) strong { color: #7a93ff; }
.reasons-list span { color: var(--ink-soft); line-height: 1.6; }
.reasons-list em { color: var(--ink); font-style: italic; }
.reasons-list a { color: var(--bg-lime); font-weight: 600; }
@media (max-width: 640px) {
  .reasons-list li { flex-direction: column; gap: 8px; }
  .reasons-list strong { min-width: 0; }
}

.form-card {
  border: 1px solid var(--border-strong);
  background: var(--bg-elev);
  box-shadow: var(--shadow-2);
  padding: clamp(26px, 4vw, 44px);
  max-width: 760px;
}
.form-card h2 { margin-bottom: 8px; }
.form-card p.help { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 24px; }
.form-row { display: grid; gap: 18px; margin-bottom: 18px; }
.form-row.cols-2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 640px) { .form-row.cols-2 { grid-template-columns: 1fr; } }
.field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.field input, .field textarea {
  display: block;
  width: 100%;
  border: 1px solid var(--border-strong);
  padding: 14px 16px;
  font: inherit;
  font-size: 1rem;
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--bg-blue);
  box-shadow: 0 0 0 3px rgba(26,76,255,0.18);
}
.field textarea { min-height: 140px; resize: vertical; }
.field .err { color: var(--bg-coral); font-size: 0.85rem; margin-top: 6px; min-height: 1.1em; font-weight: 600; }
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px; overflow: hidden;
}
.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1.5px solid var(--border-strong);
  font-weight: 600;
  display: none;
}
.form-status.is-success { display: block; background: rgba(200,255,0,0.10); border-color: rgba(200,255,0,0.40); color: var(--bg-lime); }
.form-status.is-error { display: block; background: rgba(232,99,46,0.10); border-color: rgba(232,99,46,0.40); color: var(--bg-coral); }

/* -------- Legal page -------- */
.legal-page {
  padding-block: clamp(50px, 7vw, 90px);
  background: var(--bg);
}
.legal-page__inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 50px;
  max-width: 1140px;
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.toc {
  position: sticky;
  top: 90px;
  align-self: start;
  border: 1px solid var(--border-strong);
  background: var(--bg-elev);
  padding: 18px 0 18px 18px;
  font-size: 0.88rem;
  overflow: visible;
}
.toc h3 {
  font-size: 11px;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
  padding-right: 18px;
  font-family: var(--font-chunk);
}
.toc ol {
  list-style: none;
  counter-reset: toc;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 4px;
}
.toc li { counter-increment: toc; }
.toc a {
  position: relative;
  display: block;
  padding: 9px 14px 9px 30px;
  color: var(--ink-soft);
  text-decoration: none;
  line-height: 1.35;
  background: transparent;
  border: 0;
  border-left: 2px solid transparent;
  transform: translateX(0);
  transition: color 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}
.toc a::before {
  content: counter(toc, decimal-leading-zero);
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-chunk);
  font-size: 9px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.toc a::after {
  content: "";
  position: absolute;
  top: -2px;
  bottom: -2px;
  right: -6px;
  width: 6px;
  background: var(--bg-blue);
  border: 2px solid var(--border-strong);
  border-left: 0;
  opacity: 0;
  transition: opacity 0.22s ease, background 0.22s ease;
}
.toc a:hover {
  color: var(--ink);
  background: rgba(255,255,255,0.04);
  border-left-color: var(--border-strong);
}
.toc a:hover::before { color: var(--ink); }
.toc a:focus-visible {
  outline: none;
  color: var(--ink);
  background: rgba(255,255,255,0.04);
  border-left-color: var(--bg-blue);
}
.toc a.is-active {
  background: rgba(200,255,0,0.08);
  color: var(--bg-lime);
  border-left-color: var(--bg-lime);
}
.toc a.is-active::before { color: var(--bg-lime); }
.toc a::after { display: none; }
.legal-body { max-width: 720px; }
.legal-body h2 {
  font-size: clamp(1.15rem, 1.9vw, 1.45rem);
  line-height: 1.3;
  margin-block: 40px 16px;
  scroll-margin-top: 100px;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 1.02rem; line-height: 1.3; margin-block: 22px 8px; }
.legal-body p { font-size: 1rem; line-height: 1.75; color: var(--ink-soft); }
.legal-body p strong { color: var(--ink); }
.legal-body p.allcaps {
  text-transform: uppercase;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  line-height: 1.7;
  color: var(--ink);
}
.legal-body a {
  color: var(--bg-lime);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px dashed rgba(200,255,0,0.35);
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
  padding: 0 2px;
}
.legal-body a:hover {
  color: #def080;
  border-bottom-color: var(--bg-lime);
  background: rgba(200,255,0,0.08);
}
.legal-body a:focus-visible {
  outline: 2px solid var(--bg-lime);
  outline-offset: 2px;
  border-bottom-color: transparent;
}
@media (max-width: 880px) {
  .legal-page__inner { grid-template-columns: 1fr; }
  .toc { position: static; }
}

/* -------- Reveal on scroll (subtle) -------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* -------- Mascot floats -------- */
.mascot-float {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

/* -------- Utility -------- */
.center { text-align: center; }
.muted { color: var(--ink-muted); }
.link-accent { color: var(--bg-lime); font-weight: 700; }
.link-accent:hover { color: #def080; }
.no-margin { margin: 0; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.divider {
  height: 1px;
  background: var(--border);
  border: 0;
  margin-block: 30px;
}

/* -------- Hidden visual helper (a11y) -------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ----------------------- Payment estimator ----------------------- */
.estimator {
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-2);
  padding: clamp(24px, 4vw, 38px);
}
.estimator__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 36px);
  align-items: stretch;
}
.estimator__controls { display: grid; gap: 22px; }
.estimator__field { display: grid; gap: 8px; }
.estimator__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-family: var(--font-chunk);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.estimator__value {
  background: var(--bg-black);
  color: var(--bg-lime);
  padding: 4px 10px;
  font-size: 12px;
}
/* Pixel-art slider — chunky blue track + spiky pixel thumb (lime ring + colored core) */
.estimator__field input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 14px;
  border: 1.5px solid var(--border-strong);
  outline: none;
  cursor: pointer;
  image-rendering: pixelated;
  /* Pixel-art corner notches + filled (blue) / unfilled (white) split, controlled by --progress */
  background:
    linear-gradient(var(--ink), var(--ink))   0 0     / 3px 3px no-repeat,
    linear-gradient(var(--ink), var(--ink))   100% 0  / 3px 3px no-repeat,
    linear-gradient(var(--ink), var(--ink))   0 100%  / 3px 3px no-repeat,
    linear-gradient(var(--ink), var(--ink))   100% 100% / 3px 3px no-repeat,
    linear-gradient(to right, var(--bg-blue) 0 var(--progress, 50%), #fff var(--progress, 50%) 100%);
}
/* Firefox-native filled track (kept in sync with the gradient above for smoother visuals) */
.estimator__field input[type="range"]::-moz-range-track {
  height: 14px;
  background: linear-gradient(to right, var(--bg-blue) 0 var(--progress, 50%), #fff var(--progress, 50%) 100%);
  border: 0;
}
.estimator__field input[type="range"]::-moz-range-progress {
  background: var(--bg-blue);
  height: 14px;
}
/* WebKit thumb */
.estimator__field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 38px; height: 38px;
  background: transparent url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' shape-rendering='crispEdges'><path d='M5 0H11V1H13V2H14V3H15V4H16V12H15V13H14V14H13V15H11V16H5V15H3V14H2V13H1V12H0V4H1V3H2V2H3V1H5Z' fill='%23c8ff00'/><path d='M6 1H10V2H12V3H13V4H14V5H15V11H14V12H13V13H12V14H10V15H6V14H4V13H3V12H2V11H1V5H2V4H3V3H4V2H6Z' fill='%231a4cff'/></svg>") center/contain no-repeat;
  border: 0;
  cursor: grab;
  image-rendering: pixelated;
  margin-top: -10px;
}
/* Firefox thumb */
.estimator__field input[type="range"]::-moz-range-thumb {
  width: 38px; height: 38px;
  background: transparent url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' shape-rendering='crispEdges'><path d='M5 0H11V1H13V2H14V3H15V4H16V12H15V13H14V14H13V15H11V16H5V15H3V14H2V13H1V12H0V4H1V3H2V2H3V1H5Z' fill='%23c8ff00'/><path d='M6 1H10V2H12V3H13V4H14V5H15V11H14V12H13V13H12V14H10V15H6V14H4V13H3V12H2V11H1V5H2V4H3V3H4V2H6Z' fill='%231a4cff'/></svg>") center/contain no-repeat;
  border: 0;
  cursor: grab;
  image-rendering: pixelated;
}
/* All slider thumbs use the same blue+lime pixel design (no per-field variants) */
.estimator__results {
  background: var(--bg-elev-2);
  color: var(--ink);
  border: 1px solid var(--border-strong);
  border-left: 3px solid var(--bg-blue);
  padding: clamp(20px, 3vw, 28px);
  display: grid;
  align-content: center;
  gap: 14px;
}
.estimator__result {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(255,255,255,0.25);
  padding-bottom: 10px;
}
.estimator__result:last-child { border-bottom: 0; padding-bottom: 0; }
.estimator__result-label {
  font-family: var(--font-chunk);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}
.estimator__result-value {
  font-family: var(--font-chunk);
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  letter-spacing: 0.01em;
  color: #fff;
}
.estimator__result--total .estimator__result-value { color: var(--bg-lime); }
.estimator__disclaimer {
  margin-top: 22px;
  background: var(--bg-soft);
  border: 2px dashed var(--ink);
  padding: 12px 16px;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
@media (max-width: 760px) { .estimator__grid { grid-template-columns: 1fr; } }

/* ----------------------- Self-check quiz ----------------------- */
.selfcheck {
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-2);
  padding: clamp(24px, 4vw, 38px);
}
.selfcheck__progress {
  display: flex; gap: 6px; margin-bottom: 22px;
}
.selfcheck__progress span {
  flex: 1; height: 4px;
  background: var(--border);
  border: 0;
}
.selfcheck__progress span.is-on { background: var(--bg-lime); }
.selfcheck__step { display: none; }
.selfcheck__step.is-active { display: block; }
.selfcheck__question {
  font-family: var(--font-chunk);
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 1.3;
  margin-bottom: 18px;
}
.selfcheck__answers {
  display: grid; gap: 10px;
}
.selfcheck__answer {
  background: var(--bg-elev);
  border: 1.5px solid var(--border-strong);
  padding: 16px 18px;
  text-align: left;
  cursor: pointer;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  transition: background 0.15s, transform 0.1s;
  display: flex; justify-content: space-between; align-items: center;
}
.selfcheck__answer:hover { background: var(--bg-soft); }
.selfcheck__answer:active { transform: translate(1px, 1px); }
.selfcheck__answer::after {
  content: "→";
  font-family: var(--font-chunk);
  font-size: 14px;
  color: var(--ink-soft);
}
.selfcheck__result { display: none; }
.selfcheck__result.is-active { display: block; }
.selfcheck__verdict {
  background: var(--bg-elev);
  border: 1.5px solid var(--border-strong);
  padding: 22px;
  margin-bottom: 14px;
}
.selfcheck__verdict h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.selfcheck__verdict--pass h4 { color: #6dd58d; }
.selfcheck__verdict--warn h4 { color: var(--bg-coral); }
.selfcheck__verdict--info h4 { color: #5a7bff; }
.selfcheck__verdict p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.55; }
.selfcheck__reset {
  display: inline-block;
  font-family: var(--font-chunk);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--bg-lime);
  background: transparent;
  border: 1px solid var(--bg-lime);
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.15s;
}
.selfcheck__reset:hover { background: rgba(200,255,0,0.10); }
.selfcheck__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}
.selfcheck__actions .btn { font-size: 12px; padding: 14px 22px; }
@media (max-width: 480px) {
  .selfcheck__actions .btn,
  .selfcheck__actions .selfcheck__reset { width: 100%; text-align: center; justify-content: center; }
}

/* ----------------------- Three honest moments comic ----------------------- */
.comic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.comic__panel {
  background: var(--bg-elev);
  color: var(--ink);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-1);
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr;
  overflow: hidden;
}
.comic__panel:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); border-color: rgba(255,255,255,0.18); transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s; }
.comic__cap {
  position: relative;
  background: var(--bg-elev-2);
  color: var(--ink);
  padding: 16px 20px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.comic__cap::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--bg-blue);
  opacity: 0.6;
}
.comic__num {
  width: 32px; height: 32px;
  background: var(--bg-blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-chunk);
  font-size: 14px;
  flex: none;
  border-radius: 50%;
}
.comic__cap-title {
  font-family: var(--font-chunk);
  font-weight: 400;
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--ink);
}
.comic__visual {
  min-height: 150px;
  padding: 22px 18px 14px;
  display: grid;
  place-items: center;
  position: relative;
}
.comic__visual .mascot-slot {
  border: 0; background: none; min-height: 130px; padding: 0;
}
.comic__visual .mascot-slot::before,
.comic__visual .mascot-slot::after { display: none; }
.comic__visual .mascot-slot:has(img) {
  transform: rotate(-1.5deg);
  filter: drop-shadow(3px 4px 0 rgba(0,0,0,0.45));
  transition: transform 0.3s ease;
}
.comic__visual .mascot-slot:has(img):hover { transform: rotate(0deg); }
.comic__panel:nth-child(2) .mascot-slot:has(img) { transform: rotate(2deg); }
.comic__panel:nth-child(3) .mascot-slot:has(img) { transform: rotate(-2deg); }
.comic__panel:nth-child(2) .mascot-slot:has(img):hover,
.comic__panel:nth-child(3) .mascot-slot:has(img):hover { transform: rotate(0deg); }
.comic__visual img { max-height: 140px; width: auto; }
.comic__body { padding: 18px 20px 22px; display: grid; gap: 14px; color: var(--ink); }
.comic__col {
  font-size: 0.9rem;
  line-height: 1.5;
}
.comic__col strong {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-chunk);
  font-size: 10px;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.comic__col--yes strong { color: var(--bg-lime); }
.comic__col--no  strong { color: var(--bg-coral); }
.comic__col--yes strong::before { content: "+"; font-size: 13px; }
.comic__col--no  strong::before { content: "−"; font-size: 13px; }
.comic__col p { margin: 0; color: rgba(255,255,255,0.78); }
@media (max-width: 880px) {
  .comic { grid-template-columns: 1fr; }
}

/* =========================================================================
   PLEDGE — "Six things we will never do" hybrid block (poster + paired).
   The dark island sits inside .section.surface-soft right before the CTA.
   ========================================================================= */
/* -------- Common manifesto chrome -------- */
.manifesto__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--bg-lime);
  font-family: var(--font-chunk);
  font-size: 11px;
  letter-spacing: 0.20em;
  padding: 0;
  border: 0;
  margin-bottom: 18px;
}
.manifesto__kicker::before { content: ""; width: 6px; height: 6px; background: currentColor; border-radius: 50%; }
.manifesto__title {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.18;
  letter-spacing: 0.005em;
  margin-bottom: 26px;
}
.manifesto__sub {
  display: block;
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  margin-top: 10px;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-chunk);
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.manifesto__foot {
  margin-top: 28px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 500;
  max-width: 720px;
  line-height: 1.55;
}

/* ============================ Pledge block (poster + paired hybrid) ============================
   Dark poster background with big numerals + paired "never / instead" rows. */
.manifesto--combo {
  background: var(--bg-elev);
  color: var(--ink);
  border: 1px solid var(--border-strong);
  padding: clamp(32px, 5vw, 60px) clamp(24px, 4vw, 50px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.manifesto--combo::before { display: none; }
.manifesto--combo .manifesto__kicker { color: var(--bg-lime); }
.manifesto--combo .manifesto__title { color: #fff; max-width: 820px; margin-bottom: 30px; }
.manifesto--combo .manifesto__sub { color: rgba(255,255,255,0.7); }
.manifesto-combo {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
}
.manifesto-combo > li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 2px dashed rgba(255,255,255,0.16);
}
.manifesto-combo > li:last-child { border-bottom: 0; }
.manifesto-combo__num {
  font-family: var(--font-chunk);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: var(--bg-lime);
  letter-spacing: 0.04em;
  line-height: 1;
  align-self: center;
}
.manifesto-combo > li:nth-child(even) .manifesto-combo__num { color: var(--bg-coral); }
.manifesto-combo__content { display: grid; gap: 8px; }
.manifesto-combo__never {
  font-family: var(--font-chunk);
  font-size: clamp(0.95rem, 1.5vw, 1.18rem);
  letter-spacing: 0.005em;
  line-height: 1.4;
  text-transform: uppercase;
  margin: 0;
  color: #fff;
}
.manifesto-combo__instead {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin: 0;
  font-weight: 500;
}
.manifesto-combo__tag {
  display: inline-block;
  font-family: var(--font-chunk);
  font-size: 9px;
  letter-spacing: 0.18em;
  background: rgba(200,255,0,0.10);
  color: var(--bg-lime);
  border: 1px solid rgba(200,255,0,0.40);
  padding: 3px 7px;
  margin-right: 10px;
  vertical-align: 2px;
  text-transform: uppercase;
}
.manifesto-combo > li:nth-child(even) .manifesto-combo__tag {
  color: var(--bg-coral);
  background: rgba(232,99,46,0.10);
  border-color: rgba(232,99,46,0.40);
}
.manifesto--combo .manifesto__foot { color: rgba(255,255,255,0.7); }
.manifesto--combo .manifesto__foot a { color: var(--bg-lime); }
@media (max-width: 600px) {
  .manifesto-combo > li { grid-template-columns: 56px 1fr; gap: 14px; padding: 18px 0; }
  .manifesto-combo__num { font-size: 1.4rem; }
  .manifesto-combo__never { font-size: 0.92rem; }
  .manifesto-combo__instead { font-size: 0.9rem; }
}

/* -------- Back-to-top -------- */
.back-to-top {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  background: var(--bg-elev);
  color: var(--ink);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-2);
  cursor: pointer;
  z-index: 80;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s, border-color 0.2s;
}
.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--bg-elev-2);
  border-color: rgba(200,255,0,0.40);
  color: var(--bg-lime);
  transform: translateY(-2px);
}
.back-to-top:active { transform: translateY(0); }
.back-to-top:focus-visible {
  outline: 2px solid var(--bg-blue);
  outline-offset: 3px;
}
.back-to-top__arrow {
  width: 22px;
  height: 22px;
  display: block;
  transition: transform 0.2s ease;
}
.back-to-top:hover .back-to-top__arrow { transform: translateY(-2px); }
@media (max-width: 600px) {
  .back-to-top { width: 44px; height: 44px; }
  .back-to-top__arrow { width: 20px; height: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .back-to-top { transition: opacity 0.15s linear; }
  .back-to-top.is-visible { transform: rotate(-3deg); }
  .back-to-top:hover { transform: rotate(-3deg); }
  .back-to-top__arrow { transition: none; }
  .back-to-top:hover .back-to-top__arrow { transform: none; }
}

