/* ═══════════════════════════════════════════
   BW24 Sports — style.css
   Sporty · bright · modern
   ═══════════════════════════════════════════ */

:root {
  --red: #f5222d;
  --red-dark: #c4121c;
  --ink: #0d0d10;
  --ink-soft: #1a1a1f;
  --paper: #faf7f2;
  --white: #ffffff;
  --volt: #d9ff3d;
  --grey: #6b6b74;
  --line: rgba(13, 13, 16, 0.12);

  --font-display: "Archivo Black", "Archivo", sans-serif;
  --font-body: "Archivo", sans-serif;

  --radius: 18px;
  --pad: clamp(1.25rem, 4vw, 4rem);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

/* ── Accents ─────────────────────────────── */
.accent-red { color: var(--red); }
.accent-volt { color: var(--volt); }

.strike {
  position: relative;
  white-space: nowrap;
}
.strike::after {
  content: "";
  position: absolute;
  left: -2%;
  top: 55%;
  width: 104%;
  height: 0.14em;
  background: var(--red);
  transform: rotate(-2deg);
  border-radius: 2px;
}

.tag {
  display: inline-block;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45em 1em;
  border-radius: 100px;
}
.tag--volt { background: var(--volt); color: var(--ink); }

/* ── Logo ────────────────────────────────── */
.logo-word {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
  display: block;
}
.logo-word em { font-style: normal; color: var(--red); }
.logo-sub {
  display: block;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.52em;
  color: var(--ink);
  margin-top: 2px;
  border-top: 2px solid var(--ink);
  padding-top: 3px;
}
.logo-word--light, .logo-sub--light { color: var(--white); border-color: var(--white); }
/* Sized to sit level with the "Portal log in" button. */
.nav__logo-img { height: 46px; width: auto; display: block; }

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85em 1.7em;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.2s, color 0.2s;
  will-change: transform;
}
.btn--red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(245, 34, 45, 0.35);
}
.btn--red:hover { background: var(--red-dark); box-shadow: 0 10px 28px rgba(245, 34, 45, 0.45); }
.btn--ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: var(--white); }
.btn--dark { background: var(--ink); color: var(--white); box-shadow: 0 6px 20px rgba(13, 13, 16, 0.3); }
.btn--dark:hover { background: #000; }
.btn--volt {
  background: var(--volt);
  color: var(--ink);
  border-color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}
.btn--volt:hover { box-shadow: 6px 6px 0 var(--ink); }
.btn--lg { font-size: 1.05rem; padding: 1em 2em; }
.btn--full { width: 100%; justify-content: center; }
.btn-arrow { transition: transform 0.25s var(--ease-out); display: inline-block; }
.btn:hover .btn-arrow { transform: translateX(5px); }

/* ── Nav ─────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  padding: 0.75rem var(--pad);
  background: rgba(250, 247, 242, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled { border-color: var(--line); box-shadow: 0 4px 30px rgba(13, 13, 16, 0.06); }
/* flex: none is load-bearing — as a shrinkable flex item the logo got squeezed
   by the links (down to 27px wide) before the burger breakpoint took over. */
.nav__logo { margin-right: auto; flex: none; }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.4vw, 1.6rem);
}
.nav__links a {
  font-weight: 600;
  font-size: 0.92rem;
  position: relative;
  padding: 0.2em 0;
  white-space: nowrap;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-out);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__cta {
  background: var(--ink);
  color: var(--white);
  padding: 0.7em 1.4em;
  font-size: 0.9rem;
  box-shadow: 0 4px 14px rgba(13, 13, 16, 0.22);
  flex: none;
}
.nav__cta:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(13, 13, 16, 0.3);
}

.nav__burger { display: none; }
.nav__menu-cta { display: none; }
body.menu-open { overflow: hidden; }

