:root {
  --bg: #0a0a0a;
  --bg-soft: #141414;
  --bg-card: #1a1a1a;
  --fg: #f5f5f0;
  --fg-muted: #9a9a95;
  --accent: #ff6b1a;
  --accent-soft: #ff6b1a1a;
  --border: #262626;
  --serif: "Fraunces", "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(10, 10, 10, 0.7);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
}
.logo span { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a { opacity: 0.8; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 1; color: var(--accent); }
.nav-cta {
  padding: 10px 20px;
  background: var(--accent);
  color: #000;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  transition: transform 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); }

@media (max-width: 768px) {
  .nav-links { display: none; }
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  padding: 120px 24px 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1208 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1600&q=80") center/cover;
  opacity: 0.25;
  filter: grayscale(40%);
}
.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero p.lede {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary {
  background: var(--accent);
  color: #000;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px -10px var(--accent); }
.btn-secondary {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--fg); }

.hero-img {
  position: relative;
  aspect-ratio: 3/4;
  background: url("https://images.unsplash.com/photo-1583454110551-21f2fa2afe61?w=800&q=80") center/cover;
  border-radius: 20px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6);
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-img { max-width: 400px; margin: 0 auto; }
}

/* ---------- STATS ---------- */
.stats {
  padding: 48px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 600;
  color: var(--accent);
}
.stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
  margin-top: 4px;
}
@media (max-width: 640px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 100px 24px;
}
.section-header {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 18px;
  color: var(--fg-muted);
}

/* ---------- PROGRAMS ---------- */
.programs-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.program-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
  cursor: pointer;
}
.program-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.program-img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  position: relative;
}
.program-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.program-body {
  padding: 24px;
}
.program-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}
.program-desc {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 16px;
  min-height: 42px;
}
.program-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 14px;
}
.program-price {
  font-weight: 700;
  color: var(--accent);
}
.program-duration {
  color: var(--fg-muted);
  font-size: 12px;
}

/* ---------- ABOUT / BIO ---------- */
.about {
  background: var(--bg-soft);
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img {
  aspect-ratio: 4/5;
  background: url("https://images.unsplash.com/photo-1571731956672-f2b94d7dd0cb?w=800&q=80") center/cover;
  border-radius: 16px;
}
.about-text h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  margin-bottom: 24px;
}
.about-text p {
  color: var(--fg-muted);
  font-size: 16px;
  margin-bottom: 16px;
}
.about-features {
  margin-top: 32px;
  display: grid;
  gap: 12px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.about-feature::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border-radius: 50%;
  font-size: 12px;
}
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- BENEFITS ---------- */
.benefits-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.benefit-card {
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.benefit-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}
.benefit-desc {
  font-size: 14px;
  color: var(--fg-muted);
}

