/* ============================================================
   FOUNDERS CAMP · merged: base44 polish + camping atmosphere
   ============================================================ */

:root {
  --bg: #000000;
  --bg-2: #0a0a0a;
  --bg-3: #111111;
  --night: #06080f;       /* deep camping sky */
  --night-2: #0a0d18;
  --ink: #ffffff;
  --ink-2: #cfcdc8;
  --ink-3: #8a8784;
  --ink-4: #5a5754;
  --line: rgba(255,255,255,0.10);
  --line-2: rgba(255,255,255,0.18);
  --line-orange: rgba(255,102,34,0.32);

  --orange: #FF6622;
  --orange-2: #ff7a3d;
  --orange-3: #c84a14;
  --gold: #FFD27A;

  --font: "Inter Tight", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { background: var(--bg); }
body {
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ============ Header ============ */
.bar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.bar-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 18px 32px;
  display: flex; align-items: center; gap: 22px;
}
.brand { display: flex; align-items: center; gap: 10px; transition: opacity .15s; flex-shrink: 0; }
.brand:hover { opacity: 0.9; }
.brand-name { font-weight: 700; font-size: 16px; letter-spacing: -0.01em; white-space: nowrap; }

.bar-nav { display: flex; gap: 24px; margin-left: auto; align-items: center; flex-wrap: nowrap; }
.bar-nav a {
  font-size: 13.5px; font-weight: 500;
  color: var(--ink-2);
  white-space: nowrap;
  padding: 6px 0;
  position: relative;
  transition: color .15s;
}
.bar-nav a:hover { color: var(--ink); }
.bar-nav a::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1.5px; background: var(--orange);
  transform: scaleX(0); transform-origin: right;
  transition: transform .25s ease;
}
.bar-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.bar-cta {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px 10px 14px;
  background: linear-gradient(135deg, #FF7A3D 0%, #FF6622 100%);
  color: #0a0a0a;
  border-radius: 8px;
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px -2px rgba(255,102,34,0.4), inset 0 1px 0 rgba(255,255,255,0.25);
  transition: transform .15s ease, box-shadow .2s ease;
  white-space: nowrap;
  flex-shrink: 0;
  overflow: hidden;
}
.bar-cta::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #0a0a0a;
  box-shadow: 0 0 6px rgba(0,0,0,0.5);
  flex-shrink: 0;
  animation: ctaPulse 1.6s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { opacity: 0.7; transform: scale(0.9); }
  50%      { opacity: 1;   transform: scale(1.15); }
}
.bar-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.bar-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -2px rgba(255,102,34,0.55), inset 0 1px 0 rgba(255,255,255,0.3);
}
.bar-cta:hover::after { transform: translateX(100%); }

/* ============ HERO ============ */
.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 80px);
  padding: 48px 40px 64px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background illustration */
.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  pointer-events: none;
}
.hero-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
  /* slow Ken Burns drift */
  animation: bgDrift 24s ease-in-out infinite alternate;
}
@keyframes bgDrift {
  0%   { transform: scale(1.04) translate(0, 0); }
  100% { transform: scale(1.10) translate(-1.5%, -1%); }
}
.hero-bg-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    /* darken top for readable text */
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.55) 100%),
    /* warm fire glow tint at bottom center */
    radial-gradient(ellipse 60% 40% at 50% 95%, rgba(255,102,34,0.10), transparent 70%);
  animation: bgPulse 6s ease-in-out infinite;
}
@keyframes bgPulse {
  0%, 100% { opacity: 0.9; }
  50%      { opacity: 1; }
}

/* Sky */
.hero-sky {
  position: absolute; inset: 0;
  z-index: -2;
  overflow: hidden;
  /* now overlays the photo */
  pointer-events: none;
}
.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% 100%, rgba(255,102,34,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 80% 80% at 50% 30%, rgba(10,13,24,0.4) 0%, transparent 70%);
  mix-blend-mode: multiply;
}
#starfield {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}

.moon {
  position: absolute;
  top: 10%; left: 8%;
  width: 70px; height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff8e6, #e8d29a 60%, #b89559);
  box-shadow: 0 0 60px 12px rgba(255,210,122,0.15);
}
.moon::after {
  content: "";
  position: absolute; top: 18%; left: 22%;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(0,0,0,0.08);
  box-shadow:
    18px 14px 0 -3px rgba(0,0,0,0.08),
    -6px 18px 0 -4px rgba(0,0,0,0.08);
}
.moon-halo {
  position: absolute;
  top: 4%; left: 2%;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(255,210,122,0.10), transparent 70%);
  pointer-events: none;
  animation: pulseGlow 8s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%,100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

/* Shooting stars */
.shoot {
  position: absolute;
  width: 2px; height: 2px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 4px 1px #fff;
}
.shoot::before {
  content: "";
  position: absolute;
  top: 1px; right: 0;
  width: 80px; height: 1px;
  background: linear-gradient(to left, #fff, transparent);
}
.ss1 { top: 18%; left: 10%; animation: shoot 7s ease-in 2s infinite; }
.ss2 { top: 26%; left: 40%; animation: shoot 9s ease-in 5s infinite; }
.ss3 { top: 12%; left: 65%; animation: shoot 11s ease-in 8s infinite; }
@keyframes shoot {
  0%   { transform: translate(0,0) rotate(20deg); opacity: 0; }
  3%   { opacity: 1; }
  18%  { transform: translate(240px, 90px) rotate(20deg); opacity: 0; }
  100% { opacity: 0; }
}

/* Mountains */
.hero-mountains {
  /* hide — illustration already has mountains */
  display: none;
}
.mt {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 100%;
}
.mt-back  { opacity: 0.95; transform: translateY(12px); }
.mt-mid   { opacity: 0.98; }
.mt-front { opacity: 1; }

/* Campfire glow (radial halo behind text) */
.fire-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 600px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(255,102,34,0.50) 0%, rgba(255,102,34,0.18) 30%, transparent 60%);
  filter: blur(30px);
  pointer-events: none;
  z-index: -1;
  animation: firePulse 3s ease-in-out infinite;
  mix-blend-mode: screen;
}
@keyframes firePulse {
  0%,100% { opacity: 0.85; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.04); }
}

/* Drifting embers */
.embers {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
}
.embers span {
  position: absolute;
  bottom: 12%;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px 2px rgba(255,210,122,0.9);
  opacity: 0;
  animation: emberRise 6s linear infinite;
}
.embers span:nth-child(1)  { left: 42%;  animation-delay: 0s;   }
.embers span:nth-child(2)  { left: 47%;  animation-delay: 1s;  background: var(--orange-2); }
.embers span:nth-child(3)  { left: 53%;  animation-delay: 2s;  }
.embers span:nth-child(4)  { left: 58%;  animation-delay: 0.5s; background: var(--orange); }
.embers span:nth-child(5)  { left: 50%;  animation-delay: 3s;  }
.embers span:nth-child(6)  { left: 44%;  animation-delay: 4s;  background: var(--orange-2); }
.embers span:nth-child(7)  { left: 56%;  animation-delay: 2.5s; }
.embers span:nth-child(8)  { left: 49%;  animation-delay: 5s;  background: var(--orange); }
.embers span:nth-child(9)  { left: 52%;  animation-delay: 1.5s; }
.embers span:nth-child(10) { left: 46%;  animation-delay: 3.5s; background: var(--orange-2); }
.embers span:nth-child(11) { left: 54%;  animation-delay: 4.5s; }
.embers span:nth-child(12) { left: 48%;  animation-delay: 5.5s; background: var(--orange); }
@keyframes emberRise {
  0%   { opacity: 0; transform: translate(0, 0) scale(0.6); }
  10%  { opacity: 1; }
  60%  { opacity: 0.9; }
  100% { opacity: 0; transform: translate(20px, -360px) scale(0.3); }
}