/* ── Hero ────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5.5rem var(--pad) 2rem;
  overflow: hidden;
}
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}
.hero__pitch {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  pointer-events: none;
}
.hero__pitch svg { width: 100%; height: 100%; }
.pitch-lines circle, .pitch-lines line, .pitch-lines rect {
  fill: none;
  stroke: rgba(245, 34, 45, 0.14);
  stroke-width: 2.5;
}
.pitch-dot { fill: rgba(245, 34, 45, 0.25); stroke: none !important; }
.pitch-lines circle:first-child {
  stroke-dasharray: 1131;
  stroke-dashoffset: 1131;
  animation: drawLine 2.2s var(--ease-out) 0.3s forwards;
}
@keyframes drawLine { to { stroke-dashoffset: 0; } }

.hero__kicker { margin-bottom: 1rem; }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6.2vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line-inner {
  display: inline-block;
  transform: translateY(110%);
  animation: riseUp 0.9s var(--ease-out) forwards;
}
.hero__title .line:nth-child(2) .line-inner { animation-delay: 0.15s; }
@keyframes riseUp { to { transform: translateY(0); } }

.hero__lede {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  max-width: 540px;
  color: var(--ink-soft);
  margin-bottom: 1.6rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__stats {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.2rem, 3.5vw, 3rem);
  border-top: 2px solid var(--ink);
  padding-top: 1.3rem;
  margin-top: clamp(1.5rem, 3.5vh, 3rem);
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  color: var(--red);
  line-height: 1;
}
.stat__label { font-size: 0.85rem; font-weight: 600; color: var(--grey); max-width: 160px; display: block; margin-top: 0.4rem; }

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 0;
}
.hero__visual-inner {
  position: relative;
  width: fit-content;
}
/* Cut-out player photo. Held still deliberately — the hero visual no longer
   floats, so nothing drifts over the chips. */
.hero-photo {
  width: clamp(270px, 33vw, 460px);
  height: auto;
  display: block;
  /* Tight and low-opacity on purpose: the shadow traces the cut-out silhouette
     and should not read as a band under the photo. */
  filter: drop-shadow(0 6px 10px rgba(13, 13, 16, 0.16));
}
.chip {
  position: absolute;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 100px;
  padding: 0.5em 1em;
  font-weight: 700;
  font-size: 0.8rem;
  white-space: nowrap;
  box-shadow: 4px 4px 0 var(--ink);
}
/* Offsets are relative to the photo, so the chips sit just off its edges, and
   numbering runs top → middle → bottom. The left-hand chip deliberately keeps a
   small overhang: any further out and it reaches into the headline column, where
   it collided with "Transfer up." on wide screens. */
.chip--1 { top: 4%; right: -14%; }
.chip--2 { top: 44%; left: -10%; }
.chip--3 { bottom: 14%; right: -10%; background: var(--volt); }

/* ── Ticker ──────────────────────────────── */
.ticker {
  background: var(--ink);
  color: var(--volt);
  overflow: hidden;
  padding: 0.85rem 0;
  transform: rotate(-1.2deg) scale(1.02);
  position: relative;
  z-index: 5;
}
.ticker__track {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  animation: ticker 26s linear infinite;
  font-family: var(--font-display);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ticker__track i { font-style: normal; color: var(--red); font-size: 0.7rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ── Sections base ───────────────────────── */
.section { padding: clamp(3rem, 5.5vw, 5rem) var(--pad); position: relative; }
.section--dark { background: var(--ink); color: var(--paper); }
.section--volt { background: var(--volt); color: var(--ink); }

.section__head { max-width: 900px; margin-bottom: clamp(1.6rem, 3vw, 2.6rem); }
.section__num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--red);
  letter-spacing: 0.2em;
  display: inline-block;
  margin-bottom: 0.8rem;
}
.section__num::after { content: " /"; color: currentColor; opacity: 0.3; }
.section__num--ink { color: var(--ink); }
.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.2vw, 3.2rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.015em;
}
.section__lede { margin-top: 0.9rem; font-size: 1.05rem; max-width: 640px; opacity: 0.85; }

