/* ============================================================
   Join The Planet × Leo Messi — campaign layer
   Sits on top of the template base. Brand tokens from
   0 - recursos/brand/design-tokens.css. Light page; the prizes
   section is the one deliberate dark exception (the boot footage
   lives on black). Gold appears only where there is a boot,
   plus the panel CTA — and the CTA label is Ink.
   ============================================================ */

/* ---------- Fonts (self-hosted, latin) ---------- */
@font-face { font-family: 'Poppins'; font-weight: 400; font-style: normal; font-display: swap; src: url('../fonts/Poppins-400.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-weight: 500; font-style: normal; font-display: swap; src: url('../fonts/Poppins-500.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-weight: 600; font-style: normal; font-display: swap; src: url('../fonts/Poppins-600.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-weight: 700; font-style: normal; font-display: swap; src: url('../fonts/Poppins-700.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-weight: 700; font-style: normal; font-display: swap; src: url('../fonts/PlayfairDisplay-700.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-weight: 800; font-style: normal; font-display: swap; src: url('../fonts/PlayfairDisplay-800.woff2') format('woff2'); }

/* ---------- Tokens ---------- */
:root {
  --navy: #13284c;
  --navy-deep: #0d1e3d;
  --ocean: #009cde;
  --ocean-600: #0086c0;
  --gold: #d9a62e;          /* boots + panel CTA only */
  --gold-soft: #f3e3b8;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cad5e2;
  --slate-500: #62748e;
  --ink: #13284c;
  --white: #ffffff;
  --water: rgba(0, 156, 222, 0.10);
  --water-line: rgba(0, 156, 222, 0.45);
  --danger: #c93a3a;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Poppins', ui-sans-serif, system-ui, sans-serif;
  --radius: 24px;
  --radius-sm: 12px;
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.10), 0 8px 10px -6px rgba(0,0,0,.10);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,.25);
  --nav-h: 76px;
}

/* ---------- Base overrides ---------- */
html { scroll-behavior: smooth; }
body.jtp-body {
  font-family: var(--sans);
  background: var(--slate-50);
  color: var(--ink);
  overflow-x: hidden;
}
.jtp-body h1, .jtp-body h2, .jtp-body .section-4-title { font-family: var(--serif); color: var(--ink); }
.jtp-body h3, .jtp-body h4, .jtp-body h5, .jtp-body h6 { font-family: var(--sans); color: var(--ink); }
.jtp-body ::selection { background: var(--ocean); color: #fff; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0; }

:focus-visible { outline: 3px solid var(--ocean); outline-offset: 2px; border-radius: 4px; }

.jtp-eyebrow {
  font: 600 12px/1.4 var(--sans);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 18px;
}
.jtp-eyebrow--gold { color: var(--gold); }

/* [COMPLETE] placeholders — visible by design */
.complete-tag {
  font: 600 10px/1 var(--sans);
  font-style: normal;
  letter-spacing: .06em;
  color: #8a6d1a;
  background: var(--gold-soft);
  border: 1px dashed #c9a860;
  border-radius: 4px;
  padding: 2px 5px;
  vertical-align: middle;
  white-space: nowrap;
}
.complete-link { color: inherit; text-decoration: none; }

/* ---------- Buttons ---------- */
.jtp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: 600 14px/1 var(--sans);
  border-radius: 999px;
  padding: 13px 26px;
  border: 1px solid transparent;
  background: var(--ocean); color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: background .15s ease, transform .05s ease, border-color .15s ease;
}
.jtp-btn:hover { background: var(--ocean-600); color: #fff; }
.jtp-btn:active { transform: translateY(1px); }
.jtp-btn--nav { padding: 11px 22px; }
.jtp-btn--gold { background: var(--gold); color: var(--ink); }
.jtp-btn--gold:hover { background: #c5952a; color: var(--ink); }
.jtp-btn--ghost { background: transparent; border-color: var(--slate-300); color: var(--ink); }
.jtp-btn--ghost:hover { background: var(--slate-100); color: var(--ink); }

/* ============================================================
   LOADER — the boot fills as assets load. Real progress only.
   ============================================================ */
.jtp-loader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--slate-50);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .45s ease, visibility .45s ease;
}
.jtp-loader.is-done { opacity: 0; visibility: hidden; }
.jtp-loader__inner { display: flex; flex-direction: column; align-items: center; gap: 26px; }
.jtp-loader__boot { position: relative; width: min(320px, 68vw); border-radius: 18px; overflow: hidden; background: #06090f; }
.jtp-loader__boot img { display: block; width: 100%; height: auto; }
.jtp-loader__rule { width: min(300px, 64vw); height: 1px; background: var(--slate-200); overflow: hidden; }
.jtp-loader__rule span { display: block; height: 100%; width: 0%; background: var(--navy); transition: width .3s ease; }
.jtp-loader__mark { opacity: .9; }

/* ============================================================
   NAV
   ============================================================ */
.jtp-nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(248, 250, 252, .82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200);
  height: var(--nav-h);
  display: flex; align-items: center;
}
.jtp-nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.jtp-nav__logo img { display: block; height: 34px; width: auto;
  /* white mark on light ground → invert to navy */
  filter: none; }
.jtp-nav__links { display: flex; gap: 28px; }
.jtp-nav__links a {
  font: 500 14px/1 var(--sans);
  color: var(--ink); text-decoration: none;
  padding: 8px 2px; border-bottom: 2px solid transparent;
  transition: border-color .15s ease;
}
.jtp-nav__links a:hover { border-bottom-color: var(--ocean); }
@media (max-width: 700px) { .jtp-nav__links { display: none; } }

/* ============================================================
   LIVE SCOREBOARD — the campaign framed as the final's scoreboard.
   ============================================================ */
.jtp-livebar { background: var(--navy); color: #fff; border-bottom: 3px solid var(--ocean); }
.jtp-livebar__row {
  list-style: none; margin: 0; padding: 14px 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}
.jtp-livebar__row li {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  border-right: 1px solid rgba(255,255,255,.12);
}
.jtp-livebar__row li:last-child { border-right: 0; }
.jtp-livebar__row b {
  font: 800 clamp(20px, 2.6vw, 30px)/1 var(--sans);
  font-variant-numeric: tabular-nums; color: #fff; letter-spacing: -.01em;
}
.jtp-livebar__row b.is-urgent { color: var(--gold); }
.jtp-livebar__row span {
  font: 600 10px/1.2 var(--sans); letter-spacing: .12em; text-transform: uppercase;
  color: #9fb2cf; margin-top: 7px;
}
@media (max-width: 620px) {
  .jtp-livebar__row { grid-template-columns: repeat(2, 1fr); gap: 16px 8px; }
  .jtp-livebar__row li:nth-child(2) { border-right: 0; }
}

/* ============================================================
   HERO — "Play the final with Messi." Game-first framing.
   Looping campaign video behind, Messi cutout on the right,
   text on the left over a legibility veil.
   ============================================================ */
.jtp-hero { position: relative; padding: 52px 0 40px; overflow: hidden; }
.jtp-hero__bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  pointer-events: none;
}
.jtp-hero__veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  /* Strong, near-uniform veil: the video reads as a faint moving texture,
     never as a foreground photo. Slightly more transparent top-right only. */
  background:
    linear-gradient(120deg, rgba(248,250,252,.97) 0%, rgba(248,250,252,.93) 55%, rgba(248,250,252,.88) 100%),
    linear-gradient(0deg, rgba(248,250,252,.7) 0%, rgba(248,250,252,0) 55%);
}
@media (max-width: 860px) {
  /* On portrait the landscape video crops badly — hide it, keep a clean field */
  .jtp-hero__bg { display: none; }
  .jtp-hero__veil { background: var(--slate-50); }
}
.jtp-hero .container { position: relative; z-index: 2; }
.jtp-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(20px, 4vw, 60px);
  align-items: center;
}
.jtp-hero__photo { margin: 0; display: flex; justify-content: center; align-items: flex-end; }
.jtp-hero__photo img {
  width: 100%; max-width: 420px; height: auto;
  filter: drop-shadow(0 24px 40px rgba(19,40,76,.28));
}
/* Boot (landscape trophy) — centered, larger, floating shadow.
   Nested layers so the motion effects never fight each other:
   figure = scroll parallax · .boot-parallax = mouse parallax · img = float. */
