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

:root {
  --midnight: #070b18;
  --deep-navy: #0d1428;
  --navy: #111d3c;
  --blue-dark: #1a2f5e;
  --blue-mid: #2d4a8a;
  --blue: #3d6cc0;
  --blue-light: #6b9fe4;
  --purple-deep: #1e1040;
  --purple-mid: #3b2080;
  --purple: #6b42c8;
  --purple-light: #a97ff0;
  --lavender: #c4b5fd;
  --snow: #eef2ff;
  --mist: #a8b4d4;
  --star: #ffffff;
  --aurora-1: rgba(107, 66, 200, 0.15);
  --aurora-2: rgba(61, 108, 192, 0.12);
  --aurora-3: rgba(100, 200, 180, 0.06);
}

html { scroll-behavior: smooth; }

body {
  background: var(--midnight);
  color: var(--snow);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: default;
}

/* ── STARS ── */
.stars-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* ── AURORA ── */
.aurora {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.aurora-band {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: aurora-drift 18s ease-in-out infinite alternate;
}
.aurora-band:nth-child(1) {
  width: 80vw; height: 40vh;
  top: 5%; left: -10%;
  background: var(--aurora-1);
  animation-delay: 0s;
}
.aurora-band:nth-child(2) {
  width: 60vw; height: 30vh;
  top: 10%; right: -5%;
  background: var(--aurora-2);
  animation-delay: -6s;
}
.aurora-band:nth-child(3) {
  width: 50vw; height: 25vh;
  top: 2%; left: 20%;
  background: var(--aurora-3);
  animation-delay: -12s;
}
@keyframes aurora-drift {
  0% { transform: translateY(0) scaleX(1); opacity: 0.6; }
  50% { transform: translateY(20px) scaleX(1.05); opacity: 1; }
  100% { transform: translateY(-10px) scaleX(0.95); opacity: 0.7; }
}

/* ── MOUNTAIN SVG ── */
.mountain-scene {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4rem;
  backdrop-filter: blur(12px);
  background: rgba(7, 11, 24, 0.4);
  border-bottom: 1px solid rgba(107, 159, 228, 0.08);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--snow);
  text-decoration: none;
}
.nav-logo span {
  color: var(--purple-light);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: var(--mist);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--snow); }
.nav-cta {
  background: linear-gradient(135deg, var(--purple) 0%, var(--blue) 100%);
  color: var(--snow) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 100px;
  font-weight: 500 !important;
  transition: opacity 0.2s, transform 0.2s !important;
}
.nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 20rem;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(107, 66, 200, 0.15);
  border: 1px solid rgba(169, 127, 240, 0.3);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 2rem;
  animation: fade-up 0.8s ease both;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--purple-light);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 14ch;
  margin-bottom: 1.5rem;
  animation: fade-up 0.8s ease 0.15s both;
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--purple-light) 0%, var(--blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--mist);
  max-width: 48ch;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  animation: fade-up 0.8s ease 0.3s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  animation: fade-up 0.8s ease 0.45s both;
}
.btn-primary {
  background: linear-gradient(135deg, var(--purple) 0%, var(--blue-mid) 100%);
  color: var(--snow);
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 40px rgba(107, 66, 200, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(107, 66, 200, 0.6);
}
.btn-ghost {
  color: var(--mist);
  padding: 0.9rem 1.8rem;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  border: 1px solid rgba(168, 180, 212, 0.2);
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(168, 180, 212, 0.5);
  color: var(--snow);
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── SOCIAL PROOF ── */
.social-proof {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 3rem 2rem 5rem;
}
.social-proof p {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist);
  opacity: 0.6;
  margin-bottom: 1.5rem;
}
.club-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
}
.club-pill {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 0.45rem 1.1rem;
  font-size: 0.85rem;
  color: var(--mist);
}

/* ── FEATURES ── */
.features {
  position: relative;
  z-index: 10;
  padding: 6rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 1rem;
  font-weight: 500;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 20ch;
  margin-bottom: 4rem;
}
.section-title em {
  font-style: italic;
  color: var(--purple-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 2rem;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-light), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  border-color: rgba(169, 127, 240, 0.2);
  background: rgba(107, 66, 200, 0.05);
  transform: translateY(-4px);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  background: rgba(107, 66, 200, 0.15);
  border: 1px solid rgba(169, 127, 240, 0.2);
}
.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--mist);
  line-height: 1.65;
}
.feature-card.wide {
  grid-column: span 2;
}

