:root {
  --navy: #0B1628;
  --navy-mid: #132238;
  --navy-light: #1C3352;
  --gold: #C8A951;
  --gold-light: #E2C97E;
  --gold-dim: #8A7033;
  --cream: #F5F0E8;
  --cream-muted: #D8D0C0;
  --white: #FFFFFF;
  --text: #C8CDD6;
  --text-dim: #7A8599;
}

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

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

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

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

/* ─── NAV ─── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 4rem;
  border-bottom: 1px solid rgba(200,169,81,0.15);
}
.nav-brand { display: flex; align-items: center; gap: 0.6rem; }
.brand-mark { color: var(--gold); font-size: 1.1rem; }
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.12em;
}
.nav-tagline { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-dim); }

/* ─── HERO ─── */
.hero {
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 5rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,169,81,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,81,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-content { max-width: 640px; position: relative; z-index: 1; }
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.8rem;
  letter-spacing: -0.01em;
}
.hero-headline em { font-style: italic; color: var(--gold); }
.hero-lede {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 2rem;
}
.hero-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-light);
}

/* ─── HERO VISUAL ─── */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 380px;
  height: 380px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.mentor-ring { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.ring-outer {
  position: absolute;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(200,169,81,0.2);
  border-radius: 50%;
  animation: spin-slow 30s linear infinite;
}
.ring-outer::before {
  content: '';
  position: absolute;
  top: -3px; left: 50%;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-50%);
}
.ring-mid {
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(200,169,81,0.35);
  border-radius: 50%;
  animation: spin-slow 20s linear infinite reverse;
}
.ring-mid::before {
  content: '';
  position: absolute;
  bottom: -3px; left: 50%;
  width: 6px; height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
  transform: translateX(-50%);
}
.ring-inner {
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(200,169,81,0.1), inset 0 0 30px rgba(200,169,81,0.05);
}
.ring-icon { font-size: 2.5rem; color: var(--gold); }

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

/* ─── SECTION COMMON ─── */
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
  font-weight: 500;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-lede {
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 540px;
  margin-bottom: 3rem;
}

/* ─── HOW ─── */
.how {
  padding: 7rem 4rem;
  background: var(--navy-mid);
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  border-top: 1px solid rgba(200,169,81,0.12);
}
.how-step {
  padding: 2.5rem 2rem 2.5rem 0;
  border-right: 1px solid rgba(200,169,81,0.12);
  padding-right: 2rem;
}
.how-step:last-child { border-right: none; }
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(200,169,81,0.15);
  margin-bottom: 1rem;
  line-height: 1;
}
.step-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
  font-family: 'DM Sans', sans-serif;
}
.step-desc { font-size: 0.9rem; color: var(--text-dim); line-height: 1.7; }

/* ─── TOOLS ─── */
.tools { padding: 7rem 4rem; }
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(200,169,81,0.1);
  border: 1px solid rgba(200,169,81,0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 2.5rem;
}
.tool-card {
  background: var(--navy);
  padding: 2rem 1.75rem;
  transition: background 0.2s;
}
.tool-card:hover { background: var(--navy-mid); }
.tool-icon { font-size: 1.4rem; color: var(--gold); margin-bottom: 0.75rem; }
.tool-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.tool-card p { font-size: 0.82rem; color: var(--text-dim); }

/* ─── PRICING ─── */
.pricing { padding: 7rem 4rem; background: var(--navy-mid); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.pricing-card {
  background: var(--navy);
  border: 1px solid rgba(200,169,81,0.15);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(200,169,81,0.08);
}
.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.3rem 1rem;
  border-radius: 20px;
}
.tier-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.tier-range {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.tier-desc { font-size: 0.88rem; color: var(--text-dim); margin-bottom: 1.5rem; line-height: 1.6; }
.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.tier-features li {
  font-size: 0.85rem;
  color: var(--text);
  padding-left: 1.2rem;
  position: relative;
}
.tier-features li::before {
  content: '◆';
  position: absolute;
  left: 0;
  font-size: 0.5rem;
  color: var(--gold);
  top: 0.4rem;
}

/* ─── MANIFESTO ─── */
.manifesto {
  padding: 7rem 4rem;
  background: var(--navy);
  text-align: center;
}
.manifesto-quote {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.manifesto-quote p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
}
.manifesto-quote::before {
  content: '"';
  display: block;
  font-size: 8rem;
  color: rgba(200,169,81,0.12);
  font-family: 'Playfair Display', serif;
  line-height: 0.5;
  margin-bottom: 1.5rem;
}

/* ─── CLOSING ─── */
.closing {
  padding: 7rem 4rem 8rem;
  text-align: center;
  background: linear-gradient(to bottom, var(--navy) 0%, var(--navy-mid) 100%);
}
.closing-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.closing-sub {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 520px;
  margin: 0 auto;
}

/* ─── FOOTER ─── */
.footer {
  padding: 2.5rem 4rem;
  border-top: 1px solid rgba(200,169,81,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.5rem; }
.footer-tagline { font-size: 0.78rem; color: var(--text-dim); letter-spacing: 0.15em; text-transform: uppercase; }
.footer-copy { font-size: 0.78rem; color: var(--text-dim); width: 100%; text-align: center; padding-top: 1rem; border-top: 1px solid rgba(200,169,81,0.08); margin-top: 0.5rem; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 3rem 2rem; min-height: auto; }
  .hero-visual { width: 240px; height: 240px; margin: 3rem auto 0; }
  .ring-outer { width: 220px; height: 220px; }
  .ring-mid { width: 170px; height: 170px; }
  .ring-inner { width: 110px; height: 110px; }
  .nav { padding: 1.25rem 2rem; }
  .how-steps { grid-template-columns: 1fr; }
  .how-step { border-right: none; border-bottom: 1px solid rgba(200,169,81,0.12); padding-right: 0; padding-bottom: 2rem; }
  .how-step:last-child { border-bottom: none; }
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .how, .tools, .pricing, .manifesto, .closing { padding: 4rem 2rem; }
  .footer { padding: 2rem; }
}
@media (max-width: 600px) {
  .tools-grid { grid-template-columns: 1fr; }
  .hero { padding: 2rem 1.5rem; }
  .how, .tools, .pricing, .manifesto, .closing { padding: 3rem 1.5rem; }
  .nav { padding: 1rem 1.5rem; }
  .nav-tagline { display: none; }
}