.jtp-hero__photo--boot { align-items: center; }
.jtp-hero__photo--boot .boot-parallax { display: block; will-change: transform; }
.jtp-hero__photo--boot img,
.jtp-hero__photo--boot video {
  display: block;
  width: 100%; max-width: 560px; height: auto;
  margin: 0 auto;
  will-change: transform;
  filter: drop-shadow(0 28px 34px rgba(19,40,76,.34));
}
@media (max-width: 860px) {
  .jtp-hero__grid { grid-template-columns: 1fr; }
  .jtp-hero__photo { order: -1; }
  .jtp-hero__photo img { max-width: 260px; }
  .jtp-hero__photo--boot img { max-width: 360px; }
}
@media (prefers-reduced-motion: reduce) {
  .jtp-hero__bg { display: none; }
}
.jtp-hero__title {
  font: 800 clamp(52px, 7.6vw, 120px)/0.94 var(--serif);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 24px;
}
.jtp-hero__title span { display: block; }

.jtp-hero__predict { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin: 0 0 22px; }
.jtp-hero__predict .lead {
  font: 700 12px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase;
  color: var(--slate-500); margin-right: 2px;
}
.jtp-hero__predict .pill {
  display: inline-flex; align-items: center; gap: 7px;
  font: 600 14px/1 var(--sans); color: var(--ink);
  background: var(--white); border: 1px solid var(--slate-200); border-radius: 999px; padding: 9px 15px;
}
.jtp-hero__predict .pill svg { width: 17px; height: 17px; color: var(--navy); flex: none; }

.jtp-hero__deck {
  font: 500 clamp(17px, 1.9vw, 21px)/1.5 var(--sans);
  color: var(--ink); max-width: 40ch; margin: 0 0 26px;
}
.jtp-hero__deck b { color: var(--ocean); font-weight: 700; }

.jtp-hero__actions { display: flex; align-items: center; gap: clamp(18px, 3vw, 40px); flex-wrap: wrap; margin-bottom: 22px; }
.jtp-cta.jtp-cta--hero { width: auto; padding: 17px 46px; font: 800 16px/1 var(--sans); letter-spacing: .02em; }

.jtp-hero__why {
  font: 400 14px/1.6 var(--sans); color: var(--slate-500);
  max-width: 60ch; margin: 0; padding-left: 14px; border-left: 3px solid var(--ocean);
}

/* Countdown */
.jtp-countdown {
  display: inline-block;
  border: 1px solid var(--slate-200);
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
}
.jtp-countdown__label { font: 600 11px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--ink); margin: 0 0 10px; }
.jtp-countdown__digits { display: flex; gap: 18px; }
.jtp-countdown__digits span { display: flex; flex-direction: column; align-items: center; min-width: 44px; }
.jtp-countdown__digits b { font: 700 30px/1 var(--sans); font-variant-numeric: tabular-nums; color: var(--ink); }
.jtp-countdown__digits i { font: 500 10px/1 var(--sans); font-style: normal; letter-spacing: .1em; text-transform: uppercase; color: var(--slate-500); margin-top: 6px; }
.jtp-countdown__caption { font: 400 12.5px/1.4 var(--sans); color: var(--slate-500); margin: 12px 0 0; }
.jtp-countdown--closed .jtp-countdown__label { color: var(--slate-500); }

/* ============================================================
   DONATION MODULE — split card: form left, photo right.
   Distribution mirrors the reference: white form column with a
   serif question-style title, chips, a large amount readout and
   one strong CTA; media column with utility links on top and a
   navy overlay card sitting on the photo.
   ============================================================ */
