:root {
  color-scheme: light;
  --ink: #16202a;
  --muted: #66717f;
  --paper: #f3f5f7;
  --surface: #ffffff;
  --line: #d9dee6;
  --green: #145c48;
  --green-dark: #102923;
  --navy: #111b2a;
  --navy-soft: #1c2a3c;
  --lime: #dce96a;
  --gold: #c69a45;
  --red: #a72d24;
  --blue: #2f5f9e;
  --shadow: 0 18px 55px rgba(17, 27, 42, 0.14);
  --hero-photo: url("https://images.unsplash.com/photo-1506905925346-21bda4d32df4?auto=format&fit=crop&w=2400&q=82");
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #eef2f6 0, var(--paper) 380px),
    var(--paper);
  color: var(--ink);
}

body[data-lang="en"] {
  --lime: #dce96a;
  --gold: #c69a45;
  --red: #a72d24;
  --green: #145c48;
  --green-dark: #102923;
  --navy: #111b2a;
}

body[data-lang="es"] {
  --lime: #ffd45a;
  --gold: #c97b2d;
  --red: #b6282f;
  --green: #5a3320;
  --green-dark: #251712;
  --navy: #271720;
}

body[data-lang="fr"] {
  --lime: #b9d7ff;
  --gold: #d5b56b;
  --red: #ad2538;
  --green: #234f7d;
  --green-dark: #111f36;
  --navy: #101b31;
}

body[data-lang="pt"] {
  --lime: #f4d35e;
  --gold: #caa14a;
  --red: #b63b2f;
  --green: #1f6b49;
  --green-dark: #0f2c22;
  --navy: #11261f;
}

body[data-lang="de"] {
  --lime: #f0c94a;
  --gold: #d7ad47;
  --red: #8f2a22;
  --green: #3a4654;
  --green-dark: #15191f;
  --navy: #121720;
}

body[data-lang="it"] {
  --lime: #e8f0d2;
  --gold: #c7a35f;
  --red: #b64035;
  --green: #2b6a56;
  --green-dark: #132822;
  --navy: #121e26;
}

body[data-lang="sw"] {
  --lime: #f1d45d;
  --gold: #d49a45;
  --red: #b64b28;
  --green: #28633e;
  --green-dark: #15271b;
  --navy: #141f1a;
}

body[data-lang="zu"] {
  --lime: #e7ec6f;
  --gold: #b99145;
  --red: #9d3028;
  --green: #315c45;
  --green-dark: #17241d;
  --navy: #121d18;
}

body[data-lang="af"],
body[data-lang="nso"] {
  --lime: #e7ec6f;
  --gold: #b99145;
  --red: #9d3028;
  --green: #315c45;
  --green-dark: #17241d;
  --navy: #121d18;
}

body[data-lang="ja"] {
  --lime: #f4d7d8;
  --gold: #d1a45f;
  --red: #b31f2d;
  --green: #273c5b;
  --green-dark: #121827;
  --navy: #0f1728;
}

a {
  color: inherit;
}

.signal-ticker {
  position: sticky;
  top: 0;
  z-index: 30;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: #8f1f18;
  color: #fff;
}

.signal-track {
  display: flex;
  width: max-content;
  min-width: 200%;
  gap: 10px;
  padding: 9px 0;
  animation: signalMove 28s linear infinite;
}

.signal-track span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  white-space: nowrap;
}

.signal-track span::before {
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: #fff;
  content: "";
}

@keyframes signalMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.language-bar {
  position: sticky;
  top: 49px;
  z-index: 29;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding: 8px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 248, 244, 0.96);
  color: var(--green-dark);
  backdrop-filter: blur(16px);
}

.language-bar span,
.locale-country span {
  margin-right: 4px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
  white-space: nowrap;
}

.locale-country {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-right: 8px;
}

.locale-country select,
.language-bar button {
  min-height: 32px;
  border: 1px solid rgba(15, 90, 60, 0.18);
  border-radius: 8px;
  background: #fff;
  color: var(--green-dark);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 6px 10px;
  cursor: pointer;
  white-space: nowrap;
}

.locale-country select {
  min-width: 190px;
}

