/* Shared styles for /peptides/*, /for/*, /creators/ and /redeem/.
   Mirrors the brand-site design system defined in src/App.jsx — the same
   tokens, the same nav pill, the same card language — so a visitor moving
   from the home page to a peptide page never crosses a visual seam.

   The legacy token names (--bg, --blue, --hairline, --ink-soft …) are kept on
   purpose even where the new system has better names for them: the creator-
   program components at the bottom of this file are written against them, and
   remapping the values re-themes all of that for free. */

:root {
  color-scheme: light;

  /* New design system */
  --canvas: #F1F2F4;
  --surface: #FFFFFF;
  --surface-raised: #F1F2F4;
  --surface-sunken: #E5E8EC;
  --surface-inverted: #101A2E;
  --stroke-subtle: #E0E3E9;
  --stroke: #CBD1DB;
  --stroke-strong: #8A93A6;
  --dark-canvas: #0B1222;
  --shadow-border:
    0px 0px 0px 1px oklch(0 0 0 / 0.06),
    0px 1px 2px -1px oklch(0 0 0 / 0.06),
    0px 2px 4px 0px oklch(0 0 0 / 0.04);
  --shadow-border-hover:
    0px 0px 0px 1px oklch(0 0 0 / 0.08),
    0px 1px 2px -1px oklch(0 0 0 / 0.08),
    0px 2px 4px 0px oklch(0 0 0 / 0.06);

  /* Legacy aliases — the creator-program block below is written against these */
  --bg: #F1F2F4;
  --bg-elev: #FFFFFF;
  --hairline: #E0E3E9;
  --hairline-strong: #CBD1DB;
  --ink: #0B1736;
  --ink-soft: #55607A;
  --ink-dim: #6E7891;
  --ink-faint: #8A93A6;
  --blue: #2b6cff;
  --blue-bright: #4d8aff;
  --blue-soft: rgba(43,108,255,0.08);
  --blue-line: rgba(43,108,255,0.32);
  --violet: #7c5cff;

  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
  --font-display: 'DM Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.65;
  min-height: 100vh;
}
::selection { background: rgba(43,108,255,0.16); color: var(--ink); }
a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--blue-bright); }

/* ── Nav ──────────────────────────────────────────────────────────────────
   One nav, shared verbatim with the .nav-shell rule in src/App.jsx. It is
   fixed rather than sticky and pinned to one explicit width, so the pill is
   the same object at the same size on every page of the site — it used to
   inherit each page's own max-width and visibly changed size between the home
   page and a peptide page. `header.site` is the pill itself here (the static
   pages have no separate positioner element), so it carries both roles. */
header.site {
  position: fixed; top: 16px; right: 0; left: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  width: min(760px, calc(100% - 32px)); height: 64px;
  margin-inline: auto; padding: 0 10px 0 22px;
  border: 1px solid rgba(203,209,219,0.5); border-radius: 999px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 14px 38px rgba(11,23,54,0.07);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
}
header.site .brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; flex: 0 0 auto; }
header.site img { width: 28px; height: 28px; border-radius: 7px; box-shadow: 0 0 0 1px oklch(0 0 0 / 0.08), 0 4px 12px rgba(43,108,255,0.22); }
header.site .brand-text { font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: -0.03em; color: var(--ink); }
header.site nav { display: none; align-items: center; gap: 2px; }
@media (min-width: 720px) { header.site nav { display: inline-flex; } }
header.site nav a {
  padding: 5px 8px; border-radius: 8px;
  font-size: 12px; font-weight: 500; color: var(--ink-soft); text-decoration: none;
  transition: color 120ms ease-out, background-color 120ms ease-out;
}
header.site nav a:hover { background: var(--surface-raised); color: var(--ink); }
header.site .cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 34px; padding: 7px 13px; border-radius: 17px;
  font-size: 12px; font-weight: 600; letter-spacing: -0.01em; white-space: nowrap;
  background: var(--surface-inverted); border: 1px solid var(--surface-inverted);
  color: #fff; text-decoration: none;
  transition: scale 150ms ease-out, background-color 150ms ease-out;
}
header.site .cta:hover { background: #060D1C; color: #fff; text-decoration: none; }
header.site .cta:active { scale: 0.96; }
header.site .cta svg { width: 14px; height: 14px; }
@media (max-width: 560px) {
  header.site { top: 10px; height: 56px; gap: 12px; padding: 0 6px 0 12px; width: calc(100% - 20px); }
}

/* ── Main column ──────────────────────────────────────────────────────────
   The nav is fixed, so the column needs its own headroom where the nav used
   to reserve space in flow. */
main.programmatic {
  max-width: 880px;
  margin: 0 auto;
  padding: 132px 22px 80px;
}
@media (max-width: 560px) { main.programmatic { padding-top: 104px; } }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

/* Regulatory-status badge — sits next to the eyebrow */
.reg-badge {
  display: inline-block;
  margin-left: 10px;
  margin-bottom: 18px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  vertical-align: middle;
}
.reg-badge--approved {
  color: #0d6b3f;
  background: rgba(13, 107, 63, 0.09);
  border: 1px solid rgba(13, 107, 63, 0.2);
}
.reg-badge--investigational {
  color: #8a5a00;
  background: rgba(138, 90, 0, 0.09);
  border: 1px solid rgba(138, 90, 0, 0.2);
}
.reg-badge--research {
  color: #8a3500;
  background: rgba(138, 53, 0, 0.09);
  border: 1px solid rgba(138, 53, 0, 0.2);
}

/* Data-sources block — sits between the CTA and the disclaimer. Part of the
   YMYL sourcing signal on every /peptides/ page, so it stays a distinct card
   rather than dissolving into the body copy. */
.sources {
  margin-top: 56px;
  padding: 26px 28px;
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow-border);
}
.sources h3 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.sources ul {
  margin: 0 0 14px;
  padding-left: 18px;
}
.sources li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 5px;
}
.sources li a { color: var(--blue); }
.sources p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-dim);
}