.jtp-give { padding: 22px 0 96px; }
.jtp-give__card {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(0, 0.48fr);
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-2xl);
  overflow: hidden;
}
@media (max-width: 991px) { .jtp-give__card { grid-template-columns: 1fr; } }

.jtp-give__form {
  position: relative;
  padding: clamp(28px, 4vw, 56px);
  overflow: hidden;
}
.jtp-give__title {
  font: 700 clamp(28px, 3vw, 40px)/1.1 var(--serif);
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  padding: 0;
}
.jtp-give__subtitle {
  font: 600 16px/1.2 var(--sans);
  color: var(--ink);
  margin: 0 0 12px;
  padding: 0;
}
.jtp-label {
  font: 600 12px/1 var(--sans);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin: 0 0 10px;
}
.jtp-big-amount {
  font: 700 clamp(34px, 3.6vw, 46px)/1 var(--sans);
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  margin: 4px 0 14px;
}
.jtp-big-amount b { font-weight: 700; }

/* ---------- Wizard: prediction → donation → details ---------- */
.jtp-wizard__head { margin-bottom: 22px; }
.jtp-wizard__nav {
  list-style: none;
  display: flex; gap: 6px;
  padding: 0; margin: 0 0 20px;
}
.jtp-wizard__nav li { flex: 1; display: flex; }
.jtp-wizard__nav button {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent;
  border: 0;
  border-bottom: 2px solid var(--slate-200);
  padding: 10px 4px 12px;
  cursor: pointer;
  color: var(--slate-500);
  transition: color .15s ease, border-color .15s ease;
}
.jtp-wizard__nav button i {
  font: 700 11px/1 var(--sans);
  font-style: normal;
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--slate-300);
  color: var(--slate-500);
  flex: none;
  transition: all .15s ease;
}
.jtp-wizard__nav button span {
  font: 600 11.5px/1 var(--sans);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.jtp-wizard__nav button:hover { color: var(--ink); }
.jtp-wizard__nav button.is-active {
  color: var(--ink);
  border-bottom-color: var(--ocean);
}
.jtp-wizard__nav button.is-active i {
  background: var(--ocean); border-color: var(--ocean); color: #fff;
}
.jtp-wizard__nav button.is-done { color: var(--ink); }
.jtp-wizard__nav button.is-done i {
  background: var(--navy); border-color: var(--navy); color: #fff;
}
@media (max-width: 560px) {
  .jtp-wizard__nav button span { display: none; }
}

.jtp-wstep { display: none; border: 0; padding: 0; margin: 0; }
.jtp-wstep.is-active { display: flex; flex-direction: column; min-height: 320px; }
.jtp-wizard__row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-top: auto;
  padding-top: 20px;
}
.jtp-wizard__row .jtp-btn { min-width: 130px; justify-content: center; }
.jtp-wizard__backlink {
  background: none; border: 0; padding: 0;
  font: 500 12.5px/1 var(--sans);
  color: var(--slate-500);
  cursor: pointer;
  align-self: flex-start;
  margin-bottom: 14px;
}
.jtp-wizard__backlink:hover { color: var(--ink); text-decoration: underline; }

/* Media column — the photo shows complete, nothing over it.
   The photo's own black ground merges with the column bg.
   Height is capped so the module stays compact. */
.jtp-give__media {
  position: relative;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.jtp-give__media > img {
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: contain;
}
@media (max-width: 991px) {
  .jtp-give__media > img { height: auto; max-height: 320px; }
}
/* Water motif — rises with the amount. Same move as the loader, nowhere else. */
.jtp-panel__water {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 0%;
  background: var(--water);
  border-top: 2px solid var(--water-line);
  transition: height .3s cubic-bezier(.33,1,.68,1);
  pointer-events: none;
}
.jtp-step { border: 0; padding: 0; margin: 0 0 26px; position: relative; }
.jtp-step:last-child { margin-bottom: 0; }
.jtp-step__head {
  display: flex; align-items: center; gap: 10px;
  font: 600 15px/1 var(--sans); color: var(--ink);
  margin-bottom: 14px; padding: 0;
}
.jtp-step__head .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 8px;
  background: var(--navy); color: #fff;
  font: 700 13px/1 var(--sans);
}
.jtp-step__note { font: 400 12.5px/1.5 var(--sans); color: var(--slate-500); margin: -6px 0 14px; }
.jtp-step__foot { font: 400 12px/1.55 var(--sans); color: var(--slate-500); margin: 14px 0 0; }

/* Matching status */
.jtp-match {
  display: flex; align-items: center; gap: 8px;
  font: 500 12.5px/1.4 var(--sans); color: var(--ink);
  background: var(--slate-100); border: 1px solid var(--slate-200);
  border-radius: 8px; padding: 8px 12px; margin: 0 0 14px;
}
.jtp-match .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ocean); flex: none; }
.jtp-match.is-exhausted .dot { background: var(--slate-300); }

