/* ============================================================
   PrimePicks — World Cup Edition 2026 (adapted for WM2026)
   Design system: navy-dominant dark, red CTA, green "value" accent
   Type: Anton (display) · Archivo (UI/body) · JetBrains Mono (technical)
   ============================================================ */

:root {
  /* --- base palette --- */
  --navy-950: #04101f;
  --navy-900: #06192e;
  --navy-850: #0a2540;
  --navy-800: #0d2d4d;
  --panel:    #0e3158;
  --panel-2:  #12395f;
  --line:     rgba(255, 255, 255, 0.10);
  --line-2:   rgba(255, 255, 255, 0.06);

  /* --- accents --- */
  --red:        #d71920;
  --red-bright: #ff2e36;
  --red-deep:   #a8121a;
  --green:      #1e7a46;
  --green-bright: #29b066;
  --green-glow:  rgba(41, 176, 102, 0.55);

  /* --- ink --- */
  --white:  #f7f7f7;
  --soft:   rgba(247, 247, 247, 0.74);
  --muted:  rgba(247, 247, 247, 0.50);
  --faint:  rgba(247, 247, 247, 0.32);

  /* --- type --- */
  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Archivo', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --maxw: 1120px;
  --pad: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--white);
  background: var(--navy-900);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* page-wide deep backdrop with drifting glows */
.bg-field {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(120% 80% at 50% -10%, var(--navy-800) 0%, var(--navy-900) 42%, var(--navy-950) 100%);
}
.bg-field::before,
.bg-field::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  animation: drift 26s ease-in-out infinite alternate;
}
.bg-field::before {
  width: 52vw; height: 52vw;
  left: -12vw; top: 8vh;
  background: radial-gradient(circle, var(--red) 0%, transparent 68%);
  opacity: 0.22;
}
.bg-field::after {
  width: 46vw; height: 46vw;
  right: -10vw; bottom: 2vh;
  background: radial-gradient(circle, var(--green) 0%, transparent 68%);
  opacity: 0.18;
  animation-delay: -13s;
}
/* faint dot-grid overlay */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(255,255,255,0.045) 1px, transparent 1.4px);
  background-size: 30px 30px;
  mask-image: radial-gradient(120% 90% at 50% 30%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(120% 90% at 50% 30%, #000 0%, transparent 75%);
}
@keyframes drift {
  from { transform: translate3d(0,0,0) scale(1); }
  to   { transform: translate3d(4vw, 5vh, 0) scale(1.12); }
}

/* ---------------- layout ---------------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
section { position: relative; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-bright);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--green-bright);
}

h2.sec-title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 1.06;
  font-size: clamp(2rem, 7.5vw, 3.7rem);
  margin: 0 0 18px;
}
h2.sec-title span { display: block; }
.sec-sub {
  font-size: clamp(1rem, 2.6vw, 1.18rem);
  color: var(--soft);
  max-width: 62ch;
  margin: 0;
  text-wrap: pretty;
}
.accent-red { color: var(--red-bright); }
.accent-green { color: var(--green-bright); }

/* ---------------- header ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 25, 46, 0.72);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line-2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 64px;
}
.brand { display: flex; align-items: baseline; gap: 10px; text-decoration: none; color: var(--white); }
.brand-mark {
  font-family: var(--font-display);
  font-size: 25px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1;
}
.brand-mark .p2 { color: var(--red-bright); }
.brand-sub {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-bright);
  border: 1px solid var(--line);
  padding: 3px 6px;
  border-radius: 5px;
  white-space: nowrap;
}
.header-right { display: flex; align-items: center; gap: 14px; }
.main-nav { display: none; gap: 26px; }
.main-nav a {
  color: var(--soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.18s;
}
.main-nav a:hover { color: var(--white); }

/* language toggle */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  font-family: var(--font-mono);
  font-size: 12px;
  background: rgba(255,255,255,0.03);
}
.lang-toggle button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  letter-spacing: 0.05em;
  padding: 5px 11px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.15s, background 0.18s;
}
.lang-toggle button[aria-pressed="true"] {
  color: #fff;
  background: var(--red);
}

