:root {
  --blue-950: #061329;
  --blue-900: #0A1830;
  --blue-850: #0B234C;
  --blue-800: #0E3674;
  --blue-700: #0E4FAF;
  --blue-500: #1B6FD8;
  --blue-300: #68A9FF;
  --lime: #A8FF12;
  --lime-2: #C8FF58;
  --stone: #C8B08A;
  --clay: #8F7A5A;
  --off: #F5F7FA;
  --muted: #AAB6CA;
  --ink: #0B0D10;
  --paper: #FBFCFE;
  --line: rgba(245, 247, 250, .14);
  --line-strong: rgba(168, 255, 18, .38);
  --shadow: 0 28px 80px rgba(0, 0, 0, .34);
  --radius: 28px;
  --radius-sm: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  background: var(--blue-950)
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 7%, rgba(27, 111, 216, .36), transparent 30rem),
    radial-gradient(circle at 90% 2%, rgba(168, 255, 18, .09), transparent 26rem),
    linear-gradient(180deg, var(--blue-950), #05080e 58%, #030407);
  color: var(--off);
  min-height: 100vh;
  overflow-x: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

::selection {
  background: var(--lime);
  color: #051120
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--lime);
  color: #051120;
  padding: 12px 16px;
  border-radius: 999px;
  z-index: 999
}

.skip-link:focus {
  left: 10px
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .024) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .75), transparent 78%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .11;
  background-image: url("data:image/svg+xml,%3Csvg width='180' height='180' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23F5F7FA' stroke-width='1' opacity='.5'%3E%3Cpath d='M11 38c19 12 31 12 48 0s31-12 49 0 30 12 49 0'/%3E%3Cpath d='M22 92c15-21 30-21 45 0s31 21 45 0 31-21 45 0'/%3E%3Ccircle cx='42' cy='132' r='9'/%3E%3Cpath d='M96 126l17 22 17-22M96 148h34'/%3E%3C/g%3E%3C/svg%3E");
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto
}

.section {
  padding: 96px 0;
  position: relative
}

.section.compact {
  padding: 64px 0
}

.section.flush-top {
  padding-top: 40px
}

.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--lime);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem
}

.kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--lime);
  display: block
}

.eyebrow {
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--lime)
}

.display {
  font-size: clamp(2.3rem, 5.4vw, 5.7rem);
  line-height: .93;
  margin: 14px 0 22px;
  font-weight: 950;
  letter-spacing: -.075em;
  text-wrap: balance
}

.display .accent,
.accent {
  color: var(--lime)
}

.page-title {
  font-size: clamp(2.1rem, 4vw, 4.8rem);
  letter-spacing: -.06em;
  line-height: .96;
  margin: 12px 0 18px;
  font-weight: 950;
  text-wrap: balance
}

.section-title {
  font-size: clamp(1.85rem, 3vw, 3.8rem);
  letter-spacing: -.055em;
  line-height: 1.02;
  margin: 10px 0 16px;
  font-weight: 950;
  text-wrap: balance
}

.lead {
  font-size: clamp(1.03rem, 1.45vw, 1.26rem);
  line-height: 1.72;
  color: #DCE6F5;
  max-width: 760px
}

.copy {
  line-height: 1.75;
  color: #C7D3E5
}

.tiny {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.58
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(6, 19, 41, .74);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .09)
}

.navbar {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 172px
}

.brand img {
  width: 96px;
  max-height: 58px;
  object-fit: contain
}

.brand small {
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #fff;
  display: none
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px
}

.nav-links a {
  font-size: .85rem;
  font-weight: 850;
  color: #D8E5F7;
  padding: 12px 13px;
  border-radius: 999px;
  transition: .2s ease
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(168, 255, 18, .12);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(168, 255, 18, .25)
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px
}

.menu-toggle {
  display: none
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 14px 20px;
  font-size: .88rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .04em;
  cursor: pointer;
  transition: .22s ease;
  min-height: 48px
}

.btn-primary {
  background: var(--lime);
  color: #061329;
  box-shadow: 0 12px 32px rgba(168, 255, 18, .18)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(168, 255, 18, .28)
}