.language-bar button:hover,
.language-bar button.is-active {
  background: var(--green-dark);
  color: #fff;
}

.site-header {
  position: sticky;
  top: 92px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(17, 27, 42, 0.95);
  color: #fff;
  backdrop-filter: blur(16px);
}

.brand,
nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: var(--lime);
  color: var(--navy);
  font-size: 0.72rem;
  letter-spacing: 0;
}

nav {
  gap: clamp(10px, 2vw, 26px);
  font-size: 0.92rem;
}

nav a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

nav a:hover {
  color: #fff;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 40px));
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-visual,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-visual {
  display: grid;
  place-items: center end;
  padding: clamp(24px, 7vw, 92px);
  background:
    var(--navy);
}

.hero-photo-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.86;
  filter: saturate(1.08) contrast(1.08);
  transition: opacity 420ms ease, filter 420ms ease, transform 700ms ease;
  transform: scale(1.01);
}

.hero-photo-image.is-changing {
  opacity: 0.2;
  filter: saturate(0.9) contrast(0.95);
  transform: scale(1.035);
}

.mountain-scene {
  display: none;
}

.terrain-svg {
  position: absolute;
  right: -4vw;
  top: clamp(34px, 8vh, 88px);
  width: min(1240px, 88vw);
  height: min(660px, 76vh);
  opacity: 1;
  filter:
    drop-shadow(0 34px 48px rgba(0, 0, 0, 0.58))
    drop-shadow(0 0 34px color-mix(in srgb, var(--lime) 22%, transparent));
}

.ridge {
  transition: d 600ms ease, fill 300ms ease, opacity 300ms ease;
}

.ridge-back {
  fill: color-mix(in srgb, var(--navy) 72%, var(--green));
  opacity: 0.8;
  animation: ridgeDriftBack 16s ease-in-out infinite;
}

.ridge-mid {
  fill: url("#peakMidShade");
  opacity: 0.96;
  animation: ridgeDriftMid 12s ease-in-out infinite;
}

.ridge-front {
  fill: url("#peakFrontShade");
  opacity: 0.96;
}

.terrain-contours {
  fill: url("#contourLines");
  opacity: 0.52;
  mix-blend-mode: screen;
  pointer-events: none;
}

.snow {
  fill: rgba(255, 255, 255, 0.96);
  opacity: 0.95;
  stroke: rgba(17, 27, 42, 0.18);
  stroke-width: 3;
  transition: d 600ms ease, opacity 300ms ease;
}

.summit-glow {
  fill: var(--lime);
  opacity: 0.22;
  animation: summitGlow 6s ease-in-out infinite;
}

.summit-line {
  fill: none;
  stroke: var(--lime);
  stroke-width: 7;
  stroke-dasharray: 18 16;
  stroke-linecap: round;
  opacity: 0.92;
  animation: summitTrace 9s linear infinite;
  transition: d 600ms ease, stroke 300ms ease;
}

.summit-orbit {
  position: absolute;
  right: min(42vw, 560px);
  top: 16%;
  z-index: 2;
  width: 150px;
  height: 150px;
  border: 2px solid color-mix(in srgb, var(--lime) 72%, transparent);
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--lime) 18%, transparent), transparent 58%);
  animation: summitPulse 4.8s ease-in-out infinite;
}

.summit-orbit::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 28px color-mix(in srgb, var(--lime) 70%, transparent);
  content: "";
  transform: translate(-50%, -50%);
}

.terrain-label {
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  top: clamp(22px, 7vh, 62px);
  z-index: 2;
  padding: 9px 12px;
  border: 1px solid color-mix(in srgb, var(--lime) 64%, transparent);
  border-radius: 8px;
  background: rgba(17, 27, 42, 0.9);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.peak-markers text {
  fill: #fff;
  paint-order: stroke;
  stroke: rgba(17, 27, 42, 0.72);
  stroke-width: 7px;
  font-size: 32px;
  font-weight: 950;
  letter-spacing: 0;
}

@keyframes ridgeDriftBack {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-18px);
  }
}

@keyframes ridgeDriftMid {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(14px);
  }
}

@keyframes summitTrace {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -116;
  }
}