h1 {
  font-family: var(--font-display);
  margin: 0 0 20px;
  font-size: clamp(38px, 5.4vw, 66px);
  line-height: 1; letter-spacing: -0.052em; font-weight: 700;
  color: var(--ink);
  text-wrap: balance;
}
h1 em {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  letter-spacing: -0.02em; color: var(--ink-soft);
}
.lede {
  font-size: clamp(16.5px, 1.4vw, 19px);
  line-height: 1.55; letter-spacing: -0.012em;
  color: var(--ink-soft);
  max-width: 660px;
  margin: 0 0 34px;
}

/* Primary CTA button — the same object as .btn-primary on the home page. */
.cta-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px; border-radius: 12px;
  background: var(--surface-inverted); border: 1px solid var(--surface-inverted);
  color: #fff !important;
  font-family: var(--font-body); font-weight: 600; font-size: 14.5px; letter-spacing: -0.01em;
  text-decoration: none !important;
  box-shadow: 0 10px 24px rgba(11,23,54,0.16);
  transition: scale 150ms ease-out, background-color 150ms ease-out, box-shadow 150ms ease-out;
}
.cta-primary:hover { background: #060D1C; border-color: #060D1C; box-shadow: 0 14px 30px rgba(11,23,54,0.2); }
.cta-primary:active { scale: 0.96; box-shadow: none; }
.cta-primary svg { width: 17px; height: 17px; }

/* Section pattern */
section.block { margin: 68px 0; }
section.block h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.06; letter-spacing: -0.038em; font-weight: 700;
  color: var(--ink);
  margin: 0 0 18px;
  text-wrap: balance;
}
section.block > p {
  font-size: 16px; line-height: 1.65; color: var(--ink-soft);
  max-width: 680px;
}

/* Facts table */
table.facts {
  width: 100%;
  margin-top: 22px;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-border);
}
table.facts th, table.facts td {
  padding: 15px 20px;
  font-size: 14.5px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--stroke-subtle);
}
table.facts tr:last-child th, table.facts tr:last-child td { border-bottom: none; }
table.facts th {
  width: 36%;
  font-family: var(--font-display);
  font-weight: 600; letter-spacing: -0.01em;
  color: var(--ink);
  background: var(--surface-raised);
}
table.facts td { color: var(--ink-soft); }
.footnote {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--ink-dim);
}

/* Feature blocks (3-up) */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 26px;
}
@media (min-width: 720px) { .features { grid-template-columns: 1fr 1fr 1fr; } }
.feature {
  padding: 26px 24px 28px;
  background: var(--surface);
  border-radius: 20px;
  box-shadow: var(--shadow-border);
  transition: transform 150ms ease-out, box-shadow 150ms ease-out;
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-border-hover), 0 18px 38px rgba(11,23,54,0.07);
}
.feature h3 {
  font-family: var(--font-display);
  margin: 0 0 8px;
  font-size: 17.5px; font-weight: 700; letter-spacing: -0.03em;
  color: var(--ink);
}
.feature p {
  margin: 0;
  font-size: 14px; line-height: 1.6;
  color: var(--ink-soft);
}