.btn-outline {
  border-color: rgba(245, 247, 250, .22);
  background: rgba(255, 255, 255, .04);
  color: #fff
}

.btn-outline:hover {
  border-color: var(--lime);
  background: rgba(168, 255, 18, .08)
}

.btn-dark {
  background: #071225;
  color: #fff;
  border-color: rgba(245, 247, 250, .12)
}

.btn-dark:hover {
  background: #0b1d3d;
  border-color: rgba(168, 255, 18, .4)
}

.btn-small {
  padding: 10px 14px;
  min-height: 40px;
  font-size: .78rem
}

.btn-block {
  width: 100%
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  padding: 72px 0 78px;
  position: relative;
  overflow: hidden
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .82fr);
  gap: 54px;
  align-items: center
}

.hero-copy {
  position: relative;
  z-index: 2
}

.hero-logo {
  width: min(410px, 82vw);
  margin: 0 0 28px;
  filter: drop-shadow(0 26px 54px rgba(0, 0, 0, .32))
}

.hero h1 {
  max-width: 860px
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 34px
}

.hero-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.meta-pill {
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .045);
  color: #E8F0FB;
  font-size: .9rem;
  font-weight: 800
}

.meta-pill b {
  color: var(--lime)
}

.terrain-panel {
  position: relative;
  min-height: 600px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 36px;
  overflow: hidden;
  background: linear-gradient(150deg, rgba(14, 79, 175, .95), rgba(10, 24, 48, .92) 54%, rgba(4, 8, 13, .96));
  box-shadow: var(--shadow)
}

.terrain-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 10%, rgba(168, 255, 18, .27), transparent 18rem), radial-gradient(circle at 100% 70%, rgba(104, 169, 255, .18), transparent 18rem);
  opacity: .85
}

.terrain-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 500 500' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23F5F7FA' stroke-width='2' opacity='.24'%3E%3Cpath d='M-45 410C80 340 140 450 251 359s174-29 307-122'/%3E%3Cpath d='M-55 454C91 386 166 498 283 392s189-42 314-122'/%3E%3Cpath d='M-15 321C81 280 170 340 247 283s132-73 250-44'/%3E%3Cpath d='M-35 259C86 217 135 264 232 220s154-84 297-53'/%3E%3C/g%3E%3Cg fill='%23A8FF12' opacity='.16'%3E%3Cpath d='M110 98c27 4 34 35 17 50-21 18-50 1-49-25 1-16 12-27 32-25z'/%3E%3Cpath d='M407 344c19 3 26 22 15 35-13 15-38 8-39-12-1-13 8-24 24-23z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  mix-blend-mode: screen
}

.challenge-card {
  position: absolute;
  z-index: 2;
  left: 30px;
  right: 30px;
  bottom: 30px;
background: rgb(4 9 17 / 19%);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 28px;
  padding: 24px;
  backdrop-filter: blur(14px)
}

.challenge-card h2 {
  font-size: 1.1rem;
  margin: 0 0 18px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff
}

.distance-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px
}

.distance-chip {
  padding: 18px 8px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .11);
  text-align: center
}

.distance-chip strong {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  letter-spacing: -.07em;
  color: var(--lime);
  line-height: 1
}

.distance-chip span {
  font-size: .72rem;
  text-transform: uppercase;
  font-weight: 900;
  color: #dbe6f7;
  letter-spacing: .08em
}

.hero-date {
  position: absolute;
  z-index: 2;
  right: 28px;
  top: 28px;
  width: 156px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  border: 2px solid rgba(168, 255, 18, .85);
  background: rgba(168, 255, 18, .12);
  box-shadow: 0 0 0 8px rgba(168, 255, 18, .05)
}

.hero-date strong {
  display: block;
  font-size: 2rem;
  line-height: .9;
  color: var(--lime);
  letter-spacing: -.06em
}

.hero-date span {
  display: block;
  font-size: .84rem;
  font-weight: 950;
  text-transform: uppercase;
  color: #fff;
  margin-top: 4px
}

.rock-shape {
  position: absolute;
  z-index: 1;
  left: -8%;
  right: -14%;
  bottom: 130px;
  height: 220px;
  background: linear-gradient(180deg, rgba(168, 255, 18, .18), rgba(168, 255, 18, .08));
  clip-path: polygon(0 62%, 15% 39%, 29% 50%, 42% 29%, 59% 45%, 73% 18%, 88% 40%, 100% 27%, 100% 100%, 0 100%)
}