@keyframes summitGlow {
  0%,
  100% {
    opacity: 0.1;
    transform: scale(0.94);
  }

  50% {
    opacity: 0.24;
    transform: scale(1.08);
  }
}

@keyframes summitPulse {
  0%,
  100% {
    opacity: 0.28;
    transform: scale(0.88);
  }

  50% {
    opacity: 0.72;
    transform: scale(1.1);
  }
}

@keyframes summitFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.score-panel {
  position: relative;
  z-index: 3;
  width: min(500px, 42vw);
  min-width: 340px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.score-header {
  display: flex;
  gap: 7px;
  margin-bottom: 22px;
}

.score-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.score-header span:nth-child(2) {
  background: var(--gold);
}

.score-header span:nth-child(3) {
  background: var(--blue);
}

.terminal-title {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}

.terminal-title span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.terminal-title strong {
  color: var(--ink);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1;
}

.market-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.market-board div {
  min-height: 92px;
  padding: 16px;
  background: #f7f9fb;
}

.market-board span,
.terminal-list p {
  color: var(--muted);
}

.market-board b {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-size: 1.65rem;
}

.terminal-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.terminal-list p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  line-height: 1.35;
}

.terminal-list p span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 27, 42, 0.86) 0%, rgba(17, 27, 42, 0.5) 42%, rgba(17, 27, 42, 0.14) 100%),
    linear-gradient(0deg, rgba(17, 27, 42, 0.62) 0%, rgba(17, 27, 42, 0.02) 52%);
}

.hero-content {
  position: relative;
  z-index: 4;
  width: min(760px, 100%);
  padding: 96px clamp(20px, 5vw, 70px) 84px;
  color: #fff;
}

.status-pill,
.kicker {
  margin: 0 0 14px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0;
}

.status-pill {
  display: inline-flex;
  max-width: 100%;
  padding: 9px 12px;
  border: 1px solid rgba(216, 239, 102, 0.5);
  border-radius: 8px;
  background: rgba(216, 239, 102, 0.14);
  color: var(--lime);
}

