:root {
  --ink: #f5f7ff;
  --muted: #a9b1c7;
  --night: #23242e;
  --panel: #1c1e27;
  --deep: #181a23;
  --line: rgba(255, 255, 255, 0.11);
  --cyan: #20e9de;
  --blue: #4f8dff;
  --magenta: #ef3de0;
  --amber: #ffd65c;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 62% -10%, rgba(87, 51, 178, 0.16), transparent 34rem),
    var(--night);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  display: flex;
  width: min(1240px, calc(100% - 48px));
  height: 92px;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
}
.brand img { display: block; width: 150px; height: auto; }

nav { display: flex; align-items: center; gap: 32px; }
nav a { color: var(--muted); font-size: 13px; transition: color .2s ease; }
nav a:hover { color: white; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.language-switcher { position: relative; display: inline-flex; }
.language-switcher::after {
  position: absolute;
  top: 50%;
  right: 12px;
  color: #778198;
  content: "⌄";
  font-size: 11px;
  pointer-events: none;
  transform: translateY(-58%);
}
.language-switcher select {
  height: 38px;
  padding: 0 31px 0 13px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  outline: none;
  appearance: none;
  background: rgba(9,11,18,.46);
  color: #d5daea;
  cursor: pointer;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: .04em;
}
.language-switcher select:hover,
.language-switcher select:focus { border-color: rgba(32,233,222,.56); }

.nav-cta {
  padding: 11px 18px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  color: white;
}

.hero {
  position: relative;
  display: grid;
  min-height: 790px;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  padding: 145px max(24px, calc((100vw - 1240px) / 2)) 80px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(14,15,22,.12), rgba(14,15,22,.28));
}