/* Screenshots row */
.screens {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 26px;
}
@media (min-width: 720px) { .screens { grid-template-columns: 1fr 1fr 1fr; } }
.screens img {
  width: 100%;
  height: auto;
  border-radius: 26px;
  border: 1px solid var(--stroke);
  box-shadow: 0 20px 42px rgba(11,23,54,0.16);
  display: block;
}

/* FAQs — the same object as .faq-item on the home page. */
details.faq {
  background: var(--surface);
  border-radius: 18px;
  box-shadow: var(--shadow-border);
  margin-bottom: 10px;
  padding: 0 24px;
  transition: box-shadow 150ms ease-out;
}
details.faq:hover { box-shadow: var(--shadow-border-hover); }
details.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: 16.5px; font-weight: 600; letter-spacing: -0.02em;
  color: var(--ink);
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq .faq-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 999px;
  background: var(--surface-raised); color: var(--ink-soft);
  flex-shrink: 0;
  transition: rotate 200ms cubic-bezier(0.23,1,0.32,1), background-color 150ms ease-out;
}
details.faq[open] .faq-icon { rotate: 180deg; background: var(--blue); color: #fff; }
details.faq p {
  margin: 0 0 20px;
  font-size: 14.5px; line-height: 1.62;
  color: var(--ink-soft);
  max-width: 68ch;
}

/* Related cards */
.related {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 26px;
}
@media (min-width: 720px) { .related { grid-template-columns: 1fr 1fr 1fr; } }
.related a {
  display: block;
  padding: 20px 22px;
  background: var(--surface);
  border-radius: 18px;
  box-shadow: var(--shadow-border);
  text-decoration: none !important;
  color: inherit;
  transition: transform 150ms ease-out, box-shadow 150ms ease-out;
}
.related a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-border-hover), 0 18px 38px rgba(11,23,54,0.07);
}
.related .r-title {
  display: block;
  font-family: var(--font-display);
  font-size: 15.5px; font-weight: 700; letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 5px;
}
.related .r-desc {
  display: block;
  font-size: 13px; color: var(--ink-dim);
}

