/* ============================================================
   JOHN MITCHINSON × ODYSSEY COACHING
   style.css — Mobile-first, dark theme
   ============================================================ */

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

/* === DESIGN TOKENS === */
:root {
  --bg:              #080808;
  --surface:         #111111;
  --surface-raised:  #1a1a1a;
  --border:          #1f1f1f;
  --orange:          #C09630;
  --orange-hover:    #A8832A;
  --orange-glow:     rgba(192, 150, 48, 0.12);
  --orange-glow-lg:  rgba(192, 150, 48, 0.22);
  --white:           #f5f5f5;
  --grey-1:          #a3a3a3;
  --grey-2:          #404040;
  --font:            'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w:           700px;
  --max-w-wide:      1100px;
  --radius:          12px;
  --radius-sm:       8px;
  --ease:            0.2s ease;
}

/* === BASE === */
html { scroll-behavior: smooth; }

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

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

a {
  color: var(--orange);
  text-decoration: none;
  transition: color var(--ease);
}
a:hover { color: var(--orange-hover); }

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 20px;
}

.section          { padding: 88px 0; }
.section-dark     { background: var(--surface); }

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--ease);
  text-decoration: none;
  border: none;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--orange);
  color: #000;
  padding: 14px 28px;
  font-size: 15px;
}
.btn-primary:hover {
  background: var(--orange-hover);
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px var(--orange-glow-lg);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
  padding: 12px 24px;
  font-size: 15px;
}
.btn-ghost:hover {
  border-color: var(--grey-1);
  color: var(--white);
}

.btn-sm  { padding: 9px 16px;  font-size: 13px; }
.btn-lg  { padding: 16px 32px; font-size: 16px; }
.btn-xl  { padding: 20px 40px; font-size: 18px; }

/* === SITE HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: transform 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
}
.logo-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  line-height: 1.2;
}
.logo-sub {
  font-size: 10px;
  color: var(--grey-1);
  line-height: 1;
  letter-spacing: 0.03em;
}

/* === HERO === */
.hero {
  position: relative;
  padding: 108px 0 88px;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 0%,
    rgba(192, 150, 48, 0.09) 0%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: var(--max-w);
  margin: 0 auto;
}

.urgency-pill {
  display: inline-block;
  background: var(--orange-glow);
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.hero-headline {
  font-size: clamp(44px, 9vw, 76px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin-bottom: 22px;
  color: var(--white);
}

.hero-sub {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--grey-1);
  line-height: 1.65;
  margin-bottom: 44px;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cta-note {
  font-size: 13px;
  color: var(--grey-1);
}

/* === COUNTDOWN === */
.countdown-wrap {
  margin-top: 44px;
}

.countdown-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-1);
  margin-bottom: 14px;
}

.countdown {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  min-width: 76px;
}

.countdown-num {
  font-size: 38px;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.countdown-text {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-1);
}

.countdown-sep {
  font-size: 28px;
  font-weight: 700;
  color: var(--grey-2);
  line-height: 1;
  margin-bottom: 20px;
  flex-shrink: 0;
}

@media (max-width: 400px) {
  .countdown-unit  { min-width: 62px; padding: 12px 10px; }
  .countdown-num   { font-size: 30px; }
  .countdown-sep   { font-size: 22px; }
  .countdown       { gap: 6px; }
}

/* === STATS BAR === */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.stats-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 28px 36px;
}

.stat-number {
  font-size: 30px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 12px;
  color: var(--grey-1);
  text-align: center;
}

.stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 12px 0;
}

/* === SECTION HEADER === */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--white);
}

/* === WHO IT'S FOR === */
.for-who-list {
  list-style: none;
  max-width: 600px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.for-who-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--grey-1);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.for-who-list li:last-child { border-bottom: none; }

.check {
  color: var(--orange);
  font-weight: 700;
  font-size: 17px;
  flex-shrink: 0;
  margin-top: 1px;
}

.callout-box {
  max-width: 560px;
  margin: 40px auto 0;
  background: var(--orange-glow);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: var(--radius);
  padding: 22px 32px;
  text-align: center;
}
.callout-box p {
  font-size: 16px;
  font-weight: 600;
  color: var(--orange);
  line-height: 1.45;
}

/* === OUTCOMES === */
.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
}

.outcome-card {
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color var(--ease), transform var(--ease);
}
.outcome-card:hover {
  border-color: rgba(249, 115, 22, 0.3);
  transform: translateY(-2px);
}