/* Camp scene SVG — hide, illustration covers it */
.camp-scene { display: none; }
.tent {
  filter: drop-shadow(0 0 50px rgba(255,102,34,0.4));
}
.fire {
  filter: drop-shadow(0 0 40px rgba(255,102,34,0.6));
  position: relative;
  margin-bottom: 4px;
}
.flame {
  transform-origin: 50% 100%;
  animation: flicker 0.8s ease-in-out infinite alternate;
}
.f1 { animation-delay: 0s;   }
.f2 { animation-delay: 0.15s; animation-duration: 0.7s; }
.f3 { animation-delay: 0.3s;  animation-duration: 0.6s; }
.f4 { animation-delay: 0.1s;  animation-duration: 0.5s; }
@keyframes flicker {
  0%   { transform: scaleY(1)    scaleX(1)    rotate(-2deg); }
  100% { transform: scaleY(1.1)  scaleX(0.94) rotate(2deg);  }
}
.spark { animation: sparkRise 2.4s linear infinite; opacity: 0; }
.sp1 { animation-delay: 0s; }
.sp2 { animation-delay: 0.6s; }
.sp3 { animation-delay: 1.2s; }
.sp4 { animation-delay: 1.8s; }
@keyframes sparkRise {
  0%   { opacity: 0; transform: translate(0, 0); }
  10%  { opacity: 1; }
  100% { opacity: 0; transform: translate(2px, -55px); }
}

/* Hero text */
.hero-inner {
  position: relative;
  z-index: 5;
  max-width: 1100px;
  text-align: center;
  display: grid;
  gap: 22px;
  justify-items: center;
  margin-bottom: 24px;
}

.hero-pill {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 20px;
  background: rgba(0,0,0,0.55);
  border: 1px solid var(--orange-3);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  backdrop-filter: blur(10px);
}
.pill-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,102,34,0.25);
  animation: pulse 2s infinite;
}
.pill-x { color: var(--orange); font-weight: 700; }
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font);
  font-size: clamp(40px, 6.8vw, 96px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
}
.ht-row { display: block; }
.ht-accent {
  color: var(--orange);
  text-shadow: 0 0 60px rgba(255,102,34,0.5), 0 4px 30px rgba(0,0,0,0.4);
}

.hero-sub {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 620px;
  text-wrap: pretty;
  text-shadow: 0 2px 20px rgba(0,0,0,0.7);
}

.hero-cta {
  display: flex; gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 28px;
  background: var(--orange); color: #0a0a0a;
  border-radius: 12px;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  box-shadow: 0 0 50px rgba(255,102,34,0.5);
  transition: background .15s, transform .15s, box-shadow .2s;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ""; position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left .6s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  background: var(--orange-2); transform: translateY(-2px);
  box-shadow: 0 0 70px rgba(255,102,34,0.7);
}
.btn-ghost {
  padding: 18px 26px;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  font-weight: 500;
  font-size: 14.5px;
  color: var(--ink);
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  transition: background .15s, border-color .15s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: var(--orange); }

/* Hero stats row */
.hero-stats {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 22px;
  margin-top: 14px;
  padding: 14px 22px;
  background: rgba(0,0,0,0.55);
  border: 1px solid var(--line);
  border-radius: 14px;
  backdrop-filter: blur(14px);
}
.hs { display: flex; align-items: center; gap: 12px; }
.hs-ico {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,102,34,0.12);
  border: 1px solid var(--line-orange);
  color: var(--orange);
  display: grid; place-items: center;
}
.hs-text { display: flex; flex-direction: column; align-items: flex-start; gap: 1px; line-height: 1.1; }
.hs-text b { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; }
.hs-text span { font-size: 11.5px; color: var(--ink-3); }
.hs-sep { width: 1px; height: 32px; background: var(--line); }

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--ink-3);
  z-index: 5;
}
.sc-line {
  width: 1px; height: 28px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollDown 1.8s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============ Ticker ============ */
.ticker {
  background: var(--orange);
  color: #0a0a0a;
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid #0a0a0a;
  border-bottom: 1px solid #0a0a0a;
}
.ticker-track {
  display: flex; gap: 28px; white-space: nowrap;
  animation: scroll 50s linear infinite;
  font-size: 20px; font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.ticker-track .dot { color: rgba(10,10,10,0.5); font-size: 12px; }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ Countdown ============ */
.countdown {
  padding: 40px 40px;
  background: linear-gradient(180deg, #050505, var(--bg));
  border-bottom: 1px solid var(--line);
}
.cd-inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 28px;
}
.cd-left { display: grid; gap: 8px; }
.cd-tag {
  font-size: 11.5px; letter-spacing: 0.22em;
  color: var(--orange);
  text-transform: uppercase;
  font-weight: 600;
}
.cd-title {
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.cd-clock { display: flex; align-items: center; gap: 14px; }
.cd-unit {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  min-width: 86px;
  padding: 16px 10px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  position: relative;
}
.cd-unit::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,102,34,0.08), transparent 50%);
  border-radius: 12px; pointer-events: none;
}
.cd-unit b {
  font-size: 42px; font-weight: 800;
  line-height: 1; letter-spacing: -0.03em;
  color: var(--orange);
  font-variant-numeric: tabular-nums;
}
.cd-unit span {
  font-size: 10.5px; letter-spacing: 0.16em;
  color: var(--ink-3); text-transform: uppercase;
}
.cd-sep {
  font-size: 32px; color: var(--orange); font-weight: 800;
  animation: blink 1s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0.3; } }

/* ============ Timeline phases (day / night / dawn) ============ */
.sec--timeline { position: relative; overflow: hidden; }
.sec--timeline .sec-inner { position: relative; }

.tl-phase {
  position: relative;
  padding: 8px 0 4px;
  /* gentle phase tinting only — no big blobs */
}
.tl-phase > *:not(.tl-bg) { position: relative; z-index: 2; }

.tl-bg {
  position: absolute;
  inset: -10px -80px;
  z-index: 0;
  pointer-events: none;
  border-radius: 24px;
  overflow: hidden;
}

/* === DAYLIGHT (KUN 01) === */
.tl-phase--day .tl-bg {
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255,180,90,0.10) 0%, rgba(255,210,122,0.04) 50%, transparent 100%);
}

/* === NIGHT (TUN) === */
.tl-phase--night .tl-bg {
  background:
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(30,50,90,0.55) 0%, rgba(8,12,28,0.65) 50%, rgba(8,12,28,0.3) 100%);
}
.tl-bg-stars {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 5% 18%,  rgba(255,255,255,0.55), transparent),
    radial-gradient(1px 1px at 14% 32%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1.5px 1.5px at 22% 12%, rgba(255,210,122,0.6), transparent),
    radial-gradient(1px 1px at 30% 48%, rgba(255,255,255,0.45), transparent),
    radial-gradient(1px 1px at 38% 22%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 44% 64%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1.5px 1.5px at 52% 8%, rgba(255,210,122,0.55), transparent),
    radial-gradient(1px 1px at 60% 28%, rgba(255,255,255,0.45), transparent),
    radial-gradient(1px 1px at 68% 54%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 76% 18%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.5px 1.5px at 82% 38%, rgba(255,210,122,0.6), transparent),
    radial-gradient(1px 1px at 88% 12%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 94% 56%, rgba(255,255,255,0.45), transparent);
  opacity: 0.6;
  animation: nightTwinkle 4s ease-in-out infinite alternate;
}
@keyframes nightTwinkle { from { opacity: 0.35; } to { opacity: 0.75; } }
.tl-bg-moon { display: none; } /* replaced by sticky sky-orb */

