:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: #16161f;
  --fg: #e8e4df;
  --fg-muted: #8a8693;
  --fg-dim: #5a5666;
  --accent: #c49cff;
  --accent-warm: #ff9e7a;
  --accent-glow: rgba(196, 156, 255, 0.15);
  --accent-warm-glow: rgba(255, 158, 122, 0.1);
  --border: rgba(255, 255, 255, 0.06);
  --radius: 16px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse at center, rgba(196, 156, 255, 0.08) 0%, rgba(255, 158, 122, 0.04) 40%, transparent 70%);
  pointer-events: none;
}

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

.hero-kicker {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

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

.hero-lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Orb animation */
.hero-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  z-index: 0;
  pointer-events: none;
}

.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}

.ring-1 {
  top: 10%; left: 10%; right: 10%; bottom: 10%;
  border-color: rgba(196, 156, 255, 0.06);
  animation: orb-spin 20s linear infinite;
}

.ring-2 {
  top: 20%; left: 20%; right: 20%; bottom: 20%;
  border-color: rgba(255, 158, 122, 0.05);
  animation: orb-spin 30s linear infinite reverse;
}

.ring-3 {
  top: 30%; left: 30%; right: 30%; bottom: 30%;
  border-color: rgba(196, 156, 255, 0.04);
  animation: orb-spin 25s linear infinite;
}

.orb-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 40px 20px rgba(196, 156, 255, 0.1);
}

@keyframes orb-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ---- CONCEPT ---- */
.concept {
  padding: 8rem 2rem;
  display: flex;
  justify-content: center;
}

.concept-inner {
  max-width: 640px;
}

.section-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2.5rem;
}

.concept-statement {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  line-height: 1.5;
  color: var(--fg-muted);
}

.concept-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-warm));
  margin: 3rem 0;
  border-radius: 1px;
}

.concept-answer {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  line-height: 1.5;
  color: var(--fg);
}

/* ---- FEATURES ---- */
.features {
  padding: 6rem 2rem 8rem;
  max-width: 1000px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(196, 156, 255, 0.15);
  box-shadow: 0 0 40px var(--accent-glow);
}

.feature-icon {
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
  line-height: 1;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

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

/* ---- PATHS ---- */
.paths {
  padding: 6rem 2rem 8rem;
  max-width: 1000px;
  margin: 0 auto;
}

.paths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.path-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.path-card:hover {
  border-color: rgba(196, 156, 255, 0.12);
  transform: translateY(-4px);
}

.path-card-featured {
  border-color: rgba(196, 156, 255, 0.2);
  background: linear-gradient(180deg, rgba(196, 156, 255, 0.04) 0%, var(--bg-card) 100%);
}

.path-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--fg-dim);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.path-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

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

.path-price {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--accent);
  text-transform: uppercase;
}

/* ---- CLOSING ---- */
.closing {
  padding: 10rem 2rem;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(255, 158, 122, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.closing-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.closing-sub {
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
}

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

.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--fg);
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-dim);
  font-style: italic;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .paths-grid {
    grid-template-columns: 1fr;
  }
  .hero-orb {
    width: 300px;
    height: 300px;
  }
  .hero {
    padding: 4rem 1.5rem 3rem;
  }
  .concept { padding: 5rem 1.5rem; }
  .features { padding: 4rem 1.5rem 5rem; }
  .paths { padding: 4rem 1.5rem 5rem; }
  .closing { padding: 6rem 1.5rem; }
  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* ---- HERO BUTTONS ---- */
.hero-btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: all 0.2s ease;
  cursor: pointer;
}
.hero-btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-warm) 100%);
  color: #0a0a0f;
  box-shadow: 0 0 30px rgba(196,156,255,0.25);
}
.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(196,156,255,0.4);
}
.hero-btn-ghost {
  background: transparent;
  color: var(--fg-muted);
  border: 1px solid var(--border);
}
.hero-btn-ghost:hover {
  border-color: rgba(255,255,255,0.15);
  color: var(--fg);
}