.outcome-icon { font-size: 34px; margin-bottom: 18px; }

.outcome-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
  letter-spacing: -0.01em;
}
.outcome-card p {
  font-size: 14px;
  color: var(--grey-1);
  line-height: 1.65;
}

/* === WHAT'S INCLUDED === */
.included-list {
  max-width: 660px;
  margin: 0 auto 64px;
  display: flex;
  flex-direction: column;
}

.included-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.included-item:first-child { border-top: 1px solid var(--border); }

.included-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: var(--orange-glow);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-top: 2px;
}

.included-item h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}
.included-item p {
  font-size: 14px;
  color: var(--grey-1);
  line-height: 1.6;
}

/* PRICE BLOCK */
.price-block {
  max-width: 460px;
  margin: 0 auto;
  text-align: center;
}

.price-inner {
  background: var(--surface);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: 0 0 60px var(--orange-glow);
}

.price-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.price {
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}

.price-note {
  font-size: 13px;
  color: var(--grey-1);
  margin-bottom: 28px;
  line-height: 1.5;
}

/* === TESTIMONIALS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 700px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stars {
  color: var(--orange);
  font-size: 13px;
  letter-spacing: 3px;
}

.testimonial-card blockquote {
  font-size: 14px;
  line-height: 1.7;
  color: var(--grey-1);
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange-glow);
  border: 1px solid rgba(249, 115, 22, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: var(--orange);
  flex-shrink: 0;
}

.author-name { font-size: 13px; font-weight: 600; color: var(--white); }
.author-meta { font-size: 12px; color: var(--grey-2); margin-top: 2px; }

/* === RESULTS === */
.results-section { background: var(--bg); }

.section-sub {
  font-size: 16px;
  color: var(--grey-1);
  max-width: 520px;
  margin: 12px auto 0;
  line-height: 1.65;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 860px;
  margin: 52px auto 24px;
}

@media (max-width: 540px) {
  .results-grid { grid-template-columns: 1fr; }
}

.results-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  line-height: 0;
}

.results-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.results-img-wrap:hover img { transform: scale(1.02); }

.results-disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--grey-2);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

/* === ABOUT === */
.about-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 52px;
  max-width: 860px;
  margin: 0 auto;
}

@media (min-width: 700px) {
  .about-inner { flex-direction: row; align-items: flex-start; }
}

.about-photo-wrapper { flex-shrink: 0; }

/* Placeholder — remove when photo is added */
.about-photo-placeholder {
  width: 260px;
  height: 260px;
  background: var(--surface);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-2);
  font-size: 13px;
  text-align: center;
  padding: 20px;
}

/* Real photo styles */
.about-photo-wrapper img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 3px solid rgba(192, 150, 48, 0.35);
  box-shadow: 0 0 40px rgba(192, 150, 48, 0.15);
}

.about-content { flex: 1; }

.about-content h2 {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 10px 0 22px;
  color: var(--white);
}

.about-content p {
  font-size: 16px;
  color: var(--grey-1);
  line-height: 1.75;
  margin-bottom: 18px;
}

.about-cta-group { margin-top: 28px; }

/* === FAQ === */
.faq-list {
  max-width: 660px;
  margin: 0 auto;
}

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  user-select: none;
  transition: color var(--ease);
}

.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker               { display: none; }
.faq-question:hover                  { color: var(--orange); }

.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.25s ease;
  line-height: 1;
}

.faq-item[open] .faq-icon { transform: rotate(45deg); }

.faq-answer { padding: 0 0 22px; }

.faq-answer p {
  font-size: 15px;
  color: var(--grey-1);
  line-height: 1.75;
}

/* === FINAL CTA SECTION === */
.cta-section {
  background: radial-gradient(ellipse 80% 60% at 50% 50%,
    rgba(192, 150, 48, 0.1) 0%, transparent 70%);
}

.cta-inner {
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}

.cta-headline {
  font-size: clamp(36px, 6vw, 58px);
  font-weight: 900;
  letter-spacing: -0.035em;
  margin: 10px 0 22px;
  color: var(--white);
}

.cta-body {
  font-size: 18px;
  color: var(--grey-1);
  margin-bottom: 44px;
  line-height: 1.65;
}