/* ── Why / sound familiar ────────────────── */
.why__wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
}
.why__intro p {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 470px;
}
.why__note {
  margin-top: 1.5rem;
  padding-left: 1.3rem;
  border-left: 3px solid var(--red);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--grey);
  line-height: 1.6;
  max-width: 440px;
}
.why__note cite {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink);
}
.why__panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 0.7rem 1.9rem;
  box-shadow: 0 20px 55px rgba(13, 13, 16, 0.08);
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}
.why-item:last-child { border-bottom: none; }
.why-item__icon {
  flex: 0 0 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(245, 34, 45, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.why-item h3 {
  font-weight: 700;
  font-size: 1.02rem;
  margin-bottom: 0.35rem;
  color: var(--ink);
}
.why-item p {
  font-size: 0.92rem;
  color: var(--grey);
  line-height: 1.55;
  max-width: 420px;
}

/* ── Steps ───────────────────────────────── */
.steps {
  list-style: none;
  max-width: 820px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 20px;
  bottom: 30px;
  width: 2px;
  background: repeating-linear-gradient(to bottom, var(--red) 0 8px, transparent 8px 16px);
}
.step {
  display: flex;
  gap: 1.3rem;
  padding: 0.5rem 0;
  position: relative;
  align-items: flex-start;
}
.step__num {
  flex: 0 0 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ink-soft);
  border: 2px solid var(--red);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.step__body h3 { font-family: var(--font-display); font-size: 1.08rem; margin-bottom: 0.25rem; text-transform: uppercase; }
.step__body p { opacity: 0.82; max-width: 640px; font-size: 0.9rem; line-height: 1.5; }
.step--highlight .step__num { background: var(--volt); color: var(--ink); border-color: var(--volt); font-size: 0.8rem; }
.step--highlight h3 { color: var(--volt); }

/* ── Portal ──────────────────────────────── */
.portal__demo {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.portal-ui-wrap { display: flex; flex-direction: column; gap: 0.6rem; }
.portal-ui {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px rgba(13, 13, 16, 0.16);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out);
}
.portal-ui__disclaimer {
  font-size: 0.7rem;
  color: var(--grey);
  text-align: center;
  font-style: italic;
}
.portal-ui__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--ink);
  padding: 0.65rem 1rem;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot--r { background: #ff5f57; } .dot--y { background: #febc2e; } .dot--g { background: #28c840; }
.portal-ui__url { color: rgba(255,255,255,0.6); font-size: 0.72rem; margin-left: 0.8rem; font-weight: 500; }
.portal-ui__body { display: grid; grid-template-columns: 150px 1fr; }
.portal-ui__filters { background: #f3f0ea; padding: 0.9rem 0.8rem; border-right: 1px solid var(--line); }
.pf-title { font-weight: 700; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.8rem; color: var(--grey); }
.pf {
  font-size: 0.72rem;
  padding: 0.5rem 0.6rem;
  border-radius: 8px;
  margin-bottom: 0.4rem;
  background: var(--white);
  border: 1px solid var(--line);
}
.pf span { display: block; color: var(--grey); font-size: 0.62rem; }
.pf b { font-weight: 700; }
.pf--active { background: var(--red); border-color: var(--red); }
.pf--active span { color: rgba(255,255,255,0.75); }
.pf--active b { color: var(--white); }
.portal-ui__results { padding: 0.9rem; display: flex; flex-direction: column; gap: 0.6rem; }
.match-card {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.65rem 0.9rem;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}
.match-card:hover { transform: translateX(4px); box-shadow: 0 8px 20px rgba(13,13,16,0.08); }
.match-card__crest {
  flex: 0 0 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--volt);
  font-family: var(--font-display);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.match-card__name { font-weight: 700; font-size: 0.88rem; }
.match-card__meta { font-size: 0.72rem; color: var(--grey); }
.match-card__fit {
  margin-left: auto;
  font-weight: 700;
  font-size: 0.75rem;
  background: #eee9e0;
  padding: 0.35em 0.8em;
  border-radius: 100px;
  white-space: nowrap;
}
.match-card__fit--hot { background: var(--volt); }
.match-card--ai { display: block; background: var(--ink); border-color: var(--ink); }
.match-card--ai:hover { transform: none; }
.ai-q { font-size: 0.76rem; font-style: italic; color: rgba(250, 247, 242, 0.65); margin-bottom: 0.45rem; }
.ai-a { font-size: 0.78rem; color: var(--paper); line-height: 1.5; }
.ai-a b { color: var(--volt); }
.match-card--docs { display: block; background: #fff8f8; border-color: rgba(245,34,45,0.25); }
.match-card--docs p { font-size: 0.8rem; }
.progress {
  display: block;
  height: 8px;
  background: #eee3e3;
  border-radius: 100px;
  margin: 0.6rem 0 0.3rem;
  overflow: hidden;
}
.progress__fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--red), #ff7a45);
  transition: width 1.4s var(--ease-out) 0.4s;
}
.portal-ui.in-view .progress__fill { width: 68%; }
.progress__label { font-size: 0.68rem; color: var(--grey); }

.portal__features { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.portal__features li {
  padding-left: 1.2rem;
  border-left: 3px solid var(--red);
  font-size: 0.9rem;
  line-height: 1.5;
}
.portal__features b { display: block; font-family: var(--font-display); font-size: 0.98rem; margin-bottom: 0.15rem; }
.portal__cta { margin-top: clamp(2rem, 5vw, 3rem); display: flex; justify-content: center; }

/* ── Support ─────────────────────────────── */
.support__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.support__text p { margin-top: 0.7rem; font-size: 0.95rem; max-width: 500px; line-height: 1.5; }

.support__timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.support__timeline::before {
  content: "";
  position: absolute;
  left: 33px;
  top: 12px;
  bottom: 12px;
  width: 3px;
  background: repeating-linear-gradient(to bottom, var(--ink) 0 8px, transparent 8px 16px);
  opacity: 0.4;
}
.tl-item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.tl-item__icon {
  flex: 0 0 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--volt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  border: 3px solid var(--volt);
  box-shadow: 0 6px 0 rgba(13, 13, 16, 0.18);
  transition: transform 0.3s var(--ease-out);
}
.tl-item:hover .tl-item__icon { transform: scale(1.08) rotate(-4deg); }
.tl-item__body b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.08rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
}
.tl-item__body p { font-size: 0.95rem; opacity: 0.78; max-width: 380px; line-height: 1.5; }

/* ── Who we're looking for ───────────────── */
.who__divisions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.8rem;
}
.div-pill {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.5vw, 1.05rem);
  text-transform: uppercase;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 100px;
  padding: 0.45em 1.1em;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.25s;
  cursor: default;
}
.div-pill:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--red);
  border-color: var(--red);
}
.who__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.3rem;
}
.who-card {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.who-card:hover { transform: translate(-3px, -3px); box-shadow: 10px 10px 0 var(--ink); }
.who-card__check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--volt);
  color: var(--ink);
  border: 2px solid var(--ink);
  font-weight: 900;
  font-size: 1rem;
  margin-bottom: 0.8rem;
}
.who-card h3 { font-family: var(--font-display); font-size: 1.05rem; line-height: 1.25; margin-bottom: 0.5rem; }
.who-card p { font-size: 0.9rem; color: var(--grey); }