.glyph-float {
  position: absolute;
  z-index: 2;
  left: 34px;
  top: 150px;
  width: 180px;
  height: 230px;
  opacity: .22;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 210' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23F5F7FA' stroke-width='10' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M76 38c-14 4-23 18-21 32 3 22 29 24 41 11 13-14 10-38-8-43-3-1-7-1-12 0Z'/%3E%3Cpath d='M72 90c-18 25-17 47-4 75M86 93c11 22 21 40 40 55M65 119c-18 9-34 9-49 4M72 163c-12 15-23 27-36 37M92 165c13 10 25 19 41 25'/%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat
}

.page-hero {
  padding: 74px 0 52px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 72% 20%, rgba(27, 111, 216, .28), transparent 28rem), linear-gradient(90deg, rgba(168, 255, 18, .08), transparent 24rem)
}

.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: .88rem;
  margin-bottom: 18px
}

.breadcrumb a {
  color: #fff;
  font-weight: 800
}

.breadcrumb span {
  color: var(--lime)
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1fr);
  gap: 50px;
  align-items: start
}

.two-col.equal {
  grid-template-columns: repeat(2, minmax(0, 1fr))
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px
}

.panel {
  border: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(180deg, rgba(255, 255, 255, .072), rgba(255, 255, 255, .035));
  border-radius: var(--radius);
  box-shadow: 0 18px 58px rgba(0, 0, 0, .18);
  overflow: hidden
}

.panel.pad {
  padding: 28px
}

.panel.light {
  background: var(--paper);
  color: #061329;
  border-color: rgba(5, 13, 25, .1)
}

.feature-card {
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .052);
  min-height: 252px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden
}

.feature-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(168, 255, 18, .08)
}

.feature-card h3 {
  font-size: 1.35rem;
  line-height: 1.12;
  letter-spacing: -.035em;
  margin: 14px 0;
  color: #fff
}

.feature-card p {
  color: #CBD8EA;
  line-height: 1.65;
  margin: 0
}

.icon-badge {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(168, 255, 18, .12);
  border: 1px solid rgba(168, 255, 18, .28);
  display: grid;
  place-items: center;
  color: var(--lime)
}

.icon-badge svg {
  width: 31px;
  height: 31px
}

.editorial-band {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: linear-gradient(90deg, rgba(168, 255, 18, .13), rgba(14, 79, 175, .18) 48%, rgba(255, 255, 255, .03))
}

.editorial-band .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .5fr);
  gap: 48px;
  align-items: center
}

.quote-mark {
  font-size: 10rem;
  font-weight: 950;
  line-height: .6;
  color: rgba(168, 255, 18, .20)
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, .045);
  margin-top: 36px
}

.stat {
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, .1)
}

.stat:last-child {
  border-right: none
}

.stat strong {
  display: block;
  font-size: 2.1rem;
  line-height: 1;
  color: var(--lime);
  letter-spacing: -.06em
}

.stat span {
  display: block;
  margin-top: 8px;
  color: #D6E2F2;
  font-size: .86rem;
  line-height: 1.45
}

.route-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035));
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 26px;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between
}

.route-card.featured {
  grid-column: span 2;
  background: linear-gradient(140deg, rgba(168, 255, 18, .15), rgba(14, 79, 175, .25) 45%, rgba(255, 255, 255, .045));
  border-color: rgba(168, 255, 18, .32)
}

.route-distance {
  font-size: clamp(3rem, 7vw, 6.6rem);
  font-weight: 950;
  letter-spacing: -.09em;
  line-height: .85;
  color: #fff
}

.route-card.featured .route-distance {
  color: var(--lime)
}

.difficulty {
  display: flex;
  gap: 5px;
  margin: 14px 0
}

.difficulty span {
  width: 28px;
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .16)
}

.difficulty span.on {
  background: var(--lime)
}

.route-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 20px
}

.route-meta div {
  border-radius: 16px;
  background: rgba(255, 255, 255, .065);
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 12px
}