.cta-alternatives {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cta-alternatives p   { font-size: 14px; color: var(--grey-1); }
.cta-alternatives strong { color: var(--white); }

/* === SITE FOOTER === */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 52px 0 36px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.footer-logo     { font-size: 18px; font-weight: 800; color: var(--white); letter-spacing: -0.02em; }
.footer-tagline  { font-size: 13px; color: var(--grey-1); margin-top: 4px; }

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 14px;
  color: var(--grey-1);
  text-decoration: none;
  transition: color var(--ease);
}
.footer-links a:hover { color: var(--white); }

.footer-legal { font-size: 12px; color: var(--grey-2); }

/* ============================================================
   NEWSLETTER PAGE
   ============================================================ */

.newsletter-hero {
  min-height: calc(100vh - 62px);
  display: flex;
  align-items: center;
  padding: 80px 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%,
    rgba(192, 150, 48, 0.08) 0%, transparent 70%);
}

.newsletter-inner {
  max-width: 520px;
  text-align: center;
  margin: 0 auto;
}

.newsletter-headline {
  font-size: clamp(36px, 7vw, 54px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin: 12px 0 20px;
}

.newsletter-sub {
  font-size: 16px;
  color: var(--grey-1);
  line-height: 1.7;
  margin-bottom: 44px;
}

.newsletter-form {
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
  position: relative;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 11px;
  font-weight: 700;
  color: var(--grey-1);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-group input {
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  padding: 13px 16px;
  width: 100%;
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
}
.form-group input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}
.form-group input::placeholder { color: var(--grey-2); }

.form-note {
  font-size: 12px;
  color: var(--grey-2);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

.newsletter-proof {
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
}

.newsletter-proof p {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-1);
  margin-bottom: 14px;
}

.newsletter-proof ul { list-style: none; }

.newsletter-proof li {
  font-size: 14px;
  color: var(--grey-1);
  padding: 7px 0;
  display: flex;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}
.newsletter-proof li:last-child { border-bottom: none; }

/* ============================================================
   RESPONSIVE OVERRIDES
   ============================================================ */

@media (max-width: 640px) {
  .stat-divider        { display: none; }
  .stat                { padding: 20px 18px; }
  .hero                { padding: 80px 0 64px; }
  .section             { padding: 64px 0; }
  .btn-xl              { padding: 18px 28px; font-size: 16px; }
  .price-inner         { padding: 32px 24px; }
  .about-photo-placeholder,
  .about-photo-wrapper img { width: 100%; height: 260px; }
  .newsletter-form     { padding: 24px 20px; }
  .newsletter-proof    { padding: 20px; }
}

/* ============================================================
   STRIPE CHECKOUT MODAL
   ============================================================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

/* Launch confirmation card */
.modal-launch {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 52px 40px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7);
  transform: translateY(12px) scale(0.97);
  transition: transform 0.28s ease;
}

.modal-overlay.is-open .modal-launch {
  transform: translateY(0) scale(1);
}

/* Close × */
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--grey-1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--ease), color var(--ease);
}
.modal-close:hover { border-color: var(--grey-1); color: var(--white); }

/* Spinner */
.modal-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  flex-shrink: 0;
}

@keyframes spin { to { transform: rotate(360deg); } }

.launch-icon  { font-size: 28px; line-height: 1; }

.launch-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.launch-body {
  font-size: 14px;
  color: var(--grey-1);
  line-height: 1.65;
}

.launch-manual-btn {
  margin-top: 8px;
  width: 100%;
}

.launch-cancel {
  background: none;
  border: none;
  color: var(--grey-2);
  font-family: var(--font);
  font-size: 13px;
  cursor: pointer;
  padding: 4px 8px;
  transition: color var(--ease);
}
.launch-cancel:hover { color: var(--grey-1); }

@media (max-width: 480px) {
  .modal-launch { padding: 48px 24px 28px; }
}


/* ============================================================
   GLOBAL NAV (added for multi-page restructure)
   ============================================================ */

/* Nav sits between logo and header-actions */
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  color: var(--grey-1);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: color var(--ease), background var(--ease);
  letter-spacing: -0.01em;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.nav-link.active { color: var(--white); }

