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

:root {
  --bg: #07070C;
  --bg-surface: #0E0E17;
  --bg-surface2: #14141F;
  --gold: #E8A838;
  --gold-dim: rgba(232, 168, 56, 0.15);
  --gold-glow: rgba(232, 168, 56, 0.08);
  --white: #F5F0E8;
  --white-60: rgba(245, 240, 232, 0.6);
  --white-30: rgba(245, 240, 232, 0.3);
  --white-10: rgba(245, 240, 232, 0.1);
  --white-05: rgba(245, 240, 232, 0.05);
  --border: rgba(245, 240, 232, 0.08);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }
body { background: var(--bg); color: var(--white); font-family: var(--sans); font-weight: 400; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }

/* === Nav === */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 64px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(7,7,12,0.9) 0%, transparent 100%);
}
.nav-logo { font-family: var(--serif); font-size: 1.25rem; font-weight: 700; color: var(--gold); letter-spacing: -0.02em; }
.nav-badge { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white-30); border: 1px solid var(--border); padding: 4px 12px; border-radius: 100px; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-cta {
  font-size: 0.8rem;
  font-weight: 500;
  color: #07070C;
  background: var(--gold);
  padding: 8px 20px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: #FFB84D; transform: scale(1.03); }

/* === Hero === */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 64px 80px;
  gap: 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 65%);
  pointer-events: none;
}
.hero-nova-ring {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.nova-orb {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #FFB84D 0%, #E8A838 30%, #B8780A 60%, #7A5005 100%);
  box-shadow:
    0 0 60px rgba(232,168,56,0.4),
    0 0 120px rgba(232,168,56,0.2),
    0 0 200px rgba(232,168,56,0.1),
    inset 0 0 40px rgba(255,200,100,0.3);
  position: relative;
  animation: nova-breathe 4s ease-in-out infinite;
}
.nova-core {
  position: absolute;
  inset: 30%;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(2px);
}
@keyframes nova-breathe {
  0%, 100% { transform: scale(1); box-shadow: 0 0 60px rgba(232,168,56,0.4), 0 0 120px rgba(232,168,56,0.2), 0 0 200px rgba(232,168,56,0.1), inset 0 0 40px rgba(255,200,100,0.3); }
  50% { transform: scale(1.04); box-shadow: 0 0 80px rgba(232,168,56,0.5), 0 0 160px rgba(232,168,56,0.25), 0 0 240px rgba(232,168,56,0.15), inset 0 0 50px rgba(255,200,100,0.4); }
}
.hero-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(232,168,56,0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-lede {
  font-size: 1.05rem;
  color: var(--white-60);
  max-width: 480px;
  line-height: 1.7;
  font-weight: 300;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-drop 2s ease-in-out infinite;
}
@keyframes scroll-drop {
  0% { opacity: 0; transform: scaleY(0) translateY(-10px); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1) translateY(0); }
  100% { opacity: 0; transform: scaleY(0) translateY(10px); transform-origin: bottom; }
}

/* === Stats === */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 64px;
  gap: 0;
}
.stat { text-align: center; padding: 0 48px; }
.stat-num { display: block; font-family: var(--serif); font-size: 2.5rem; font-weight: 700; color: var(--gold); letter-spacing: -0.03em; }
.stat-label { display: block; font-size: 0.75rem; color: var(--white-40); letter-spacing: 0.05em; margin-top: 6px; text-transform: uppercase; }
.stat-divider { width: 1px; height: 60px; background: var(--border); }

/* === Journey === */
.journey { padding: 120px 64px; background: var(--bg); }
.journey-header { text-align: center; margin-bottom: 80px; }
.section-tag { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.section-title { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 700; color: var(--white); letter-spacing: -0.02em; }
.journey-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step { flex: 1; position: relative; }
.step-num { font-family: var(--serif); font-size: 5rem; font-weight: 900; color: var(--white-05); letter-spacing: -0.04em; margin-bottom: -16px; line-height: 1; }
.step-block { padding: 0 40px; }
.step-icon { margin-bottom: 20px; }
.step-title { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.step-desc { font-size: 0.9rem; color: var(--white-50); line-height: 1.7; font-weight: 300; }
.step-connector { display: flex; align-items: center; padding-top: 40px; }
.connector-line { flex: 1; height: 1px; background: var(--border); max-width: 80px; }
.connector-arrow { padding: 0 8px; }

/* === Features === */
.features { padding: 120px 64px; background: var(--bg-surface); }
.features-header { text-align: center; margin-bottom: 72px; }
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
}
.feat { background: var(--bg-surface2); padding: 48px; }
.feat-primary { background: linear-gradient(135deg, #1A1208 0%, var(--bg-surface2) 100%); }
.feat-wide { grid-column: 1 / -1; }
.feat-icon { margin-bottom: 24px; }
.feat-title { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.feat-desc { font-size: 0.9rem; color: var(--white-50); line-height: 1.7; font-weight: 300; }

/* === Nova Voice === */
.nova-voice { padding: 120px 64px; background: var(--bg); position: relative; }
.nova-voice::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, var(--gold-glow) 0%, transparent 60%);
  pointer-events: none;
}
.nova-voice-inner { max-width: 760px; margin: 0 auto; position: relative; }
.nova-voice-badge { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 32px; }
.nova-quote {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  font-weight: 400;
  border: none;
  padding: 0;
  margin-bottom: 40px;
}
.nova-signature { display: flex; align-items: center; gap: 12px; }
.nova-sig-orb { width: 24px; height: 24px; border-radius: 50%; background: radial-gradient(circle, #FFB84D, #E8A838); box-shadow: 0 0 12px rgba(232,168,56,0.5); flex-shrink: 0; }
.nova-signature span { font-size: 0.8rem; color: var(--white-40); letter-spacing: 0.05em; }

/* === Closing === */
.closing { padding: 120px 64px; background: var(--bg-surface); text-align: center; }
.closing-title { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 700; color: var(--white); letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 24px; }
.closing-sub { font-size: 1rem; color: var(--white-50); max-width: 560px; margin: 0 auto; line-height: 1.7; font-weight: 300; }

/* === Footer === */
.footer { padding: 40px 64px; border-top: 1px solid var(--border); background: var(--bg); display: flex; align-items: center; justify-content: space-between; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-logo { font-family: var(--serif); font-size: 1rem; font-weight: 700; color: var(--white); }
.footer-divider { color: var(--white-20); }
.footer-nova { font-size: 0.8rem; color: var(--white-40); }
.footer-note { font-size: 0.75rem; color: var(--white-30); }

/* === Responsive === */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { grid-template-columns: 1fr; padding: 100px 24px 80px; text-align: center; }
  .hero-nova-ring { order: -1; }
  .nova-orb { width: 180px; height: 180px; }
  .hero-lede { margin: 0 auto; }
  .stats-inner { flex-direction: column; gap: 32px; padding: 40px 24px; }
  .stat-divider { display: none; }
  .stat { padding: 0; }
  .journey { padding: 80px 24px; }
  .journey-steps { flex-direction: column; }
  .step-connector { transform: rotate(90deg); padding: 0; }
  .step-block { padding: 0 0 48px; }
  .features { padding: 80px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .feat-wide { grid-column: auto; }
  .nova-voice { padding: 80px 24px; }
  .closing { padding: 80px 24px; }
  .footer { flex-direction: column; gap: 16px; padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 1.6rem; }
  .closing-title { font-size: 1.6rem; }
}