.route-meta small {
  display: block;
  color: var(--muted);
  font-size: .7rem;
  text-transform: uppercase;
  font-weight: 900
}

.route-meta b {
  display: block;
  color: #fff;
  margin-top: 5px;
  font-size: .92rem
}

.route-map {
  height: 280px;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02)), url("data:image/svg+xml,%3Csvg viewBox='0 0 600 360' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='600' height='360' fill='%230A1830'/%3E%3Cg stroke='%23F5F7FA' opacity='.12' fill='none'%3E%3Cpath d='M0 75h600M0 150h600M0 225h600M0 300h600M80 0v360M160 0v360M240 0v360M320 0v360M400 0v360M480 0v360'/%3E%3C/g%3E%3Cpath d='M78 279c82-103 121-61 161-145s94-101 157-33 44 141 113 108' fill='none' stroke='%23A8FF12' stroke-width='10' stroke-linecap='round'/%3E%3Cg fill='%23A8FF12'%3E%3Ccircle cx='78' cy='279' r='13'/%3E%3Ccircle cx='508' cy='209' r='13'/%3E%3C/g%3E%3Cpath d='M60 316 150 210l70 42 95-132 83 66 62-81 83 110 58-45v190H60z' fill='%231B6FD8' opacity='.24'/%3E%3C/svg%3E") center/cover;
  border: 1px solid rgba(255, 255, 255, .12)
}

.kit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  align-items: stretch
}

.kit-card {
  border-radius: 34px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .05);
  position: relative;
  overflow: hidden
}

.kit-card.premium {
  background: linear-gradient(145deg, rgba(168, 255, 18, .18), rgba(27, 111, 216, .19), rgba(255, 255, 255, .04));
  border-color: rgba(168, 255, 18, .42)
}

.kit-card h3 {
  font-size: 2rem;
  letter-spacing: -.05em;
  margin: 0 0 8px
}

.kit-price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 22px 0
}

.kit-price strong {
  font-size: 2.8rem;
  line-height: .85;
  color: var(--lime);
  letter-spacing: -.08em
}

.kit-price span {
  color: #D9E6F5;
  font-weight: 800
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #DDE7F7;
  line-height: 1.5
}

.check-list li::before {
  content: "✓";
  flex: 0 0 23px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(168, 255, 18, .16);
  color: var(--lime);
  font-weight: 950;
  font-size: .8rem
}

.check-list.dark li {
  color: #1f2b3e
}

.check-list.dark li::before {
  background: #e9ffd0;
  color: #234600
}

.lot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.lot-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .12)
}

.lot-card.active {
  border-color: rgba(168, 255, 18, .5);
  box-shadow: 0 0 0 1px rgba(168, 255, 18, .12), 0 22px 60px rgba(168, 255, 18, .08)
}

.lot-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem
}

.lot-card strong {
  display: block;
  color: var(--lime);
  font-size: 1.9rem;
  letter-spacing: -.06em
}

.lot-card p {
  margin: 8px 0 0;
  color: #c8d4e5;
  line-height: 1.55
}

.notice {
  border-left: 4px solid var(--lime);
  background: rgba(168, 255, 18, .09);
  padding: 18px 20px;
  border-radius: 0 18px 18px 0;
  color: #EAF5FF;
  line-height: 1.65
}

.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 28px 0
}

.filter-btn {
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .045);
  color: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  font-size: .82rem;
  cursor: pointer
}

.filter-btn.active {
  background: var(--lime);
  color: #061329;
  border-color: var(--lime)
}

.table-wrap {
  overflow: auto;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .045)
}

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

th,
td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  font-size: .92rem
}

th {
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: .72rem;
  background: rgba(4, 8, 13, .35)
}

td {
  color: #E2EAF7
}

tr:last-child td {
  border-bottom: none
}

.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: .72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: rgba(168, 255, 18, .13);
  color: var(--lime);
  border: 1px solid rgba(168, 255, 18, .24)
}

.prize-cards {
  display: none;
  gap: 14px
}

.prize-mobile-card {
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  border-radius: 22px;
  padding: 18px
}

.prize-mobile-card h3 {
  margin: 0 0 10px
}

.prize-mobile-card dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0
}

