:root {
  --bg: #060914;
  --surface: #0d1224;
  --surface-2: #131930;
  --fg: #e8eeff;
  --fg-muted: #7a85a8;
  --cyan: #00e5ff;
  --cyan-dim: rgba(0, 229, 255, 0.12);
  --magenta: #ff2d6b;
  --magenta-dim: rgba(255, 45, 107, 0.12);
  --gold: #ffd84d;
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 6rem 8vw 4rem;
  overflow: hidden;
}

.star-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  opacity: 0.4;
  animation: twinkle 3s ease-in-out infinite alternate;
}
.s1 { top: 12%; left: 15%; opacity: 0.7; animation-duration: 2.1s; }
.s2 { top: 8%; left: 72%; opacity: 0.5; animation-duration: 4s; }
.s3 { top: 22%; left: 88%; opacity: 0.3; animation-duration: 3.2s; }
.s4 { top: 45%; left: 6%; opacity: 0.6; animation-duration: 2.7s; }
.s5 { top: 60%; left: 55%; opacity: 0.4; animation-duration: 3.8s; }
.s6 { top: 30%; left: 40%; opacity: 0.8; animation-duration: 1.9s; }
.s7 { top: 75%; left: 20%; opacity: 0.5; animation-duration: 4.5s; }
.s8 { top: 18%; left: 30%; opacity: 0.3; animation-duration: 2.5s; }
.s9 { top: 85%; left: 70%; opacity: 0.6; animation-duration: 3.1s; }
.s10 { top: 50%; left: 90%; opacity: 0.4; animation-duration: 3.7s; }
.s11 { top: 35%; left: 60%; opacity: 0.7; animation-duration: 2.3s; }
.s12 { top: 90%; left: 45%; opacity: 0.5; animation-duration: 4.2s; }

@keyframes twinkle {
  from { opacity: 0.2; }
  to { opacity: 0.9; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #c8d4ff 60%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lede {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.7;
}

.hero-badge {
  position: absolute;
  top: 4rem;
  right: 8vw;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

.badge-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

.badge-year {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

/* ── ATTRACTIONS ── */
.attractions {
  padding: 6rem 8vw;
  background: var(--bg);
}

.section-header {
  margin-bottom: 3rem;
}

.section-tag {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--cyan);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--fg);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  overflow: hidden;
}

.card-glow {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(40px);
  pointer-events: none;
}

.card--valo .card-glow { background: var(--cyan); }
.card--laser .card-glow { background: var(--magenta); }
.card--climbing .card-glow { background: #8b5cf6; }

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.card--valo .card-icon { background: var(--cyan-dim); color: var(--cyan); }
.card--laser .card-icon { background: var(--magenta-dim); color: var(--magenta); }
.card--climbing .card-icon { background: rgba(139,92,246,0.12); color: #a78bfa; }

.card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── WHO IS IT FOR ── */
.whoisitfor {
  padding: 5rem 8vw;
  background: var(--surface);
}

.whoisitfor h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--fg);
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
}

.who-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.who-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--cyan-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin-bottom: 0.25rem;
}

.who-item h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.05em;
}

.who-item p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── AWARDS ── */
.awards {
  padding: 5rem 8vw;
  background: var(--bg);
}

.award-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--surface);
  border: 1px solid rgba(255,216,77,0.15);
  border-radius: 16px;
  padding: 2.5rem 3rem;
}

.award-badge {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,216,77,0.08);
  border: 1px solid rgba(255,216,77,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.award-text h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.award-text p {
  font-size: 0.95rem;
  color: var(--fg-muted);
}

/* ── CLOSING ── */
.closing {
  padding: 7rem 8vw;
  text-align: center;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.closing p {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--fg-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── FOOTER ── */
footer {
  padding: 3rem 8vw;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
}

.footer-location {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--cyan);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero {
    padding: 5rem 6vw 3rem;
    min-height: auto;
    padding-bottom: 3rem;
  }
  .hero-badge {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
  }
  .award-inner {
    flex-direction: column;
    padding: 2rem;
  }
  .footer-inner {
    flex-direction: column;
  }
  .cards {
    grid-template-columns: 1fr;
  }
}