:root {
  --bg-deep: #0a0a0f;
  --bg-card: #12121a;
  --purple: #8b5cf6;
  --purple-glow: #a78bfa;
  --red: #ef4444;
  --red-glow: #f87171;
  --white: #f8fafc;
  --gray: #94a3b8;
  --gray-dim: #475569;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
}

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

body {
  background: var(--bg-deep);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem;
  background: radial-gradient(ellipse at 30% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(239, 68, 68, 0.05) 0%, transparent 50%);
}

.hero-bg-elements {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(139, 92, 246, 0.15);
}

.orbit-1 {
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.orbit-2 {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(239, 68, 68, 0.1);
}

.orbit-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(139, 92, 246, 0.2);
}

.star {
  position: absolute;
  color: var(--purple-glow);
  font-size: 1.2rem;
  opacity: 0.4;
}

.star-1 { top: 20%; left: 15%; }
.star-2 { top: 35%; right: 20%; }
.star-3 { bottom: 30%; left: 25%; font-size: 1.5rem; color: var(--red-glow); }
.star-4 { bottom: 20%; right: 15%; }

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-tag {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--gray);
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.hero h1 .drip {
  background: linear-gradient(135deg, var(--purple) 0%, var(--red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* SERVICES */
.services {
  padding: 8rem 2rem;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-card) 100%);
}

.services-container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--purple-glow);
  margin-bottom: 3rem;
  font-weight: 500;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(139, 92, 246, 0.1);
  border-radius: 12px;
  padding: 2.5rem;
  transition: border-color 0.3s ease;
}

.service-card:hover {
  border-color: rgba(139, 92, 246, 0.3);
}

.service-icon {
  font-size: 1.5rem;
  color: var(--purple-glow);
  margin-bottom: 1.2rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.service-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* DROPS */
.drops {
  padding: 8rem 2rem;
  background: var(--bg-card);
}

.drops-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.drops-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.drops-text p {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.drops-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.drop-tag {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  padding: 0.5rem 1rem;
  border: 1px solid var(--gray-dim);
  border-radius: 100px;
  color: var(--gray);
  font-weight: 500;
}

.drops-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.astronaut-box {
  width: 280px;
  height: 350px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.astro-shape {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, rgba(239, 68, 68, 0.1) 70%, transparent 100%);
  border: 2px solid rgba(139, 92, 246, 0.3);
}

.astro-label {
  position: absolute;
  bottom: 1.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gray-dim);
}

/* CLOSING */
.closing {
  padding: 8rem 2rem;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-deep) 100%);
  text-align: center;
}

.closing-content {
  max-width: 800px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.closing p {
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.closing-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--purple) 0%, var(--red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--gray-dim);
  letter-spacing: 0.05em;
}

/* FOOTER */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
}

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

/* RESPONSIVE */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .drops-container {
    grid-template-columns: 1fr;
  }

  .drops-visual {
    display: none;
  }

  .closing-stats {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .orbit-1 {
    width: 350px;
    height: 350px;
  }

  .orbit-2 {
    width: 250px;
    height: 250px;
  }

  .orbit-3 {
    width: 150px;
    height: 150px;
  }
}
/* NAV — shared between home + order pages */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.08);
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--white);
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-link:hover { color: var(--white); }

.nav-cta {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.55rem 1.25rem;
  border-radius: 6px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: var(--purple-glow);
  text-decoration: none;
  transition: all 0.2s ease;
}
.nav-cta:hover {
  background: rgba(139, 92, 246, 0.25);
  border-color: rgba(139, 92, 246, 0.5);
}

/* HERO ACTIONS */
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--purple) 0%, var(--red) 100%);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-block;
  color: var(--gray);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  padding: 0.9rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid rgba(139, 92, 246, 0.15);
  transition: all 0.2s ease;
}
.btn-ghost:hover {
  border-color: rgba(139, 92, 246, 0.35);
  color: var(--white);
}

/* Push hero content down below fixed nav */
.hero { padding-top: 5rem; }