.kicker {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  font-size: clamp(2.55rem, 6vw, 5.6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

h3 {
  font-size: 1.12rem;
}

.hero-content p:not(.status-pill) {
  max-width: 590px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.55;
}

.hero-content .peak-line {
  max-width: 680px;
  padding-left: 18px;
  border-left: 4px solid var(--lime);
  color: #fff;
  font-weight: 750;
}

.hero-offer {
  max-width: 560px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(216, 239, 102, 0.38);
  border-radius: 8px;
  background: rgba(7, 53, 38, 0.72);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2);
}

.hero-offer span {
  display: block;
  margin-bottom: 8px;
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-offer strong {
  display: block;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.35;
}

.hero-offer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
  line-height: 1.5;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 17px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.primary {
  background: var(--lime);
  color: var(--green-dark);
}

.secondary,
.ghost {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.hero-actions,
.age-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.notice-band {
  display: flex;
  gap: 12px;
  padding: 18px clamp(20px, 5vw, 70px);
  background: var(--green-dark);
  color: #fff;
  line-height: 1.5;
}

.notice-band span {
  color: rgba(255, 255, 255, 0.78);
}

.desk-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.desk-nav a {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 12px;
  background: #fff;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.desk-nav a:hover {
  background: var(--navy);
  color: #fff;
}

.coming-ticker {
  overflow: hidden;
  border-block: 1px solid rgba(7, 53, 38, 0.14);
  background: var(--navy);
  color: #fff;
}

.ticker-track {
  display: flex;
  width: max-content;
  min-width: 200%;
  gap: 14px;
  padding: 13px 0;
  animation: tickerMove 34s linear infinite;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 14px;
  border: 1px solid rgba(216, 239, 102, 0.36);
  border-radius: 8px;
  background: rgba(216, 239, 102, 0.1);
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-track span::before {
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .signal-track,
  .ticker-track {
    animation: none;
    min-width: 0;
    overflow-x: auto;
    padding-inline: 16px;
  }
}

.section {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 70px);
}

.first-note {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background:
    linear-gradient(90deg, rgba(167, 45, 36, 0.06), transparent 38%),
    #fff;
}

.first-note-copy {
  max-width: 760px;
}

.first-note-copy p:not(.kicker),
.form-note,
.form-status {
  color: var(--muted);
  line-height: 1.62;
}

.lead-form,
.operator-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f8f4;
  box-shadow: var(--shadow);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.lead-form label,
.country-picker {
  display: grid;
  gap: 8px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.country-picker select {
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 11px 12px;
  text-transform: none;
}

.danger {
  background: var(--red);
  color: #fff;
}

.form-note,
.form-status {
  margin: 0;
  font-size: 0.92rem;
}

.local-price-box {
  padding: 16px;
  border: 1px solid rgba(167, 45, 36, 0.22);
  border-radius: 8px;
  background: #fff;
}

.local-price-box span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.local-price-box strong {
  display: block;
  margin-top: 6px;
  color: var(--red);
  font-size: 2.2rem;
  line-height: 1;
}

.local-price-box p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.form-status.is-success {
  color: var(--green);
  font-weight: 850;
}

.form-status.is-error {
  color: var(--red);
  font-weight: 850;
}

.operator-check {
  background: #eef2f6;
}

.operator-layout {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 16px;
}

.operator-panel {
  padding: 24px;
}

.operator-panel-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.operator-panel-head span {
  font-weight: 900;
  font-size: 1.2rem;
}

.operator-panel-head strong {
  color: var(--green);
}

.operator-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.operator-panel li {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 800;
}

.operator-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.database {
  background: #ffffff;
}

.database-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.database-grid article {
  min-height: 240px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f8f4;
}

.database-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #e9eee5;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.database-grid p {
  color: var(--muted);
  line-height: 1.58;
}

.stats-strip div {
  min-height: 138px;
  padding: 26px;
  background: var(--surface);
}

.metric,
.label {
  display: block;
}

.metric {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
}

.label {
  margin-top: 8px;
  color: var(--muted);
}

.verified-streak {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 7px;
}

.tooltip-wrap {
  position: relative;
  display: inline-flex;
}

.tooltip-trigger {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(15, 90, 60, 0.2);
  border-radius: 50%;
  background: var(--lime);
  color: var(--green-dark);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  cursor: help;
}

.tooltip-bubble {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  z-index: 4;
  width: max-content;
  max-width: min(280px, 80vw);
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--green-dark);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transition: opacity 160ms ease, transform 160ms ease;
  box-shadow: 0 14px 38px rgba(8, 31, 23, 0.2);
}

.tooltip-bubble::after {
  position: absolute;
  top: 100%;
  left: 50%;
  border: 7px solid transparent;
  border-top-color: var(--green-dark);
  content: "";
  transform: translateX(-50%);
}

.tooltip-wrap:hover .tooltip-bubble,
.tooltip-trigger:focus + .tooltip-bubble {
  opacity: 1;
  transform: translate(-50%, 0);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 92px;
}

.section-copy p:not(.kicker),
.responsible p,
.support-panel p {
  color: var(--muted);
  line-height: 1.68;
  font-size: 1.02rem;
}

.pick-list {
  display: grid;
  gap: 14px;
}

.market-access-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.market-access-panel span {
  min-height: 74px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0;
  padding: 18px;
}

.pick-card,
.method-grid article,
.support-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.pick-card {
  padding: 22px;
}

.pick-topline,
.pick-card dl,
.pick-card dl div {
  display: flex;
  align-items: center;
}

.pick-topline {
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.sport-tag,
.risk,
.result {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 7px;
  font-size: 0.78rem;
  font-weight: 850;
}

.sport-tag {
  background: rgba(15, 90, 60, 0.12);
  color: var(--green);
}

.football {
  background: rgba(49, 95, 159, 0.12);
  color: var(--blue);
}

.tennis {
  background: rgba(188, 138, 44, 0.14);
  color: #8a6018;
}

.nfl {
  background: rgba(17, 35, 29, 0.1);
  color: var(--ink);
}

.coming-soon {
  border-style: dashed;
}

.risk {
  background: #edf1ea;
  color: var(--ink);
}

.pick-card p {
  margin: 12px 0 18px;
  color: var(--muted);
  line-height: 1.55;
}

.pick-card dl {
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.pick-card dl div {
  min-height: 48px;
  flex: 1 1 145px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 10px;
  border-radius: 8px;
  background: #f2f5ef;
}

dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

dd {
  margin: 2px 0 0;
  font-weight: 850;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 28px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

th {
  background: #eef3eb;
  color: #3e4d47;
  font-size: 0.78rem;
  text-transform: uppercase;
}

tbody tr:last-child td {
  border-bottom: 0;
}

.win {
  background: rgba(15, 90, 60, 0.12);
  color: var(--green);
}

.loss {
  background: rgba(184, 64, 54, 0.12);
  color: var(--red);
}

.push {
  background: rgba(95, 107, 102, 0.13);
  color: var(--muted);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.method-grid .section-copy {
  grid-column: 1 / -1;
  position: static;
  max-width: 860px;
}

.method-grid article {
  min-height: 190px;
  padding: 22px;
}

.method-grid p,
.security-grid p {
  color: var(--muted);
  line-height: 1.58;
}

.security {
  background: #101f1a;
  color: #fff;
}

.security .section-heading p:not(.kicker) {
  color: rgba(255, 255, 255, 0.72);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.security-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.security-grid h3 {
  color: #fff;
}

.security-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.access-section {
  background: #ffffff;
}

.section-heading p:not(.kicker) {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.68;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.plan-card,
.payment-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.plan-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 24px;
}

.featured-plan {
  border-color: rgba(15, 90, 60, 0.48);
  background: #f3f8ee;
}

.plan-name {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.plan-card h3 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.plan-card h3 span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}

.plan-card ul {
  display: grid;
  gap: 11px;
  margin: 22px 0 24px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.5;
}

.plan-card .button {
  width: 100%;
  margin-top: auto;
}

.plan-button {
  border-color: var(--line);
  background: #eef3eb;
  color: var(--green-dark);
}

.payment-note {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 16px;
  padding: 24px;
}

.payment-note p {
  color: var(--muted);
  line-height: 1.62;
}

.responsible {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(26px, 6vw, 80px);
  align-items: center;
  padding: clamp(58px, 8vw, 106px) clamp(20px, 5vw, 70px);
  background: #e9eee5;
}

.support-panel {
  padding: 24px;
}

.support-panel a {
  display: block;
  margin-top: 12px;
  color: var(--green);
  font-weight: 850;
}

footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 70px);
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

footer a {
  color: #fff;
}

.image-credits {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(3, 18, 13, 0.86);
  backdrop-filter: blur(12px);
}

.age-gate.is-hidden {
  display: none;
}

.age-panel {
  width: min(620px, 100%);
  padding: clamp(26px, 5vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: var(--green-dark);
  color: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.age-panel h1 {
  font-size: clamp(2rem, 5vw, 3.45rem);
}

.age-panel p:not(.kicker) {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.62;
}

@media (max-width: 900px) {
  .site-header,
  .notice-band,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header {
    position: static;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 30, 23, 0.92), rgba(7, 30, 23, 0.68)),
      linear-gradient(0deg, rgba(7, 30, 23, 0.9), rgba(7, 30, 23, 0.08));
  }

  .hero-visual {
    place-items: end center;
    opacity: 0.86;
  }

  .terrain-svg {
    right: -22vw;
    top: 18vh;
    width: 128vw;
    height: 62vh;
  }

  .summit-orbit,
  .peak-markers {
    display: none;
  }

  .score-panel {
    width: min(420px, 92vw);
    min-width: 0;
  }

  .desk-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-strip,
  .first-note,
  .operator-layout,
  .market-access-panel,
  .database-grid,
  .split,
  .method-grid,
  .security-grid,
  .plans,
  .payment-note,
  .responsible,
  footer {
    grid-template-columns: 1fr;
  }

  .section-copy {
    position: static;
  }
}

@media (max-width: 560px) {
  .hero-content {
    padding-top: 76px;
  }

  .stats-strip div {
    min-height: 112px;
  }

  .hero-actions,
  .age-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .desk-nav {
    grid-template-columns: 1fr;
  }

  .market-board {
    grid-template-columns: 1fr;
  }

  .operator-panel ul {
    grid-template-columns: 1fr;
  }
}