.tl-phase--night .tl-card {
  background: rgba(8,12,24,0.78);
  border-color: rgba(255,210,122,0.16);
}

/* === DAWN (KUN 02) === */
.tl-phase--dawn .tl-bg {
  background:
    radial-gradient(ellipse 70% 70% at 50% 40%, rgba(255,140,80,0.12) 0%, rgba(255,210,122,0.05) 50%, transparent 100%);
}
.tl-bg-sun { display: none; } /* replaced by sticky sky-orb */

/* ============ Sticky sky orb (sun / moon) ============ */
.sky-orb {
  position: sticky;
  top: 96px;
  margin-left: auto;
  margin-right: 0;
  margin-bottom: -80px; /* don't push layout */
  width: 96px; height: 96px;
  z-index: 1;
  pointer-events: none;
  float: right;
  /* pulled out to the side */
  margin-top: 12px;
}
.sky-sun, .sky-moon {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  transition: opacity .8s ease, transform .8s ease;
}
.sky-sun {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.sky-moon {
  opacity: 0;
  transform: translateY(-30px) scale(0.85);
}
.sky-orb.is-night .sky-sun {
  opacity: 0;
  transform: translateY(30px) scale(0.85);
}
.sky-orb.is-night .sky-moon {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Sun */
.sky-sun-core {
  position: absolute;
  width: 64px; height: 64px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #fff7e0 0%, #FFD27A 50%, #FF6622 90%);
  box-shadow:
    0 0 60px 18px rgba(255,210,122,0.45),
    0 0 120px 36px rgba(255,102,34,0.20);
  animation: sunBreath 5s ease-in-out infinite alternate;
}
@keyframes sunBreath {
  from { transform: scale(1); box-shadow: 0 0 60px 18px rgba(255,210,122,0.45), 0 0 120px 36px rgba(255,102,34,0.20); }
  to   { transform: scale(1.06); box-shadow: 0 0 80px 22px rgba(255,210,122,0.55), 0 0 140px 44px rgba(255,102,34,0.28); }
}
.sky-sun-ray {
  position: absolute; inset: 0;
  background:
    conic-gradient(from 0deg,
      rgba(255,210,122,0.0) 0deg,
      rgba(255,210,122,0.35) 8deg,
      rgba(255,210,122,0.0) 18deg,
      rgba(255,210,122,0.0) 35deg,
      rgba(255,210,122,0.35) 43deg,
      rgba(255,210,122,0.0) 53deg,
      rgba(255,210,122,0.0) 70deg,
      rgba(255,210,122,0.35) 78deg,
      rgba(255,210,122,0.0) 88deg,
      rgba(255,210,122,0.0) 105deg,
      rgba(255,210,122,0.35) 113deg,
      rgba(255,210,122,0.0) 123deg,
      rgba(255,210,122,0.0) 140deg,
      rgba(255,210,122,0.35) 148deg,
      rgba(255,210,122,0.0) 158deg,
      rgba(255,210,122,0.0) 175deg,
      rgba(255,210,122,0.35) 183deg,
      rgba(255,210,122,0.0) 193deg,
      rgba(255,210,122,0.0) 210deg,
      rgba(255,210,122,0.35) 218deg,
      rgba(255,210,122,0.0) 228deg,
      rgba(255,210,122,0.0) 245deg,
      rgba(255,210,122,0.35) 253deg,
      rgba(255,210,122,0.0) 263deg,
      rgba(255,210,122,0.0) 280deg,
      rgba(255,210,122,0.35) 288deg,
      rgba(255,210,122,0.0) 298deg,
      rgba(255,210,122,0.0) 315deg,
      rgba(255,210,122,0.35) 323deg,
      rgba(255,210,122,0.0) 333deg,
      rgba(255,210,122,0.0) 350deg,
      rgba(255,210,122,0.35) 358deg,
      rgba(255,210,122,0.0) 360deg);
  mask-image: radial-gradient(circle, transparent 28%, black 30%, black 70%, transparent 80%);
  animation: sunSpin 30s linear infinite;
  opacity: 0.85;
  filter: blur(1px);
}
@keyframes sunSpin { to { transform: rotate(360deg); } }

/* Moon */
.sky-moon-core {
  position: absolute;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff8e6, #e8d29a 60%, #b89559);
  box-shadow:
    0 0 40px 10px rgba(255,210,122,0.22),
    0 0 90px 28px rgba(120,140,180,0.16);
}
.sky-moon-core::after {
  content: "";
  position: absolute; top: 18%; left: 22%;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(0,0,0,0.10);
  box-shadow:
    12px 10px 0 -2px rgba(0,0,0,0.10),
    -3px 14px 0 -3px rgba(0,0,0,0.10);
}

@media (max-width: 1024px) {
  .sky-orb { width: 72px; height: 72px; top: 80px; }
  .sky-sun-core { width: 48px; height: 48px; }
  .sky-moon-core { width: 42px; height: 42px; }
}
@media (max-width: 640px) {
  .sky-orb { width: 56px; height: 56px; top: 70px; }
  .sky-sun-core { width: 36px; height: 36px; }
  .sky-moon-core { width: 32px; height: 32px; }
}

/* ============ Mobile refinements ============ */
@media (max-width: 768px) {
  /* Prevent horizontal scroll */
  html, body { overflow-x: hidden; max-width: 100vw; }

  /* Header */
  .bar-inner {
    padding: 10px 12px;
    gap: 8px;
    flex-wrap: nowrap;
    align-items: center;
  }
  .brand { gap: 6px; flex-shrink: 0; }
  .brand-mark svg { width: 28px; height: 28px; }
  .brand-name { font-size: 13px; }
  .bar-nav { display: none; }
  .bar-cta {
    padding: 7px 10px;
    font-size: 9px;
    letter-spacing: 0.03em;
    border-radius: 6px;
    margin-left: auto;
    flex-shrink: 0;
  }
  .bar-cta::before { display: none; }

  /* Lang switcher — dropdown on mobile */
  .lang-switch {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    padding: 0;
    gap: 0;
    margin-left: 0;
    background: none;
    border: none;
    flex-shrink: 0;
  }
  .lang-btn {
    padding: 5px 8px;
    font-size: 10px;
    min-width: 32px;
    text-align: center;
    border-radius: 6px;
  }
  .lang-btn:not(.active) {
    display: none;
  }
  .lang-switch .lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 4px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 4px;
    flex-direction: column;
    gap: 2px;
    z-index: 200;
  }
  .lang-switch.open .lang-dropdown {
    display: flex;
  }

  /* Hero */
  .hero { padding: 24px 14px 40px; min-height: auto; }
  .hero-title { font-size: clamp(26px, 7vw, 42px) !important; line-height: 1.1; text-shadow: none; }
  .ht-accent { text-shadow: none; }
  .hero-sub { text-shadow: none; }
  .hero-inner { gap: 14px; margin-bottom: 10px; }
  .hero-sub { font-size: 14px; line-height: 1.5; }
  .hero-cta { flex-direction: column; width: 100%; gap: 8px; }
  .hero-cta a { width: 100%; text-align: center; justify-content: center; padding: 14px 16px; font-size: 13px; }
  .hero-stats {
    flex-direction: column; align-items: stretch;
    gap: 8px; padding: 10px 12px;
  }
  .hs { width: 100%; }
  .hs-sep { display: none; }
  .hs b { font-size: 22px; }
  .hs span { font-size: 12px; }
  .hero-pill.hero-logos { gap: 8px; padding: 5px 10px; flex-wrap: wrap; justify-content: center; }
  .hl-side { height: 16px; }
  .hl-main { height: 20px; }

  /* Sections */
  .sec { padding: 32px 14px; }
  .sec-title { font-size: 24px !important; line-height: 1.1; }
  .sec-title--lg { font-size: 28px !important; }
  .sec-kicker { font-size: 10px; margin-bottom: 10px; }
  .sec-lede { font-size: 14px; }

  /* Countdown */
  .countdown { padding: 24px 14px; }
  .cd-title { font-size: 16px; }
  .cd-tag { font-size: 9px; }
  .cd-clock { gap: 4px; }
  .cd-unit { min-width: 0; flex: 1; padding: 8px 3px; }
  .cd-unit b { font-size: 22px; }
  .cd-unit span { font-size: 8px; letter-spacing: 0.08em; }
  .cd-sep { font-size: 20px; }

  /* About icon cards */
  .ic-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 24px; }
  .ic { padding: 16px; }

  /* Avzalliklar */
  .av-grid--bento { grid-template-columns: 1fr !important; gap: 12px; margin-top: 24px; }
  .av-grid--bento > * { grid-column: 1 !important; }
  .av { padding: 18px; min-height: 0; }
  .av-num { font-size: 32px !important; }
  .av-num--xl { font-size: 44px !important; }
  .av h3 { font-size: 15px; }

  /* Map */
  .map-wrap { margin-top: 16px; }
  .map-stage { min-height: 200px; padding: 4px; border-radius: 10px; }
  .uz-label { font-size: 8px !important; stroke-width: 2; }

  /* Timeline */
  .tl-rail { left: 14px !important; }
  .tl-dot { left: 14px !important; width: 8px !important; height: 8px !important; }
  .tl-item { grid-template-columns: 1fr !important; }
  .tl-left .tl-card, .tl-right .tl-card {
    grid-column: 1 !important;
    margin-left: 32px !important;
    margin-right: 0 !important;
    max-width: none !important;
    padding: 14px;
  }
  .tl-left .tl-card::before, .tl-right .tl-card::before {
    left: -18px !important; right: auto !important; width: 16px;
  }
  .tl-card h3 { font-size: 15px; }
  .tl-card p { font-size: 13px; }
  .day-pill { padding: 6px 12px; font-size: 9px; gap: 6px; margin: 24px 0 12px; }
  .dp-tag { font-size: 8px; padding: 2px 6px; }
  .tl-bg { inset: -6px -14px; }
  .sky-orb {
    top: 50px;
    width: 40px; height: 40px;
    margin-bottom: -32px;
  }
  .sky-sun-core, .sky-moon-core { width: 26px; height: 26px; }

  /* Register */
  .sec--reg { padding-bottom: 48px; }
  .reg-progress { display: none; }
  .reg-card { padding: 16px 12px; min-height: 0; }
  .reg-big-cta { padding: 14px 14px; gap: 8px; }
  .rbc-label { font-size: 14px; }
  .rbc-sub { font-size: 9px; }
  .rbc-arrow { width: 28px; height: 28px; }
  .reg-checks { font-size: 9px; gap: 10px; }

  /* FAQ */
  .faq li { padding: 14px 0; grid-template-columns: 1fr; gap: 4px; }
  .faq li::before { display: none; }
  .faq h3 { font-size: 14px; }
  .faq p { font-size: 13px; }

  /* Footer */
  .foot { padding: 24px 14px 16px; }
  .foot-inner { flex-direction: column; align-items: flex-start; }
  .foot-partners { gap: 4px; font-size: 10px; }
  .foot-copy { font-size: 10px; }

  /* Moon */
  .moon { width: 45px; height: 45px; }
  .moon-halo { width: 100px; height: 100px; }
}
.sec {
  padding: 64px 40px;
  position: relative;
}
.sec-inner {
  max-width: 1320px;
  margin: 0 auto;
}
.sec-kicker {
  font-size: 12.5px;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 20px;
}
.sec-title {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0;
}
.sec-title em { font-style: normal; color: var(--orange); }
.sec-title--lg {
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1.0;
}
.sec-lede {
  font-size: 17px;
  color: var(--ink-3);
  max-width: 640px;
  line-height: 1.6;
  margin-top: 14px;
  text-wrap: pretty;
}

