:root {
  --midnight: #0A0C14;
  --deep-navy: #111420;
  --navy-surface: #141824;
  --gold: #C4A265;
  --gold-light: #D9BA85;
  --gold-dim: rgba(196, 162, 101, 0.15);
  --off-white: #F4F0E8;
  --warm-gray: #B8B0A4;
  --text-muted: #7A746B;
  --border: rgba(196, 162, 101, 0.18);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--midnight);
  color: var(--off-white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 60px;
  border-bottom: 1px solid var(--border);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--gold);
}
.nav__tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 80px 60px;
  gap: 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196, 162, 101, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero__content { display: flex; flex-direction: column; gap: 28px; }
.hero__label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--off-white);
  letter-spacing: -0.01em;
}
.hero__sub {
  font-size: 1.05rem;
  color: var(--warm-gray);
  max-width: 480px;
  line-height: 1.7;
}
.hero__services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.hero__dot { color: var(--gold); }

/* AI Chat Preview */
.hero__ai-preview { display: flex; flex-direction: column; gap: 16px; }
.ai-chat {
  background: var(--deep-navy);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.ai-chat__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.ai-chat__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
}
.ai-chat__dot--active { background: var(--gold); }
.ai-chat__thread {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ai-chat__msg {
  font-size: 0.875rem;
  line-height: 1.6;
  padding: 12px 16px;
  border-radius: 12px;
}
.ai-chat__msg--user {
  background: var(--navy-surface);
  color: var(--off-white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.ai-chat__msg--ai {
  background: rgba(196, 162, 101, 0.08);
  color: var(--warm-gray);
  border-bottom-left-radius: 4px;
}
.ai-chat__msg--confirmed {
  background: rgba(196, 162, 101, 0.12);
  color: var(--gold-light);
  border: 1px solid rgba(196, 162, 101, 0.2);
}
.ai-chat__note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-style: italic;
}
.hero__ai-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.05em;
}

/* STATS */
.stats {
  background: var(--deep-navy);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 60px;
}
.stats__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
}
.stats__item { text-align: center; flex: 1; }
.stats__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.stats__plus {
  font-size: 1.8rem;
  margin-left: 2px;
}
.stats__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 6px;
}
.stats__divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex: 0 0 1px;
}

/* SECTION EYEBROW */
.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-family: var(--font-body);
}

/* SERVICES */
.services {
  padding: 100px 60px;
  background: var(--midnight);
}
.services__header { margin-bottom: 60px; }
.services__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--off-white);
  line-height: 1.2;
  max-width: 500px;
  margin-bottom: 20px;
}
.services__sub {
  color: var(--text-muted);
  max-width: 480px;
  font-size: 1rem;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--midnight);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s;
}
.service-card:hover { background: var(--deep-navy); }
.service-card__icon {
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1;
}
.service-card__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--off-white);
}
.service-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* HOW IT WORKS */
.howitworks {
  padding: 100px 60px;
  background: var(--deep-navy);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.howitworks__header { margin-bottom: 60px; }
.howitworks__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--off-white);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 20px;
}
.step__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--off-white);
  margin-bottom: 12px;
}
.step__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* WAITLIST CTA */
.waitlist-cta {
  padding: 80px 60px;
  background: var(--midnight);
  text-align: center;
}
.waitlist-cta__inner { max-width: 600px; margin: 0 auto; }
.waitlist-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: var(--gold-dim);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 40px;
  margin-bottom: 32px;
}
.waitlist-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.waitlist-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--off-white);
  margin-bottom: 20px;
  line-height: 1.2;
}
.waitlist-cta__sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* PRICING */
.pricing {
  padding: 100px 60px;
  background: var(--deep-navy);
  border-top: 1px solid var(--border);
}
.pricing__header { margin-bottom: 60px; text-align: center; }
.pricing__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--off-white);
}
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}
.pricing-card {
  border: 1px solid var(--border);
  padding: 44px 40px;
  position: relative;
  background: var(--midnight);
}
.pricing-card--featured {
  border-color: rgba(196, 162, 101, 0.5);
  background: var(--navy-surface);
}
.pricing-card__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--midnight);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  font-family: var(--font-body);
  white-space: nowrap;
}
.pricing-card__tier {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.pricing-card__price {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--off-white);
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-card__note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.pricing-card__features li {
  font-size: 0.9rem;
  color: var(--warm-gray);
  padding-left: 20px;
  position: relative;
}
.pricing-card__features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0.6;
}
.pricing-card__status {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.pricing-card__status--gold {
  color: var(--gold);
}
.pricing__footnote {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 40px;
  letter-spacing: 0.03em;
}

/* CLOSING */
.closing {
  padding: 120px 60px;
  background: var(--midnight);
  text-align: center;
}
.closing__inner { max-width: 680px; margin: 0 auto; }
.closing__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--off-white);
  line-height: 1.15;
  margin-bottom: 28px;
}
.closing__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* FOOTER */
.footer {
  background: var(--deep-navy);
  border-top: 1px solid var(--border);
  padding: 40px 60px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--gold);
}
.footer__tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}
.footer__bottom {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer__dot { color: var(--gold); opacity: 0.5; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 60px 32px; gap: 60px; min-height: auto; }
  .hero__ai-preview { display: none; }
  .nav { padding: 24px 32px; }
  .services, .howitworks, .pricing, .closing { padding: 60px 32px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .pricing__grid { grid-template-columns: 1fr; }
  .stats { padding: 40px 32px; }
  .footer { padding: 32px;; }
  .footer__top { flex-direction: column; gap: 12px; align-items: flex-start; }
}
@media (max-width: 600px) {
  .services__grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 36px 28px; }
}