/* Final CTA — the dark panel, matching .feature-tile / .belief-quote. */
.cta-block {
  margin: 76px 0 0;
  padding: 52px 36px;
  border-radius: 30px;
  background: var(--surface-inverted);
  color: #fff;
  text-align: center;
}
.cta-block h2 {
  font-family: var(--font-display);
  margin: 0 0 16px;
  font-size: clamp(28px, 3.2vw, 42px);
  letter-spacing: -0.045em; font-weight: 700;
  color: #fff;
  line-height: 1.04;
  text-wrap: balance;
}
.cta-block p {
  margin: 0 auto 26px;
  max-width: 480px;
  color: #93A0BC;
  font-size: 15.5px; line-height: 1.55;
}
.cta-block .cta-primary {
  background: #fff;
  border-color: #fff;
  color: var(--ink) !important;
  box-shadow: 0 12px 28px -8px rgba(0,0,0,0.4);
}
.cta-block .cta-primary:hover { background: #F1F2F4; border-color: #F1F2F4; }

/* Disclaimer */
.disclaimer {
  margin-top: 48px;
  padding: 22px 0 0;
  border-top: 1px solid var(--stroke-subtle);
  font-size: 13.5px;
  color: var(--ink-dim);
  line-height: 1.65;
}
.disclaimer strong { color: var(--ink); font-weight: 600; }

/* Footer */
footer.site {
  max-width: 1120px; margin: 0 auto; padding: 28px 22px 40px;
  border-top: 1px solid var(--stroke-subtle);
  font-size: 12px; color: var(--ink-faint);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
footer.site a { color: var(--ink-dim); margin-right: 14px; text-decoration: none; }
footer.site a:hover { color: var(--blue); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* Creator-program tier cards */
.tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}
@media (min-width: 820px) { .tiers { grid-template-columns: 1fr 1fr 1fr; } }
.tier {
  padding: 26px 24px 28px;
  background: var(--bg-elev);
  border: 1px solid var(--hairline);
  border-radius: 22px;
  display: flex; flex-direction: column;
  transition: border-color 0.25s, transform 0.3s, box-shadow 0.3s;
}
.tier:hover {
  border-color: var(--hairline-strong);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -14px rgba(43,108,255,0.20);
}
.tier--featured {
  border-color: var(--blue-line);
  box-shadow: 0 14px 36px -16px rgba(43,108,255,0.22);
  position: relative;
}
.tier--featured::before {
  content: 'Most popular';
  position: absolute;
  top: -10px; left: 50%; transform: translateX(-50%);
  padding: 4px 12px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, var(--blue-bright), var(--blue));
  border-radius: 999px;
  box-shadow: 0 6px 14px -4px rgba(43,108,255,0.45);
}
.tier--founding {
  background: linear-gradient(160deg, rgba(43,108,255,0.04), rgba(124,92,255,0.06));
  border-color: rgba(124,92,255,0.30);
}
.tier .tier-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.tier .tier-name {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700; letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 6px;
}
.tier .tier-rate {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 38px; line-height: 1; letter-spacing: -0.02em;
  color: var(--blue);
  margin: 4px 0 14px;
}
.tier .tier-rate small {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 13px; font-weight: 500;
  color: var(--ink-dim);
  letter-spacing: 0;
  margin-left: 4px;
}
.tier .tier-entry {
  font-size: 13.5px;
  color: var(--ink-dim);
  margin-bottom: 18px;
  min-height: 36px;
}
.tier ul.perks {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  flex: 1;
}
.tier ul.perks li {
  font-size: 14px; line-height: 1.5;
  color: var(--ink-soft);
  padding: 7px 0 7px 22px;
  position: relative;
  border-bottom: 1px solid var(--hairline);
}
.tier ul.perks li:last-child { border-bottom: none; }
.tier ul.perks li::before {
  content: '';
  position: absolute;
  left: 0; top: 13px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--blue-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%232b6cff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='3 8 7 12 13 4'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 11px 11px;
}
.tier ul.perks li.disabled {
  color: var(--ink-faint);
  text-decoration: line-through;
}
.tier ul.perks li.disabled::before {
  background: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23aaaeb8' stroke-width='2' stroke-linecap='round'%3E%3Cline x1='4' y1='4' x2='12' y2='12'/%3E%3Cline x1='12' y1='4' x2='4' y2='12'/%3E%3C/svg%3E");
}
.tier .tier-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  width: 100%;
  padding: 12px 20px;
  font-family: inherit;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  text-decoration: none !important;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--blue-bright), var(--blue));
  color: #fff !important;
  box-shadow: 0 10px 24px -8px rgba(43,108,255,0.50);
  transition: transform 0.3s, filter 0.3s, box-shadow 0.3s;
}
.tier .tier-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 14px 28px -8px rgba(43,108,255,0.60);
}
.tier--founding .tier-cta {
  background: linear-gradient(180deg, #7c5cff, #5c3fe6);
  box-shadow: 0 10px 24px -8px rgba(124,92,255,0.50);
}
.tier--founding .tier-cta:hover { box-shadow: 0 14px 28px -8px rgba(124,92,255,0.60); }

/* Earnings calculator highlight table */
table.earnings {
  width: 100%;
  margin-top: 18px;
  border-collapse: collapse;
  background: var(--bg-elev);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  overflow: hidden;
}
table.earnings th, table.earnings td {
  padding: 14px 14px;
  font-size: 14px;
  text-align: center;
  border-bottom: 1px solid var(--hairline);
}
table.earnings th {
  font-weight: 600;
  color: var(--ink);
  background: rgba(43,108,255,0.04);
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
table.earnings tr:last-child td { border-bottom: none; }
table.earnings tbody tr:hover { background: rgba(43,108,255,0.03); }
table.earnings td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--ink);
}
table.earnings .highlight {
  color: var(--blue);
  font-weight: 700;
}