/* ── MOBILE STRIP ── */
.mobile-strip {
  position: relative;
  z-index: 10;
  padding: 6rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.mobile-strip-text .section-title { margin-bottom: 1.5rem; }
.mobile-strip-text p {
  color: var(--mist);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1rem;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--mist);
  font-size: 0.95rem;
}
.feature-list li::before {
  content: '✦';
  color: var(--purple-light);
  font-size: 0.6rem;
  flex-shrink: 0;
}

.mobile-mockup {
  display: flex;
  justify-content: center;
}
.phone-frame {
  width: 260px;
  height: 520px;
  background: rgba(13, 20, 40, 0.9);
  border-radius: 40px;
  border: 1px solid rgba(107, 159, 228, 0.2);
  box-shadow:
    0 0 0 8px rgba(7, 11, 24, 0.8),
    0 0 0 9px rgba(107, 159, 228, 0.1),
    0 40px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(107, 66, 200, 0.15);
  overflow: hidden;
  position: relative;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.phone-screen {
  padding: 1.5rem 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.phone-header {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--snow);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.phone-trip-card {
  background: rgba(107, 66, 200, 0.15);
  border: 1px solid rgba(169, 127, 240, 0.2);
  border-radius: 14px;
  padding: 0.85rem;
}
.phone-trip-card h4 {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--snow);
  margin-bottom: 0.3rem;
}
.phone-trip-card p {
  font-size: 0.7rem;
  color: var(--mist);
}
.phone-members {
  display: flex;
  align-items: center;
  gap: -0.5rem;
  margin-top: 0.5rem;
}
.member-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid var(--deep-navy);
  margin-right: -6px;
  font-size: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.member-dot:nth-child(1) { background: #7c5cbf; }
.member-dot:nth-child(2) { background: #3d6cc0; }
.member-dot:nth-child(3) { background: #5b8fd4; }
.member-count {
  font-size: 0.65rem;
  color: var(--mist);
  margin-left: 12px;
}
.phone-map {
  flex: 1;
  background: rgba(13, 20, 60, 0.6);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(107,159,228,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107,159,228,0.05) 1px, transparent 1px);
  background-size: 20px 20px;
}
.map-dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--purple-light);
  box-shadow: 0 0 10px var(--purple);
  animation: ping 2s ease-in-out infinite;
}
.map-dot:nth-child(2) { top: 35%; left: 40%; animation-delay: 0.5s; }
.map-dot:nth-child(3) { top: 55%; left: 60%; animation-delay: 1s; background: var(--blue-light); }
.map-dot:nth-child(4) { top: 65%; left: 30%; animation-delay: 0.3s; }
@keyframes ping {
  0%, 100% { box-shadow: 0 0 6px var(--purple); transform: scale(1); }
  50% { box-shadow: 0 0 18px var(--purple); transform: scale(1.3); }
}
.map-label {
  font-size: 0.65rem;
  color: var(--lavender);
  font-weight: 500;
  z-index: 1;
}

/* ── WHITE LABEL ── */
.whitelabel {
  position: relative;
  z-index: 10;
  padding: 6rem 4rem;
  text-align: center;
}
.whitelabel-inner {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 28px;
  padding: 5rem 3rem;
  position: relative;
  overflow: hidden;
}
.whitelabel-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(107,66,200,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.whitelabel .section-title {
  max-width: 100%;
  margin-bottom: 1rem;
}
.whitelabel p {
  color: var(--mist);
  max-width: 48ch;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  text-align: left;
}
.tier-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 1.75rem;
  transition: transform 0.3s;
}
.tier-card:hover { transform: translateY(-4px); }
.tier-card.featured {
  background: rgba(107, 66, 200, 0.12);
  border-color: rgba(169, 127, 240, 0.3);
}
.tier-name {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--purple-light);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.tier-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--snow);
  margin-bottom: 0.25rem;
}
.tier-price span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--mist);
  font-weight: 300;
}
.tier-desc {
  font-size: 0.85rem;
  color: var(--mist);
  line-height: 1.6;
  margin-top: 0.75rem;
}

/* ── CTA ── */
.cta-section {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 6rem 2rem 10rem;
}
.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.cta-section h2 em {
  font-style: italic;
  color: var(--purple-light);
}
.cta-section p {
  color: var(--mist);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .nav-logo { font-size: 1.2rem; }
footer p {
  font-size: 0.8rem;
  color: var(--mist);
  opacity: 0.5;
}

@media (max-width: 900px) {
  nav { padding: 1.25rem 1.5rem; }
  .nav-links { display: none; }
  .features { padding: 4rem 1.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card.wide { grid-column: span 1; }
  .mobile-strip { grid-template-columns: 1fr; padding: 4rem 1.5rem; }
  .mobile-mockup { order: -1; }
  .whitelabel { padding: 4rem 1.5rem; }
  .tier-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 1rem; text-align: center; }
}