.hero-copy { position: relative; z-index: 3; }
.eyebrow, .section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--cyan);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.eyebrow span { width: 28px; height: 1px; background: var(--cyan); }

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 690px;
  margin-bottom: 28px;
  font-size: clamp(50px, 4.6vw, 64px);
  font-weight: 560;
  letter-spacing: -.055em;
  line-height: .98;
  text-wrap: balance;
}
h1 > span,
h1 em {
  display: block;
  background: linear-gradient(90deg, var(--cyan), #9b7bff 47%, var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
}
h1 > span {
  background: none;
  color: var(--ink);
}

.hero-question {
  max-width: 660px;
  margin: -8px 0 28px;
  background: linear-gradient(90deg, var(--cyan), #9b7bff 48%, var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--font-geist-mono), monospace;
  font-size: clamp(12px, 1.25vw, 17px);
  font-weight: 620;
  letter-spacing: .055em;
  line-height: 1.55;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 720;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:disabled { cursor: wait; opacity: .65; transform: none; }
.button-primary {
  background: linear-gradient(110deg, var(--cyan), #56dbba);
  box-shadow: 0 10px 34px rgba(32,233,222,.16);
  color: #07100f;
}
.button-secondary {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.04);
  color: white;
}
.button-secondary span { color: var(--amber); }

.hero-facts {
  display: flex;
  gap: 28px;
  margin-top: 38px;
  color: #7f899e;
  font-size: 12px;
}
.hero-facts span { display: flex; align-items: baseline; gap: 6px; }
.hero-facts strong { color: white; font-size: 18px; }

.hero-product {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 610px;
  place-items: center;
  min-width: 0;
  text-align: center;
}
.hero-product::before {
  position: absolute;
  z-index: -1;
  width: 88%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 68% 34%, rgba(75,125,255,.36), transparent 36%),
    radial-gradient(circle at 38% 68%, rgba(239,61,224,.28), transparent 40%),
    rgba(255,255,255,.025);
  box-shadow: 0 0 110px rgba(36,84,215,.22);
  content: "";
  filter: blur(12px);
}
.hero-product .box-art {
  position: relative;
  z-index: 2;
  width: min(100%, 650px);
  height: auto;
  margin: 0 auto;
  filter:
    brightness(1.48)
    contrast(1.04)
    drop-shadow(0 0 26px rgba(57,153,255,.2))
    drop-shadow(0 42px 48px rgba(0,0,0,.58));
}
.hero-product .interface-art {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 108%;
  max-width: none;
  height: auto;
  opacity: .68;
  filter: saturate(1.18) drop-shadow(0 0 18px rgba(32,233,222,.22));
  mix-blend-mode: screen;
  transform: translate(-50%,-50%);
}
.product-note {
  position: absolute;
  z-index: 3;
  bottom: 2%;
  left: 50%;
  width: 100%;
  margin: 0;
  color: #768098;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .2; }
.hero-glow-one { right: -10%; top: 8%; width: 460px; height: 460px; background: #265fed; }
.hero-glow-two { right: 24%; bottom: -35%; width: 380px; height: 380px; background: #e82bd8; }

.title-divider,
.van-divider,
.crystal-divider {
  display: grid;
  width: min(1240px, calc(100% - 48px));
  grid-template-columns: minmax(30px, 1fr) auto minmax(30px, 1fr);
  align-items: center;
  gap: clamp(18px, 4vw, 52px);
  margin: 0 auto;
}
.title-divider { padding: 110px 0 35px; }
.title-divider img {
  display: block;
  width: min(62vw, 650px);
  height: auto;
  filter: drop-shadow(0 0 18px rgba(87,218,255,.22));
}
.title-divider span,
.van-divider span,
.crystal-divider span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(98,220,255,.36), rgba(239,61,224,.28));
}
.title-divider span:last-child,
.van-divider span:last-child,
.crystal-divider span:last-child { transform: scaleX(-1); }

.campsite-reveal {
  position: relative;
  width: min(1240px, calc(100% - 48px));
  margin: 22px auto 0;
}
.campsite-image {
  position: relative;
  min-height: clamp(500px, 61vw, 710px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 34px;
  background: #151821;
  box-shadow: 0 45px 90px rgba(0,0,0,.28);
}
.campsite-image > img {
  object-fit: cover;
  object-position: center;
  filter: saturate(.94) contrast(1.03) brightness(.92);
}
.campsite-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12,14,22,.9) 0%, rgba(12,14,22,.48) 42%, transparent 70%),
    linear-gradient(0deg, rgba(12,14,22,.68), transparent 45%);
}
.campsite-copy {
  position: absolute;
  z-index: 2;
  bottom: clamp(34px, 6vw, 76px);
  bottom: clamp(34px, 6vw, 76px);
  left: clamp(28px, 6vw, 76px);
  max-width: 560px;
}
.campsite-copy h2 {
  max-width: 510px;
  margin-bottom: 22px;
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 560;
  letter-spacing: -.06em;
  line-height: .98;
}
.campsite-copy > p:not(.section-kicker) {
  max-width: 510px;
  margin: 0;
  color: #c5cbd9;
  font-size: 16px;
  line-height: 1.7;
}

.manifesto {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 120px 24px;
}
.manifesto h2, .founder-copy h2, .join-section h2 {
  margin-bottom: 30px;
  font-size: clamp(42px, 5.6vw, 76px);
  font-weight: 560;
  letter-spacing: -.055em;
  line-height: 1;
}
.manifesto h2 span { color: #666f84; }
.manifesto-copy {
  max-width: 720px;
  margin-left: 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.7;
}
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 90px;
  border-top: 1px solid var(--line);
}
.highlight-grid article { min-height: 290px; padding: 30px 30px 24px 0; border-right: 1px solid var(--line); }
.highlight-grid article + article { padding-left: 30px; }
.highlight-grid article:last-child { border-right: 0; }
.highlight-index { color: #5f687e; font-family: var(--font-geist-mono), monospace; font-size: 11px; }
.highlight-grid h3 { max-width: 260px; margin: 70px 0 16px; font-size: 23px; font-weight: 560; letter-spacing: -.025em; }
.highlight-grid p { max-width: 310px; color: var(--muted); font-size: 14px; line-height: 1.75; }

.key-stations-section {
  position: relative;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 8px 0 120px;
}
.key-stations-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 48px;
}
.key-stations-heading h2 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(42px, 5.4vw, 72px);
  font-weight: 560;
  letter-spacing: -.055em;
  line-height: .98;
}
.key-stations-heading > p {
  max-width: 530px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.key-stations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.key-station-card {
  --station-color: var(--cyan);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  background:
    radial-gradient(circle at 14% 100%, color-mix(in srgb, var(--station-color) 10%, transparent), transparent 17rem),
    #23242e;
  box-shadow: 0 28px 70px rgba(0,0,0,.2);
}
.key-station-2 { --station-color: #ffbf65; }
.key-station-3 { --station-color: #9caeff; }
.key-station-image { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: #11131c; }
.key-station-image img { object-fit: cover; filter: saturate(.92) contrast(1.035) brightness(.9); transition: transform .7s ease; }
.key-station-card:hover .key-station-image img { transform: scale(1.025); }
.key-station-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12,14,22,.72), transparent 48%);
}
.key-station-phase {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 8px 11px;
  border: 1px solid color-mix(in srgb, var(--station-color) 55%, transparent);
  border-radius: 999px;
  background: rgba(12,14,22,.7);
  color: var(--station-color);
  backdrop-filter: blur(10px);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.key-station-copy { min-height: 292px; padding: 24px 24px 26px; }
.key-station-index {
  color: var(--station-color);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: .14em;
}
.key-station-copy h3 { margin: 34px 0 14px; font-size: 27px; font-weight: 600; letter-spacing: -.035em; }
.key-station-copy p { min-height: 92px; margin: 0 0 22px; color: #a9b1c3; font-size: 14px; line-height: 1.65; }
.key-station-copy code {
  display: inline-flex;
  padding: 9px 11px;
  border: 1px solid color-mix(in srgb, var(--station-color) 26%, transparent);
  border-radius: 9px;
  background: rgba(7,9,15,.48);
  color: #edf1fa;
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  letter-spacing: .04em;
}

.seasons-section {
  position: relative;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 10px 0 120px;
}
.seasons-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 58px;
}
.seasons-heading h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(42px, 5.5vw, 74px);
  font-weight: 560;
  letter-spacing: -.055em;
  line-height: .98;
}
.seasons-heading > p {
  max-width: 510px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.season-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  list-style: none;
  overflow: hidden;
  background: #23242e;
}
.season-card {
  --season-color: var(--cyan);
  position: relative;
  display: flex;
  min-height: 270px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-right: 1px solid rgba(255,255,255,.1);
  background: radial-gradient(circle at 30% 110%, color-mix(in srgb, var(--season-color) 18%, transparent), transparent 62%);
}
.season-card:last-child { border-right: 0; }
.season-card::before {
  position: absolute;
  top: 0;
  left: 28px;
  width: 52px;
  height: 1px;
  background: var(--season-color);
  content: "";
  box-shadow: 0 0 16px var(--season-color);
}
.season-card-2 { --season-color: #ffbf65; }
.season-card-3 { --season-color: #9caeff; }
.season-card > span {
  color: var(--season-color);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: .16em;
}
.season-card small {
  display: block;
  margin-bottom: 12px;
  color: var(--season-color);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: .09em;
  line-height: 1.45;
  text-transform: uppercase;
}
.season-card h3 { margin: 0 0 10px; font-size: 30px; font-weight: 560; letter-spacing: -.04em; }
.season-card p { margin: 0; color: #9da6b9; font-size: 14px; line-height: 1.55; }
.season-destination {
  overflow: hidden;
  margin: 24px 0 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  background: #161822;
}
.season-destination-image { position: relative; min-height: 430px; overflow: hidden; }
.season-destination-image img { object-fit: cover; object-position: center 58%; }
.season-destination-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(14,16,24,.9), transparent 64%);
}
.season-destination figcaption {
  display: grid;
  grid-template-columns: .55fr 1fr;
  align-items: start;
  gap: 32px;
  padding: 28px 30px 32px;
}
.season-destination figcaption > span {
  color: var(--cyan);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.season-destination h3 { margin: 0 0 8px; font-size: 30px; font-weight: 560; letter-spacing: -.04em; }
.season-destination p { max-width: 620px; margin: 0; color: #a7afc0; font-size: 14px; line-height: 1.65; }

.workshop-section {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto 64px;
}
.workshop-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 32px;
  background: rgba(14,16,24,.9);
  box-shadow: 0 42px 90px rgba(0,0,0,.3);
}
.workshop-image {
  position: relative;
  aspect-ratio: 3987 / 2428;
  overflow: hidden;
  background: #12141c;
}
.workshop-image > img {
  object-fit: cover;
  filter: saturate(.96) contrast(1.025);
}
.workshop-slide { animation: workshop-slide-in .35s ease; }
.workshop-slider-controls {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(10,12,18,.76);
  backdrop-filter: blur(14px);
}
.workshop-slider-controls > button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: white;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.workshop-slider-controls > button:hover,
.workshop-slider-controls > button:focus-visible {
  border-color: var(--cyan);
  background: rgba(32,233,222,.14);
  outline: none;
}
.workshop-slider-dots { display: flex; align-items: center; gap: 6px; }
.workshop-slider-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.38);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}
.workshop-slider-dots button.active { width: 24px; background: var(--cyan); }
@keyframes workshop-slide-in {
  from { opacity: .35; transform: scale(1.012); }
  to { opacity: 1; transform: scale(1); }
}
.workshop-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: rgba(10,12,18,.76);
  color: #dce2ef;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}
.workshop-caption {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: 70px;
  padding: clamp(30px, 5vw, 56px);
  border-top: 1px solid rgba(255,255,255,.1);
}
.workshop-caption h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 560;
  letter-spacing: -.055em;
  line-height: 1;
}
.workshop-caption > p {
  max-width: 480px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.box-contents-section {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto 120px;
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 32px;
  background:
    radial-gradient(circle at 92% 12%, rgba(32,233,222,.1), transparent 25rem),
    radial-gradient(circle at 8% 90%, rgba(239,61,224,.09), transparent 25rem),
    #23242e;
}
.box-contents-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 50px;
}
.box-contents-heading .section-kicker { grid-column: 1 / -1; }
.box-contents-heading h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(40px, 5.3vw, 70px);
  font-weight: 560;
  letter-spacing: -.055em;
  line-height: .98;
}
.box-contents-heading > p:not(.section-kicker) {
  max-width: 470px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.box-contents-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,.12);
  border-left: 1px solid rgba(255,255,255,.12);
  list-style: none;
}
.box-contents-grid li {
  min-height: 145px;
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.box-contents-grid span {
  display: block;
  margin-bottom: 30px;
  color: var(--cyan);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  letter-spacing: .16em;
}
.box-contents-grid p { margin: 0; color: #dce1ed; font-size: 15px; line-height: 1.45; }
.box-contents-note {
  margin: 22px 0 0;
  color: #727c91;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: .08em;
  line-height: 1.6;
  text-transform: uppercase;
}

.van-divider {
  width: min(1040px, calc(100% - 48px));
  margin-top: -70px;
  padding-bottom: 78px;
}
.van-divider img {
  display: block;
  width: min(30vw, 285px);
  height: auto;
  filter: drop-shadow(0 0 16px rgba(69,221,255,.2));
}

.lower-world {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: 14px;
}
.lower-world::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 82% 42%, rgba(35,82,191,.28), transparent 42%),
    radial-gradient(circle at 18% 74%, rgba(95,40,150,.14), transparent 38%),
    linear-gradient(180deg, rgba(17,29,61,.12), rgba(12,21,46,.38) 55%, rgba(24,26,35,.08));
  content: "";
}
.lower-interface {
  position: absolute;
  z-index: -1;
  top: 29%;
  right: -19%;
  width: min(92vw, 1160px);
  max-width: none;
  height: auto;
  filter: brightness(.48) saturate(1.35) drop-shadow(0 0 24px rgba(40,157,255,.22));
  transform: rotate(-7deg);
}