/* Rules grid (do / don't) */
.rules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 22px;
}
@media (min-width: 720px) { .rules-grid { grid-template-columns: 1fr 1fr; } }
.rule-card {
  padding: 22px 24px;
  background: var(--bg-elev);
  border: 1px solid var(--hairline);
  border-radius: 18px;
}
.rule-card.do {
  border-color: rgba(13, 107, 63, 0.22);
  background: rgba(13, 107, 63, 0.04);
}
.rule-card.dont {
  border-color: rgba(138, 53, 0, 0.22);
  background: rgba(138, 53, 0, 0.04);
}
.rule-card h3 {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  margin: 0 0 12px;
}
.rule-card.do h3 { color: #0d6b3f; }
.rule-card.dont h3 { color: #8a3500; }
.rule-card ul {
  margin: 0; padding-left: 20px;
}
.rule-card li {
  font-size: 14px; line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

/* Apply form / mailto block */
.apply-card {
  margin: 36px 0 12px;
  padding: 28px 30px 30px;
  border-radius: 24px;
  background:
    radial-gradient(ellipse 100% 80% at 0% 0%, rgba(77,138,255,0.18), transparent 60%),
    linear-gradient(180deg, #0a1230 0%, #060a1a 100%);
  color: #fff;
  border: 1px solid rgba(43,108,255,0.22);
  box-shadow: 0 30px 60px -20px rgba(11,23,54,0.25);
}
.apply-card .label {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(168,197,255,0.85);
}
.apply-card h2 {
  margin: 8px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.1; letter-spacing: -0.02em; font-weight: 600;
  color: #fff;
}
.apply-card p {
  margin: 0 0 18px;
  color: rgba(255,255,255,0.72);
  font-size: 15px; line-height: 1.6;
  max-width: 580px;
}
.apply-card a.apply-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  background: #fff;
  color: var(--ink) !important;
  font-weight: 600; font-size: 15px;
  text-decoration: none !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 12px 28px -8px rgba(0,0,0,0.4);
  transition: transform 0.3s, filter 0.3s;
}
.apply-card a.apply-btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.apply-card ul.checklist {
  margin: 18px 0 0;
  padding-left: 18px;
  color: rgba(255,255,255,0.78);
}
.apply-card ul.checklist li {
  font-size: 14px; line-height: 1.55;
  margin-bottom: 4px;
}

/* Apply form */
.apply-form {
  margin-top: 22px;
  display: grid;
  gap: 16px;
}
.apply-form .form-row {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .apply-form .form-row.two { grid-template-columns: 1fr 1fr; }
}
.apply-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
}
.apply-form label .req {
  color: #ffb38f;
  margin-left: 3px;
}
.apply-form input[type="text"],
.apply-form input[type="email"],
.apply-form input[type="url"],
.apply-form select,
.apply-form textarea {
  margin-top: 6px;
  display: block;
  width: 100%;
  padding: 11px 14px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.apply-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%230b1736' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4 6 8 10 12 6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px 14px;
  padding-right: 38px;
}
.apply-form textarea {
  min-height: 100px;
  resize: vertical;
  font-family: inherit;
}
.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 3px rgba(77, 138, 255, 0.30);
}
.apply-form input::placeholder,
.apply-form textarea::placeholder {
  color: rgba(11, 23, 54, 0.40);
}
.apply-form .checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  font-size: 13.5px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.apply-form .checkbox-row input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 1px;
  accent-color: var(--blue-bright);
  cursor: pointer;
}
.apply-form button.submit {
  justify-self: start;
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 6px;
  padding: 14px 28px;
  font: inherit;
  font-size: 15px; font-weight: 600;
  color: var(--ink);
  background: #fff;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 12px 28px -8px rgba(0,0,0,0.4);
  transition: transform 0.3s, filter 0.3s;
}
.apply-form button.submit:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.apply-success {
  margin-top: 22px;
  padding: 22px 26px 24px 64px;
  background: linear-gradient(135deg, rgba(46, 196, 124, 0.16), rgba(46, 196, 124, 0.08));
  border: 1px solid rgba(46, 196, 124, 0.55);
  border-radius: 16px;
  position: relative;
  color: #d8ffe9;
}
.apply-success::before {
  content: '';
  position: absolute;
  left: 22px; top: 22px;
  width: 28px; height: 28px;
  border-radius: 999px;
  background: #2ec47c;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='5 12 10 17 19 8'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  box-shadow: 0 4px 12px -2px rgba(46, 196, 124, 0.55);
}
.apply-success h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #d8ffe9;
}
.apply-success p {
  margin: 0;
  color: rgba(216, 255, 233, 0.85);
  font-size: 14.5px;
  line-height: 1.55;
}