/* buttons */
.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 11px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease;
  line-height: 1;
}
.btn-red {
  background: var(--red);
  color: #fff;
  padding: 16px 26px;
  font-size: 16px;
  box-shadow: 0 8px 22px rgba(215, 25, 32, 0.34), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-red:hover { background: var(--red-bright); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(215,25,32,0.45), inset 0 1px 0 rgba(255,255,255,0.22); }
.btn-red:active { transform: translateY(0); }
.btn-green {
  background: var(--green);
  color: #fff;
  padding: 16px 26px;
  font-size: 16px;
  box-shadow: 0 8px 22px rgba(41, 176, 102, 0.28), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-green:hover { background: var(--green-bright); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(41,176,102,0.38), inset 0 1px 0 rgba(255,255,255,0.22); }
.btn-green:active { transform: translateY(0); }
.btn-sm { padding: 10px 16px; font-size: 13.5px; border-radius: 9px; }
.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--white);
  border: 1px solid var(--line);
  padding: 14px 22px;
  font-size: 15px;
}
.btn-ghost:hover { background: rgba(255,255,255,0.09); transform: translateY(-2px); }
.header-cta { display: none; }
.whatsapp-link::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: inline-block;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16.04 3C8.85 3 3 8.78 3 15.89c0 2.27.6 4.48 1.75 6.43L3 29l6.87-1.79a13.18 13.18 0 0 0 6.17 1.54C23.23 28.75 29 22.97 29 15.86 29 8.78 23.23 3 16.04 3Zm0 23.56c-1.96 0-3.87-.52-5.55-1.5l-.4-.23-4.08 1.06 1.09-3.93-.26-.4a10.55 10.55 0 0 1-1.63-5.67c0-5.9 4.85-10.7 10.83-10.7 2.9 0 5.62 1.12 7.67 3.14a10.57 10.57 0 0 1 3.17 7.53c0 5.9-4.86 10.7-10.84 10.7Zm5.94-8.01c-.33-.16-1.94-.95-2.24-1.06-.3-.11-.52-.16-.74.16-.22.32-.85 1.06-1.04 1.28-.19.21-.38.24-.71.08-.33-.16-1.38-.5-2.63-1.6-.97-.86-1.63-1.93-1.82-2.25-.19-.32-.02-.5.14-.66.15-.14.33-.37.49-.56.16-.18.22-.32.33-.53.11-.22.05-.4-.03-.56-.08-.16-.74-1.77-1.01-2.42-.27-.64-.54-.55-.74-.56h-.63c-.22 0-.57.08-.87.4-.3.32-1.14 1.1-1.14 2.68s1.17 3.12 1.33 3.33c.16.22 2.3 3.47 5.58 4.87.78.33 1.39.53 1.86.68.78.25 1.49.21 2.05.13.63-.09 1.94-.78 2.21-1.54.27-.75.27-1.4.19-1.54-.08-.13-.3-.21-.63-.37Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16.04 3C8.85 3 3 8.78 3 15.89c0 2.27.6 4.48 1.75 6.43L3 29l6.87-1.79a13.18 13.18 0 0 0 6.17 1.54C23.23 28.75 29 22.97 29 15.86 29 8.78 23.23 3 16.04 3Zm0 23.56c-1.96 0-3.87-.52-5.55-1.5l-.4-.23-4.08 1.06 1.09-3.93-.26-.4a10.55 10.55 0 0 1-1.63-5.67c0-5.9 4.85-10.7 10.83-10.7 2.9 0 5.62 1.12 7.67 3.14a10.57 10.57 0 0 1 3.17 7.53c0 5.9-4.86 10.7-10.84 10.7Zm5.94-8.01c-.33-.16-1.94-.95-2.24-1.06-.3-.11-.52-.16-.74.16-.22.32-.85 1.06-1.04 1.28-.19.21-.38.24-.71.08-.33-.16-1.38-.5-2.63-1.6-.97-.86-1.63-1.93-1.82-2.25-.19-.32-.02-.5.14-.66.15-.14.33-.37.49-.56.16-.18.22-.32.33-.53.11-.22.05-.4-.03-.56-.08-.16-.74-1.77-1.01-2.42-.27-.64-.54-.55-.74-.56h-.63c-.22 0-.57.08-.87.4-.3.32-1.14 1.1-1.14 2.68s1.17 3.12 1.33 3.33c.16.22 2.3 3.47 5.58 4.87.78.33 1.39.53 1.86.68.78.25 1.49.21 2.05.13.63-.09 1.94-.78 2.21-1.54.27-.75.27-1.4.19-1.54-.08-.13-.3-.21-.63-.37Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ---------------- post-payment success page ---------------- */
.success-page .success-hero {
  min-height: auto;
  padding-bottom: clamp(26px, 6vw, 58px);
}
.success-band {
  padding-top: clamp(24px, 5vw, 52px);
}
.success-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(85% 90% at 20% 0%, rgba(255, 46, 54, 0.18), transparent 48%),
    radial-gradient(85% 90% at 96% 18%, rgba(41, 176, 102, 0.14), transparent 52%),
    linear-gradient(180deg, rgba(18, 57, 95, 0.94), rgba(6, 25, 46, 0.96));
  box-shadow: 0 22px 70px rgba(0,0,0,0.34), inset 0 1px 0 rgba(255,255,255,0.08);
  padding: clamp(24px, 5vw, 54px);
}
.success-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(80% 70% at 50% 10%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(80% 70% at 50% 10%, #000 0%, transparent 80%);
}
.success-card > * { position: relative; z-index: 1; }
.success-card-head { max-width: 760px; margin-bottom: clamp(26px, 5vw, 44px); }
.success-steps {
  display: grid;
  gap: 16px;
}
.success-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line-2);
  border-radius: 20px;
  background: rgba(255,255,255,0.045);
}
.success-n {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: #fff;
  background: var(--red);
  box-shadow: 0 10px 28px rgba(215,25,32,0.36);
}
.success-step h3,
.success-note h3 {
  margin: 0 0 6px;
  font-size: 1.08rem;
  color: #fff;
}
.success-step p,
.success-note p {
  margin: 0;
  color: var(--soft);
}
.success-note {
  margin-top: 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(41, 176, 102, 0.28);
  background: rgba(41, 176, 102, 0.08);
}
.success-note-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--font-mono);
  font-weight: 800;
  color: var(--navy-950);
  background: var(--green-bright);
}
.success-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* shine sweep on red buttons */
.btn-red { position: relative; overflow: hidden; }
.btn-red::after {
  content: "";
  position: absolute;
  top: 0; left: -130%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.38), transparent);
  transform: skewX(-18deg);
  animation: sweep 4.5s ease-in-out infinite;
}
@keyframes sweep {
  0%, 62% { left: -130%; }
  86%, 100% { left: 130%; }
}