.prize-mobile-card dt {
  color: var(--muted);
  font-size: .76rem;
  text-transform: uppercase;
  font-weight: 900
}

.prize-mobile-card dd {
  margin: 0;
  color: #fff;
  font-weight: 800
}

.accordion {
  display: grid;
  gap: 12px
}

.accordion-item {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  background: rgba(255, 255, 255, .045);
  overflow: hidden
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  background: transparent;
  border: 0;
  color: #fff;
  padding: 20px 22px;
  text-align: left;
  font-weight: 950;
  cursor: pointer
}

.accordion-trigger span {
  color: var(--lime)
}

.accordion-panel {
  display: none;
  padding: 0 22px 22px;
  color: #C9D6E8;
  line-height: 1.7
}

.accordion-item.open .accordion-panel {
  display: block
}

.accordion-item.open .accordion-trigger span {
  transform: rotate(45deg)
}

.sidebar-index {
  position: sticky;
  top: 106px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .11);
  background: rgba(255, 255, 255, .045);
  padding: 16px;
  display: grid;
  gap: 6px
}

.sidebar-index a {
  padding: 10px 12px;
  border-radius: 14px;
  color: #D8E5F7;
  font-weight: 800;
  font-size: .9rem
}

.sidebar-index a:hover {
  background: rgba(168, 255, 18, .1);
  color: #fff
}

.sponsor-tier {
  margin-top: 34px
}

.sponsor-tier h2 {
  font-size: 1.4rem;
  letter-spacing: -.035em
}

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

.sponsor-card {
  min-height: 150px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .96);
  color: #061329;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .25)
}

.sponsor-card span {
  font-weight: 950;
  letter-spacing: -.04em
}

.sponsor-card small {
  display: block;
  margin-top: 4px;
  color: #43536a
}

.sponsor-card.empty {
  background: rgba(255, 255, 255, .04);
  color: #DDE8F7;
  border-style: dashed
}

.timeline {
  display: grid;
  gap: 16px;
  position: relative
}

.timeline-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: start
}

.timeline-item .num {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: rgba(168, 255, 18, .12);
  border: 1px solid rgba(168, 255, 18, .26);
  display: grid;
  place-items: center;
  color: var(--lime);
  font-weight: 950
}

.timeline-card {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .052);
  border: 1px solid rgba(255, 255, 255, .1)
}

.timeline-card h3 {
  margin: 0 0 8px
}

.timeline-card p {
  margin: 0;
  color: #C9D6E8;
  line-height: 1.65
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, 1.15fr);
  gap: 26px
}

.contact-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  display: flex;
  gap: 18px;
  align-items: flex-start
}

.contact-card .icon-badge {
  flex: 0 0 58px
}

.contact-card h3 {
  margin: 0 0 6px
}

.contact-card p {
  margin: 0;
  color: #C9D6E8;
  line-height: 1.6
}

.form {
  display: grid;
  gap: 14px
}

.field {
  display: grid;
  gap: 8px
}

.field label {
  font-size: .82rem;
  font-weight: 900;
  color: #DDE8F7;
  text-transform: uppercase;
  letter-spacing: .06em
}

.field input,
.field textarea,
.field select {
  width: 100%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  color: #fff;
  padding: 14px 15px;
  outline: none
}

.field textarea {
  min-height: 126px;
  resize: vertical
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(168, 255, 18, .55);
  box-shadow: 0 0 0 4px rgba(168, 255, 18, .08)
}

.cta-slab {
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  background: linear-gradient(130deg, var(--lime), #d5ff7a 48%, #fff);
  color: #061329;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center
}

.cta-slab h2 {
  font-size: clamp(2rem, 3.2vw, 4rem);
  line-height: .98;
  letter-spacing: -.06em;
  margin: 0 0 12px
}

.cta-slab p {
  margin: 0;
  max-width: 670px;
  line-height: 1.65;
  color: #152842
}

.cta-slab .btn-outline {
  color: #061329;
  border-color: rgba(6, 19, 41, .25);
  background: rgba(6, 19, 41, .03)
}

.site-footer {
  background: #07090d;
  border-top: 1px solid rgba(168, 255, 18, .18);
  padding: 62px 0 26px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 44px
}

.footer-logo {
  width: 134px
}

.footer-col h3 {
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .95rem;
  margin: 0 0 18px
}

.footer-col a,
.footer-col p {
  display: block;
  color: #D8E5F7;
  margin: 0 0 11px;
  line-height: 1.6
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #9CA9BD;
  font-size: .86rem
}

.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 88;
  background: rgba(6, 19, 41, .92);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 10px 12px;
  gap: 10px
}