.founder-section { position: relative; z-index: 1; padding: 0 max(24px, calc((100vw - 1240px) / 2)) 90px; }
.founder-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 70px;
  overflow: hidden;
  padding: clamp(34px, 6vw, 78px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 32px;
  background:
    radial-gradient(circle at 90% 10%, rgba(239,61,224,.18), transparent 26rem),
    radial-gradient(circle at 10% 90%, rgba(32,233,222,.12), transparent 26rem),
    var(--panel);
}
.founder-copy > p:not(.section-kicker) { max-width: 620px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.founder-copy ul { display: grid; gap: 14px; margin: 36px 0 0; padding: 0; list-style: none; }
.founder-copy li { display: flex; gap: 16px; color: #d8dcec; font-size: 14px; }
.founder-copy li span { color: var(--cyan); font-family: var(--font-geist-mono), monospace; font-size: 11px; }
.founder-offer {
  display: flex;
  min-height: 350px;
  flex-direction: column;
  justify-content: center;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(5,8,16,.5);
  text-align: center;
}
.offer-label { color: #8992a8; font-family: var(--font-geist-mono), monospace; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.price { margin: 24px 0; font-size: 92px; font-weight: 620; letter-spacing: -.08em; line-height: 1; }
.price sup { margin-right: 8px; color: var(--cyan); font-size: 24px; vertical-align: top; }
.button-wide { width: 100%; }
.founder-offer small, .join-form small { display: block; margin-top: 16px; color: #6f788d; font-size: 10px; line-height: 1.5; }
.founder-capacity {
  margin: -4px 0 18px;
  color: var(--cyan);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: .08em;
  line-height: 1.5;
  text-transform: uppercase;
}
.founder-capacity.is-closed { color: #ff92c8; }

.preorder-section {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 118px;
}
.preorder-card {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: clamp(36px, 6vw, 86px);
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 28px;
  background: radial-gradient(circle at 84% 18%, rgba(32,233,222,.13), transparent 22rem), rgba(8,12,24,.78);
}
.preorder-copy h2 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(36px, 4.6vw, 62px);
  font-weight: 560;
  letter-spacing: -.055em;
  line-height: 1;
}
.preorder-copy > p:not(.section-kicker) { max-width: 650px; margin: 24px 0 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.preorder-details { display: flex; flex-direction: column; align-items: center; text-align: center; }
.preorder-price-label,
.preorder-countdown-label { color: #8992a8; font-family: var(--font-geist-mono), monospace; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.preorder-price {
  margin: 10px 0 30px;
  background: linear-gradient(90deg, var(--cyan), #9b7bff 52%, var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(54px, 7vw, 82px);
  font-weight: 620;
  letter-spacing: -.07em;
  line-height: 1;
}
.preorder-countdown-label { margin-bottom: 14px; }
.preorder-countdown { display: grid; width: 100%; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.countdown-unit { padding: 15px 8px 12px; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; background: rgba(0,0,0,.24); }
.countdown-unit strong { display: block; font-size: clamp(24px, 3vw, 38px); font-weight: 560; font-variant-numeric: tabular-nums; }
.countdown-unit span { display: block; margin-top: 5px; color: #778197; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.preorder-open { margin: 18px 0 0; color: var(--cyan); font-size: 18px; }

.founder-consent,
.consent-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: #98a2b8;
  font-size: 11px;
  line-height: 1.55;
  text-align: left;
}
.founder-consent { margin: 0 0 18px; }
.consent-row { margin-top: 16px; }
.founder-consent input,
.consent-row input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: var(--cyan);
}
.founder-consent a,
.consent-row a { color: #dce2f1; text-decoration: underline; text-underline-offset: 3px; }
.founder-consent a:hover,
.consent-row a:hover { color: var(--cyan); }

.locations-section {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 40px 0 128px;
}
.locations-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  column-gap: 70px;
  margin-bottom: 52px;
}
.locations-intro .section-kicker { grid-column: 1 / -1; }
.locations-intro h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(42px, 5.5vw, 74px);
  font-weight: 560;
  letter-spacing: -.055em;
  line-height: .98;
}
.locations-intro > p:not(.section-kicker) {
  max-width: 480px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.locations-claim {
  position: relative;
  overflow: hidden;
  margin: 0 0 30px;
  padding: clamp(28px, 4vw, 48px) clamp(24px, 5vw, 64px);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 20%, rgba(79,141,255,.13), transparent 24rem),
    #23242e;
}
.locations-claim::before {
  position: absolute;
  top: 0;
  left: clamp(24px, 5vw, 64px);
  width: 62px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  content: "";
}
.locations-claim p {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 560;
  letter-spacing: -.045em;
  line-height: 1.02;
  text-wrap: balance;
}
.locations-claim p:last-child {
  margin-top: 5px;
  background: linear-gradient(90deg, var(--cyan), #9b7bff 48%, var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.location-explorer {
  margin: 0 0 30px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 32px;
  background:
    radial-gradient(circle at 12% 10%, rgba(32,233,222,.08), transparent 26rem),
    radial-gradient(circle at 86% 86%, rgba(85,70,228,.15), transparent 28rem),
    #23242e;
}
.location-explorer-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 30px;
}
.location-explorer-heading h3 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(36px, 4.6vw, 60px);
  font-weight: 560;
  letter-spacing: -.05em;
  line-height: .98;
}
.location-explorer-heading > p {
  max-width: 480px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.season-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.season-filters button {
  --season-color: var(--cyan);
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  color: #aab2c3;
  cursor: pointer;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.season-filters button.phase-season { --season-color: #ffbf65; }
.season-filters button.phase-offseason { --season-color: #9caeff; }
.season-filters button:hover,
.season-filters button.active {
  border-color: var(--season-color);
  background: color-mix(in srgb, var(--season-color) 10%, transparent);
  color: white;
}
.map-point-count {
  align-self: center;
  margin-left: auto;
  color: #727c91;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.location-explorer-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
}
.europe-map {
  position: relative;
  aspect-ratio: 1000 / 650;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    rgba(9,12,20,.38);
  background-size: 42px 42px;
  touch-action: pan-y;
  user-select: none;
}
.europe-map.is-zoomed { cursor: grab; touch-action: none; }
.europe-map.is-dragging { cursor: grabbing; }
.europe-map-canvas {
  position: absolute;
  inset: 0;
  transform-origin: center;
  transition: transform .24s ease-out;
  will-change: transform;
}
.europe-map.is-dragging .europe-map-canvas { transition: none; }
.europe-map::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: radial-gradient(circle at center, transparent 25%, rgba(8,10,16,.36));
  content: "";
  pointer-events: none;
}
.europe-map-canvas svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.europe-map .europe-land {
  fill: rgba(49,67,96,.2);
  stroke: rgba(123,191,224,.52);
  stroke-width: 1.35;
  vector-effect: non-scaling-stroke;
}
.europe-map .europe-borders {
  fill: none;
  stroke: rgba(133,163,197,.16);
  stroke-width: .7;
  vector-effect: non-scaling-stroke;
}
.map-point {
  --season-color: var(--cyan);
  position: absolute;
  z-index: 2;
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%) scale(var(--point-scale, 1));
  transform-origin: center;
}
.map-point.phase-season { --season-color: #ffbf65; }
.map-point.phase-offseason { --season-color: #9caeff; }
.map-point .map-point-core {
  width: 9px;
  height: 9px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 50%;
  background: var(--season-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--season-color) 16%, transparent), 0 0 18px var(--season-color);
  transition: transform .2s ease, box-shadow .2s ease;
}
.map-point-event .map-point-core { border-radius: 2px; transform: rotate(45deg); }
.map-point:hover .map-point-core,
.map-point:focus-visible .map-point-core,
.map-point.active .map-point-core {
  box-shadow: 0 0 0 7px color-mix(in srgb, var(--season-color) 18%, transparent), 0 0 25px var(--season-color);
  transform: scale(1.35);
}
.map-point-event:hover .map-point-core,
.map-point-event:focus-visible .map-point-core,
.map-point-event.active .map-point-core { transform: rotate(45deg) scale(1.35); }
.map-point .map-point-tooltip {
  position: absolute;
  z-index: 3;
  bottom: 26px;
  left: 50%;
  width: max-content;
  max-width: 170px;
  padding: 7px 9px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(10,12,18,.92);
  color: #f1f4fb;
  box-shadow: 0 12px 30px rgba(0,0,0,.3);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  line-height: 1.25;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 5px);
  transition: opacity .18s ease, transform .18s ease;
}
.map-point:hover .map-point-tooltip,
.map-point:focus-visible .map-point-tooltip {
  opacity: 1;
  transform: translate(-50%, 0);
}
.map-zoom-controls {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  background: rgba(9,12,19,.84);
  box-shadow: 0 10px 28px rgba(0,0,0,.24);
  backdrop-filter: blur(12px);
}
.map-zoom-controls button {
  display: grid;
  min-width: 32px;
  height: 32px;
  place-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 8px;
  background: rgba(255,255,255,.04);
  color: #edf2fb;
  cursor: pointer;
  font: 600 16px/1 var(--font-geist-mono), monospace;
}
.map-zoom-controls button:hover:not(:disabled),
.map-zoom-controls button:focus-visible { border-color: var(--cyan); color: var(--cyan); }
.map-zoom-controls button:disabled { cursor: default; opacity: .35; }
.map-zoom-controls span {
  min-width: 48px;
  color: #aeb7c9;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: .06em;
  text-align: center;
}
.map-zoom-controls .map-zoom-reset { font-size: 9px; letter-spacing: .05em; text-transform: uppercase; }
.map-zoom-hint {
  position: absolute;
  bottom: 12px;
  left: 14px;
  z-index: 5;
  max-width: 330px;
  margin: 0;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(9,12,19,.7);
  color: #8e98ad;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: .04em;
  line-height: 1.35;
}
.map-preview {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 24px;
  background: rgba(7,10,17,.48);
}
.map-preview-image { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.map-preview-image img { object-fit: cover; animation: location-reveal .55s ease both; }
.map-preview-image-pending {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(40,222,219,.1), transparent 44%),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    #11141e;
  background-size: auto, 34px 34px, 34px 34px, auto;
}
.map-preview-image-pending::before,
.map-preview-image-pending::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(40,222,219,.3);
  content: "";
  transform: translate(-50%, -50%);
}
.map-preview-image-pending::before { width: 1px; height: 72%; }
.map-preview-image-pending::after { width: 72%; height: 1px; }
.map-preview-placeholder {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 80%;
  justify-items: center;
  padding: 22px;
  border: 1px solid rgba(40,222,219,.22);
  border-radius: 16px;
  background: rgba(9,12,19,.76);
  text-align: center;
  backdrop-filter: blur(10px);
}
.map-preview-placeholder span,
.map-preview-placeholder small {
  color: #7f899d;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.map-preview-placeholder strong { margin: 12px 0 8px; color: #f2f4fa; font-size: 22px; letter-spacing: -.035em; }
.map-preview-placeholder small { color: var(--cyan); }
.map-preview-copy {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
}
.map-preview-copy span,
.map-preview-copy small,
.map-preview-copy p {
  color: #7f899d;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.map-preview-copy h4 { margin: 7px 0 5px; font-size: 31px; font-weight: 560; letter-spacing: -.045em; line-height: 1; }
.map-preview-copy p { margin: 0; }
.map-preview-copy small { color: var(--cyan); white-space: nowrap; }
.map-preview-copy .map-coordinate-line {
  display: block;
  margin-top: 12px;
  color: #7f899d;
  letter-spacing: .07em;
  line-height: 1.45;
  white-space: normal;
}
.location-slider {
  margin-top: 30px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 32px;
  background:
    radial-gradient(circle at 80% 0%, rgba(62,87,175,.15), transparent 24rem),
    rgba(14,16,24,.78);
  box-shadow: 0 36px 90px rgba(0,0,0,.25);
}
.location-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  min-height: 106px;
  padding: 0 7px 26px;
}
.location-heading > div {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  column-gap: 16px;
}
.location-number,
.location-total {
  color: var(--cyan);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  letter-spacing: .14em;
}
.location-heading h3 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 560;
  letter-spacing: -.045em;
  line-height: 1;
}
.location-heading p {
  grid-column: 2;
  margin: 8px 0 0;
  color: #838da3;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.location-total { padding-bottom: 8px; color: #5f687c; }
.location-frame {
  position: relative;
  aspect-ratio: 16 / 8.95;
  overflow: hidden;
  border-radius: 22px;
  background: #0e1017;
}
.location-image {
  object-fit: cover;
  animation: location-reveal .7s ease both;
}
.location-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8,10,16,.58), transparent 30%);
  pointer-events: none;
}
.location-controls {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 18px;
}
.location-controls > button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background: rgba(11,13,20,.56);
  color: white;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.location-controls > button:hover {
  border-color: var(--cyan);
  background: rgba(15,24,31,.86);
  transform: translateY(-2px);
}
.location-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.location-dots button {
  width: 24px;
  height: 2px;
  padding: 0;
  border: 0;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}
.location-dots button.active { width: 46px; background: var(--cyan); }

@keyframes location-reveal {
  from { opacity: .35; transform: scale(1.018); }
  to { opacity: 1; transform: scale(1); }
}

.crystal-divider {
  width: min(920px, calc(100% - 48px));
  padding: 0 0 74px;
}
.crystal-divider img {
  display: block;
  width: 72px;
  height: auto;
  filter: drop-shadow(0 0 22px rgba(239,61,224,.42));
}

.join-section {
  display: grid;
  max-width: 1240px;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 90px;
  margin: 0 auto;
  padding: 0 24px 130px;
}
.join-section > div > p:not(.section-kicker) { max-width: 480px; color: var(--muted); line-height: 1.7; }
.join-form { padding: 34px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.025); }
.join-cta-claim {
  margin: 0 0 28px;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 560;
  letter-spacing: -.045em;
  line-height: 1.02;
  text-wrap: balance;
}
.join-cta-claim span,
.join-cta-claim strong { display: block; }
.join-cta-claim strong {
  margin-top: 4px;
  background: linear-gradient(90deg, var(--cyan), #9b7bff 48%, var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: inherit;
}
.trap-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}
.join-form label { display: block; margin-bottom: 12px; color: #c8cede; font-size: 12px; }
.input-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.input-row input {
  min-width: 0;
  height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  outline: none;
  background: rgba(0,0,0,.25);
  color: white;
}
.input-row input:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(32,233,222,.1); }
.turnstile-wrap { min-height: 65px; margin-top: 16px; }
.turnstile-wrap .cf-turnstile { width: 100%; }
.form-message, .checkout-message { margin: 14px 0 0; font-size: 12px; line-height: 1.5; }
.form-message.success, .checkout-message { color: var(--cyan); }
.form-message.error { color: #ff8f9d; }

.roadmap-section {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 10px 0 130px;
}
.roadmap-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 70px;
}
.roadmap-heading h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(42px, 5.5vw, 74px);
  font-weight: 560;
  letter-spacing: -.055em;
  line-height: .98;
}
.roadmap-heading > p {
  max-width: 500px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.roadmap-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 70px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,.15);
  list-style: none;
}
.roadmap-list li {
  min-width: 0;
  padding: 0 22px 30px;
  border-right: 1px solid rgba(255,255,255,.09);
}
.roadmap-list li:first-child { padding-left: 0; }
.roadmap-list li:last-child { padding-right: 0; border-right: 0; }
.roadmap-marker {
  display: flex;
  height: 42px;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: -7px;
}
.roadmap-marker > span {
  width: 13px;
  height: 13px;
  border: 3px solid var(--bg);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 1px rgba(32,233,222,.55), 0 0 18px rgba(32,233,222,.38);
}
.roadmap-marker small {
  padding-top: 17px;
  color: #5f687e;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: .14em;
}
.roadmap-list li:last-child .roadmap-marker > span {
  background: var(--magenta);
  box-shadow: 0 0 0 1px rgba(239,61,224,.58), 0 0 20px rgba(239,61,224,.42);
}
.roadmap-month {
  min-height: 34px;
  margin: 12px 0 20px;
  color: var(--cyan);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .13em;
  line-height: 1.5;
  text-transform: uppercase;
}
.roadmap-list li:last-child .roadmap-month { color: #f177e8; }
.roadmap-list h3 {
  min-height: 56px;
  margin: 0 0 15px;
  font-size: 20px;
  font-weight: 560;
  letter-spacing: -.025em;
  line-height: 1.25;
}
.roadmap-list li > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.roadmap-note {
  margin: 30px 0 0;
  color: #6f788e;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: .1em;
  line-height: 1.7;
  text-transform: uppercase;
}

.social-section {
  display: grid;
  max-width: 1240px;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  margin: 0 auto;
  padding: 0 24px 110px;
}
.social-section h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 560;
  letter-spacing: -.05em;
  line-height: 1.02;
}
.social-links {
  border-top: 1px solid var(--line);
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
  color: #cfd4e4;
  font-size: 15px;
  transition: color .2s ease, padding .2s ease;
}
.social-links a:hover { padding-right: 0; padding-left: 10px; color: var(--cyan); }
.social-links a span:last-child { color: #687288; font-size: 18px; }

footer {
  display: grid;
  max-width: 1240px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  margin: 0 auto;
  padding: 36px 24px;
  border-top: 1px solid var(--line);
  color: #737d92;
  font-size: 11px;
}
.footer-brand img { display: block; width: 96px; height: auto; }
footer p { margin: 0; text-align: center; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 18px; }
footer a:hover { color: white; }

@media (max-width: 900px) {
  .site-header { width: calc(100% - 32px); }
  nav > a:not(.nav-cta) { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding: 135px 24px 70px; }
  .hero-copy { text-align: center; }
  .hero-question { margin-right: auto; margin-left: auto; }
  .eyebrow { justify-content: center; }
  .hero-lead { margin-right: auto; margin-left: auto; }
  .hero-actions, .hero-facts { justify-content: center; }
  .hero-product { margin-top: 25px; }
  .title-divider img { width: min(72vw, 560px); }
  .manifesto-copy { margin-left: 0; }
  .seasons-heading,
  .key-stations-heading,
  .box-contents-heading,
  .location-explorer-heading { grid-template-columns: 1fr; gap: 24px; }
  .key-stations-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .key-station-card:last-child { grid-column: 1 / -1; }
  .key-station-card:last-child .key-station-image { aspect-ratio: 2.4 / 1; }
  .key-station-card:last-child .key-station-copy { min-height: 230px; }
  .box-contents-grid { grid-template-columns: repeat(2, 1fr); }
  .location-explorer-grid { grid-template-columns: 1fr; }
  .europe-map { min-height: 0; }
  .map-preview { display: grid; grid-template-columns: 1.1fr .9fr; }
  .map-preview-image { min-height: 320px; aspect-ratio: auto; }
  .map-preview-copy { align-items: center; }
  .highlight-grid { grid-template-columns: 1fr; }
  .highlight-grid article, .highlight-grid article + article { min-height: auto; padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .highlight-grid h3 { margin-top: 25px; }
  .founder-card, .preorder-card, .join-section, .social-section { grid-template-columns: 1fr; gap: 44px; }
  .locations-intro { grid-template-columns: 1fr; gap: 24px; }
  .roadmap-heading { grid-template-columns: 1fr; gap: 24px; }
  .roadmap-list { grid-template-columns: 1fr; border-top: 0; }
  .roadmap-list li,
  .roadmap-list li:first-child,
  .roadmap-list li:last-child {
    position: relative;
    padding: 0 0 42px 42px;
    border-right: 0;
    border-left: 1px solid rgba(255,255,255,.15);
  }
  .roadmap-list li:last-child { border-left-color: transparent; }
  .roadmap-marker { position: absolute; top: 0; left: -7px; width: calc(100% + 7px); height: auto; margin: 0; }
  .roadmap-marker small { padding-top: 0; }
  .roadmap-month { min-height: 0; margin: 0 0 10px; }
  .roadmap-list h3 { min-height: 0; }
  .join-section { padding-top: 0; }
  .social-section { padding-bottom: 90px; }
  footer { grid-template-columns: 1fr; justify-items: center; }
  .legal-layout { grid-template-columns: 1fr; gap: 60px; }
  .legal-nav { position: static; grid-template-columns: repeat(2, 1fr); }
  .journal-feature { grid-template-columns: 1fr; }
  .journal-feature-image { min-height: 520px; }
  .journal-feature > article { border-top: 1px solid var(--line); border-left: 0; }
  .journal-article-cover { min-height: 540px; margin-bottom: 80px; }
}

@media (max-width: 480px) {
  .site-header nav { display: none; }
}

@media (max-width: 560px) {
  .site-header { height: 76px; }
  .brand img { width: 128px; }
  .nav-cta { padding: 9px 13px; }
  .hero { padding-top: 112px; }
  .hero-product { min-height: 480px; }
  .hero-product .interface-art { width: 126%; opacity: .28; }
  .product-note { bottom: 0; }
  h1 { max-width: 100%; font-size: clamp(42px, 13vw, 50px); overflow-wrap: anywhere; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-facts { gap: 12px; }
  .hero-facts span { flex-direction: column; align-items: center; gap: 2px; }
  .manifesto { padding-top: 88px; padding-bottom: 88px; }
  .manifesto-copy { font-size: 17px; }
  .highlight-grid { margin-top: 55px; }
  .key-stations-section { width: calc(100% - 24px); padding-bottom: 92px; }
  .key-stations-heading { margin-bottom: 34px; }
  .key-stations-heading h2 { font-size: 43px; }
  .key-stations-grid { grid-template-columns: 1fr; }
  .key-station-card:last-child { grid-column: auto; }
  .key-station-card:last-child .key-station-image { aspect-ratio: 3 / 2; }
  .key-station-copy,
  .key-station-card:last-child .key-station-copy { min-height: 0; }
  .key-station-copy p { min-height: 0; }
  .seasons-section { width: calc(100% - 32px); padding-bottom: 92px; }
  .seasons-heading { margin-bottom: 34px; }
  .seasons-heading h2 { font-size: 43px; }
  .season-track { grid-template-columns: 1fr; border-radius: 22px; }
  .season-card,
  .season-card:nth-child(2) { min-height: 168px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .season-card:last-child { border-bottom: 0; }
  .season-destination { border-radius: 22px; }
  .season-destination-image { min-height: 330px; }
  .season-destination-image img { object-position: 56% center; }
  .season-destination figcaption { grid-template-columns: 1fr; gap: 14px; padding: 24px 20px 26px; }
  .workshop-section { width: calc(100% - 24px); margin-bottom: 40px; }
  .workshop-card { border-radius: 24px; }
  .workshop-image { min-height: 360px; aspect-ratio: auto; }
  .workshop-image > img { object-position: 52% center; }
  .workshop-badge { top: 14px; left: 14px; }
  .workshop-slider-controls { right: 14px; bottom: 14px; }
  .workshop-caption { grid-template-columns: 1fr; gap: 24px; padding: 28px 24px 32px; }
  .workshop-caption h2 { font-size: 40px; }
  .box-contents-section { width: calc(100% - 24px); margin-bottom: 92px; padding: 28px 20px; border-radius: 22px; }
  .box-contents-heading { margin-bottom: 34px; }
  .box-contents-heading h2 { font-size: 42px; }
  .box-contents-grid { grid-template-columns: repeat(2, 1fr); }
  .box-contents-grid li { min-height: 138px; padding: 18px 14px; }
  .box-contents-grid span { margin-bottom: 24px; }
  .title-divider,
  .van-divider,
  .crystal-divider { width: calc(100% - 32px); gap: 14px; }
  .title-divider { padding: 100px 0 26px; }
  .title-divider img { width: 72vw; }
  .van-divider { margin-top: -46px; padding-bottom: 62px; }
  .van-divider img { width: 180px; }
  .crystal-divider { padding-bottom: 58px; }
  .crystal-divider img { width: 58px; }
  .lower-interface { top: 36%; right: -45%; width: 150vw; filter: brightness(.4) saturate(1.35); }
  .campsite-reveal { width: calc(100% - 24px); margin-top: 8px; }
  .campsite-image { min-height: 610px; border-radius: 22px; }
  .campsite-image > img { object-position: 60% center; }
  .campsite-shade {
    background:
      linear-gradient(0deg, rgba(12,14,22,.92) 0%, rgba(12,14,22,.5) 48%, transparent 76%),
      linear-gradient(90deg, rgba(12,14,22,.34), transparent);
  }
  .campsite-copy { right: 22px; bottom: 28px; left: 22px; }
  .campsite-copy h2 { font-size: 43px; }
  .founder-section { padding-bottom: 90px; }
  .founder-card { padding: 28px 20px; border-radius: 22px; }
  .founder-offer { min-height: 0; padding: 30px 20px; }
  .preorder-section { width: calc(100% - 32px); padding-bottom: 90px; }
  .preorder-card { padding: 28px 20px; border-radius: 22px; }
  .preorder-price { margin-bottom: 26px; }
  .preorder-countdown { gap: 5px; }
  .countdown-unit { padding: 13px 4px 10px; border-radius: 11px; }
  .countdown-unit span { font-size: 8px; letter-spacing: .04em; }
  .input-row { grid-template-columns: 1fr; }
  .join-form { padding: 24px 18px; }
  .locations-section { width: calc(100% - 32px); padding-top: 10px; padding-bottom: 90px; }
  .roadmap-section { width: calc(100% - 32px); padding-bottom: 100px; }
  .roadmap-list { margin-top: 52px; }
  .locations-intro { margin-bottom: 34px; }
  .locations-claim { margin-bottom: 20px; padding: 28px 20px; border-radius: 20px; }
  .locations-claim::before { left: 20px; }
  .locations-claim p { font-size: clamp(31px, 10vw, 40px); }
  .location-explorer { margin-bottom: 20px; padding: 22px 16px 16px; border-radius: 22px; }
  .location-explorer-heading { margin-bottom: 24px; }
  .location-explorer-heading h3 { font-size: 38px; }
  .season-filters { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 5px; scrollbar-width: none; }
  .season-filters::-webkit-scrollbar { display: none; }
  .season-filters button { flex: 0 0 auto; }
  .map-point-count { display: none; }
  .europe-map { min-height: 0; border-radius: 17px; background-size: 30px 30px; }
  .map-zoom-controls { top: 8px; right: 8px; gap: 3px; padding: 4px; }
  .map-zoom-controls button { min-width: 30px; height: 30px; padding: 0 8px; }
  .map-zoom-controls span { min-width: 42px; }
  .map-zoom-controls .map-zoom-reset { display: none; }
  .map-zoom-hint { right: 8px; bottom: 8px; left: 8px; width: fit-content; max-width: calc(100% - 16px); }
  .map-point { width: 24px; height: 24px; }
  .map-point .map-point-core { width: 7px; height: 7px; }
  .map-point .map-point-tooltip { bottom: 25px; }
  .map-preview { display: block; border-radius: 17px; }
  .map-preview-image { min-height: 0; aspect-ratio: 4 / 3; }
  .map-preview-copy { padding: 20px 18px; }
  .map-preview-copy h4 { font-size: 27px; }
  .location-slider { margin-top: 20px; }
  .location-slider { padding: 14px; border-radius: 22px; }
  .location-heading { min-height: 98px; padding: 0 4px 20px; }
  .location-heading > div { grid-template-columns: auto 1fr; column-gap: 10px; }
  .location-heading h3 { font-size: 28px; }
  .location-frame { min-height: 430px; aspect-ratio: auto; border-radius: 16px; }
  .location-image { object-position: center; }
  .location-controls { right: 12px; bottom: 12px; left: 12px; grid-template-columns: 40px 1fr 40px; gap: 8px; }
  .location-controls > button { width: 40px; height: 40px; }
  .location-dots { gap: 5px; }
  .location-dots button { width: 10px; }
  .location-dots button.active { width: 24px; }
  .join-cta-claim { margin-bottom: 24px; font-size: clamp(29px, 9vw, 36px); }
  .footer-links { justify-content: center; text-align: center; }
  .legal-header,
  .legal-hero,
  .legal-layout,
  .legal-footer { width: calc(100% - 32px); }
  .legal-hero { padding: 80px 0 64px; }
  .legal-layout { padding: 55px 0 90px; }
  .legal-data div { grid-template-columns: 1fr; gap: 5px; }
  .legal-footer { flex-direction: column; }
  .journal-page { padding-bottom: 70px; }
  .journal-header { width: calc(100% - 32px); height: 76px; }
  .journal-header > a img { width: 128px; }
  .journal-hero { width: calc(100% - 32px); padding: 80px 0 58px; }
  .journal-hero h1 { font-size: clamp(46px, 14vw, 66px); }
  .journal-hero > p:last-child { font-size: 17px; }
  .journal-feature { width: calc(100% - 24px); border-radius: 22px; }
  .journal-feature-image { min-height: 360px; }
  .journal-feature > article { padding: 30px 22px 34px; }
  .journal-feature h2 { font-size: 40px; }
  .journal-article-page { padding-bottom: 0; }
  .journal-article { padding-bottom: 78px; }
  .journal-article-hero { width: calc(100% - 32px); padding: 78px 0 52px; }
  .journal-article-hero h1 { font-size: clamp(46px, 13.5vw, 64px); }
  .journal-article-lead { font-size: 18px; }
  .journal-article-cover { width: calc(100% - 24px); min-height: 420px; margin-bottom: 72px; border-radius: 22px; }
  .journal-article-body { width: calc(100% - 40px); gap: 70px; }
  .journal-article-body h2,
  .journal-article-closing h2 { font-size: 40px; }
  .journal-article-body p,
  .journal-article-closing p { font-size: 17px; line-height: 1.75; }
  .journal-station-strip { width: calc(100% - 24px); grid-template-columns: 1fr; margin: 78px auto; }
  .journal-station-strip img { aspect-ratio: 1.65 / 1; border-radius: 17px; }
  .journal-article-closing { width: calc(100% - 24px); padding: 34px 24px; border-radius: 22px; }
  .vantia-guide-shell { right: 12px; bottom: 12px; }
  .vantia-guide-trigger { width: 58px; min-height: 58px; padding: 9px; }
  .vantia-guide-trigger > span:last-child { display: none; }
  .vantia-guide-trigger-gem { width: 38px; height: 38px; }
  .vantia-guide-panel {
    position: fixed;
    right: 8px;
    bottom: 78px;
    width: calc(100vw - 16px);
    height: min(690px, calc(100dvh - 94px));
    border-radius: 22px;
  }
  .vantia-guide-messages { padding-right: 14px; padding-left: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
