/* ============================================
   Man Enough — Landing Page Styles
   Dark theme, amber accent, strong typography
   ============================================ */

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

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #222222;
  --amber: #d97706;
  --amber-light: #f59e0b;
  --amber-dim: rgba(217, 119, 6, 0.15);
  --amber-glow: rgba(245, 158, 11, 0.08);
  --text: #e8e8e8;
  --text-muted: #888888;
  --text-dim: #555555;
  --border: #2a2a2a;
  --border-light: #333333;

  --font-display: 'Bebas Neue', sans-serif;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --radius: 4px;
  --radius-lg: 8px;
  --radius-xl: 12px;

  --nav-h: 64px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 { font-family: var(--font-head); font-weight: 700; line-height: 1.1; }

/* ---- NAV ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  height: 100%; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.05em;
}
.nav-cta {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--amber);
  text-decoration: none;
  border: 1px solid var(--amber);
  padding: 8px 18px;
  border-radius: var(--radius);
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--amber); color: var(--black); }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 0.95rem; font-weight: 600;
  background: var(--amber);
  color: var(--black);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--radius);
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.25);
}
.btn-primary:active { transform: translateY(0); }
.btn-large { font-size: 1.05rem; padding: 16px 36px; }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 0.95rem; font-weight: 600;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  letter-spacing: 0.04em;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--text-muted); color: var(--text); }

.btn-enroll {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem; font-weight: 700;
  background: var(--amber);
  color: var(--black);
  text-decoration: none;
  padding: 16px 40px;
  border-radius: var(--radius);
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  width: 100%;
}
.btn-enroll:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
  box-shadow: 0 10px 32px rgba(245, 158, 11, 0.3);
}
.btn-enroll-outline {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 0.95rem; font-weight: 600;
  background: transparent;
  color: var(--amber);
  text-decoration: none;
  padding: 15px 32px;
  border-radius: var(--radius);
  border: 1.5px solid var(--amber);
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s;
}
.btn-enroll-outline:hover { background: var(--amber-dim); }

.btn-submit {
  width: 100%;
  font-family: var(--font-head);
  font-size: 1rem; font-weight: 700;
  background: var(--amber);
  color: var(--black);
  border: none;
  padding: 16px;
  border-radius: var(--radius);
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-submit:hover:not(:disabled) { background: var(--amber-light); transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 60px) 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; left: -10%;
  width: 60%; height: 80%;
  background: radial-gradient(ellipse, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -5%; right: -5%;
  width: 40%; height: 50%;
  background: radial-gradient(ellipse, rgba(245, 158, 11, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-bg-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}
.hero-content {
  max-width: 900px; margin: 0 auto;
  position: relative; z-index: 1;
}
.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 0.8rem; font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(3rem, 8vw, 6.5rem);
  color: var(--text);
  line-height: 0.95;
  margin-bottom: 28px;
}
.hero-accent { color: var(--amber); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-stats {
  display: flex; gap: 0; align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 40px;
  margin-top: 40px;
}
.hero-stat { text-align: center; padding: 0 40px; }
.hero-stat:first-child { padding-left: 0; }
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.75rem; font-weight: 800;
  color: var(--text);
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.hero-stat-divider {
  width: 1px; height: 40px;
  background: var(--border);
}

/* ---- PROOF BAR ---- */
.proof-bar {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
  text-align: center;
}
.proof-bar-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.proof-bar-logos {
  display: flex; gap: 0;
  align-items: center; justify-content: center;
  flex-wrap: wrap;
  max-width: 700px; margin: 0 auto;
  border-left: 1px solid var(--border);
}
.proof-logo {
  font-family: var(--font-head);
  font-size: 0.9rem; font-weight: 700;
  color: var(--text-dim);
  padding: 0 28px;
  border-right: 1px solid var(--border);
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.proof-logo:hover { color: var(--text-muted); }

/* ---- SECTIONS ---- */
.section { padding: 100px 24px; }
.section-dark { background: var(--dark); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-family: var(--font-head);
  font-size: 0.75rem; font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.1;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: 60px;
}

/* ---- PROGRAM GRID ---- */
.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.program-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.program-card:hover {
  border-color: var(--amber);
  box-shadow: 0 0 0 1px var(--amber-dim), 0 8px 32px rgba(0,0,0,0.3);
}
.program-week {
  font-family: var(--font-head);
  font-size: 0.7rem; font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.program-card-title {
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 12px;
}
.program-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---- FOR GRID ---- */
.for-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}
.for-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.for-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--amber-dim);
  border: 1px solid var(--amber);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--amber);
  margin-top: 2px;
}
.for-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---- WAITLIST FORM ---- */
.waitlist-wrap { margin-top: 0; }