/* ---------------- hero ---------------- */
.hero { padding: clamp(40px, 8vh, 92px) 0 clamp(36px, 6vh, 70px); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 13px;
  margin-bottom: 26px;
  background: rgba(255,255,255,0.03);
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 0 var(--green-glow);
  animation: livepulse 2.2s ease-out infinite;
}
@keyframes livepulse {
  0% { box-shadow: 0 0 0 0 var(--green-glow); }
  70%,100% { box-shadow: 0 0 0 9px rgba(41,176,102,0); }
}
.hero h1 {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.06;
  letter-spacing: 0.003em;
  margin: 0 0 24px;
  font-size: clamp(2.7rem, 11.5vw, 6.4rem);
}
.hero h1 span { display: block; }
.hero-sub {
  font-size: clamp(1.02rem, 3.2vw, 1.32rem);
  color: var(--soft);
  max-width: 56ch;
  margin: 0 0 30px;
  text-wrap: pretty;
}
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-micro {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  font-size: 13px;
  color: var(--muted);
  font-family: var(--font-mono);
  letter-spacing: 0.01em;
}
.hero-micro svg { flex: none; opacity: 0.8; }

/* stat strip */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: clamp(40px, 7vh, 64px);
  background: var(--line-2);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  overflow: hidden;
}
.stat {
  background: rgba(10, 37, 64, 0.6);
  padding: 22px 18px;
  text-align: left;
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 8vw, 3.1rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
}
.stat:nth-child(2) .num { color: var(--red-bright); }
.stat:nth-child(4) .num { color: var(--green-bright); }
.stat .lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* ---------------- generic section spacing ---------------- */
.band { padding: clamp(64px, 12vh, 116px) 0; }
.band-alt { background: linear-gradient(180deg, transparent, rgba(4,16,31,0.55) 18%, rgba(4,16,31,0.55) 82%, transparent); }
.sec-head { margin-bottom: clamp(36px, 6vh, 58px); max-width: 720px; }