/* ── 100-athlete cap ─────────────────────── */
.cap__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.cap__num {
  font-family: var(--font-display);
  font-size: clamp(6rem, 14vw, 12rem);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 3px var(--volt);
}
@supports not (-webkit-text-stroke: 1px black) {
  .cap__num { color: var(--volt); }
}
.cap__text p { margin-top: 0.8rem; font-size: 0.98rem; opacity: 0.85; max-width: 560px; line-height: 1.55; }
.cap__hundred { color: var(--volt); font-weight: 700; }

.cap__windows { margin-top: 1.6rem; max-width: 460px; }
.cap__windows-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--volt);
  margin-bottom: 0.7rem;
}
.cap-window {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 2px solid rgba(250, 247, 242, 0.16);
  border-radius: 14px;
  padding: 0.85rem 1.2rem;
  margin-bottom: 0.6rem;
  transition: transform 0.25s var(--ease-out), border-color 0.25s;
}
.cap-window:hover { transform: translateX(5px); }
.cap-window__name {
  font-family: var(--font-display);
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.cap-window__status {
  font-family: var(--font-display);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.45em 1.1em;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.cap-window--open { border-color: rgba(217, 255, 61, 0.5); }
.cap-window--open:hover { border-color: var(--volt); }
.cap-window--open .cap-window__status { background: var(--volt); color: var(--ink); }
.cap-window--open .cap-window__status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink);
  animation: blip 1.6s ease-in-out infinite;
}
@keyframes blip {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.75); }
}
.cap-window--closed { opacity: 0.55; }
.cap-window--closed .cap-window__name { text-decoration: line-through; text-decoration-color: var(--red); text-decoration-thickness: 3px; }
.cap-window--closed .cap-window__status {
  border: 2px solid var(--red);
  color: var(--red);
}