/* Amount chips */
.jtp-amounts { display: grid; grid-template-columns: repeat(4, 1fr) 1.35fr; gap: 8px; margin-bottom: 16px; }
.chip {
  font: 600 15px/1 var(--sans);
  border: 1px solid var(--slate-200);
  background: var(--white); color: var(--ink);
  border-radius: 10px; padding: 13px 0;
  cursor: pointer;
  transition: border-color .12s ease, background .12s ease, box-shadow .12s ease;
  text-align: center;
}
.chip:hover { border-color: var(--ocean); }
.chip.is-active { border-color: var(--ocean); background: rgba(0,156,222,.07); box-shadow: inset 0 0 0 1.5px var(--ocean); }
.chip--other { display: flex; align-items: center; gap: 4px; padding: 0 10px; }
.chip--other .cur { color: var(--slate-500); font-weight: 600; }
.chip--other input {
  width: 100%; border: 0; outline: 0; background: transparent;
  font: 600 15px/1 var(--sans); color: var(--ink);
  -moz-appearance: textfield; appearance: textfield;
}
.chip--other input::-webkit-outer-spin-button, .chip--other input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* Summary */
.jtp-summary { margin: 0 0 12px; }
.jtp-summary > div { display: flex; justify-content: space-between; align-items: baseline; padding: 7px 0; border-bottom: 1px dashed var(--slate-200); }
.jtp-summary dt { font: 400 13px/1.4 var(--sans); color: var(--slate-500); }
.jtp-summary dd { font: 600 14px/1 var(--sans); color: var(--ink); margin: 0; font-variant-numeric: tabular-nums; }
.jtp-summary .total { border-bottom: 0; }
.jtp-summary .total dt { color: var(--ink); font-weight: 600; }
.jtp-summary .total dd { font: 700 18px/1 var(--sans); color: var(--ocean); }
.jtp-entries { display: flex; align-items: baseline; gap: 10px; margin: 0; }
.jtp-entries b { font: 700 15px/1 var(--sans); color: var(--ink); }
.jtp-entries span { font: 400 12px/1.4 var(--sans); color: var(--slate-500); }

/* Prediction */
.jtp-predict__group { margin-bottom: 14px; }
.jtp-predict .lbl { font: 600 12px/1 var(--sans); letter-spacing: .08em; text-transform: uppercase; color: var(--slate-500); margin: 0 0 10px; }
.jtp-predict .score { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.jtp-predict .team { display: flex; align-items: center; gap: 8px; }
@media (max-width: 480px) {
  .jtp-predict .score { gap: 10px; }
  .jtp-predict .team { gap: 6px; }
  .jtp-predict .score .vs { display: none; }
}
.jtp-predict .team .flag {
  width: 23px; height: auto;
  border-radius: 2.5px;
  box-shadow: 0 0 0 1px rgba(19,40,76,.12);
  flex: none;
}
.jtp-predict .team .name { font: 700 13px/1 var(--sans); color: var(--ink); }
.jtp-predict .vs { color: var(--slate-300); font-weight: 600; }
/* Performance sliders — the thumb IS the object: a ball for goals,
   a boot for assists. Drag it along the track to set the number. */
.jtp-predict .perf { display: flex; flex-direction: column; gap: 16px; }
.perf-slider .head {
  display: flex; align-items: baseline; justify-content: flex-start; gap: 9px;
  margin-bottom: 6px;
}
.perf-slider .head output {
  font: 800 21px/1 var(--sans); color: var(--ocean);
  font-variant-numeric: tabular-nums; min-width: 1.1ch; text-align: center;
}
.perf-slider .head span {
  font: 600 13px/1 var(--sans); color: var(--ink);
  text-transform: uppercase; letter-spacing: .04em;
}
.perf-slider input[type="range"] {
  -webkit-appearance: none; appearance: none;
  display: block; width: 100%;
  height: 30px;
  background: transparent;
  cursor: pointer;
  margin: 0;
}
.perf-slider input[type="range"]:focus-visible { outline: 3px solid var(--ocean); outline-offset: 4px; border-radius: 8px; }
/* track */
.perf-slider input[type="range"]::-webkit-slider-runnable-track {
  height: 6px; border-radius: 999px;
  background: linear-gradient(to right, var(--ocean) var(--fill, 0%), var(--slate-200) var(--fill, 0%));
}
.perf-slider input[type="range"]::-moz-range-track {
  height: 6px; border-radius: 999px; background: var(--slate-200);
}
.perf-slider input[type="range"]::-moz-range-progress {
  height: 6px; border-radius: 999px; background: var(--ocean);
}
/* thumbs */
.perf-slider--ball input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 28px; height: 28px; margin-top: -11px;
  border: 0; background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 26'%3E%3Ccircle cx='13' cy='13' r='11.6' fill='white' stroke='%2313284c' stroke-width='1.8'/%3E%3Cpath d='M13 8 L17.3 11.1 L15.7 16.2 L10.3 16.2 L8.7 11.1 Z' fill='%2313284c'/%3E%3C/svg%3E") center/contain no-repeat;
}
.perf-slider--ball input[type="range"]::-moz-range-thumb {
  width: 28px; height: 28px; border: 0;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 26'%3E%3Ccircle cx='13' cy='13' r='11.6' fill='white' stroke='%2313284c' stroke-width='1.8'/%3E%3Cpath d='M13 8 L17.3 11.1 L15.7 16.2 L10.3 16.2 L8.7 11.1 Z' fill='%2313284c'/%3E%3C/svg%3E") center/contain no-repeat;
}
.perf-slider--boot input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 36px; height: 24px; margin-top: -9px;
  border: 0; background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 34 22'%3E%3Cpath d='M2 19 L7 19 C8 15 8 11 10 9 L14 5 C15 4 17 4 18 5 L20 7 C24 11 30 13 32 14 L32 19 L2 19 Z' fill='%2313284c' stroke='white' stroke-width='1.2'/%3E%3C/svg%3E") center/contain no-repeat;
}
.perf-slider--boot input[type="range"]::-moz-range-thumb {
  width: 36px; height: 24px; border: 0;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 34 22'%3E%3Cpath d='M2 19 L7 19 C8 15 8 11 10 9 L14 5 C15 4 17 4 18 5 L20 7 C24 11 30 13 32 14 L32 19 L2 19 Z' fill='%2313284c' stroke='white' stroke-width='1.2'/%3E%3C/svg%3E") center/contain no-repeat;
}
.perf-slider .ends {
  display: flex; justify-content: space-between;
  font: 500 10.5px/1 var(--sans); color: var(--slate-500);
  margin-top: 2px;
}