/* Header actions group: CTA + hamburger */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Hamburger toggle — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  gap: 5px;
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Animated hamburger → X */
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 680px) {
  .nav-toggle { display: flex; }

  .site-nav {
    display: none;
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    background: rgba(8, 8, 8, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 16px 16px;
    z-index: 99;
  }
  .site-nav.is-open { display: flex; }

  .nav-link {
    font-size: 15px;
    padding: 12px 8px;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }
  .nav-link:last-child { border-bottom: none; }
}


/* ============================================================
   HOMEPAGE — /index.html
   ============================================================ */

/* --- Home Hero --- */
.home-hero {
  padding: 100px 0 80px;
  text-align: center;
}

.home-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-glow);
  border: 1px solid rgba(192, 150, 48, 0.25);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 24px;
}

.home-headline {
  font-size: clamp(38px, 7vw, 72px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 22px;
}

.home-sub {
  font-size: clamp(17px, 2.5vw, 20px);
  color: var(--grey-1);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.home-hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* --- Proof / Logo Strip --- */
.proof-strip {
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.proof-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px 48px;
  flex-wrap: wrap;
  text-align: center;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.proof-num {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--orange);
  line-height: 1;
}

.proof-label {
  font-size: 13px;
  color: var(--grey-1);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* --- Home About (brief) --- */
.home-about {
  padding: 88px 0;
  display: flex;
  align-items: center;
  gap: 56px;
}

.home-about-img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(192, 150, 48, 0.35);
  flex-shrink: 0;
  transition: border-color 0.3s ease;
}
.home-about-img:hover { border-color: rgba(192, 150, 48, 0.7); }

.home-about-text h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.home-about-text p {
  color: var(--grey-1);
  line-height: 1.7;
  margin-bottom: 12px;
}

.home-about-text p:last-of-type { margin-bottom: 24px; }

@media (max-width: 680px) {
  .home-about {
    flex-direction: column;
    text-align: center;
    padding: 64px 0;
    gap: 32px;
  }
}

/* --- Home How it Works (Steps) --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color var(--ease);
}
.step-card:hover { border-color: rgba(192, 150, 48, 0.3); }

.step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.step-card h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 14px;
  color: var(--grey-1);
  line-height: 1.6;
}

/* --- Home CTA section --- */
.home-cta {
  padding: 100px 0;
  text-align: center;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.home-cta h2 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.home-cta p {
  font-size: 17px;
  color: var(--grey-1);
  max-width: 480px;
  margin: 0 auto 36px;
}


/* ============================================================
   APPLY PAGE — /apply/index.html
   ============================================================ */

.apply-hero {
  padding: 80px 0 56px;
  text-align: center;
}

.apply-hero h1 {
  font-size: clamp(30px, 6vw, 54px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.apply-hero p {
  font-size: 18px;
  color: var(--grey-1);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Who it's for columns */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 56px 0 64px;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 560px) {
  .who-grid { grid-template-columns: 1fr; }
}

.who-col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.who-col h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  color: var(--white);
}

.who-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.who-col ul li {
  font-size: 14px;
  color: var(--grey-1);
  line-height: 1.5;
  display: flex;
  gap: 10px;
}

.who-col.good ul li::before { content: '✓'; color: var(--orange); flex-shrink: 0; font-weight: 700; }
.who-col.bad  ul li::before { content: '✕'; color: var(--grey-2);  flex-shrink: 0; font-weight: 700; }

/* Application Form */
.apply-form-wrap {
  max-width: var(--max-w);
  margin: 0 auto 80px;
}

.apply-form-wrap h2 {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.apply-form-wrap > p {
  color: var(--grey-1);
  margin-bottom: 32px;
  font-size: 15px;
}

.apply-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 520px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  padding: 12px 14px;
  width: 100%;
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a3a3a3' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

.form-group select option {
  background: var(--surface-raised);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey-2); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(192, 150, 48, 0.5);
  box-shadow: 0 0 0 3px rgba(192, 150, 48, 0.1);
}

.form-note {
  font-size: 12px;
  color: var(--grey-2);
  text-align: center;
  margin-top: 4px;
}

/* Success message */
.success-msg {
  display: none;
  text-align: center;
  padding: 48px 32px;
  background: var(--surface);
  border: 1px solid rgba(192, 150, 48, 0.3);
  border-radius: var(--radius);
}

.success-msg.is-visible { display: block; }

.success-icon {
  font-size: 40px;
  margin-bottom: 16px;
  line-height: 1;
}

.success-msg h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.success-msg p {
  color: var(--grey-1);
  font-size: 15px;
  line-height: 1.6;
}