/* ============ ABOUT — icon cards ============ */
.ic-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ic {
  padding: 28px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .25s, border-color .25s, background .25s;
}
.ic:hover {
  transform: translateY(-4px);
  border-color: var(--line-orange);
  background: var(--bg-3);
}
.ic-ico {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(255,102,34,0.10);
  border: 1px solid var(--line-orange);
  color: var(--orange);
  display: grid; place-items: center;
}
.ic h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.ic p { font-size: 14.5px; line-height: 1.55; color: var(--ink-3); text-wrap: pretty; }

/* ============ Language switcher ============ */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-left: 8px;
}
.lang-btn {
  padding: 6px 11px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: color .15s, background .15s;
  font-family: var(--font);
}
.lang-btn:hover { color: var(--ink); }
.lang-btn.active {
  background: var(--orange);
  color: #0a0a0a;
  box-shadow: 0 0 16px rgba(255,102,34,0.5);
}
@media (max-width: 1024px) {
  .lang-switch { margin-left: auto; }
}
/* ============ Hero logos ============ */
.hero-logos {
  padding: 10px 20px !important;
  gap: 20px !important;
  background: rgba(0,0,0,0.55) !important;
  border-color: var(--line-2) !important;
  backdrop-filter: blur(14px);
}
.hl-logo {
  display: block;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.hl-side { height: 26px; opacity: 0.95; }
.hl-main { height: 34px; }
.hl-logo:hover { transform: scale(1.06); }
.hl-sep {
  width: 1px; height: 22px;
  background: var(--line-2);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .hero-logos { gap: 12px !important; padding: 8px 14px !important; }
  .hl-side { height: 20px; }
  .hl-main { height: 26px; }
  .hl-sep { height: 16px; }
}

/* Countdown date line */
.cd-date {
  font-family: var(--font);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 500;
}
.cd-date b { color: var(--orange); font-weight: 700; }

/* Smooth swap when location changes */
.cd-title #cd-loc, .cd-date {
  display: inline-block;
  transition: opacity .35s ease;
}
.cd-swap-out #cd-loc, .cd-swap-out #cd-date,
.cd-swap-out .cd-date {
  opacity: 0;
}