.stepper { display: inline-flex; align-items: center; border: 1px solid var(--slate-200); border-radius: 9px; overflow: hidden; }
.stepper button {
  width: 30px; height: 32px; border: 0; background: var(--slate-100);
  font: 600 16px/1 var(--sans); color: var(--ink); cursor: pointer;
}
.stepper button:hover { background: var(--slate-200); }
.stepper button:disabled { color: var(--slate-300); cursor: not-allowed; }
.stepper output {
  width: 34px; text-align: center;
  font: 700 15px/1 var(--sans); color: var(--ink);
  font-variant-numeric: tabular-nums;
}
/* No motion on prediction inputs — motion here would read as money moving. */

.jtp-predict-locked {
  display: flex; gap: 10px; align-items: flex-start;
  background: var(--slate-100); border: 1px solid var(--slate-200);
  border-radius: 10px; padding: 14px;
  color: var(--slate-500);
}
.jtp-predict-locked svg { flex: none; margin-top: 2px; }
.jtp-predict-locked p { font: 400 13px/1.55 var(--sans); margin: 0; }

/* Details */
.jtp-fields { display: grid; gap: 10px; margin-bottom: 12px; }
.jtp-fields label { display: grid; gap: 6px; font: 600 12px/1 var(--sans); color: var(--ink); }
.jtp-fields input {
  border: 1px solid var(--slate-200); border-radius: 9px;
  padding: 11px 12px; font: 400 14px/1.3 var(--sans); color: var(--ink);
  background: var(--white);
  transition: border-color .12s ease;
}
.jtp-fields input:hover { border-color: var(--slate-300); }
.jtp-fields input:focus { border-color: var(--ocean); outline: 0; box-shadow: 0 0 0 3px rgba(0,156,222,.15); }
.jtp-fields input[aria-invalid="true"] { border-color: var(--danger); }
.jtp-consent { display: flex; gap: 9px; align-items: flex-start; font: 400 12.5px/1.5 var(--sans); color: var(--slate-500); margin-bottom: 14px; cursor: pointer; }
.jtp-consent input { margin-top: 2px; accent-color: var(--ocean); width: 15px; height: 15px; flex: none; }
.jtp-consent a { color: var(--ink); }
.jtp-error { font: 500 12.5px/1.4 var(--sans); color: var(--danger); margin: 0 0 10px; }

/* CTA — the one gold moment off the boot. Label is Ink. */
.jtp-cta {
  display: flex; align-items: center; justify-content: center;
  width: 100%;
  background: var(--gold);
  border: 0; border-radius: 999px;
  padding: 16px;
  cursor: pointer;
  transition: filter .15s ease, transform .05s ease;
  text-decoration: none;
}
.jtp-cta:hover { filter: brightness(1.05); }
.jtp-cta:active { transform: translateY(1px); }
.jtp-cta:disabled { filter: grayscale(.5) opacity(.6); cursor: not-allowed; }
.jtp-cta__label { font: 700 15px/1 var(--sans); color: var(--ink); }
.jtp-cta.is-loading .jtp-cta__label { opacity: .55; }
.jtp-reassure { font: 400 12px/1.4 var(--sans); color: var(--slate-500); text-align: center; margin: 10px 0 12px; }
.jtp-free-entry { display: block; text-align: center; font: 500 12.5px/1.3 var(--sans); color: var(--slate-500); text-decoration: underline; }
.jtp-free-entry:hover { color: var(--ink); }

/* ============================================================
   PARTNER STRIP
   ============================================================ */
.jtp-partners { padding: 34px 0; border-top: 1px solid var(--slate-200); border-bottom: 1px solid var(--slate-200); background: var(--slate-100); }
.jtp-partners__label { font: 600 11px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--slate-500); text-align: center; margin: 0 0 18px; }
.jtp-partners__row { display: flex; justify-content: center; align-items: center; gap: clamp(28px, 6vw, 72px); flex-wrap: wrap; }
.partner-slot {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 130px; height: 44px;
  border: 1px dashed var(--slate-300); border-radius: 8px;
  background: var(--white);
}

/* ============================================================
   PRIZES — the dark exception. Boot footage lives on black.
   ============================================================ */
