:root {
  --canvas: #f4f6fb;
  --paper: #ffffff;
  --ink: #101828;
  --muted: #526174;
  --quiet: #7a8798;
  --line: #dfe4ec;
  --line-strong: #c9d1de;
  --blue: #3457f1;
  --blue-deep: #1f37a8;
  --violet: #7456f4;
  --lime: #dfff63;
  --lime-soft: #f3ffd0;
  --sky: #eaf0ff;
  --peach: #fff0de;
  --success: #0c8f67;
  --danger: #d9485f;
  --shadow: 0 24px 70px rgba(23, 38, 77, 0.12);
  --shadow-soft: 0 12px 34px rgba(23, 38, 77, 0.08);
  --display: "Space Grotesk", Arial, sans-serif;
  --sans: "Plus Jakarta Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 4%, rgba(223, 255, 99, 0.42), transparent 24rem),
    radial-gradient(circle at 92% 12%, rgba(116, 86, 244, 0.14), transparent 28rem),
    var(--canvas);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(52, 87, 241, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  content: "";
  mask-image: linear-gradient(to bottom, #000 0, transparent 72%);
  pointer-events: none;
}

a { color: inherit; }
button, input { font: inherit; }

.site-header,
.site-footer,
.landing-shell,
.journey-shell,
.vip-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  border-bottom: 1px solid rgba(16, 24, 40, 0.11);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 14px;
}

.header-pill,
.eyebrow,
.micro-label,
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.header-pill {
  padding: 9px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.main-nav a {
  color: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav a:hover,
.main-nav a:focus-visible { color: var(--lime); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-cta:hover,
.nav-cta:focus-visible { border-color: var(--lime); background: rgba(223, 255, 99, 0.12); }

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(12, 143, 103, 0.11);
}

.eyebrow { color: var(--blue-deep); }
.eyebrow::before {
  width: 26px;
  height: 2px;
  background: var(--blue);
  content: "";
}

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

h1, h2, h3 {
  font-family: var(--display);
  letter-spacing: -0.045em;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(48px, 7.2vw, 96px);
  line-height: 0.94;
}

h1 .accent {
  position: relative;
  z-index: 0;
  white-space: nowrap;
}

h1 .accent::after {
  position: absolute;
  right: -0.02em;
  bottom: 0.04em;
  left: -0.02em;
  z-index: -1;
  height: 0.25em;
  background: var(--lime);
  content: "";
  transform: rotate(-1.5deg);
}

.lead {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.9vw, 21px);
  line-height: 1.65;
}

.landing-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(400px, 0.82fr);
  gap: clamp(40px, 7vw, 92px);
  padding: clamp(52px, 8vw, 104px) 0 72px;
}

.hero-copy { padding-top: 22px; }

.registration-page {
  color: #fff;
  background:
    radial-gradient(circle at 18% 12%, rgba(52, 87, 241, 0.42), transparent 31rem),
    radial-gradient(circle at 86% 18%, rgba(116, 86, 244, 0.34), transparent 34rem),
    linear-gradient(145deg, #07111f 0%, #0a1830 54%, #101b3a 100%);
}

.registration-page::before {
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, #000 0, transparent 78%);
}

.registration-page .site-header,
.registration-page .landing-shell,
.registration-page .site-footer { position: relative; z-index: 1; }

.registration-page .site-header {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.13);
}

.registration-page .brand { color: #fff; }
.registration-page .brand-mark { border-color: rgba(255, 255, 255, 0.6); box-shadow: 3px 3px 0 var(--lime); }
.registration-page .status-dot { background: var(--lime); box-shadow: 0 0 0 5px rgba(223, 255, 99, 0.11); }

.registration-page .landing-shell {
  display: block;
  padding: clamp(52px, 7vw, 92px) 0 76px;
}

.event-intro {
  max-width: 1050px;
  margin: 0 auto clamp(40px, 6vw, 68px);
  text-align: center;
}

.event-intro .eyebrow {
  margin: 0 auto 20px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--lime);
  background: rgba(255, 255, 255, 0.06);
}

.event-intro .eyebrow::before { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); }
.event-intro h1 { margin-bottom: 24px; font-size: clamp(56px, 7.7vw, 104px); line-height: 0.91; }
.event-intro h1 .accent { color: var(--lime); }
.event-intro h1 .accent::after { display: none; }
.event-intro .lead { max-width: 790px; margin: 0 auto; color: #bcc8d9; font-size: clamp(17px, 2vw, 22px); }

.hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(410px, 0.8fr);
  gap: clamp(22px, 3vw, 40px);
  align-items: start;
}