/* ---------------- methodology ---------------- */
.meth-steps {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
.step {
  position: relative;
  background: linear-gradient(160deg, var(--panel), var(--navy-850));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 22px 26px;
  overflow: hidden;
}
.step::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--green-bright);
  opacity: 0.0;
  transition: opacity 0.3s;
}
.step:hover::before { opacity: 0.9; }
.step-n {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--green-bright);
}
.step-ico {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(41,176,102,0.12);
  border: 1px solid rgba(41,176,102,0.3);
  margin: 14px 0 16px;
}
.step-ico svg { width: 24px; height: 24px; stroke: var(--green-bright); }
.step h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: 1.5rem;
  margin: 0 0 10px;
  line-height: 1;
}
.step p { margin: 0; color: var(--soft); font-size: 0.98rem; }

/* agent network */
.network-block {
  margin-top: clamp(40px, 7vh, 68px);
  background: radial-gradient(120% 130% at 50% 0%, var(--panel) 0%, var(--navy-900) 70%);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(22px, 4vw, 40px);
  overflow: hidden;
}
.network-head { text-align: center; margin-bottom: 8px; }
.network-head .k {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--green-bright);
}
.network-head h3 {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(1.4rem, 5vw, 2.1rem); margin: 8px 0 0; line-height: 1;
}

.network-stage {
  container-type: inline-size;
  width: 100%;
  max-width: 660px;
  margin: clamp(18px,4vw,30px) auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.network-stage svg.links { display: none; }

.link-base { stroke: rgba(255,255,255,0.14); stroke-width: 1.4; fill: none; }
.link-flow {
  stroke: var(--green-bright); stroke-width: 1.8; fill: none;
  stroke-dasharray: 5 60; stroke-linecap: round;
  filter: drop-shadow(0 0 4px var(--green-glow));
  animation: flow 2.6s linear infinite;
}
@keyframes flow { to { stroke-dashoffset: -65; } }
.link-out { stroke: var(--red-bright); filter: drop-shadow(0 0 5px rgba(255,46,54,0.5)); }

.agents-group { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }

.node {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 45, 77, 0.92);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 9px 14px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}
.node .nd-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 8px var(--green-glow);
  animation: nodepulse 2.4s ease-in-out infinite;
}
.node .nd-lbl {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--soft);
}
@keyframes nodepulse {
  0%,100% { opacity: 0.55; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.15); }
}
.agents-group .node:nth-child(1) .nd-dot { animation-delay: 0s; }
.agents-group .node:nth-child(2) .nd-dot { animation-delay: 0.4s; }
.agents-group .node:nth-child(3) .nd-dot { animation-delay: 0.8s; }
.agents-group .node:nth-child(4) .nd-dot { animation-delay: 1.2s; }
.agents-group .node:nth-child(5) .nd-dot { animation-delay: 1.6s; }

.net-arrow {
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 11px solid var(--green-bright);
  animation: arrowpulse 1.8s ease-in-out infinite;
}
@keyframes arrowpulse {
  0%,100% { opacity: 0.3; transform: translateY(-2px); }
  50% { opacity: 0.95; transform: translateY(2px); }
}