/* "Money callout" — big-figure hook replacing the earnings table */
.money-callout {
  margin: 28px 0 0;
  padding: 44px 30px 36px;
  border-radius: 28px;
  background:
    radial-gradient(ellipse 640px 280px at 50% 0%, rgba(43,108,255,0.13), transparent 70%),
    radial-gradient(ellipse 480px 240px at 50% 100%, rgba(124,92,255,0.08), transparent 70%),
    var(--bg-elev);
  border: 1px solid var(--hairline-strong);
  text-align: center;
  box-shadow: 0 30px 60px -28px rgba(43,108,255,0.18);
}
.money-callout .kicker {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 8px;
}
.money-callout .figure {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(80px, 14vw, 168px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--blue);
  margin-bottom: 6px;
}
.money-callout .figure sup {
  font-size: 0.36em;
  vertical-align: top;
  margin-left: 4px;
  font-style: normal;
  color: var(--ink-dim);
  font-weight: 500;
  position: relative;
  top: 0.4em;
}
.money-callout .figure .per {
  display: inline-block;
  margin-left: 6px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.24em;
  letter-spacing: 0;
  color: var(--ink-dim);
  font-weight: 600;
  vertical-align: middle;
}
.money-callout .headline {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin: 12px auto 18px;
  max-width: 580px;
}
.money-callout .headline .hl {
  color: var(--blue);
}
.money-callout .sub {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 auto;
  max-width: 560px;
}
.money-callout .sub strong { color: var(--ink); font-weight: 700; }
.money-callout .mini-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  margin: 22px auto 0;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-dim);
  text-transform: uppercase;
}
.money-callout .mini-stats span {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: var(--blue-soft);
  border-radius: 999px;
  color: var(--blue);
}
.money-callout .disclaimer-fine {
  margin: 22px auto 0;
  max-width: 600px;
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--ink-faint);
  font-style: italic;
}

/* Hero stat chips */
.stats-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 4px;
}
.stats-chips .chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  font-size: 13.5px; font-weight: 600;
  color: var(--ink);
  background: var(--bg-elev);
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  letter-spacing: -0.005em;
}
.stats-chips .chip strong { color: var(--blue); font-weight: 700; }
.stats-chips .chip svg {
  width: 15px; height: 15px;
  color: var(--blue);
  flex-shrink: 0;
}

/* How it works — numbered editorial steps (replaces the bento card grid) */
.how-steps {
  display: grid;
  gap: 0;
  margin-top: 24px;
}
.how-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: start;
}
@media (min-width: 720px) {
  .how-step {
    grid-template-columns: 100px 1fr;
    gap: 28px;
    padding: 30px 0;
  }
}
.how-step:first-child { padding-top: 6px; }
.how-step:last-child { border-bottom: none; padding-bottom: 6px; }
.how-step .num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 0.9;
  color: var(--blue);
  letter-spacing: -0.03em;
  align-self: start;
}
.how-step h3 {
  margin: 6px 0 8px;
  font-family: var(--font-display);
  font-size: clamp(19px, 2vw, 23px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.how-step p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 640px;
}
.how-step code {
  font-family: 'SF Mono', ui-monospace, Menlo, monospace;
  font-size: 0.92em;
  padding: 1px 6px;
  border-radius: 4px;
  background: var(--blue-soft);
  color: var(--blue);
}

/* Dynamic platform-row inside .apply-form */
.apply-form .platforms-block {
  display: block;
}
.apply-form .platforms-block > .field-label {
  display: block;
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px;
}
.apply-form .platforms-block > .field-label .req {
  color: #ffb38f;
  margin-left: 3px;
}
.apply-form .platforms-list {
  display: grid;
  gap: 10px;
}
.apply-form .platform-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.6fr) 1fr auto;
  gap: 8px;
  align-items: stretch;
}
.apply-form .platform-row select,
.apply-form .platform-row input[type="text"] {
  margin-top: 0;
}
.apply-form .platform-row .remove-row {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 12px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.apply-form .platform-row .remove-row:hover {
  background: rgba(255, 105, 105, 0.25);
  color: #ffdada;
  border-color: rgba(255, 105, 105, 0.55);
}
.apply-form .add-platform-btn {
  margin-top: 10px;
  align-self: start;
  justify-self: start;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px;
  font: inherit;
  font-size: 13.5px; font-weight: 600;
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.10);
  border: 1px dashed rgba(255,255,255,0.30);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.apply-form .add-platform-btn:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}
.apply-form .add-platform-btn svg { width: 14px; height: 14px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