/* ---------- WAITLIST MODAL ---------- */
html.wl-locked, body.wl-locked {
  overflow: hidden !important;
  height: 100% !important;
  touch-action: none;
  overscroll-behavior: contain;
}
.wl-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
  animation: wl-fade 0.3s ease;
}
@keyframes wl-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.wl-modal {
  width: 100%;
  max-width: 560px;
  background: linear-gradient(180deg, rgba(255,107,26,0.08) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7);
  animation: wl-rise 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes wl-rise {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.wl-modal::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.wl-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.wl-title {
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.wl-desc {
  color: var(--fg-muted);
  font-size: 15px;
  max-width: 460px;
  margin: 0 auto 28px;
}
.wl-form {
  display: grid;
  gap: 16px;
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
}
.wl-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.wl-field { display: grid; gap: 6px; }
.wl-field > span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  font-weight: 600;
}
.wl-field > span em {
  font-style: normal;
  font-weight: 500;
  color: var(--fg-muted);
  opacity: 0.7;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 4px;
}
.wl-field input {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--fg);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s;
}
.wl-field input::placeholder { color: var(--fg-muted); opacity: 0.6; }
.wl-field input:focus { outline: none; border-color: var(--accent); }
.wl-submit {
  justify-self: center;
  margin-top: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  background: var(--accent);
  color: #000;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wl-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px -10px var(--accent); }
.wl-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }
.wl-hp { display: none; }
.wl-error {
  text-align: center;
  font-size: 14px;
  color: #ff6b6b;
  margin: 0;
}
.wl-success { padding: 8px 0; }
.wl-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 28px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 8px auto 16px;
}
.wl-success h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 8px;
}
.wl-success p { color: var(--fg-muted); font-size: 15px; }
@media (max-width: 600px) {
  .wl-modal { padding: 32px 24px; }
  .wl-fields { grid-template-columns: 1fr; }
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  padding: 80px 24px;
  text-align: center;
  background: linear-gradient(135deg, var(--accent) 0%, #ff4500 100%);
  color: #000;
}
.cta-banner h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner p {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 32px;
}
.cta-banner .btn {
  background: #000;
  color: var(--accent);
}
.cta-banner .btn:hover { background: #1a1a1a; }

/* ---------- BLOG ---------- */
.blog-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s;
}
.blog-card:hover { transform: translateY(-4px); }
.blog-img {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
}
.blog-body { padding: 24px; }
.blog-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 600;
}
.blog-title {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.3;
  margin: 8px 0 12px;
}
.blog-read {
  font-size: 13px;
  color: var(--fg-muted);
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 80px 24px 40px;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .logo { margin-bottom: 16px; display: inline-block; }
.footer-brand p { color: var(--fg-muted); font-size: 14px; max-width: 280px; }
.footer h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  color: var(--fg-muted);
}
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer ul a {
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.footer ul a:hover { opacity: 1; color: var(--accent); }
.footer-bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--fg-muted);
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* ---------- QUIZ ---------- */
.quiz-wrap {
  min-height: 100vh;
  padding: 120px 24px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1208 100%);
}
.quiz-card {
  max-width: 640px;
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
}
.quiz-progress {
  height: 4px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 32px;
}
.quiz-progress-bar {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width 0.4s;
}
.quiz-step-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 600;
}
.quiz-question {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 32px;
}
.quiz-options { display: grid; gap: 12px; margin-bottom: 32px; }
.quiz-option {
  padding: 18px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 15px;
  color: var(--fg);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 14px;
}
.quiz-option:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.quiz-option.selected {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.quiz-option-key {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.quiz-option.selected .quiz-option-key {
  background: var(--accent);
  color: #000;
}
.quiz-input {
  width: 100%;
  padding: 18px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--fg);
  font-size: 15px;
  font-family: inherit;
  margin-bottom: 24px;
}
.quiz-input:focus { outline: none; border-color: var(--accent); }
.quiz-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.quiz-back {
  background: none;
  border: none;
  color: var(--fg-muted);
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
}
.quiz-back:hover { color: var(--fg); }
.quiz-result {
  text-align: center;
}
.quiz-result h2 {
  font-family: var(--serif);
  font-size: 40px;
  margin-bottom: 16px;
}
.quiz-result p { color: var(--fg-muted); margin-bottom: 32px; }

/* ---------- BLUEPRINT ---------- */
.blueprint {
  padding: 140px 24px 80px;
  max-width: 780px;
  margin: 0 auto;
}
.blueprint h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.05;
  margin-bottom: 12px;
}
.blueprint .subtitle {
  color: var(--fg-muted);
  font-size: 18px;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.blueprint h2 {
  font-family: var(--serif);
  font-size: 32px;
  margin: 48px 0 16px;
  color: var(--accent);
}
.blueprint h3 {
  font-size: 20px;
  margin: 24px 0 12px;
}
.blueprint p { margin-bottom: 16px; color: var(--fg); opacity: 0.9; }
.blueprint ul { margin: 16px 0 16px 24px; color: var(--fg); opacity: 0.9; }
.blueprint li { margin-bottom: 8px; }
.blueprint strong { color: var(--accent); font-weight: 600; }
.blueprint table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}
.blueprint th, .blueprint td {
  padding: 12px 16px;
  border: 1px solid var(--border);
  text-align: left;
}
.blueprint th {
  background: var(--bg-soft);
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
}
.blueprint hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}
.blueprint blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin: 24px 0;
  font-style: italic;
  color: var(--fg-muted);
}

/* ---------- PRICING ---------- */
.pricing-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(255,107,26,0.08) 0%, var(--bg-card) 100%);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.pricing-name {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.pricing-price {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-period { color: var(--fg-muted); font-size: 14px; margin-bottom: 24px; }
.pricing-features { list-style: none; margin: 24px 0; display: grid; gap: 12px; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
}
.pricing-features li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ---------- UTIL ---------- */
.text-center { text-align: center; }
.hidden { display: none !important; }