.node.consensus {
  flex-direction: column;
  gap: 3px;
  width: 100%;
  max-width: 300px;
  white-space: normal;
  background: linear-gradient(160deg, var(--panel-2), var(--navy-850));
  border: 1.5px solid rgba(41,176,102,0.5);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 0 0 6px rgba(41,176,102,0.07), 0 10px 30px rgba(0,0,0,0.4);
  text-align: center;
}
.node.consensus .ttl {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--green-bright);
}
.node.consensus .big {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: 25px; line-height: 1.05; margin-top: 3px;
}
.node.pick {
  flex-direction: column; gap: 2px;
  width: 100%;
  max-width: 300px;
  white-space: normal;
  background: linear-gradient(160deg, var(--red), var(--red-deep));
  border: 0;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 0 0 5px rgba(215,25,32,0.16), 0 10px 28px rgba(215,25,32,0.4);
  text-align: center;
  animation: pickPulse 2.8s ease-in-out infinite;
}
@keyframes pickPulse {
  0%,100% { box-shadow: 0 0 0 5px rgba(215,25,32,0.16), 0 10px 28px rgba(215,25,32,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(215,25,32,0.30), 0 14px 36px rgba(215,25,32,0.55); }
}
.node.pick .k { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.node.pick .v { font-family: var(--font-display); text-transform: uppercase; font-size: 25px; line-height: 1.05; }

/* desktop: absolute "orchestra" network with connecting lines */
@media (min-width: 720px) {
  .network-stage { display: block; position: relative; aspect-ratio: 1 / 0.72; }
  .network-stage svg.links { display: block; position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
  .agents-group { display: contents; }
  .net-arrow { display: none; }
  .node {
    position: absolute; transform: translate(-50%, -50%);
    gap: 2cqw; padding: 1.8cqw 2.7cqw;
  }
  .node .nd-dot { width: 2.1cqw; height: 2.1cqw; }
  .node .nd-lbl { font-size: clamp(11px, 2.5cqw, 15px); }
  .node.consensus { width: 27cqw; max-width: none; gap: 0.5cqw; padding: 2.6cqw 2.8cqw; }
  .node.consensus .ttl { font-size: clamp(9px, 2.1cqw, 12px); }
  .node.consensus .big { font-size: clamp(16px, 4.6cqw, 27px); }
  .node.pick { width: 22cqw; max-width: none; gap: 0.4cqw; padding: 2.4cqw 2.6cqw; }
  .node.pick .k { font-size: clamp(8px, 1.9cqw, 11px); }
  .node.pick .v { font-size: clamp(16px, 4.8cqw, 27px); }
}

/* ---------------- matches ---------------- */
.match-list { display: grid; gap: 14px; grid-template-columns: 1fr; }
.match-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: linear-gradient(150deg, var(--panel), var(--navy-850));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 18px;
  transition: border-color 0.25s, transform 0.2s;
}
.match-card:hover { border-color: rgba(255,255,255,0.22); transform: translateY(-2px); }
.match-meta {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.match-meta .stage-tag {
  color: var(--green-bright);
  border: 1px solid rgba(41,176,102,0.35);
  padding: 2px 7px; border-radius: 5px;
}
.teams { display: flex; align-items: center; gap: 14px; }
.team { display: flex; align-items: center; gap: 9px; }
.team .crest {
  width: 30px; height: 30px; border-radius: 7px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  color: var(--soft); letter-spacing: 0.02em;
}
.team .crest.flag {
  font-size: 20px; font-family: "Noto Color Emoji", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", emoji;
  background: none; border: none; width: 28px; height: 28px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.team .tname { font-weight: 700; font-size: 1.05rem; letter-spacing: 0.01em; }
.vs { font-family: var(--font-mono); font-size: 12px; color: var(--faint); }

/* locked pick — full-width frosted bar under the fixture */
.pick-lock {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(4,16,31,0.55);
  padding: 12px 15px;
  overflow: hidden;
}
.pick-lock .label-top {
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
  order: 1;
}
.pick-lock .obscured {
  filter: blur(7px);
  user-select: none;
  pointer-events: none;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.55rem;
  color: var(--white);
  opacity: 0.65;
  letter-spacing: 0.05em;
  order: 3;
  width: 100%;
  text-align: center;
  margin: 2px 0;
}
.pick-lock .obscured .od { color: var(--green-bright); }
.pick-lock .lock-row {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--soft);
  order: 2;
}
.pick-lock .lock-row svg { width: 12px; height: 12px; stroke: var(--green-bright); }
/* shimmer sweep across the frosted pick */
.pick-lock::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.12) 48%, transparent 66%);
  transform: translateX(-100%);
  animation: shimmer 3.2s ease-in-out infinite;
}
@keyframes shimmer { 0%,100% { transform: translateX(-100%);} 55%,100% { transform: translateX(100%);} }

.matches-foot {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 16px; margin-top: 24px;
}
.unlock-note {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--green-bright);
}
.unlock-note svg { width: 14px; height: 14px; stroke: var(--green-bright); }

