/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0d0b1e;
  --surface: #16133a;
  --surface-2: #1e1a47;
  --fg: #f5f0e8;
  --fg-muted: #9b8fb0;
  --accent: #e8a838;
  --accent-2: #7b68ee;
  --calm: #7b9fff;
  --energy: #e8a838;
  --focus: #a78bfa;
  --border: rgba(155, 143, 176, 0.15);
}

html { font-size: 16px; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* === NAV === */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(13,11,30,0.9) 0%, transparent 100%);
}
.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--fg);
}
.nav-tag {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-link {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--fg); }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 48px 80px;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: breathe 8s ease-in-out infinite;
}

.orb-ring-1 {
  width: 220px; height: 220px;
  border-color: rgba(123, 104, 238, 0.25);
  animation-delay: 0s;
}
.orb-ring-2 {
  width: 380px; height: 380px;
  border-color: rgba(123, 104, 238, 0.12);
  animation-delay: 0.5s;
}
.orb-ring-3 {
  width: 560px; height: 560px;
  border-color: rgba(123, 104, 238, 0.06);
  animation-delay: 1s;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.7; }
}

.orb-center {
  position: absolute;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,104,238,0.3) 0%, rgba(123,104,238,0.05) 70%, transparent 100%);
  animation: orb-pulse 8s ease-in-out infinite;
}

@keyframes orb-pulse {
  0%, 100% { transform: scale(1); background: radial-gradient(circle, rgba(123,104,238,0.3) 0%, rgba(123,104,238,0.05) 70%, transparent 100%); }
  50% { transform: scale(1.15); background: radial-gradient(circle, rgba(232,168,56,0.25) 0%, rgba(232,168,56,0.05) 70%, transparent 100%); }
}

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

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

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

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #0d0b1e;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 16px 36px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(232,168,56,0.3); }

.hero-note {
  font-size: 0.78rem;
  color: var(--fg-muted);
}

/* === SECTION COMMON === */
.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-sub {
  color: var(--fg-muted);
  font-size: 1rem;
  max-width: 500px;
  line-height: 1.7;
}

/* === SESSIONS === */
.sessions {
  padding: 100px 48px;
  background: var(--surface);
  text-align: center;
}

.session-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 48px auto 0;
}

.session-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: left;
  transition: transform 0.3s, border-color 0.3s;
}
.session-card:hover { transform: translateY(-4px); }

.session-card--calm { border-top: 2px solid var(--calm); }
.session-card--energy { border-top: 2px solid var(--energy); }
.session-card--focus { border-top: 2px solid var(--focus); }

.session-icon { margin-bottom: 20px; }

.session-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 12px;
}

.session-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.session-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.session-specs li {
  font-size: 0.8rem;
  color: var(--fg-muted);
  padding-left: 16px;
  position: relative;
}
.session-specs li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--fg-muted);
  opacity: 0.4;
}

/* === HOW === */
.how {
  padding: 100px 48px;
  text-align: center;
}

.how-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 860px;
  margin: 56px auto 0;
  gap: 0;
}

.step {
  flex: 1;
  text-align: left;
  max-width: 220px;
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 12px;
  line-height: 1;
}

.step-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 8px;
}

.step-body p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.step-connector {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--fg-muted), transparent);
  margin: 0 16px;
  flex-shrink: 0;
  opacity: 0.3;
}

/* === DIFFERENT === */
.different {
  padding: 100px 48px;
  background: var(--surface);
  text-align: center;
}

.compare {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  max-width: 700px;
  margin: 48px auto 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.compare-item {
  flex: 1;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.compare-item:first-child { background: var(--surface-2); }

.compare-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--fg-muted);
  font-size: 1.2rem;
  background: var(--surface);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.compare-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
}

.compare-val {
  font-size: 0.95rem;
  font-weight: 400;
}
.compare-val--old { color: var(--fg-muted); }
.compare-val--new { color: var(--fg); font-weight: 500; }

/* === MANIFESTO / PRICING === */
.manifesto {
  padding: 100px 48px 120px;
  text-align: center;
}

.manifesto-inner { max-width: 600px; margin: 0 auto; }

.manifesto-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--fg);
  margin-bottom: 16px;
  line-height: 1.1;
}

.manifesto-sub {
  color: var(--fg-muted);
  font-size: 1rem;
  margin-bottom: 48px;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 40px;
  margin-bottom: 56px;
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent), var(--focus));
}

.pricing-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(232,168,56,0.3);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.pricing-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-per {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 32px;
}

.pricing-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-includes li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}
.pricing-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8rem;
}

.btn-checkout {
  display: inline-block;
  background: var(--accent);
  color: #0d0b1e;
  font-weight: 500;
  font-size: 1rem;
  padding: 18px 48px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.03em;
  width: 100%;
  max-width: 340px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-checkout:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(232,168,56,0.3); }

.pricing-note {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 16px;
  opacity: 0.6;
}

.manifesto-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--fg-muted);
  line-height: 1.5;
  border-left: 2px solid var(--accent);
  padding-left: 28px;
  text-align: left;
}

/* === FOOTER === */
footer {
  padding: 48px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.footer-links {
  font-size: 0.78rem;
  color: var(--fg-muted);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-sep { opacity: 0.4; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 100px 24px 60px; }
  .hero-headline { font-size: 2.6rem; }
  .sessions { padding: 60px 24px; }
  .session-grid { grid-template-columns: 1fr; gap: 16px; }
  .how { padding: 60px 24px; }
  .how-steps { flex-direction: column; gap: 32px; }
  .step-connector { width: 40px; height: 1px; margin: 0; }
  .compare { flex-direction: column; }
  .compare-divider { width: 100%; height: 24px; border: none; border-top: 1px solid var(--border); }
  .manifesto { padding: 60px 24px 80px; }
  .pricing-card { padding: 36px 24px; }
  .pricing-price { font-size: 3rem; }
  .manifesto-quote blockquote { font-size: 1.2rem; }
  footer { padding: 36px 24px; }
}

@media (max-width: 480px) {
  .session-card { padding: 24px 20px; }
}