.host-card {
  position: sticky;
  top: 24px;
  min-height: 790px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 35%, rgba(90, 116, 255, 0.54), transparent 25rem),
    linear-gradient(155deg, #243d87, #121f45 62%, #0a1226);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.32);
  isolation: isolate;
}

.host-card::before {
  position: absolute;
  inset: auto -12% -28% -12%;
  z-index: -1;
  height: 62%;
  background:
    linear-gradient(rgba(223, 255, 99, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(223, 255, 99, 0.11) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  transform: perspective(560px) rotateX(61deg);
  transform-origin: top;
}

.host-art { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.orbit { position: absolute; border: 1px solid rgba(223, 255, 99, 0.24); border-radius: 50%; }
.orbit-one { top: 9%; left: 8%; width: 74%; aspect-ratio: 1; }
.orbit-two { top: 17%; left: 18%; width: 56%; aspect-ratio: 1; border-color: rgba(122, 158, 255, 0.38); }

.host-photo {
  position: absolute;
  top: 42px;
  left: 50%;
  width: min(77%, 520px);
  height: 660px;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 260px 260px 34px 34px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.4);
  transform: translateX(-50%);
}

.host-badge,
.host-outcome {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(7, 17, 31, 0.76);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.host-badge {
  top: 34px;
  left: 28px;
  padding: 12px 15px;
  border-radius: 15px;
  transform: rotate(-3deg);
}

.host-badge span,
.host-outcome small { display: block; color: var(--lime); font-size: 9px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.host-badge strong { display: block; margin-top: 4px; font-family: var(--display); font-size: 18px; }

.host-outcome {
  right: 24px;
  bottom: 164px;
  width: min(280px, 58%);
  padding: 15px 17px;
  border-radius: 16px;
}

.host-outcome strong { display: block; margin-top: 6px; font-family: var(--display); font-size: 16px; line-height: 1.3; }

.host-card .method-grid {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  margin: 0;
  border-top-color: rgba(255, 255, 255, 0.16);
  background: rgba(7, 17, 31, 0.88);
  backdrop-filter: blur(16px);
}

.host-card .method-item { min-height: 142px; padding: 18px; border-right-color: rgba(255, 255, 255, 0.13); }
.host-card .method-item + .method-item { padding-left: 18px; }
.host-card .method-number { margin-bottom: 13px; color: var(--lime); }
.host-card .method-item strong { color: #fff; }
.host-card .method-item span:last-child { color: #aebbd0; font-size: 11px; }

.registration-page .registration-card {
  padding: 30px;
  color: var(--ink);
  box-shadow: 12px 12px 0 var(--lime), 0 34px 100px rgba(0, 0, 0, 0.32);
}

.registration-page .registration-card::before { background: linear-gradient(90deg, var(--blue), var(--violet), var(--lime)); }
.registration-page .registration-card h2 { font-size: clamp(34px, 3vw, 44px); }
.registration-page .fact { background: #f1f4fb; }

.event-promise {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin: 40px 0 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.16);
}

.event-promise > div { min-height: 166px; padding: 27px; background: rgba(255, 255, 255, 0.055); }
.event-promise span { color: var(--lime); font-family: var(--display); font-size: 11px; font-weight: 700; }
.event-promise strong { display: block; margin: 18px 0 8px; font-family: var(--display); font-size: 20px; }
.event-promise p { margin: 0; color: #aebbd0; font-size: 13px; line-height: 1.6; }

.registration-page .vip-ribbon { margin-top: 0; border-color: rgba(255, 255, 255, 0.2); background: rgba(255, 255, 255, 0.075); box-shadow: 10px 10px 0 var(--blue); }
.registration-page .site-footer { border-color: rgba(255, 255, 255, 0.13); color: #93a3ba; }

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 48px;
  border-top: 1px solid var(--line-strong);
}

.method-item {
  min-height: 132px;
  padding: 20px 20px 18px 0;
  border-right: 1px solid var(--line-strong);
}
.method-item + .method-item { padding-left: 20px; }
.method-item:last-child { border-right: 0; }
.method-number {
  display: block;
  margin-bottom: 20px;
  color: var(--blue);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
}
.method-item strong { display: block; font-family: var(--display); font-size: 18px; }
.method-item span:last-child { display: block; margin-top: 6px; color: var(--muted); font-size: 13px; line-height: 1.5; }

.registration-card,
.journey-card,
.vip-card,
.schedule-card,
.prework-card {
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.registration-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  box-shadow: 12px 12px 0 var(--ink), var(--shadow);
}

.registration-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--blue), var(--violet), var(--lime));
  content: "";
}

.registration-card h2 {
  margin: 14px 0 8px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.04;
}

.registration-card > p { color: var(--muted); font-size: 14px; line-height: 1.6; }

.fact-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.62fr;
  gap: 10px;
  margin: 22px 0 16px;
}

.fact {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--canvas);
}
.fact small { display: block; color: var(--quiet); font-size: 9px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.fact strong { display: block; margin-top: 5px; font-size: 13px; line-height: 1.35; }

.form-frame {
  width: 100%;
  height: 1100px;
  border: 0;
  border-radius: 14px;
  background: #fff;
}

.privacy-note { margin: 10px 0 0; color: var(--quiet); font-size: 11px; line-height: 1.55; text-align: center; }

.vip-ribbon {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.35fr 1fr auto;
  align-items: center;
  gap: 30px;
  margin-top: 4px;
  padding: 30px 34px;
  border: 1px solid var(--ink);
  border-radius: 24px;
  background: var(--ink);
  color: #fff;
  box-shadow: 10px 10px 0 var(--lime);
}

.vip-ribbon h2 { margin: 6px 0 0; font-size: clamp(26px, 3.2vw, 42px); line-height: 1.02; }
.vip-ribbon p { margin: 0; color: #c7cfdb; font-size: 14px; line-height: 1.65; }
.vip-ribbon .micro-label { color: var(--lime); }

.button-row { display: flex; flex-wrap: wrap; gap: 12px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 14px;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.button:hover, .button:focus-visible { background: var(--blue-deep); box-shadow: 4px 4px 0 var(--ink); transform: translate(-2px, -2px); }
.button.light { color: var(--ink); background: var(--paper); }
.button.light:hover, .button.light:focus-visible { background: var(--lime-soft); }
.button.lime { color: var(--ink); background: var(--lime); }
.button.lime:hover, .button.lime:focus-visible { background: #ceef55; }
.button.full { width: 100%; }

.journey-shell,
.vip-shell { padding: clamp(50px, 8vw, 92px) 0 80px; }

.confirmation-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 34px;
}
.confirmation-hero h1 { max-width: 760px; margin: 12px 0 14px; font-size: clamp(54px, 8vw, 96px); }
.confirmation-mark {
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 32px;
  color: var(--ink);
  background: var(--lime);
  box-shadow: 8px 8px 0 var(--blue);
  font-family: var(--display);
  font-size: 54px;
  font-weight: 700;
  transform: rotate(4deg);
}

.countdown-strip {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, 0.55fr);
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding: 18px 22px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
}
.countdown-label strong { display: block; font-family: var(--display); font-size: 16px; }
.countdown-label span { color: var(--muted); font-size: 12px; }
.countdown-unit { text-align: center; }
.countdown-unit strong { display: block; font-family: var(--display); font-size: 26px; line-height: 1; }
.countdown-unit span { color: var(--quiet); font-size: 9px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }

.journey-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  gap: 22px;
}

.journey-card { padding: clamp(24px, 4vw, 38px); }
.journey-card.primary {
  position: relative;
  overflow: hidden;
  border-color: var(--ink);
  background: linear-gradient(145deg, #fff 55%, var(--sky));
  box-shadow: 8px 8px 0 var(--blue);
}
.journey-card.primary::after {
  position: absolute;
  right: -56px;
  bottom: -68px;
  width: 180px;
  height: 180px;
  border: 34px solid rgba(52, 87, 241, 0.09);
  border-radius: 50%;
  content: "";
}
.step-kicker { color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.journey-card h2 { margin: 12px 0 12px; font-size: clamp(30px, 4vw, 46px); line-height: 1.04; }
.calendar-card h2 { margin: 8px 0 8px; font-size: 22px; }
.journey-card p { position: relative; z-index: 1; color: var(--muted); font-size: 14px; line-height: 1.7; }
.delivery-alert {
  position: relative;
  z-index: 1;
  margin: 22px 0;
  padding: 14px 16px;
  border: 1px solid #b9cdff;
  border-radius: 13px;
  color: var(--blue-deep);
  background: var(--sky);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.calendar-card { display: flex; flex-direction: column; justify-content: space-between; }
.calendar-date { margin: 18px 0; padding: 18px; border-radius: 16px; background: var(--ink); color: #fff; }
.calendar-date strong { display: block; font-family: var(--display); font-size: 20px; }
.calendar-date span { display: block; margin-top: 6px; color: #c7cfdb; font-size: 12px; }

.prework-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 24px 28px;
  border-color: #d6b54c;
  background: linear-gradient(135deg, #fffdf7, var(--peach));
}
.prework-number { display: grid; width: 54px; height: 54px; place-items: center; border: 1px solid var(--ink); border-radius: 16px; background: var(--lime); font-family: var(--display); font-size: 18px; font-weight: 700; }
.prework-card h2 { margin: 0 0 5px; font-size: 21px; }
.prework-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

.vip-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 36px;
  padding: clamp(28px, 5vw, 48px);
  border-color: var(--ink);
  color: #fff;
  background:
    radial-gradient(circle at 86% 12%, rgba(116, 86, 244, 0.45), transparent 18rem),
    var(--ink);
  box-shadow: 10px 10px 0 var(--lime);
}
.vip-card .eyebrow { color: var(--lime); }
.vip-card .eyebrow::before { background: var(--lime); }
.vip-card h2 { margin: 12px 0 14px; font-size: clamp(34px, 5vw, 58px); line-height: 0.98; }
.vip-card p { color: #c9d1dd; line-height: 1.7; }
.vip-benefits { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.vip-benefits li { padding: 15px 16px; border: 1px solid rgba(255, 255, 255, 0.13); border-radius: 14px; background: rgba(255, 255, 255, 0.055); font-size: 13px; line-height: 1.5; }
.vip-benefits strong { color: #fff; }
.price-stack { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; margin: 22px 0 18px; }
.price-stack small { display: block; color: var(--lime); font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.price-stack strong { display: block; font-family: var(--display); font-size: 54px; letter-spacing: -0.06em; line-height: 1; }
.price-stack span { color: #aeb8c8; font-size: 11px; }

.schedule-card { grid-column: 1 / -1; padding: 28px; }
.schedule-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.schedule-head h2 { margin: 8px 0 0; font-size: 30px; }
.schedule-head span { color: var(--muted); font-size: 12px; }
.schedule-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.schedule-item { padding: 18px; border: 1px solid var(--line); border-radius: 15px; background: var(--canvas); }
.schedule-item small { color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.schedule-item strong { display: block; margin: 10px 0 4px; font-family: var(--display); font-size: 17px; }
.schedule-item span { color: var(--muted); font-size: 12px; }

.vip-shell { max-width: 1040px; }
.vip-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
.vip-hero h1 { margin: 12px 0 20px; font-size: clamp(52px, 7.5vw, 86px); }
.vip-hero-copy > p { max-width: 640px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.vip-price-card { padding: 28px; border: 1px solid var(--ink); border-radius: 24px; background: var(--paper); box-shadow: 10px 10px 0 var(--lime), var(--shadow); }
.vip-price-card .price { margin: 10px 0 4px; font-family: var(--display); font-size: 72px; font-weight: 700; letter-spacing: -0.07em; line-height: 1; }
.vip-price-card .deadline { margin-bottom: 20px; color: var(--muted); font-size: 12px; line-height: 1.6; }
.checkout-note { margin: 12px 0 0; color: var(--quiet); font-size: 10px; line-height: 1.5; text-align: center; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 48px; }
.value-item { padding: 24px; border: 1px solid var(--line-strong); border-radius: 19px; background: rgba(255, 255, 255, 0.9); }
.value-icon { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--ink); border-radius: 12px; background: var(--sky); font-family: var(--display); font-weight: 700; }
.value-item h2 { margin: 18px 0 8px; font-size: 20px; }
.value-item p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.free-note { margin-top: 22px; padding: 18px 20px; border: 1px solid var(--line-strong); border-radius: 16px; background: rgba(255, 255, 255, 0.78); color: var(--muted); font-size: 13px; line-height: 1.65; }
.back-link { display: inline-flex; margin-top: 24px; color: var(--blue-deep); font-size: 13px; font-weight: 800; text-decoration: none; }

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 38px;
  border-top: 1px solid rgba(16, 24, 40, 0.11);
  color: var(--quiet);
  font-size: 11px;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-links a { font-weight: 700; text-decoration: none; }
.footer-links a:hover { color: var(--blue); }

.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(16, 24, 40, 0.72);
  opacity: 0;
  transition: opacity 0.22s ease;
  backdrop-filter: blur(10px);
}
.popup-overlay.active { display: flex; }
.popup-overlay.visible { opacity: 1; }
.popup-card { position: relative; width: min(470px, 100%); padding: 34px; border: 1px solid var(--ink); border-radius: 24px; background: var(--paper); box-shadow: 10px 10px 0 var(--lime), var(--shadow); }
.popup-close { position: absolute; top: 14px; right: 16px; border: 0; color: var(--quiet); background: transparent; font-size: 26px; cursor: pointer; }
.popup-card h3 { margin: 12px 0; font-size: 34px; line-height: 1.02; }
.popup-card p { color: var(--muted); font-size: 13px; line-height: 1.65; }
.popup-skip { display: block; width: 100%; margin-top: 13px; border: 0; color: var(--quiet); background: transparent; font-size: 11px; font-weight: 700; cursor: pointer; }

@media (max-width: 940px) {
  .landing-shell { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .hero-stage { grid-template-columns: 1fr; }
  .host-card { position: relative; top: auto; min-height: 760px; }
  .hero-copy { padding-top: 0; }
  .registration-card { max-width: 680px; }
  .registration-page .registration-card { max-width: none; }
  .vip-ribbon { grid-template-columns: 1fr; }
  .journey-grid { grid-template-columns: 1fr; }
  .prework-card, .vip-card, .schedule-card { grid-column: auto; }
  .vip-card { grid-template-columns: 1fr; }
  .vip-hero { grid-template-columns: 1fr; }
  .vip-price-card { max-width: 460px; }
}

@media (max-width: 700px) {
  .site-header, .site-footer, .landing-shell, .journey-shell, .vip-shell { width: min(100% - 28px, 620px); }
  .site-header { min-height: 66px; }
  .header-pill { display: none; }
  .nav-cta { min-height: 38px; padding: 0 13px; font-size: 9px; }
  .landing-shell { gap: 34px; padding: 42px 0 54px; }
  .registration-page .landing-shell { padding: 36px 0 54px; }
  .event-intro { margin-bottom: 30px; text-align: left; }
  .event-intro .eyebrow { margin-left: 0; }
  .event-intro h1 { font-size: clamp(46px, 13.8vw, 64px); }
  .event-intro .lead { font-size: 16px; }
  .hero-stage { gap: 22px; }
  .host-card { min-height: 640px; border-radius: 24px; }
  .host-photo { top: 34px; width: 82%; height: 500px; }
  .host-badge { top: 22px; left: 18px; }
  .host-outcome { right: 14px; bottom: 137px; width: 64%; padding: 12px 13px; }
  .host-outcome strong { font-size: 13px; }
  .host-card .method-item { min-height: 122px; padding: 14px 10px; }
  .host-card .method-item + .method-item { padding-left: 10px; }
  .host-card .method-item span:last-child { font-size: 9px; }
  .event-promise { grid-template-columns: 1fr; margin-top: 28px; }
  .event-promise > div { min-height: 0; padding: 22px; }
  h1 { font-size: clamp(44px, 14vw, 64px); }
  .lead { font-size: 16px; }
  .method-grid { margin-top: 32px; }
  .method-item { min-height: 118px; padding-right: 10px; }
  .method-item + .method-item { padding-left: 10px; }
  .method-item strong { font-size: 15px; }
  .method-item span:last-child { font-size: 11px; }
  .registration-card { padding: 20px; border-radius: 20px; box-shadow: 7px 7px 0 var(--ink), var(--shadow); }
  .fact-grid { grid-template-columns: 1fr 1fr; }
  .fact:first-child { grid-column: 1 / -1; }
  .form-frame { height: 1250px; }
  .confirmation-hero { grid-template-columns: 1fr; }
  .confirmation-mark { width: 82px; height: 82px; border-radius: 24px; font-size: 38px; }
  .countdown-strip { grid-template-columns: repeat(4, 1fr); }
  .countdown-label { grid-column: 1 / -1; }
  .prework-card { grid-template-columns: 1fr; }
  .schedule-head { align-items: flex-start; flex-direction: column; }
  .schedule-list, .value-grid { grid-template-columns: 1fr; }
  .vip-ribbon, .vip-card { padding: 24px; box-shadow: 7px 7px 0 var(--lime); }
  .price-stack { align-items: flex-start; flex-direction: column; }
  .site-footer { align-items: flex-start; flex-direction: column; }
}

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