/* ============ Big Register CTA (replaces multi-step form) ============ */
.reg-cta-wrap {
  position: relative; z-index: 1;
  display: grid; place-items: center;
  margin: 8px auto 0;
  max-width: 720px;
}
.reg-big-cta {
  position: relative;
  width: 100%;
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  padding: 20px 32px;
  background: linear-gradient(135deg, #FF8047 0%, #FF6622 60%, #c84a14 100%);
  color: #0a0a0a;
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    0 0 0 1px rgba(255,102,34,0.3),
    0 8px 24px -8px rgba(255,102,34,0.5),
    inset 0 1px 0 rgba(255,255,255,0.35),
    inset 0 -2px 8px rgba(0,0,0,0.25);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .25s ease;
}
.reg-big-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(255,230,180,0.4), transparent 60%);
  pointer-events: none;
}
.reg-big-cta::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,0.4) 50%, transparent 65%);
  pointer-events: none;
  transition: left .7s cubic-bezier(.2,.7,.2,1);
}
.reg-big-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255,102,34,0.5),
    0 14px 36px -8px rgba(255,102,34,0.7),
    inset 0 1px 0 rgba(255,255,255,0.4),
    inset 0 -2px 8px rgba(0,0,0,0.25);
}
.reg-big-cta:hover::after { left: 100%; }
.rbc-glow { display: none; }
.rbc-content {
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
  position: relative; z-index: 1;
  text-align: left;
}
.rbc-label {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.005em;
  line-height: 1.1;
  text-transform: uppercase;
}
.rbc-sub {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(10,10,10,0.7);
  text-transform: uppercase;
  font-weight: 600;
}
.rbc-arrow {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #0a0a0a;
  color: var(--orange);
  display: grid; place-items: center;
  flex-shrink: 0;
  position: relative; z-index: 1;
  transition: transform .25s ease;
  margin-left: auto;
}
.reg-big-cta:hover .rbc-arrow { transform: translateX(4px); }
.rbc-arrow svg { width: 18px; height: 18px; }

@media (max-width: 640px) {
  .reg-big-cta { padding: 18px 22px; gap: 10px; }
  .rbc-label { font-size: 16px; }
  .rbc-arrow { width: 34px; height: 34px; }
}
/* ============ ABOUT — atmospheric bg ============ */
.sec--about {
  position: relative;
  padding-top: 60px;
  padding-bottom: 100px;
  overflow: hidden;
}
.about-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.about-stars {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 280px;
  background-image:
    radial-gradient(1px 1px at 8% 18%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 26% 8%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1.5px 1.5px at 42% 22%, rgba(255,210,122,0.6), transparent),
    radial-gradient(1px 1px at 58% 12%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 78% 28%, rgba(255,255,255,0.45), transparent),
    radial-gradient(1.5px 1.5px at 92% 16%, rgba(255,210,122,0.5), transparent),
    radial-gradient(1px 1px at 14% 42%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 36% 48%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1px 1px at 64% 38%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 86% 52%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1.5px 1.5px at 96% 62%, rgba(255,210,122,0.5), transparent);
  opacity: 0.6;
  mask-image: linear-gradient(to bottom, black 40%, transparent);
  animation: aboutTwinkle 4s ease-in-out infinite alternate;
}
@keyframes aboutTwinkle { from { opacity: 0.35; } to { opacity: 0.75; } }
.about-glow {
  position: absolute;
  top: -10%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,102,34,0.18), rgba(255,102,34,0.05) 30%, transparent 60%);
  filter: blur(40px);
  animation: aboutGlow 8s ease-in-out infinite alternate;
}
@keyframes aboutGlow {
  from { transform: scale(1) translateY(0); opacity: 0.7; }
  to   { transform: scale(1.1) translateY(20px); opacity: 1; }
}
.about-ridge {
  /* mountain ridge sits at TOP of section as transition from countdown */
  position: absolute;
  top: -1px; left: 0; right: 0;
  width: 100%; height: 120px;
  display: block;
  transform: scaleY(-1);
  opacity: 0.55;
}
.about-particles {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 360px;
}
.about-particles span {
  position: absolute;
  width: 2px; height: 2px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px 1px rgba(255,210,122,0.7);
  opacity: 0;
  animation: floatUp 9s linear infinite;
}
.about-particles span:nth-child(1) { left: 12%; bottom: 8%;  animation-delay: 0s;   }
.about-particles span:nth-child(2) { left: 22%; bottom: 14%; animation-delay: 1.4s; background: var(--orange-2); }
.about-particles span:nth-child(3) { left: 36%; bottom: 6%;  animation-delay: 2.8s; }
.about-particles span:nth-child(4) { left: 48%; bottom: 18%; animation-delay: 0.8s; background: var(--orange); }
.about-particles span:nth-child(5) { left: 60%; bottom: 8%;  animation-delay: 4s;   }
.about-particles span:nth-child(6) { left: 70%; bottom: 16%; animation-delay: 2.2s; background: var(--orange-2); }
.about-particles span:nth-child(7) { left: 82%; bottom: 12%; animation-delay: 3.6s; }
.about-particles span:nth-child(8) { left: 92%; bottom: 6%;  animation-delay: 5s;   background: var(--orange); }
.about-particles span:nth-child(9) { left: 6%;  bottom: 8%;  animation-delay: 1.8s; }
.about-particles span:nth-child(10){ left: 54%; bottom: 14%; animation-delay: 4.5s; background: var(--orange-2); }
@keyframes floatUp {
  0%   { opacity: 0; transform: translate(0,0) scale(0.7); }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { opacity: 0; transform: translate(15px,-280px) scale(0.4); }
}
.about-stars--dense {
  background-image:
    radial-gradient(1px 1px at 4% 8%,  rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 18% 32%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.5px 1.5px at 30% 14%, rgba(255,210,122,0.5), transparent),
    radial-gradient(1px 1px at 48% 38%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 56% 22%, rgba(255,255,255,0.45), transparent),
    radial-gradient(1.5px 1.5px at 68% 8%, rgba(255,210,122,0.4), transparent),
    radial-gradient(1px 1px at 74% 36%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1px 1px at 88% 24%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 2% 42%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 22% 52%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 46% 58%, rgba(255,210,122,0.45), transparent),
    radial-gradient(1px 1px at 70% 50%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1.5px 1.5px at 92% 46%, rgba(255,210,122,0.5), transparent);
  opacity: 0.5;
  animation: aboutTwinkle 5.2s ease-in-out infinite alternate-reverse;
  mask-image: linear-gradient(to bottom, black 50%, transparent);
  height: 320px;
  top: 0; left: 0; right: 0;
  position: absolute;
}

/* Orbiting planet */
.about-orbit {
  position: absolute;
  top: 4%;
  right: -180px;
  width: 600px; height: 600px;
  pointer-events: none;
  opacity: 0.85;
}
.about-orbit svg { width: 100%; height: 100%; display: block; }
.orbit-glow { animation: orbitGlowPulse 4s ease-in-out infinite alternate; transform-origin: 300px 300px; }
@keyframes orbitGlowPulse {
  from { opacity: 0.6; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.08); }
}

/* Moon orbiting around planet */
.orbit-moon-track {
  transform-origin: 300px 300px;
  animation: orbitSpin 22s linear infinite;
}
.orbit-sat-track {
  transform-origin: 300px 300px;
  animation: orbitSpin 14s linear infinite reverse;
}
@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@media (max-width: 1024px) {
  .about-orbit { width: 400px; height: 400px; right: -140px; top: 8%; opacity: 0.6; }
}
@media (max-width: 640px) {
  .about-orbit { width: 320px; height: 320px; right: -120px; top: auto; bottom: 20%; opacity: 0.4; }
}

.sec--about .sec-inner { position: relative; z-index: 1; }