.jtp-prizes { background: #06090f; color: #eef4fb; padding: clamp(64px, 8vw, 100px) 0 clamp(48px, 6vw, 80px); }
.jtp-prizes > .container > .jtp-eyebrow--gold { margin-bottom: 26px; }

/* Slide 1 — the boot floats over a LIT stage: perspective grid + crosshair
   texture (the unifying texture), an ocean halo, and a breathing vignette.
   "Lit, not colored" — light carries the premium read. Camera never sleeps. */
.prize-slide--boot .media--boot {
  position: relative; overflow: hidden;
  background: #080c14;
}
.prize-slide--boot .media--boot::before {
  content: ''; position: absolute; inset: -25% -15%; z-index: 0; pointer-events: none;
  transform: perspective(720px) rotateX(58deg) translateY(16%);
  transform-origin: 50% 100%;
  background:
    repeating-linear-gradient(0deg,  rgba(0,156,222,.18) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(90deg, rgba(0,156,222,.18) 0 1px, transparent 1px 64px);
  -webkit-mask-image: radial-gradient(72% 62% at 50% 58%, #000 25%, transparent 100%);
  mask-image: radial-gradient(72% 62% at 50% 58%, #000 25%, transparent 100%);
  animation: jtpGridDrift 9s linear infinite;
}
.prize-slide--boot .media--boot::after {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(58% 52% at 50% 44%, rgba(0,156,222,.26), transparent 70%),
    radial-gradient(ellipse at center, transparent 42%, rgba(6,9,15,.92) 100%);
  animation: jtpVignetteBreath 5s ease-in-out infinite alternate;
}
@keyframes jtpGridDrift { to { background-position: 0 64px, 64px 0; } }
@keyframes jtpVignetteBreath { from { opacity: .82; } to { opacity: 1; } }
.prize-slide--boot .prize-parallax { position: relative; z-index: 1; display: block; will-change: transform; }
/* Sparkle marks (injected by JS) — floating cluster drift, under the boot */
.prize-slide--boot .stage-spark {
  position: absolute; z-index: 0; width: 10px; height: 10px; pointer-events: none;
  color: rgba(0,156,222,.6); will-change: transform, opacity;
}
.prize-slide--boot .stage-spark::before,
.prize-slide--boot .stage-spark::after { content: ''; position: absolute; background: currentColor; border-radius: 1px; }
.prize-slide--boot .stage-spark::before { left: 4px; top: 0; width: 2px; height: 10px; }
.prize-slide--boot .stage-spark::after  { left: 0; top: 4px; width: 10px; height: 2px; }
@media (prefers-reduced-motion: reduce) {
  .prize-slide--boot .media--boot::before,
  .prize-slide--boot .media--boot::after { animation: none; }
}
.prize-slide--boot .media--boot img,
.prize-slide--boot .media--boot video {
  width: 100%; max-width: 480px; max-height: none; height: auto;
  object-fit: contain; display: block;
}
/* The 360° clip has a dark stage — screen-blend it so the frame edges
   melt into the dark section and only the boot reads. */
.prize-slide--boot .media--boot video { mix-blend-mode: screen; }
.prize-slide .body .jtp-boot-counter { margin: 18px 0; }
.prize-slide--boot .body .jtp-btn--gold { margin-top: 20px; }

.jtp-prizes__pin { position: relative; }
.jtp-prizes__pin .container { padding-top: 90px; padding-bottom: 60px; }
.jtp-prizes__stage {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  min-height: 62vh;
}
@media (max-width: 900px) {
  .jtp-prizes__stage { grid-template-columns: 1fr; }
}
.jtp-prizes__boot { position: relative; }
.jtp-prizes__boot canvas {
  display: block; width: 100%; height: auto;
  max-width: 640px; margin: 0 auto;
}
.jtp-prizes__still { display: block; width: 100%; max-width: 560px; margin: 0 auto; border-radius: var(--radius-sm); }

.jtp-prizes__beats { position: relative; min-height: 330px; }
.beat {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity .45s ease, visibility .45s ease;
}
.beat.is-active { opacity: 1; visibility: visible; }
.beat h2 {
  font: 700 clamp(30px, 3.4vw, 46px)/1.1 var(--serif);
  color: #fff; margin: 0 0 16px; letter-spacing: -0.01em; text-wrap: balance;
}
.beat p { font: 400 15.5px/1.65 var(--sans); color: #b9c7de; max-width: 46ch; }
.beat .qual { font: 400 13px/1.5 var(--sans); color: #8fa2bf; margin: 14px 0 20px; }

/* Boot counter — gold lives here, on the boots */
.jtp-boot-counter {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin: 6px 0 4px;
}
.jtp-boot-counter .big { font: 700 30px/1 var(--sans); color: #fff; margin: 0 0 14px; font-variant-numeric: tabular-nums; }
.jtp-boot-counter .silhouettes { display: flex; gap: 10px; margin-bottom: 12px; }
.jtp-boot-counter .silhouettes svg { width: 34px; height: 26px; }
.jtp-boot-counter .silhouettes .locked path { fill: none; stroke: rgba(255,255,255,.35); stroke-width: 1.5; }
.jtp-boot-counter .silhouettes .unlocked path { fill: var(--gold); stroke: none; }
.jtp-boot-counter .silhouettes .just-unlocked path { animation: boot-pop .4s ease; }
@keyframes boot-pop { 0% { opacity: 0; transform: scale(.7); } 100% { opacity: 1; transform: scale(1); } }
.jtp-boot-counter .next { font: 500 13.5px/1.4 var(--sans); color: #b9c7de; margin: 0; }

/* Prize gallery — horizontal scroll-snap slider */
.jtp-gallery { padding: 40px 0 90px; }
.jtp-gallery__track {
  display: flex; gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.jtp-gallery__track::-webkit-scrollbar { display: none; }
.prize-slide {
  flex: 0 0 100%; scroll-snap-align: center;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); overflow: hidden;
}
@media (max-width: 760px) { .prize-slide { grid-template-columns: 1fr; } }
.prize-slide .media {
  background: #0a0f18; display: flex; align-items: center; justify-content: center;
  padding: 28px; min-height: 300px;
}
.prize-slide .media--light { background: linear-gradient(160deg, #eef4fb, #cdd9ea); }
.prize-slide .media img { width: 100%; max-height: 340px; object-fit: contain; }
.prize-slide .body { padding: clamp(26px, 3vw, 44px); align-self: center; }
.prize-slide .tag {
  display: inline-block; font: 700 10.5px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.prize-slide h3 { font: 700 clamp(24px, 3vw, 34px)/1.15 var(--serif); color: #fff; margin: 0 0 14px; }
.prize-slide p { font: 400 15px/1.65 var(--sans); color: #b9c7de; margin: 0 0 12px; max-width: 42ch; }
.prize-slide .who { font-size: 14px; }
.prize-slide .who b { color: #eef4fb; font-weight: 600; }

.jtp-gallery__nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 24px; }
.jtp-gallery__arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22); background: transparent; color: #fff;
  font: 400 22px/1 var(--sans); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s ease, border-color .15s ease;
}
.jtp-gallery__arrow:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.4); }
.jtp-gallery__dots { display: flex; gap: 9px; }
.jtp-gallery__dots .dot {
  width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0; cursor: pointer;
  background: rgba(255,255,255,.28); transition: background .15s ease, width .15s ease;
}
.jtp-gallery__dots .dot.is-active { background: var(--gold); width: 24px; border-radius: 5px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.jtp-how .section-4-title-wrapper { margin-bottom: 48px; }
.jtp-how__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.jtp-how__grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 991px) { .jtp-how__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px) { .jtp-how__grid--3 { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .jtp-how__grid { grid-template-columns: 1fr; } }
.how-step {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.how-step__icon { display: block; width: 46px; height: 46px; color: var(--ocean); margin-bottom: 20px; }
.how-step__icon svg { width: 100%; height: 100%; display: block; }
.how-step .num { font: 700 12px/1 var(--sans); color: var(--ocean); letter-spacing: .1em; text-transform: uppercase; }
.how-step h3 { font: 600 17px/1.3 var(--sans); margin: 12px 0 8px; }
.how-step p { font: 400 13.5px/1.6 var(--sans); color: var(--slate-500); margin: 0; }
.jtp-how__closing {
  font: 700 clamp(20px, 2.4vw, 28px)/1.35 var(--serif);
  color: var(--ink);
  text-align: center;
  max-width: 30ch;
  margin: 56px auto 0;
  text-wrap: balance;
}

/* ============================================================
   IMPACT
   ============================================================ */
.jtp-impact .section-4-title-wrapper { margin-bottom: 28px; }
.jtp-impact__mission { font: 500 clamp(17px, 1.9vw, 21px)/1.6 var(--sans); color: var(--ink); max-width: 62ch; margin: 0 0 48px; }

/* Rosario recovery — photo slider (each photo matches its figure) */
.jtp-impact__subhead { font: 700 22px/1.2 var(--serif); color: var(--ink); margin: 0 0 20px; }
.jtp-impact__slider { padding: 0; margin-bottom: 44px; }
.impact-slide {
  flex: 0 0 100%; scroll-snap-align: center;
  position: relative; border-radius: var(--radius); overflow: hidden;
  height: clamp(320px, 42vw, 520px); background: #0a0f18;
}
.impact-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.impact-slide figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 56px 34px 30px;
  background: linear-gradient(0deg, rgba(6,9,15,.9) 0%, rgba(6,9,15,.45) 55%, rgba(6,9,15,0) 100%);
  color: #fff;
}
.impact-slide figcaption b { display: block; font: 800 clamp(34px, 5vw, 56px)/1 var(--serif); color: #fff; }
.impact-slide figcaption span { display: block; font: 500 15px/1.4 var(--sans); color: #dbe6f5; margin-top: 8px; max-width: 32ch; }

/* Light gallery nav (impact) */
.jtp-gallery--light .jtp-gallery__arrow { border-color: var(--slate-300); color: var(--ink); }
.jtp-gallery--light .jtp-gallery__arrow:hover { background: var(--slate-100); border-color: var(--slate-500); }
.jtp-gallery--light .jtp-gallery__dots .dot { background: var(--slate-300); }
.jtp-gallery--light .jtp-gallery__dots .dot.is-active { background: var(--ocean); }

.jtp-impact__context { list-style: none; padding: 0; margin: 0 0 48px; display: grid; gap: 0; }
.jtp-impact__context li {
  font: 400 15px/1.6 var(--sans); color: var(--slate-500);
  padding: 14px 0 14px 26px; position: relative;
  border-bottom: 1px solid var(--slate-200);
}
.jtp-impact__context li::before {
  content: ''; position: absolute; left: 4px; top: 22px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--ocean);
}

.jtp-impact__trace { margin-bottom: 48px; }
.jtp-impact__trace h3 { font: 600 17px/1.2 var(--sans); margin: 0 0 20px; }
.jtp-impact__trace .flow {
  list-style: none; counter-reset: trace; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
}
@media (max-width: 900px) { .jtp-impact__trace .flow { grid-template-columns: 1fr; } }
.jtp-impact__trace .flow li {
  counter-increment: trace;
  background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius-sm);
  padding: 42px 16px 16px; position: relative;
  font: 500 13px/1.45 var(--sans); color: var(--ink);
}
.jtp-impact__trace .flow li::before {
  content: counter(trace, decimal-leading-zero);
  position: absolute; top: 14px; left: 16px;
  font: 700 12px/1 var(--sans); color: var(--ocean); letter-spacing: .06em;
}
.jtp-impact__trace .flow li:not(:last-child)::after {
  content: '→'; position: absolute; right: -13px; top: 50%; transform: translateY(-50%);
  color: var(--slate-300); font-size: 15px; z-index: 1;
}
@media (max-width: 900px) { .jtp-impact__trace .flow li:not(:last-child)::after { content: '↓'; right: auto; left: 18px; top: auto; bottom: -17px; transform: none; } }

.jtp-impact__audit {
  display: flex; gap: 26px; align-items: center;
  background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius);
  padding: 26px 30px;
}
@media (max-width: 680px) { .jtp-impact__audit { flex-direction: column; align-items: flex-start; } }
.jtp-impact__audit .audit-mark { display: flex; align-items: center; gap: 18px; flex: none; }
.jtp-impact__audit .deloitte { font: 700 24px/1 var(--sans); color: #000; letter-spacing: -0.02em; }
.jtp-impact__audit .deloitte .dot { color: #86bc25; }
.jtp-impact__audit .seal, .jtp-footer .seal {
  font: 700 10.5px/1 var(--sans); letter-spacing: .06em;
  color: var(--slate-500); border: 1.5px solid var(--slate-300); border-radius: 999px;
  padding: 7px 11px; white-space: nowrap;
}
.jtp-impact__audit p { font: 400 13.5px/1.6 var(--sans); color: var(--slate-500); margin: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.jtp-faq .section-4-title-wrapper { margin-bottom: 36px; }
.jtp-faq__list { max-width: 780px; }
.jtp-faq__list details { border-bottom: 1px solid var(--slate-200); }
.jtp-faq__list summary {
  font: 600 15.5px/1.4 var(--sans); color: var(--ink);
  padding: 18px 34px 18px 0;
  cursor: pointer; list-style: none; position: relative;
}
.jtp-faq__list summary::-webkit-details-marker { display: none; }
.jtp-faq__list summary::after {
  content: '+'; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font: 400 22px/1 var(--sans); color: var(--ocean);
  transition: transform .2s ease;
}
.jtp-faq__list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.jtp-faq__list details p { font: 400 14px/1.65 var(--sans); color: var(--slate-500); margin: 0; padding: 0 0 18px; max-width: 62ch; }

/* ============================================================
   FOOTER
   ============================================================ */
.jtp-footer { background: var(--navy-deep); color: #b9c7de; padding: 56px 0 40px; }
.jtp-footer__top { display: flex; align-items: center; gap: 20px; margin-bottom: 28px; }
.jtp-footer__top img { height: 40px; width: auto; }
.jtp-footer .seal { color: #b9c7de; border-color: rgba(255,255,255,.25); }
.jtp-footer__links { display: flex; flex-wrap: wrap; gap: 8px 24px; margin-bottom: 26px; }
.jtp-footer__links a { font: 400 13px/1.5 var(--sans); color: #b9c7de; text-decoration: none; }
.jtp-footer__links a:hover { color: #fff; }
.jtp-footer__note { font: 400 12px/1.5 var(--sans); color: #8fa2bf; margin: 0; }

/* ============================================================
   THANK-YOU STATE (separate state, not a modal)
   ============================================================ */
.jtp-thanks {
  position: fixed; inset: 0; z-index: 900;
  background: var(--slate-50);
  overflow-y: auto;
  display: flex; align-items: flex-start; justify-content: center;
  padding: 48px 20px;
}
.jtp-thanks__card {
  width: 100%; max-width: 480px;
  background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  padding: 36px;
  text-align: center;
}
.jtp-thanks__card > img { height: 40px; width: auto; margin-bottom: 22px; }
.jtp-thanks__card h2 { font: 700 clamp(26px, 3vw, 34px)/1.15 var(--serif); margin: 0 0 8px; }
.jtp-thanks .matched-line { font: 500 14px/1.5 var(--sans); color: var(--ocean); margin: 0 0 24px; }
.jtp-thanks .rows { text-align: left; margin: 0 0 22px; }
.jtp-thanks .rows > div { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px dashed var(--slate-200); }
.jtp-thanks .rows dt { font: 400 13px/1.4 var(--sans); color: var(--slate-500); }
.jtp-thanks .rows dd { font: 600 14px/1.3 var(--sans); color: var(--ink); margin: 0; font-variant-numeric: tabular-nums; }
.jtp-thanks .rows .total dt { color: var(--ink); font-weight: 600; }
.jtp-thanks .rows .total dd { color: var(--ocean); font-weight: 700; }
.jtp-thanks .inversion { font: 600 16px/1.45 var(--sans); color: var(--ink); margin: 0 0 20px; }
.jtp-cta--share { background: #25d366; margin-bottom: 10px; }
.jtp-cta--share .jtp-cta__label { color: #063; }
.jtp-thanks .jtp-btn--ghost { width: 100%; justify-content: center; margin-bottom: 16px; }
.jtp-thanks .reminder { font: 400 12.5px/1.5 var(--sans); color: var(--slate-500); margin: 0; }

/* ============================================================
   FLOATING DONATE — utility, not slogan
   ============================================================ */
.jtp-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 80;
  font: 700 14px/1 var(--sans);
  background: var(--ocean); color: #fff;
  border-radius: 999px; padding: 15px 28px;
  text-decoration: none;
  box-shadow: var(--shadow-xl);
  transition: opacity .25s ease, transform .25s ease, background .15s ease;
}
.jtp-float:hover { background: var(--ocean-600); color: #fff; }
.jtp-float[hidden] { display: none; }
.jtp-float.is-hidden { opacity: 0; transform: translateY(12px); pointer-events: none; }

/* ============================================================
   Text motion — the template's language: masked line reveals
   (SplitText), scroll-driven text fill, dual-label buttons.
   .has-anim is stamped by JS only when GSAP runs, so with no JS
   or reduced motion everything is simply visible.
   ============================================================ */
/* Only the masked-reveal elements are pre-hidden. Sub-elements stay
   visible so a stalled ticker can never strand them invisible. */
.has-anim .jtp-hero__title,
.has-anim .jtp-hero .jtp-eyebrow { visibility: hidden; }

.split-mask { overflow: hidden; display: block; }
.split-mask > div { will-change: transform; }

/* Scroll text fill — line-by-line, slate → ink (template .text-invert) */
.jtp-text-fill .fill-line {
  background: linear-gradient(90deg, var(--ink) 50%, var(--slate-300) 50%) no-repeat;
  background-size: 200% 100%;
  background-position-x: 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

/* Dual-label button hover (template .rr-btn text-one/text-two) */
.btn-flip { position: relative; display: block; overflow: hidden; }
.btn-flip span { display: block; transition: transform .38s cubic-bezier(.6,0,.18,1); }
.btn-flip span.two { position: absolute; inset: 0; transform: translateY(120%); }
.jtp-btn:hover .btn-flip span.one, .jtp-cta:hover .btn-flip span.one { transform: translateY(-120%); }
.jtp-btn:hover .btn-flip span.two, .jtp-cta:hover .btn-flip span.two { transform: translateY(0); }

/* ============================================================
   Reduced motion — full path
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .boot-fill { transition: none; }
  .jtp-prizes__pin { position: static !important; }
  .jtp-prizes__beats { min-height: 0; }
  .beat { position: static; opacity: 1; visibility: visible; margin-bottom: 40px; }
  .jtp-prizes__boot canvas { display: none; }
  .jtp-prizes__still { display: block !important; }
}

/* ============================================================
   Mobile
   ============================================================ */
@media (max-width: 991px) {
  .jtp-hero { padding-top: 34px; }
  .jtp-hero__media { max-width: 100%; }
  .jtp-panel { padding: 22px; }
}
@media (max-width: 560px) {
  .jtp-amounts { grid-template-columns: repeat(3, 1fr); }
  .chip--other { grid-column: span 3; }
  .jtp-countdown__digits b { font-size: 24px; }
  .jtp-prizes__pin .container { padding-top: 60px; }
}