/* ── No win no fee ───────────────────────── */
.nwnf { background: var(--paper); }
.nwnf__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  max-width: 1100px;
  margin: 0 auto;
}
.nwnf__badge { position: relative; flex: 0 0 clamp(170px, 20vw, 230px); }
.nwnf__badge svg { width: 100%; animation: spin 18s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.nwnf__ring {
  font-family: var(--font-display);
  font-size: 17.5px;
  letter-spacing: 0.24em;
  fill: var(--ink);
}
.nwnf__center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  color: var(--red);
}
.nwnf__text { flex: 1; min-width: 280px; }
.nwnf__text p { margin: 1rem 0 1.4rem; font-size: 1.02rem; max-width: 520px; color: var(--ink-soft); }

/* ── Success stories ─────────────────────── */
.stories { background: var(--white); }
.stories__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}
.stories__head .section__head { margin-bottom: clamp(1.4rem, 2.5vw, 2.2rem); }
.stories__nav { display: flex; gap: 0.6rem; padding-bottom: clamp(1.4rem, 2.5vw, 2.2rem); }
.stories__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s var(--ease-out), opacity 0.2s;
}
.stories__btn:hover { background: var(--red); border-color: var(--red); color: var(--white); transform: translateY(-2px); }
.stories__btn:disabled { opacity: 0.25; pointer-events: none; }

.stories__track {
  display: flex;
  gap: 1.3rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 6px 14px;
  margin: 0 -6px;
  scrollbar-width: none;
}
.stories__track::-webkit-scrollbar { display: none; }

.story-card {
  flex: 0 0 min(330px, 82vw);
  scroll-snap-align: start;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.story-card:hover { transform: translate(-3px, -3px); box-shadow: 10px 10px 0 var(--ink); }
.story-card__img {
  position: relative;
  height: 150px;
  background:
    repeating-linear-gradient(115deg, transparent 0 26px, rgba(217, 255, 61, 0.07) 26px 52px),
    var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.story-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  z-index: 1;
}
.story-card__country { z-index: 2; }
.story-card__initials {
  font-family: var(--font-display);
  font-size: 2.7rem;
  color: var(--volt);
  letter-spacing: 0.02em;
}
.story-card__country {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(250, 247, 242, 0.14);
  color: var(--paper);
  padding: 0.35em 0.8em;
  border-radius: 100px;
}
.story-card__body { padding: 1rem 1.2rem 1.2rem; display: flex; flex-direction: column; flex: 1; }
.story-card__body h3 { font-family: var(--font-display); font-size: 1.2rem; }
.story-card__meta { font-size: 0.78rem; font-weight: 600; color: var(--grey); margin: 0.15rem 0 0.8rem; }
.story-card__path {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.8rem;
}
.story-card__path span {
  font-size: 0.68rem;
  font-weight: 700;
  background: var(--white);
  border: 1.5px solid var(--ink);
  border-radius: 100px;
  padding: 0.3em 0.75em;
  white-space: nowrap;
}
.story-card__path span i { font-style: normal; color: var(--red); }
.story-card__path em { font-style: normal; color: var(--red); font-weight: 900; }
.story-card__note { font-size: 0.84rem; color: var(--grey); line-height: 1.45; flex: 1; }
.story-card__badge {
  margin-top: 1rem;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--volt);
  border: 1.5px solid var(--ink);
  border-radius: 100px;
  padding: 0.4em 0.9em;
}
.stories__note {
  margin-top: 1.1rem;
  font-size: 0.78rem;
  color: var(--grey);
  font-style: italic;
}