.sec--av {
  position: relative;
  background: linear-gradient(180deg, var(--bg) 0%, #060608 50%, var(--bg) 100%);
  overflow: hidden;
}
.av-glow {
  position: absolute;
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,102,34,0.10), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.av-grid {
  position: relative; z-index: 1;
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
/* New 5-card layout: hero stat on top spanning 2 cols + 1 wide on right, then 3 below */
.av-grid--bento {
  grid-template-columns: repeat(6, 1fr);
}
.av-grid--bento .av--feature {
  grid-column: span 3;
}
.av-grid--bento .av--hl {
  grid-column: span 3;
}
.av-grid--bento > .av:not(.av--feature):not(.av--hl) {
  grid-column: span 2;
}
.av {
  position: relative;
  padding: 26px 24px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex; flex-direction: column; gap: 10px;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.2,.7,.2,1),
              border-color .3s,
              background .3s,
              box-shadow .3s;
  min-height: 200px;
}
.av--feature {
  padding: 32px 30px;
  background: linear-gradient(135deg, #1a0e08 0%, #261206 60%, var(--bg-2) 100%);
  border-color: var(--line-orange);
  min-height: 240px;
}
.av--feature h3 { font-size: 22px; }
.av-bg-art {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.75;
  transition: opacity .4s, transform .6s cubic-bezier(.2,.7,.2,1);
}
.av--feature:hover .av-bg-art { opacity: 1; transform: scale(1.06); }
.av--feature > *:not(.av-bg-art) { position: relative; z-index: 1; }
.av-ico--lg {
  width: 52px; height: 52px;
  border-radius: 14px;
}
.av-num--xl { font-size: 64px !important; line-height: 1; }
.av--hl {
  background: linear-gradient(135deg, rgba(255,102,34,0.10) 0%, var(--bg-2) 70%);
  border-color: var(--line-orange);
  min-height: 240px;
}
.av--demo {
  background: linear-gradient(180deg, rgba(255,210,122,0.06), var(--bg-2));
  border-color: rgba(255,210,122,0.2);
}
.av--demo .av-num { color: var(--gold); }
.av::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(255,102,34,0.18), transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.av:hover {
  transform: translateY(-6px);
  border-color: var(--line-orange);
  background: var(--bg-3);
  box-shadow: 0 20px 50px -20px rgba(255,102,34,0.3);
}
.av:hover::before { opacity: 1; }
.av--big {
  grid-column: span 1;
  background: linear-gradient(135deg, rgba(255,102,34,0.12), rgba(255,102,34,0.02));
  border-color: var(--line-orange);
}
.av--hl {
  background: linear-gradient(180deg, rgba(255,210,122,0.08), rgba(255,102,34,0.02));
  border-color: var(--line-orange);
}
.av-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,102,34,0.14);
  border: 1px solid var(--line-orange);
  color: var(--orange);
  display: grid; place-items: center;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.av:hover .av-ico { transform: rotate(-8deg) scale(1.08); }

.av-num {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: var(--orange);
  font-variant-numeric: tabular-nums;
  display: flex; align-items: baseline; gap: 4px;
}
.av-num small {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  margin-left: 2px;
}
.av h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.av p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-3);
  text-wrap: pretty;
  margin-top: auto;
}

/* Shine sweep on hover */
.av-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(120deg, transparent 30%, rgba(255,210,122,0.12) 50%, transparent 70%);
  pointer-events: none;
  transition: left .8s cubic-bezier(.2,.7,.2,1);
}
.av:hover .av-shine { left: 100%; }

/* Counter pulse on view */
@keyframes counterPulse {
  0%   { color: var(--orange-2); text-shadow: 0 0 30px rgba(255,210,122,0.6); }
  100% { color: var(--orange);   text-shadow: none; }
}
.counter.counted { animation: counterPulse 1.2s ease-out; }

/* ============ HUDUDLAR — locations ============ */
.uz-region {
  fill: rgba(26,26,31,0.85);
  stroke: rgba(255,102,34,0.6);
  stroke-width: 0.8;
  transition: fill .25s, stroke .25s, stroke-width .25s;
  cursor: pointer;
}
.uz-region:hover {
  fill: rgba(255,102,34,0.18);
  stroke: #FFD27A;
  stroke-width: 1.4;
}
.uz-region.active {
  fill: rgba(255,102,34,0.30);
  stroke: #FFD27A;
  stroke-width: 1.8;
}
/* ============ Map (Uzbekistan) ============ */
.map-wrap {
  margin-top: 32px;
  width: 100%;
}
.map-stage {
  position: relative;
  background: linear-gradient(135deg, #0a0a14 0%, #050507 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  min-height: 480px;
  padding: 12px;
}
.map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,102,34,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,102,34,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent);
  pointer-events: none;
}
.map-glow {
  position: absolute;
  top: 40%; left: 60%; transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,102,34,0.18), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}
.uz-map { position: relative; width: 100%; height: auto; display: block; }
.uz-region {
  fill: rgba(26,26,31,0.85);
  stroke: rgba(255,102,34,0.6);
  stroke-width: 0.8;
  transition: fill .25s, stroke .25s, stroke-width .25s;
  cursor: pointer;
}
.uz-region:hover {
  fill: rgba(255,102,34,0.18);
  stroke: #FFD27A;
  stroke-width: 1.4;
}
.uz-region.active {
  fill: rgba(255,102,34,0.30);
  stroke: #FFD27A;
  stroke-width: 1.8;
}

.uz-label {
  fill: #ffffff;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  text-anchor: middle;
  pointer-events: none;
  paint-order: stroke;
  stroke: rgba(0,0,0,0.9);
  stroke-width: 3;
  stroke-linejoin: round;
  letter-spacing: -0.005em;
  transition: fill .2s;
}
.uz-label .uz-date {
  font-size: 10.5px;
  font-weight: 600;
  fill: #FF6622;
  letter-spacing: 0.04em;
}
g.uz-labels text.active { fill: #FFD27A; }
g.uz-labels text.active .uz-date { fill: #FFD27A; }

@media (max-width: 1024px) {
  .map-stage { min-height: 380px; }
}
@media (max-width: 640px) {
  .map-stage { min-height: 240px; }
  .uz-label { font-size: 10px; stroke-width: 2.5; }
  .uz-label .uz-date { font-size: 8px; }
}

.sec--loc {
  position: relative;
  background: linear-gradient(180deg, var(--bg) 0%, #04060d 50%, var(--bg) 100%);
  overflow: hidden;
}
.loc-stars {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 12%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1px 1px at 32% 8%, rgba(255,255,255,0.25), transparent),
    radial-gradient(1px 1px at 52% 18%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 72% 22%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 88% 14%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1.5px 1.5px at 18% 62%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1px 1px at 42% 78%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 82% 88%, rgba(255,255,255,0.3), transparent);
  opacity: 0.5;
  pointer-events: none;
}

.loc-grid {
  position: relative;
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.loc {
  position: relative;
  padding: 22px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex; flex-direction: column; gap: 10px;
  min-height: 220px;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.7,.2,1),
              border-color .3s,
              box-shadow .3s;
}
.loc::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 100% 100%, rgba(255,102,34,0.18), transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.loc:hover {
  transform: translateY(-5px);
  border-color: var(--line-orange);
  box-shadow: 0 14px 40px -16px rgba(255,102,34,0.35);
}
.loc:hover::after { opacity: 1; }
.loc--hl {
  background: linear-gradient(180deg, rgba(255,102,34,0.1), rgba(255,102,34,0.02));
  border-color: var(--line-orange);
}

.loc-no {
  font-family: var(--font);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-4);
  font-weight: 600;
}
.loc-reg {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  color: var(--orange);
  text-transform: uppercase;
  font-weight: 600;
}
.loc-place {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
}
.loc-place em {
  font-style: normal;
  color: var(--ink-3);
  font-weight: 500;
}
.loc-pic {
  margin-top: auto;
  border-radius: 10px;
  overflow: hidden;
  height: 80px;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
  position: relative;
}
.loc:hover .loc-pic { transform: scale(1.04); }
.loc-pic svg { display: block; width: 100%; height: 100%; }

.loc-foot {
  margin-top: 28px;
  padding: 18px 24px;
  border-left: 3px solid var(--orange);
  background: var(--bg-2);
  border-radius: 0 12px 12px 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink-2);
  text-wrap: pretty;
  position: relative; z-index: 1;
}
.loc-foot b { color: var(--orange); font-weight: 700; }