/* ---------------- freemium timeline ---------------- */
.free-timeline {
  position: relative;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
.free-timeline::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(180deg, var(--green-bright), rgba(255,255,255,0.14), var(--red-bright));
  opacity: 0.7;
}
.free-step {
  position: relative;
  min-height: 100%;
  margin-left: 48px;
  background: linear-gradient(160deg, rgba(18,57,95,0.94), rgba(10,37,64,0.92));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 20px 22px;
  overflow: hidden;
}
.free-step::before {
  content: "";
  position: absolute;
  left: -39px;
  top: 25px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--navy-950);
  border: 2px solid var(--green-bright);
  box-shadow: 0 0 0 6px rgba(41,176,102,0.12);
}
.free-step.is-premium::before { border-color: var(--red-bright); box-shadow: 0 0 0 6px rgba(215,25,32,0.14); }
.free-step.is-active, .free-step.is-unlocked { border-color: rgba(41,176,102,0.42); }
.free-step.is-premium { border-color: rgba(255,46,54,0.34); }
.free-step.is-premium-highlight {
  background:
    radial-gradient(120% 120% at 88% 8%, rgba(255,46,54,0.30), transparent 48%),
    radial-gradient(90% 90% at 8% 0%, rgba(255,255,255,0.10), transparent 46%),
    linear-gradient(150deg, rgba(90,15,25,0.96), rgba(16,43,72,0.94));
  border-color: rgba(255,46,54,0.68);
  box-shadow: 0 22px 60px rgba(215,25,32,0.18), inset 0 1px 0 rgba(255,255,255,0.12);
}
.free-step.is-premium-highlight h3 {
  color: var(--paper);
  text-shadow: 0 0 28px rgba(255,46,54,0.28);
}
.free-step.is-premium-highlight p { color: rgba(255,255,255,0.84); }
.free-n {
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--green-bright);
  margin-bottom: 10px;
}
.free-step.is-premium .free-n { color: var(--red-bright); }
.free-step h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(1.35rem, 4vw, 1.8rem);
  line-height: 1.02;
  margin: 0 0 10px;
}
.free-step p { margin: 0; color: var(--soft); font-size: 0.98rem; text-wrap: pretty; }
.timeline-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }

/* ---------------- offer ---------------- */
.plan-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.offer-card {
  position: relative;
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(215,25,32,0.16), transparent 55%),
    linear-gradient(165deg, var(--panel-2), var(--navy-850));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(28px, 5vw, 52px);
  overflow: hidden;
}
.offer-card-free {
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(41,176,102,0.17), transparent 56%),
    linear-gradient(165deg, rgba(18,57,95,0.94), rgba(10,37,64,0.94));
  border-color: rgba(41,176,102,0.34);
}
.offer-card-premium { border-color: rgba(255,46,54,0.30); }
.plan-pill {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 11px;
  border: 1px solid rgba(41,176,102,0.35);
  border-radius: 999px;
  color: var(--green-bright);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.plan-pill-red { color: var(--red-bright); border-color: rgba(255,46,54,0.38); }
.price-tag { display: flex; align-items: flex-start; gap: 6px; }
.price-tag .cur { font-family: var(--font-display); font-size: 2rem; color: var(--soft); margin-top: 8px; }
.price-tag .amt {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 18vw, 7.5rem);
  line-height: 0.82;
  letter-spacing: 0.005em;
}
.price-note {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--green-bright); margin-top: 12px;
}
.offer-points { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 14px; }
.offer-points li { display: flex; gap: 12px; align-items: flex-start; font-size: 1.02rem; color: var(--soft); }
.offer-points .tick {
  flex: none; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(41,176,102,0.16); border: 1px solid rgba(41,176,102,0.4);
  display: grid; place-items: center; margin-top: 2px;
}
.offer-points .tick svg { width: 12px; height: 12px; stroke: var(--green-bright); }
.offer-cta-note { font-family: var(--font-mono); font-size: 12px; color: var(--muted); margin-top: 14px; letter-spacing: 0.02em; }
.plan-btn { width: 100%; margin-top: 4px; }

/* ---------------- FAQ ---------------- */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.faq-item {
  position: relative;
  min-height: 100%;
  background:
    radial-gradient(110% 130% at 100% 0%, rgba(41,176,102,0.10), transparent 52%),
    linear-gradient(160deg, rgba(18,57,95,0.92), rgba(10,37,64,0.92));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 22px 24px;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.24s ease, background 0.24s ease;
}
.faq-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--green-bright), var(--red-bright));
  opacity: 0.72;
}
.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.22);
}
.faq-n {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--green-bright);
  margin-bottom: 12px;
}
.faq-item h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  line-height: 1.04;
  margin: 0 0 12px;
}
.faq-item p {
  margin: 0;
  color: var(--soft);
  font-size: 0.98rem;
  text-wrap: pretty;
}
.faq-item-wide {
  background:
    radial-gradient(90% 140% at 100% 0%, rgba(215,25,32,0.15), transparent 56%),
    linear-gradient(160deg, rgba(18,57,95,0.95), rgba(4,16,31,0.82));
}