/* ── Team ────────────────────────────────── */
.team__story { max-width: 860px; }
.team__story blockquote {
  font-size: clamp(1.05rem, 1.9vw, 1.4rem);
  line-height: 1.5;
  font-weight: 500;
  font-style: italic;
  border-left: 4px solid var(--volt);
  padding-left: 1.4rem;
}
.team__sig { margin-top: 1rem; font-weight: 700; color: var(--volt); }
.team__points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}
.t-point {
  border-top: 2px solid var(--red);
  padding-top: 1rem;
}
.t-point b { font-family: var(--font-display); text-transform: uppercase; display: block; margin-bottom: 0.3rem; }
.t-point span { opacity: 0.75; font-size: 0.95rem; }

/* ── FAQ ─────────────────────────────────── */
.faq__list { max-width: 780px; display: flex; flex-direction: column; gap: 0.9rem; }
.faq-item {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 5px 5px 0 var(--ink);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s;
}
.faq-item:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--ink); }
.faq-item.open { border-color: var(--red); box-shadow: 5px 5px 0 var(--red); }
.faq-item.open:hover { box-shadow: 8px 8px 0 var(--red); }
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: var(--ink);
  padding: 1.1rem 1.3rem;
}
.faq-item__icon {
  position: relative;
  flex: 0 0 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ink);
  transition: transform 0.4s var(--ease-out), background 0.3s;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 12px; height: 2.5px;
  background: var(--volt);
  border-radius: 2px;
  transform: translate(-50%, -50%);
}
.faq-item__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.open .faq-item__icon { transform: rotate(135deg); background: var(--red); }
.faq-item.open .faq-item__icon::before,
.faq-item.open .faq-item__icon::after { background: var(--white); }
.faq-item__a {
  height: 0;
  overflow: hidden;
  transition: height 0.45s var(--ease-out);
}
.faq-item__a-inner p {
  padding: 0 1.3rem 1.2rem;
  font-size: 0.95rem;
  color: var(--grey);
  max-width: 640px;
}

/* ── Start / form ────────────────────────── */
.start { background: var(--white); }
.start__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.start__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  text-transform: uppercase;
  line-height: 1.02;
}
.start__lede { margin: 1rem auto 2rem; font-size: 1.05rem; color: var(--grey); max-width: 520px; }
.start__form { text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.start__form label span {
  display: block;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}
.start__form input, .start__form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.7em 1em;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}
.start__form input:focus, .start__form textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(245, 34, 45, 0.12);
}
.form-full { display: block; margin-bottom: 1.6rem; }
.form-note { text-align: center; font-size: 0.85rem; color: var(--grey); margin-top: 1rem; }

.start__divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.4rem 0 1.6rem;
  color: var(--grey);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.start__divider::before, .start__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.start__alt { display: flex; flex-direction: column; align-items: center; gap: 1.1rem; }
.start__alt-text { font-size: 0.98rem; color: var(--ink-soft); max-width: 380px; }

.form-success {
  background: var(--volt);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  font-weight: 700;
  font-size: 1.2rem;
}