@media (max-width: 1024px) {
  .av-grid { grid-template-columns: repeat(2, 1fr); }
  .av-grid--bento { grid-template-columns: repeat(2, 1fr); }
  .av-grid--bento .av--feature,
  .av-grid--bento .av--hl,
  .av-grid--bento > .av:not(.av--feature):not(.av--hl) { grid-column: span 1; }
  .av-grid--bento > .av:nth-child(5) { grid-column: span 2; }
  .loc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .av-grid { grid-template-columns: 1fr; }
  .av-grid--bento { grid-template-columns: 1fr; }
  .av-grid--bento > * { grid-column: 1 !important; }
  .av-num--xl { font-size: 52px !important; }
  .loc-grid { grid-template-columns: 1fr; }
}

/* ============ Opportunities (hidden in DOM) ============ */
.op-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.op {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  padding: 0 0 28px;
  display: flex; flex-direction: column;
  transition: transform .3s, border-color .3s;
}
.op:hover { transform: translateY(-6px); border-color: var(--line-orange); }
.op--hl { border-color: var(--line-orange); }
.op-art {
  width: 100%;
  aspect-ratio: 1 / 0.95;
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
}
.op-art::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
}
.op-num {
  font-size: 84px; font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(255,102,34,0.18);
  line-height: 1;
  padding: 8px 32px 0;
  font-variant-numeric: tabular-nums;
}
.op-title {
  font-size: 28px; font-weight: 800;
  letter-spacing: -0.02em;
  padding: 0 32px;
  margin-top: -52px;
  position: relative;
  z-index: 1;
}
.op p {
  font-size: 15px; color: var(--ink-3); line-height: 1.55;
  padding: 14px 32px 0; text-wrap: pretty;
}

/* ============ Timeline ============ */
.sec--timeline {
  position: relative;
  background: linear-gradient(180deg, var(--bg) 0%, #04060d 50%, var(--bg) 100%);
  overflow: hidden;
}
.tl-stars {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 8% 12%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1px 1px at 23% 28%, rgba(255,255,255,0.25), transparent),
    radial-gradient(1px 1px at 48% 8%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 72% 22%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 88% 14%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1.5px 1.5px at 14% 42%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1px 1px at 38% 58%, rgba(255,255,255,0.25), transparent),
    radial-gradient(1px 1px at 62% 72%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 88% 88%, rgba(255,255,255,0.25), transparent);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  opacity: 0.6;
  pointer-events: none;
}

.day-pill {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 10px 18px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin: 48px auto 32px;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  color: var(--ink-2);
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  z-index: 2;
}
.dp-tag {
  padding: 4px 10px;
  background: var(--orange);
  color: #0a0a0a;
  border-radius: 999px;
  font-weight: 700;
  font-size: 11px;
}
.dp-tag--night {
  background: rgba(255,210,122,0.15);
  color: var(--gold);
  border: 1px solid var(--gold);
}
.day-pill--night {
  border-color: var(--line-orange);
  background: linear-gradient(135deg, rgba(255,210,122,0.08), rgba(255,102,34,0.04));
}

.tl {
  margin-top: 24px;
  position: relative;
  padding: 20px 0;
}
.tl-rail {
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--line-orange) 6%, var(--line-orange) 94%, transparent);
  transform: translateX(-0.5px);
}
.tl-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  padding: 20px 0;
}
.tl-dot {
  position: absolute;
  left: 50%;
  top: 50px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--orange);
  transform: translateX(-50%);
  box-shadow: 0 0 0 6px rgba(255,102,34,0.15), 0 0 20px rgba(255,102,34,0.5);
  z-index: 2;
}
.tl-dot--hl {
  width: 16px; height: 16px;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(255,210,122,0.2), 0 0 30px rgba(255,210,122,0.6);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { box-shadow: 0 0 0 8px rgba(255,210,122,0.2), 0 0 30px rgba(255,210,122,0.6); }
  50%     { box-shadow: 0 0 0 12px rgba(255,210,122,0.1), 0 0 40px rgba(255,210,122,0.8); }
}

.tl-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  max-width: 480px;
  transition: transform .25s, border-color .25s;
  position: relative;
}
.tl-card::before {
  content: "";
  position: absolute;
  top: 28px;
  width: 24px; height: 1px;
  background: var(--line-orange);
}
.tl-card:hover { transform: translateY(-2px); border-color: var(--line-orange); }
.tl-card--hl {
  background: linear-gradient(135deg, rgba(255,210,122,0.10), rgba(255,102,34,0.04));
  border-color: var(--line-orange);
}
.tl-left .tl-card { grid-column: 1; margin-right: 44px; margin-left: auto; }
.tl-left .tl-card::before { right: -24px; }
.tl-right .tl-card { grid-column: 2; margin-left: 44px; }
.tl-right .tl-card::before { left: -24px; }

.tl-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.tl-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,102,34,0.12);
  border: 1px solid var(--line-orange);
  color: var(--orange);
  display: grid; place-items: center;
}
.tl-time {
  font-size: 12.5px;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex; align-items: center; gap: 6px;
}
.cd-pulse {
  color: var(--orange);
  font-size: 7px;
  animation: pulse 2s infinite;
}
.tl-badge {
  margin-left: auto;
  padding: 3px 9px;
  background: var(--gold);
  color: #0a0a0a;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}
.tl-card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.tl-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-3);
  text-wrap: pretty;
}

/* ============ Hamkorlar ============ */
.hk-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.hk {
  padding: 32px 28px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  display: flex; flex-direction: column; gap: 18px;
  min-height: 280px;
  transition: transform .25s, border-color .25s;
}
.hk:hover { transform: translateY(-4px); border-color: var(--line-orange); }
.hk--hl {
  background: linear-gradient(180deg, rgba(255,102,34,0.10), rgba(255,102,34,0.01));
  border-color: var(--line-orange);
}
.hk-ico {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(255,102,34,0.10);
  border: 1px solid var(--line-orange);
  color: var(--orange);
  display: grid; place-items: center;
}
.hk h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }
.hk ul { display: grid; gap: 10px; margin-top: auto; }
.hk li {
  font-size: 14.5px;
  color: var(--ink-2);
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}
.hk li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