.waitlist-form-card {
  background: var(--dark-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 480px;
}
.waitlist-header { margin-bottom: 32px; }
.waitlist-title {
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 8px;
}
.waitlist-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.waitlist-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-family: var(--font-head);
  font-size: 0.8rem; font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}
.form-optional { color: var(--text-dim); font-weight: 400; }
.form-input {
  background: var(--dark-3);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  transition: border-color 0.2s;
  width: 100%;
}
.form-input::placeholder { color: var(--text-dim); }
.form-input:focus {
  outline: none;
  border-color: var(--amber);
}
.form-error {
  font-size: 0.875rem;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius);
  padding: 12px;
}
.form-success {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem;
  color: var(--amber-light);
  background: var(--amber-dim);
  border: 1px solid var(--amber);
  border-radius: var(--radius);
  padding: 16px;
}
.waitlist-privacy {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 16px;
}

/* ---- PRICING CTA ---- */
.pricing-cta {
  background: var(--dark-2);
  border: 1px solid var(--amber);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 480px;
  box-shadow: 0 0 0 1px var(--amber-dim), 0 8px 40px rgba(245, 158, 11, 0.1);
  margin-top: 24px;
}
.pricing-cta-inner { display: flex; flex-direction: column; gap: 0; }
.pricing-badge {
  display: inline-flex;
  font-family: var(--font-head);
  font-size: 0.7rem; font-weight: 700;
  color: var(--amber);
  background: var(--amber-dim);
  border: 1px solid var(--amber);
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  width: fit-content;
}
.pricing-cta-title {
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 12px;
}
.pricing-cta-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}
.pricing-price {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 24px;
}
.pricing-amount {
  font-family: var(--font-head);
  font-size: 2.5rem; font-weight: 800;
  color: var(--text);
}
.pricing-period {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.pricing-note {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 16px;
}

/* ---- TESTIMONIALS ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px;
  background: var(--amber-dim);
  border: 1px solid var(--amber);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 0.75rem; font-weight: 700;
  color: var(--amber);
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--font-head);
  font-size: 0.9rem; font-weight: 600;
  color: var(--text);
}
.testimonial-meta { font-size: 0.78rem; color: var(--text-dim); margin-top: 2px; }

/* ---- FAQ ---- */
.faq-list { max-width: 680px; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  font-family: var(--font-head);
  font-size: 1.05rem; font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.faq-a { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ---- FINAL CTA ---- */
.final-cta {
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80%; height: 80%;
  background: radial-gradient(ellipse, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.final-cta-label {
  font-family: var(--font-head);
  font-size: 0.75rem; font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.final-cta-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--text);
  margin-bottom: 20px;
}
.final-cta-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.6;
}
.final-cta-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 32px 24px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.footer-copy { font-size: 0.8rem; color: var(--text-dim); }
.footer-link {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--amber); }

/* ---- CONFIRMATION PAGE ---- */
.confirm-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 80px 24px;
  background: var(--black);
  position: relative;
}
.confirm-page::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60%; height: 60%;
  background: radial-gradient(ellipse, rgba(245, 158, 11, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.confirm-card {
  background: var(--dark-2);
  border: 1px solid var(--amber);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  max-width: 560px;
  width: 100%;
  position: relative; z-index: 1;
  text-align: center;
  box-shadow: 0 0 0 1px var(--amber-dim), 0 16px 64px rgba(0,0,0,0.5);
}
.confirm-icon {
  width: 64px; height: 64px;
  background: var(--amber-dim);
  border: 1.5px solid var(--amber);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.confirm-icon svg { color: var(--amber); }
.confirm-title {
  font-family: var(--font-head);
  font-size: 1.8rem; font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.confirm-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 40px;
}
.confirm-divider {
  width: 40px; height: 2px;
  background: var(--amber);
  margin: 0 auto 40px;
}
.confirm-steps { text-align: left; }
.confirm-step {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 20px;
}
.confirm-step-num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--amber-dim);
  border: 1px solid var(--amber);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 0.75rem; font-weight: 700;
  color: var(--amber);
}
.confirm-step-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding-top: 4px;
}
.confirm-step-text strong { color: var(--text); }
.confirm-footer {
  margin-top: 40px;
  font-size: 0.8rem;
  color: var(--text-dim);
}
.confirm-footer a { color: var(--amber); text-decoration: none; }
.confirm-footer a:hover { text-decoration: underline; }
.nav-enrolled {
  font-family: var(--font-head);
  font-size: 0.75rem; font-weight: 600;
  color: var(--amber);
  border: 1px solid var(--amber);
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.confirm-share {
  background: var(--dark-3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-top: 32px;
  text-align: center;
}
.confirm-share-label {
  font-family: var(--font-head);
  font-size: 0.8rem; font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.confirm-share-actions {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
}
.confirm-share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head);
  font-size: 0.8rem; font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid var(--border-light);
  padding: 9px 16px;
  border-radius: var(--radius);
  letter-spacing: 0.03em;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.confirm-share-btn:hover {
  border-color: var(--text-muted);
  color: var(--text);
  background: var(--dark-2);
}

/* ---- ENROLL PAGE ---- */
.enroll-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: calc(var(--nav-h) + 40px) 24px 80px;
  position: relative;
  overflow: hidden;
}
.enroll-page::before {
  content: '';
  position: absolute;
  top: 10%; left: -15%;
  width: 55%; height: 70%;
  background: radial-gradient(ellipse, rgba(245, 158, 11, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.enroll-page::after {
  content: '';
  position: absolute;
  bottom: 5%; right: -10%;
  width: 35%; height: 45%;
  background: radial-gradient(ellipse, rgba(245, 158, 11, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.enroll-bg-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; opacity: 0.5;
}
.enroll-content {
  position: relative; z-index: 1;
  max-width: 560px; width: 100%;
  display: flex; flex-direction: column; gap: 24px;
}
.enroll-scarcity {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-size: 0.8rem; font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.06em;
  background: var(--amber-dim);
  border: 1px solid rgba(217, 119, 6, 0.3);
  border-radius: 100px;
  padding: 8px 16px;
  width: fit-content;
}
.enroll-scarcity-dot {
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse-amber 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse-amber {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.enroll-header { text-align: center; }
.enroll-eyebrow {
  font-family: var(--font-head);
  font-size: 0.75rem; font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.enroll-title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  color: var(--text);
  margin-bottom: 16px;
  line-height: 0.95;
}
.enroll-accent { color: var(--amber); }
.enroll-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.enroll-snapshot {
  display: flex; align-items: center; justify-content: center;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  gap: 0;
}
.enroll-snapshot-item { text-align: center; padding: 0 20px; }
.enroll-snapshot-val {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem; font-weight: 800;
  color: var(--text);
}
.enroll-snapshot-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: 4px;
  letter-spacing: 0.05em;
}
.enroll-snapshot-div { width: 1px; height: 36px; background: var(--border); }
.enroll-includes {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
}
.enroll-includes-grid { display: flex; flex-direction: column; gap: 14px; }
.enroll-include {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.9rem;
}
.enroll-include svg { flex-shrink: 0; margin-top: 3px; }
.enroll-include strong { color: var(--text); display: block; font-size: 0.9rem; }
.enroll-include p { color: var(--text-muted); margin-top: 3px; font-size: 0.83rem; }
.enroll-form-card {
  background: var(--dark-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
}
.enroll-price {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 24px;
}
.enroll-price-amount {
  font-family: var(--font-head);
  font-size: 2.5rem; font-weight: 800;
  color: var(--text);
  flex-shrink: 0;
}
.enroll-price-meta { display: flex; flex-direction: column; gap: 4px; }
.enroll-price-note { font-size: 0.875rem; color: var(--text-muted); }
.enroll-price-company { font-size: 0.75rem; color: var(--text-dim); }
.enroll-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.enroll-form-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}
.enroll-actions { margin-top: 4px; }
.enroll-trust {
  display: flex; align-items: center; gap: 8px;
  margin-top: 14px;
  font-size: 0.75rem;
  color: var(--text-dim);
}
.enroll-payment-plan {
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.enroll-payment-plan strong { color: var(--text); }
.enroll-payment-plan a { color: var(--amber); text-decoration: none; }
.enroll-payment-plan a:hover { text-decoration: underline; }
.enroll-footer {
  text-align: center;
  font-size: 0.85rem;
}
.enroll-footer a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.enroll-footer a:hover { color: var(--amber); }
.enroll-btn-text, .enroll-btn-loading { display: inline; }
.nav-cohort {
  font-family: var(--font-head);
  font-size: 0.75rem; font-weight: 600;
  color: var(--amber);
  border: 1px solid rgba(217, 119, 6, 0.4);
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

@media (max-width: 640px) {
  .enroll-form-card { padding: 28px 20px; }
  .enroll-price { flex-direction: column; align-items: flex-start; gap: 8px; }
  .enroll-snapshot-item { padding: 0 12px; }
  .enroll-snapshot-val { font-size: 1.3rem; }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-stats { gap: 0; }
  .hero-stat { padding: 0 20px; }
  .program-grid { grid-template-columns: 1fr; }
  .for-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .proof-bar-logos { gap: 0; }
  .proof-logo { padding: 0 16px; }
}

@media (max-width: 640px) {
  .hero-headline { font-size: 2.8rem; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .hero-stat-divider { display: none; }
  .hero-stat { padding: 0; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; }
  .waitlist-form-card { padding: 28px 20px; }
  .pricing-cta { padding: 28px 20px; }
  .section { padding: 60px 20px; }
  .final-cta { padding: 80px 20px; }
  .final-cta-actions { flex-direction: column; align-items: stretch; }
  .confirm-card { padding: 40px 24px; }
}

@media (min-width: 900px) {
  .desktop-only { display: inline; }
}
@media (max-width: 899px) {
  .desktop-only { display: none; }
}

/* ---- PAYMENT PAGE ---- */
.payment-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: calc(var(--nav-h) + 40px) 24px 80px;
  position: relative;
  overflow: hidden;
}
.payment-page::before {
  content: '';
  position: absolute;
  top: 20%; left: -10%;
  width: 50%; height: 60%;
  background: radial-gradient(ellipse, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.payment-page::after {
  content: '';
  position: absolute;
  bottom: 10%; right: -5%;
  width: 30%; height: 40%;
  background: radial-gradient(ellipse, rgba(245, 158, 11, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.payment-bg-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}
.payment-content {
  position: relative; z-index: 1;
  max-width: 600px; width: 100%;
  display: flex; flex-direction: column; gap: 28px;
}
.payment-header { text-align: center; }
.payment-eyebrow {
  font-family: var(--font-head);
  font-size: 0.75rem; font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.payment-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.05;
}
.payment-accent { color: var(--amber); }
.payment-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.payment-includes {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}
.payment-includes-label {
  font-family: var(--font-head);
  font-size: 0.7rem; font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.payment-includes-grid { display: flex; flex-direction: column; gap: 10px; }
.payment-include-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.payment-include-item svg { flex-shrink: 0; }
.payment-form-card {
  background: var(--dark-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
}
.payment-price-display {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 24px;
}
.payment-price-amount {
  font-family: var(--font-head);
  font-size: 2.25rem; font-weight: 800;
  color: var(--text);
}
.payment-price-label { font-size: 0.85rem; color: var(--text-muted); }
.payment-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 28px;
}
.payment-trust {
  display: flex; align-items: center; gap: 8px;
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--text-dim);
}
.payment-back {
  text-align: center;
  font-size: 0.85rem;
}
.payment-back a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.payment-back a:hover { color: var(--amber); }
.payment-cancelled-notice {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
}
.enroll-text, .enroll-loading { display: inline; }

@media (max-width: 640px) {
  .payment-form-card { padding: 28px 20px; }
  .payment-includes { padding: 20px; }
}