/* ── Footer ──────────────────────────────── */
.footer {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: 4.5rem var(--pad) 2rem;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--volt));
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.8rem;
  border-bottom: 1px solid rgba(250, 247, 242, 0.12);
}
.footer__logo-card {
  display: inline-flex;
  align-items: center;
  background: var(--paper);
  border-radius: 12px;
  padding: 0.55rem 1.1rem;
}
.footer__logo-img { height: 36px; width: auto; display: block; }
.footer__brand p { margin-top: 1.1rem; opacity: 0.6; font-size: 0.9rem; line-height: 1.55; max-width: 300px; }
.footer__divisions { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.4rem; }
.footer__divisions span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(250, 247, 242, 0.22);
  border-radius: 100px;
  padding: 0.4em 0.9em;
  opacity: 0.7;
}
.footer__head {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  margin-bottom: 1.1rem;
  color: var(--volt);
}
.footer__col a { display: block; opacity: 0.7; font-size: 0.92rem; padding: 0.3rem 0; transition: opacity 0.2s, color 0.2s, transform 0.2s; }
.footer__col a:hover { opacity: 1; color: var(--volt); transform: translateX(3px); }
.footer__col .footer__contact-link { display: flex; align-items: center; gap: 0.55em; }
.footer__col .footer__contact-link span { font-size: 0.95em; }
.footer__col .footer__whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  opacity: 1;
  color: var(--ink);
  background: var(--volt);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.6em 1.1em;
  border-radius: 100px;
  margin: 0.6rem 0 0.5rem;
  transition: transform 0.2s var(--ease-out), background 0.2s, color 0.2s, box-shadow 0.2s;
}
.footer__col .footer__whatsapp-btn:hover {
  color: var(--white);
  background: var(--red);
  transform: translateY(-2px) translateX(0);
  box-shadow: 0 8px 20px rgba(245, 34, 45, 0.35);
}
.footer__note { margin-top: 0.5rem; opacity: 0.5; font-size: 0.8rem; line-height: 1.5; max-width: 220px; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
}
.footer__legal { opacity: 0.45; font-size: 0.8rem; }
.footer__totop { opacity: 0.6; font-size: 0.82rem; font-weight: 600; transition: opacity 0.2s, color 0.2s, transform 0.2s; }
.footer__totop:hover { opacity: 1; color: var(--volt); transform: translateY(-2px); }

/* ── Reveal animations ───────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ── Responsive ──────────────────────────── */
@media (max-width: 900px) {
  .portal__demo, .support__inner, .why__wrap { grid-template-columns: 1fr; }
  .why__intro p, .why__note { max-width: none; }
  .hero__grid { grid-template-columns: 1fr; gap: 1rem; }
  .hero__visual { padding: 1.2rem 0 1.6rem; }
  .hero-photo { width: min(380px, 88vw); }
  .chip { font-size: 0.72rem; }
  /* Photo is much smaller here while the chips are not, so they sit above and
     below the head rather than across it. */
  .chip--1 { top: -3%; right: -4%; }
  .chip--2 { top: 52%; left: -3%; }
  .chip--3 { bottom: 6%; right: -4%; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .support__timeline { margin-top: 2rem; }
  .support__text p { max-width: none; }
  .cap__inner { grid-template-columns: 1fr; gap: 1rem; }
  .cap__num { font-size: clamp(4.5rem, 20vw, 7rem); }
}

/* Measured: logo + 8 links + CTA need ~1055px, so the burger takes over below
   1100px. Sized against the real logo width — as a shrinkable flex item it used
   to squash silently and hide the fact that the bar had already run out of room. */
@media (max-width: 1100px) {
  .nav__cta { display: none; }
  .nav__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;              /* full 44px touch target */
    height: 44px;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    transition: background 0.2s;
  }
  .nav__burger:hover { background: rgba(13, 13, 16, 0.06); }
  .nav__burger span {
    width: 24px; height: 2.5px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.3s var(--ease-out), opacity 0.2s;
  }
  .nav__burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav__burger.open span:nth-child(2) { opacity: 0; }
  .nav__burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  /* Dropdown panel. Positioned against the bar itself (which is fixed, so it is
     the containing block) rather than a measured height — top: 100% can never
     drift out of sync the way a JS-written variable can. */
  .nav__links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(13, 13, 16, 0.14);
    padding: 0.4rem var(--pad) 1.5rem;
    gap: 0;
    z-index: 99;
    max-height: calc(100svh - var(--nav-h, 68px));
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    /* visibility, not just opacity — otherwise the closed panel stays in the
       tab order and keyboard users land on invisible links. */
    visibility: hidden;
    transition: opacity 0.22s var(--ease-out), transform 0.22s var(--ease-out),
                visibility 0s linear 0.22s;
  }
  .nav__links.open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
    visibility: visible;
    transition-delay: 0s;
  }

  .nav__links a:not(.nav__menu-cta) {
    font-size: 1.15rem;
    font-weight: 600;
    padding: 1.05rem 0.15rem;
    border-bottom: 1px solid var(--line);
    white-space: normal;
  }
  .nav__links a:not(.nav__menu-cta)::after { display: none; }

  .nav__links .nav__menu-cta {
    display: inline-flex;
    justify-content: center;
    margin-top: 1.4rem;
    padding-top: 1.05em;
    padding-bottom: 1.05em;
    font-size: 1.05rem;
    background: var(--ink);
    color: var(--white);
    align-self: stretch;
  }
}