.mobile-cta .btn {
  flex: 1;
  min-height: 46px;
  padding: 11px 12px;
  font-size: .76rem
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s ease
}

.reveal.is-visible {
  opacity: 1;
  transform: none
}

@media (max-width:1020px) {
  .container {
    width: min(100% - 28px, var(--max))
  }

  .nav-links {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 92px;
    display: none;
    grid-template-columns: 1fr;
    background: rgba(6, 19, 41, .97);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 24px;
    padding: 12px;
    box-shadow: var(--shadow)
  }

  .nav-links.open {
    display: grid
  }

  .nav-links a {
    border-radius: 16px;
    padding: 14px
  }

  .menu-toggle {
    display: inline-flex;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    border-radius: 999px;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center
  }

  .nav-actions .btn {
    display: none
  }

  .brand small {
    display: block
  }

  .brand img {
    width: 76px
  }

  .hero {
    min-height: auto;
    padding: 48px 0 64px
  }

  .hero-grid,
  .two-col,
  .two-col.equal,
  .contact-grid,
  .editorial-band .container {
    grid-template-columns: 1fr
  }

  .terrain-panel {
    min-height: 520px
  }

  .cards-row,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr)
  }

  .grid-3,
  .lot-grid,
  .footer-grid,
  .sponsor-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .route-card.featured {
    grid-column: span 1
  }

  .cta-slab {
    grid-template-columns: 1fr;
    padding: 34px
  }

  .mobile-cta {
    display: flex
  }

  body {
    padding-bottom: 70px
  }

  .sidebar-index {
    position: relative;
    top: 0;
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:680px) {
  .navbar {
    height: 72px
  }

  .page-hero {
    padding: 46px 0 34px
  }

  .section {
    padding: 66px 0
  }

  .hero-logo {
    width: 270px
  }

  .display {
    font-size: clamp(2.25rem, 13vw, 4rem);
    letter-spacing: -.07em
  }

  .lead {
    font-size: 1rem
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr
  }

  .hero-meta {
    display: grid
  }

  .meta-pill {
    border-radius: 18px
  }

  .terrain-panel {
    min-height: 440px;
    border-radius: 28px
  }

  .hero-date {
    width: 112px;
    right: 18px;
    top: 18px
  }

  .hero-date strong {
    font-size: 1.52rem
  }

  .challenge-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 18px;
    border-radius: 22px
  }

  .distance-row {
    grid-template-columns: repeat(2, 1fr)
  }

  .glyph-float {
    display: none
  }

  .rock-shape {
    bottom: 95px
  }

  .cards-row,
  .grid-3,
  .grid-4,
  .kit-grid,
  .lot-grid,
  .sponsor-grid,
  .stats-strip {
    grid-template-columns: 1fr
  }

  .stats-strip {
    border-radius: 22px
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
  }

  .stat:last-child {
    border-bottom: 0
  }

  .feature-card {
    min-height: auto
  }

  .route-meta {
    grid-template-columns: 1fr
  }

  .table-wrap {
    display: none
  }

  .prize-cards {
    display: grid
  }

  .timeline-item {
    grid-template-columns: 58px 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-bottom {
    display: grid
  }

  .cta-slab {
    border-radius: 28px;
    padding: 28px
  }

  .btn {
    width: 100%
  }

  .hero-actions .btn {
    width: 100%
  }

  .brand {
    min-width: 0
  }

  .brand small {
    display: none
  }

  .nav-links {
    top: 82px
  }

  .sidebar-index {
    grid-template-columns: 1fr
  }

  .contact-card {
    display: grid
  }

  .section-title {
    font-size: 2.15rem
  }

  .page-title {
    font-size: 2.45rem
  }

  .route-distance {
    font-size: 4.4rem
  }
}