/* ============ Register ============ */
.sec--reg {
  position: relative;
  background: linear-gradient(180deg, var(--bg) 0%, #04060d 30%, #04060d 70%, var(--bg) 100%);
  overflow: hidden;
  padding-bottom: 140px;
}
.reg-stars {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 8% 22%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 22% 8%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 38% 32%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1px 1px at 52% 18%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 72% 12%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 86% 26%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1px 1px at 16% 62%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 62% 78%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1.5px 1.5px at 92% 64%, rgba(255,255,255,0.4), transparent);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  opacity: 0.7;
  pointer-events: none;
}
.reg-glow {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(255,102,34,0.12), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.reg-head {
  text-align: center;
  display: grid; justify-items: center; gap: 12px;
  margin-bottom: 40px;
  position: relative; z-index: 1;
}
.reg-head .sec-kicker { margin-bottom: 0; }
.reg-sub {
  font-size: 16px;
  color: var(--ink-3);
  max-width: 540px;
  line-height: 1.55;
  margin-top: 4px;
}

.reg-progress {
  position: relative; z-index: 1;
  display: flex; align-items: center;
  max-width: 720px; margin: 0 auto 40px;
  padding: 0 20px;
}
.rp-step {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--ink-3);
  flex-shrink: 0;
  transition: all .3s;
  position: relative;
}
.rp-step.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #0a0a0a;
  box-shadow: 0 0 30px rgba(255,102,34,0.5);
}
.rp-step.done {
  background: rgba(255,102,34,0.15);
  border-color: var(--orange);
  color: var(--orange);
}
.rp-circle { display: grid; place-items: center; }
.rp-lbl {
  position: absolute;
  bottom: -22px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}
.rp-step.active .rp-lbl, .rp-step.done .rp-lbl { color: var(--orange); }
.rp-line {
  flex: 1; height: 1px;
  background: var(--line);
  transition: background .3s;
}
.rp-line.done { background: var(--orange); }

.reg-card {
  max-width: 720px; margin: 60px auto 0;
  background: rgba(10,10,10,0.78);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px;
  min-height: 400px;
  backdrop-filter: blur(14px);
  position: relative; z-index: 1;
}

.reg-step { display: none; animation: fadeIn .4s ease; }
.reg-step.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.rs-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 24px;
}
.rs-title:first-child { margin-top: 0; }

.rs-input {
  width: 100%;
  padding: 16px 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  font-family: var(--font);
  font-size: 15px;
  outline: none;
  transition: border-color .15s, background .15s;
}
.rs-input:hover { border-color: var(--line-2); }
.rs-input:focus { border-color: var(--orange); background: var(--bg-3); }
.rs-input::placeholder { color: var(--ink-4); }

.rs-textarea { resize: vertical; min-height: 100px; }

.rs-radio { display: grid; gap: 10px; }
.rs-radio label {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.rs-radio label:hover { border-color: var(--line-2); }
.rs-radio input { accent-color: var(--orange); width: 16px; height: 16px; }
.rs-radio span { font-size: 14.5px; }

.rs-actions {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.rs-prev, .rs-next, .rs-submit {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  color: var(--ink-2);
  border: 1px solid var(--line);
  transition: all .15s;
  cursor: pointer;
}
.rs-prev:hover { border-color: var(--line-2); color: var(--ink); }
.rs-next, .rs-submit {
  background: var(--orange);
  color: #0a0a0a;
  border-color: var(--orange);
  box-shadow: 0 0 30px rgba(255,102,34,0.35);
}
.rs-next:hover, .rs-submit:hover {
  background: var(--orange-2);
  transform: translateY(-1px);
  box-shadow: 0 0 40px rgba(255,102,34,0.55);
}

.reg-checks {
  position: relative; z-index: 1;
  display: flex; gap: 24px; flex-wrap: wrap; justify-content: center;
  margin: 32px auto 0;
  max-width: 720px;
  font-size: 12px; letter-spacing: 0.1em;
  color: var(--ink-3);
  text-transform: uppercase;
  font-weight: 500;
}
.reg-checks li {
  display: inline-flex; align-items: center; gap: 6px;
}
.reg-checks li::before {
  content: "✓"; color: var(--orange); font-weight: 700;
}

/* ============ Footer ============ */
.foot {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 40px 40px 32px;
}
.foot-inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.foot-brand { display: flex; align-items: center; gap: 12px; }
.foot-sub { font-size: 11.5px; color: var(--ink-3); letter-spacing: 0.06em; margin-top: 2px; }

.foot-partners { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.fp { font-size: 13px; color: var(--ink-3); }
.fp-x { color: var(--orange); font-weight: 700; }

.foot-copy { font-size: 12.5px; color: var(--ink-4); }

/* ============ Responsive ============ */
@media (max-width: 1200px) {
  .bar-nav { gap: 16px; }
  .bar-nav a { font-size: 12.5px; }
  .bar-cta { padding: 10px 14px; font-size: 11.5px; }
}
@media (max-width: 1024px) {
  .bar-inner { padding: 14px 24px; gap: 20px; }
  .bar-nav { display: none; }
  .hero { padding: 60px 24px 100px; }
  .camp-scene { gap: 60px; }
  .camp-scene .tent { width: 140px; }
  .camp-scene .fire svg { width: 60px; }
  .sec, .sec--reg { padding: 80px 24px; }
  .sec--reg { padding-bottom: 100px; }
  .ic-grid { grid-template-columns: repeat(2, 1fr); }
  .op-grid { grid-template-columns: 1fr; gap: 20px; }
  .hk-grid { grid-template-columns: repeat(2, 1fr); }
  .tl-rail { left: 24px; }
  .tl-item { grid-template-columns: 1fr; }
  .tl-dot { left: 24px; }
  .tl-left .tl-card, .tl-right .tl-card {
    grid-column: 1;
    margin-left: 56px;
    margin-right: 0;
    max-width: none;
  }
  .tl-left .tl-card::before { left: -24px; right: auto; }
  .tl-right .tl-card::before { left: -24px; }
  .reg-card { padding: 28px 20px; }
  .reg-progress { padding: 0; }
  .rp-step { width: 44px; height: 44px; }
  .rp-lbl { font-size: 10px; bottom: -20px; }
  .cd-inner { flex-direction: column; align-items: flex-start; }
  .foot-inner { flex-direction: column; align-items: flex-start; text-align: left; }
}
@media (max-width: 640px) {
  .bar-inner { padding: 12px 20px; }
  .bar-cta { padding: 10px 14px; font-size: 11px; letter-spacing: 0.02em; }
  .hero, .sec, .foot, .countdown, .sec--reg { padding-left: 20px; padding-right: 20px; }
  .hero-stats { gap: 16px; padding: 14px 18px; }
  .hs-sep { display: none; }
  .ic-grid { grid-template-columns: 1fr; }
  .hk-grid { grid-template-columns: 1fr; }
  .hk { min-height: 0; }
  .reg-card { padding: 24px 16px; }
  .rp-step { width: 38px; height: 38px; }
  .rp-step svg { width: 14px; height: 14px; }
  .rp-lbl { display: none; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .hero-cta { flex-direction: column; width: 100%; }
  .op-art { aspect-ratio: 1.4 / 1; }
  .op-num { font-size: 64px; padding: 8px 24px 0; }
  .op-title { padding: 0 24px; font-size: 24px; }
  .op p { padding: 12px 24px 0; }
  .ticker-track { font-size: 16px; gap: 20px; }
  .cd-clock { gap: 8px; }
  .cd-unit { min-width: 64px; padding: 12px 6px; }
  .cd-unit b { font-size: 30px; }
  .cd-sep { font-size: 24px; }
  .camp-scene { display: none; }
  .scroll-cue { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