@media (max-width: 720px) {
  .form-row { grid-template-columns: 1fr; }
  .hero { padding-top: 4.5rem; padding-bottom: 1.5rem; }
  .hero__kicker .tag { font-size: 0.68rem; }
  .hero__lede { font-size: 0.95rem; margin-bottom: 1.3rem; }
  .hero__actions { gap: 0.7rem; }
  .hero__actions .btn--lg { font-size: 0.95rem; padding: 0.85em 1.6em; }
  .hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem 1.5rem;
    padding-top: 1.2rem;
  }
  .stat__label { font-size: 0.78rem; margin-top: 0.25rem; max-width: none; }
  .ticker__track { font-size: 0.9rem; }
  .section__lede { font-size: 0.98rem; }
  .why__panel { padding: 0.4rem 1.2rem; }
  .why-item { gap: 0.9rem; padding: 1.1rem 0; }
  .why-item__icon { flex-basis: 40px; height: 40px; font-size: 1.1rem; }
  .steps::before { left: 24px; }
  .stories__head { flex-direction: column; align-items: flex-start; gap: 0; }
  .stories__nav { padding-bottom: 1rem; }
  .step { gap: 1rem; }
  .step__num { flex-basis: 50px; height: 50px; font-size: 1rem; }
  .portal-ui__body { grid-template-columns: 1fr; }
  .portal-ui__filters { display: flex; gap: 0.5rem; overflow-x: auto; border-right: none; border-bottom: 1px solid var(--line); }
  .pf { flex: 0 0 auto; margin-bottom: 0; }
  .pf-title { display: none; }
  .support__timeline { gap: 1.1rem; }
  .support__timeline::before { left: 26px; }
  .tl-item { gap: 1rem; align-items: flex-start; }
  .tl-item__icon { flex-basis: 54px; height: 54px; font-size: 1.4rem; }
  .tl-item__body b { font-size: 0.98rem; }
  .tl-item__body p { font-size: 0.88rem; }
  .nwnf__inner { flex-direction: column; text-align: center; gap: 1.6rem; }
  .nwnf__badge { flex-basis: auto; width: clamp(160px, 45vw, 200px); }
  .nwnf__text p { margin-left: auto; margin-right: auto; font-size: 0.95rem; }
  .team__story blockquote { padding-left: 1rem; }
  .footer { padding-top: 3rem; }
}

@media (max-width: 480px) {
  .hero__actions .btn,
  .nwnf__text .btn {
    width: 100%;
    justify-content: center;
  }
  .hero__title { font-size: clamp(2.2rem, 11.5vw, 2.9rem); }
  .section { padding-left: 1.1rem; padding-right: 1.1rem; }
  .stat__num { font-size: 1.5rem; }
  .story-card { flex-basis: 86vw; }
  .who-card { padding: 1.2rem 1.1rem; }
  .faq-item__q { padding: 1rem 1.1rem; }
  .faq-item__a-inner p { padding: 0 1.1rem 1.1rem; font-size: 0.9rem; }
  .form-success { padding: 2rem 1.3rem; font-size: 1.05rem; }
  .footer__bottom { justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .hero__title .line-inner { transform: none; }
}