/* ---------------- disclaimer ---------------- */
.disc {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  background: rgba(4,16,31,0.5);
  padding: clamp(28px, 5vw, 48px);
  max-width: 820px;
}
.disc .eyebrow { color: var(--red-bright); }
.disc .eyebrow::before { background: var(--red-bright); }
.disc h2 {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(1.7rem, 6vw, 2.8rem); line-height: 1.06; margin: 0 0 18px;
}
.disc p { color: var(--soft); font-size: 1.05rem; margin: 0 0 14px; max-width: 64ch; text-wrap: pretty; }
.disc .tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.disc .tag {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--soft); border: 1px solid var(--line); border-radius: 7px; padding: 7px 11px;
}

/* ---------------- footer ---------------- */
.site-footer {
  border-top: 1px solid var(--line-2);
  padding: 48px 0 120px;
  margin-top: clamp(40px, 8vh, 90px);
}
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; align-items: flex-start; }
.footer-brand .brand-mark { font-size: 30px; }
.footer-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green-bright); margin-top: 8px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px 28px; align-items: center; }
.footer-links a { color: var(--soft); text-decoration: none; font-size: 14px; }
.footer-links a:hover { color: #fff; }
.footer-note { margin-top: 30px; color: var(--muted); font-size: 12.5px; line-height: 1.6; max-width: 70ch; }
.footer-note .resp { color: var(--soft); }

/* ---------------- sticky mobile CTA ---------------- */
.sticky-cta {
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 60;
  display: flex;
  transform: translateY(150%);
  transition: transform 0.34s cubic-bezier(.4,1.2,.5,1);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .btn-red, .sticky-cta .btn-green { width: 100%; box-shadow: 0 10px 34px rgba(41,176,102,0.42); }

/* ---------------- scroll reveal (pure CSS, no JS) ---------------- */
@keyframes ppReveal {
  from { opacity: 0.35; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
@keyframes ppFade {
  from { opacity: 0.25; }
  to   { opacity: 1; }
}
@media (prefers-reduced-motion: no-preference) {
  .hero .reveal {
    animation: ppReveal 0.8s cubic-bezier(.2,.7,.3,1) both;
    animation-delay: calc(var(--i, 0) * 95ms);
  }
  @supports (animation-timeline: view()) {
    .band .reveal {
      animation: ppFade linear both;
      animation-timeline: view();
      animation-range: entry 2% cover 22%;
    }
  }
}

/* ---------------- responsive ---------------- */
@media (min-width: 600px) {
  .stat-strip { grid-template-columns: repeat(4, 1fr); }
  .meth-steps { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: repeat(2, 1fr); }
  .free-timeline { grid-template-columns: repeat(2, 1fr); }
  .free-timeline::before { left: 50%; top: 24px; bottom: 24px; }
  .free-step { margin-left: 0; }
  .free-step::before { left: calc(50% - 8px); top: -8px; }
  .faq-item-wide { grid-column: 1 / -1; }
}
@media (min-width: 768px) {
  .main-nav { display: flex; }
  .header-cta { display: inline-flex; }
  .match-list { grid-template-columns: 1fr 1fr; }
  .sticky-cta { display: none; }
}
@media (min-width: 960px) {
  .meth-steps { grid-template-columns: repeat(4, 1fr); }
  .faq-grid { grid-template-columns: repeat(3, 1fr); }
  .plan-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; }
  .hero h1 { max-width: 14ch; }
}

/* ---------------- motion off ---------------- */
body.no-motion *, body.no-motion *::before, body.no-motion *::after {
  animation: none !important;
  transition: none !important;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* hero split layout */
body.hero-split .hero-inner { display: grid; gap: clamp(28px,5vw,56px); }
/* ---------------- JS scroll reveal fallback ---------------- */
.reveal { opacity: 0.3; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(.2,.7,.3,1), transform 0.7s cubic-bezier(.2,.7,.3,1); }
.reveal.revealed { opacity: 1; transform: none; }

@media (min-width: 900px) {
  body.hero-split .hero-inner { grid-template-columns: 1.05fr 0.95fr; align-items: center; }
  body.hero-split .stat-strip { grid-template-columns: repeat(2, 1fr); margin-top: 0; }
  body.hero-split .hero h1 { font-size: clamp(2.9rem, 6vw, 5rem); }
}
