/* ─── CUSTOM PROPERTIES ─── */
:root {
  --orange: #ff671f;
  --orange-dark: #e05510;
  --charcoal: #1a1a1a;
  --slate: #3d3d3d;
  --mid: #6b6b6b;
  --light: #f5f4f1;
  --white: #ffffff;
  --border: #e0ddd6;
  --card-bg: #fafaf8;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── ACCESSIBILITY ─── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* ─── TOP BANNER ─── */
.top-banner {
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.top-banner .countdown-val { color: var(--orange); font-weight: 700; }
.top-banner a { color: var(--orange); text-decoration: underline; }

/* ─── NAV ─── */
nav {
  background: var(--white);
  border-bottom: 2px solid var(--charcoal);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 40px;
  z-index: 999;
}
.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  text-decoration: none;
}
.nav-logo span { color: var(--orange); }
.nav-links { display: flex; gap: 8px; align-items: center; }
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 4px;
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active, .nav-links a[aria-current="page"] {
  background: var(--charcoal);
  color: var(--white);
}
.nav-cta { background: var(--orange) !important; color: var(--white) !important; border-radius: 4px !important; }
.nav-cta:hover { background: var(--orange-dark) !important; }

/* ─── SHARED UTILITIES ─── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 40px; }
.section { padding: 80px 0; }
.section-alt { background: var(--light); }
.section-dark { background: var(--charcoal); color: var(--white); }
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; line-height: 1.15; }

.tag {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1.5px solid var(--orange);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--charcoal);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: 4px;
  border: 2px solid var(--charcoal);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-ghost:hover { background: var(--charcoal); color: var(--white); }

.btn-ghost-white {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: 4px;
  border: 2px solid var(--white);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-ghost-white:hover { background: var(--white); color: var(--charcoal); }

/* ─── EMAIL MODAL ─── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: 8px;
  padding: 48px;
  max-width: 480px;
  width: 90%;
  position: relative;
  border-top: 4px solid var(--orange);
}
.modal-close {
  position: absolute;
  top: 16px; right: 20px;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--mid);
  background: none; border: none;
}
.modal h3 { font-size: 1.6rem; margin-bottom: 8px; }
.modal p { color: var(--mid); font-size: 0.9rem; margin-bottom: 24px; }
.modal input[type="email"], .modal input[type="text"] {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 12px;
  outline: none;
  transition: border-color 0.2s;
}
.modal input:focus { border-color: var(--orange); }
.modal .btn-primary { width: 100%; text-align: center; padding: 15px; }

/* ─── HOME: HERO ─── */
.hero {
  min-height: calc(100vh - 104px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  border-bottom: 2px solid var(--charcoal);
}
.hero-left {
  padding: 80px 60px 80px 40px;
  border-right: 2px solid var(--charcoal);
}
.hero-right {
  padding: 80px 40px 80px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light);
  position: relative;
  overflow: hidden;
}
.hero-right::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,103,31,0.12) 0%, transparent 70%);
  top: -50px; right: -50px;
  pointer-events: none;
}
.hero-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.hero-h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-h1 em { color: var(--orange); font-style: normal; }
.hero-sub {
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Book mockup */
.book-mockup {
  width: 240px;
  height: 320px;
  background: var(--charcoal);
  border-radius: 4px 12px 12px 4px;
  position: relative;
  box-shadow: -8px 8px 40px rgba(0,0,0,0.25), 8px 8px 0px var(--orange);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  overflow: hidden;
  transform: rotate(-2deg);
  transition: transform 0.3s;
}
.book-mockup:hover { transform: rotate(0deg) scale(1.02); }
.book-mockup::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 20px;
  background: linear-gradient(to right, #111, #333);
  border-right: 1px solid #444;
}
.book-mockup .book-pattern {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,103,31,0.05) 20px, rgba(255,103,31,0.05) 21px);
}
.book-mockup .book-badge {
  position: absolute;
  top: 24px; right: 24px;
  width: 56px; height: 56px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  color: white;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
  font-weight: 700;
}
.book-title-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  color: white;
  line-height: 1.2;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.book-title-text span { color: var(--orange); }
.book-author {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}

/* Philosophy section */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 2px solid var(--charcoal);
}
.phil-cell { padding: 56px 48px; }
.phil-cell:first-child { border-right: 2px solid var(--charcoal); }
.phil-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--mid);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.phil-cell h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 16px; line-height: 1.25; }
.phil-cell p { color: var(--slate); font-size: 0.95rem; line-height: 1.7; }
.vs-divider {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 2px solid var(--charcoal);
  border-bottom: 2px solid var(--charcoal);
  padding: 20px;
  background: var(--charcoal);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}

/* Journey strip */
.journey-strip {
  display: flex;
  overflow-x: auto;
  border-top: 2px solid var(--charcoal);
  border-bottom: 2px solid var(--charcoal);
  scrollbar-width: none;
}
.journey-strip::-webkit-scrollbar { display: none; }
.journey-part {
  flex: 0 0 auto;
  padding: 28px 32px;
  border-right: 1px solid var(--border);
  min-width: 200px;
  transition: background 0.2s;
}
.journey-part:hover { background: var(--light); }
.journey-part:last-child { border-right: none; }
.journey-num {
  font-family: 'Space Mono', monospace;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255,103,31,0.15);
  line-height: 1;
  margin-bottom: 8px;
}
.journey-part h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 6px; color: var(--charcoal); }
.journey-part p { font-size: 0.75rem; color: var(--mid); line-height: 1.5; }

/* Authority section */
.authority-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: center;
}
.author-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--charcoal);
  border-radius: 4px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.author-photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255,103,31,0.08) 10px, rgba(255,103,31,0.08) 11px);
  z-index: 1;
  pointer-events: none;
}
.author-photo-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.author-name-tag {
  background: var(--orange);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 2px;
  position: relative;
  z-index: 2;
}
.authority-text h2 { font-size: 2.4rem; font-weight: 900; margin-bottom: 20px; letter-spacing: -0.02em; }
.authority-text p { font-size: 0.97rem; color: var(--slate); line-height: 1.8; margin-bottom: 16px; }
.stat-row { display: flex; gap: 40px; margin: 32px 0; }
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mid);
  margin-top: 4px;
}

/* Referral spotlight */
.referral-spotlight {
  background: var(--charcoal);
  border-radius: 8px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.referral-spotlight::before {
  content: '3';
  position: absolute;
  font-family: 'Montserrat', sans-serif;
  font-size: 20rem;
  font-weight: 900;
  color: rgba(255,103,31,0.06);
  right: -30px;
  top: -40px;
  line-height: 1;
  pointer-events: none;
}
.referral-spotlight h2 { font-size: 2.2rem; color: white; margin-bottom: 16px; }
.referral-spotlight p { color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 24px; }
.referral-steps { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.ref-step { display: flex; align-items: center; gap: 16px; }
.ref-step-num {
  width: 32px; height: 32px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: white;
  flex-shrink: 0;
}
.ref-step span { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.referral-perks { display: flex; flex-direction: column; gap: 16px; min-width: 240px; }
.perk-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.perk-icon { font-size: 1.5rem; }
.perk-text { font-size: 0.85rem; color: rgba(255,255,255,0.75); line-height: 1.4; }
.perk-text strong { color: white; display: block; margin-bottom: 2px; }

/* ─── BOOK PAGE ─── */
.book-hero {
  background: var(--charcoal);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.book-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
}
.book-hero-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: center;
}
.book-hero h1 {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 900;
  color: white;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  line-height: 1.05;
}
.book-hero h1 em { color: var(--orange); font-style: normal; }
.book-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; line-height: 1.7; margin-bottom: 32px; }
.audience-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.aud-tag {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.book-display-large {
  width: 280px;
  height: 380px;
  background: linear-gradient(135deg, #222 0%, #1a1a1a 100%);
  border-radius: 6px 16px 16px 6px;
  box-shadow: -10px 10px 60px rgba(0,0,0,0.5), 12px 12px 0px var(--orange);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  margin: 0 auto;
}
.book-display-large::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0; width: 28px;
  background: linear-gradient(to right, #0a0a0a, #1a1a1a);
  border-right: 1px solid #333;
}
.book-display-large .bdl-pattern {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(255,103,31,0.04) 30px, rgba(255,103,31,0.04) 31px);
}
.book-display-large .bdl-circuit {
  position: absolute;
  top: 32px; right: 32px;
  display: grid;
  grid-template-columns: repeat(4, 16px);
  gap: 8px;
}
.bdl-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,103,31,0.3); }
.bdl-dot.lit { background: var(--orange); box-shadow: 0 0 6px var(--orange); }
.bdl-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: white;
  line-height: 1.15;
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
}
.bdl-title span { color: var(--orange); }
.bdl-sub {
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}
.bdl-author { font-family: 'Poppins', sans-serif; font-size: 0.72rem; color: rgba(255,255,255,0.5); position: relative; z-index: 1; }

/* ToC Accordion */
.toc-section { padding: 80px 0; }
.toc-header { margin-bottom: 48px; }
.toc-header h2 { font-size: 2.2rem; font-weight: 800; letter-spacing: -0.02em; }
.accordion-item { border: 2px solid var(--charcoal); border-bottom: none; overflow: hidden; }
.accordion-item:last-child { border-bottom: 2px solid var(--charcoal); }
.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}
.accordion-trigger:hover { background: var(--light); }
.accordion-trigger.open { background: var(--charcoal); }
.accordion-trigger.open .acc-title,
.accordion-trigger.open .acc-num { color: white; }
.accordion-trigger.open .acc-arrow { border-color: white; transform: rotate(135deg); }
.acc-left { display: flex; align-items: center; gap: 20px; }
.acc-num { font-family: 'Space Mono', monospace; font-size: 0.7rem; color: var(--orange); font-weight: 700; min-width: 60px; }
.acc-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem; color: var(--charcoal); }
.acc-arrow {
  width: 10px; height: 10px;
  border-right: 2px solid var(--charcoal);
  border-bottom: 2px solid var(--charcoal);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.accordion-content { display: none; padding: 24px 32px 32px; background: var(--light); border-top: 1px solid var(--border); }
.accordion-content.open { display: block; }
.acc-desc { color: var(--slate); font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; }
.acc-outcome { background: white; border-left: 3px solid var(--orange); padding: 14px 18px; font-size: 0.87rem; color: var(--slate); }
.acc-outcome strong { color: var(--charcoal); font-family: 'Montserrat', sans-serif; }

/* Not for you */
.not-for { background: var(--light); border: 2px solid var(--border); border-radius: 6px; padding: 40px 48px; margin: 48px 0; }
.not-for h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 20px; }
.not-for ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.not-for li { color: var(--mid); font-size: 0.9rem; display: flex; align-items: center; gap: 12px; }
.not-for li::before { content: '✕'; color: var(--orange); font-weight: 700; font-size: 0.8rem; }

/* Lead magnet */
.lead-magnet {
  background: var(--charcoal);
  border-radius: 8px;
  padding: 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lead-magnet::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,103,31,0.15) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}
.lead-magnet h2 { font-size: 2rem; color: white; margin-bottom: 12px; position: relative; z-index: 1; }
.lead-magnet p { color: rgba(255,255,255,0.65); margin-bottom: 32px; position: relative; z-index: 1; }
.lead-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; position: relative; z-index: 1; }
.lead-form input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: white;
  outline: none;
  transition: border-color 0.2s;
}
.lead-form input::placeholder { color: rgba(255,255,255,0.35); }
.lead-form input:focus { border-color: var(--orange); }

/* ─── REFER PAGE ─── */
.tabs-wrapper { border-bottom: 2px solid var(--charcoal); }
.tabs { display: flex; }
.tab-btn {
  padding: 20px 36px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--mid);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
}
.tab-btn.active { color: var(--orange); border-bottom-color: var(--orange); }
.tab-content { display: none; }
.tab-content.active { display: block; }

.refer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.refer-how h2 { font-size: 2rem; font-weight: 800; margin-bottom: 16px; }
.refer-how p { color: var(--slate); margin-bottom: 32px; line-height: 1.7; }
.steps-list { display: flex; flex-direction: column; gap: 0; }
.step-item { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.step-item:last-child { border-bottom: none; }
.step-circle {
  width: 40px; height: 40px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  color: white;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.step-body h4 { font-weight: 700; margin-bottom: 4px; }
.step-body p { font-size: 0.88rem; color: var(--mid); line-height: 1.6; }

.refer-form-card { background: var(--light); border: 2px solid var(--charcoal); border-radius: 8px; padding: 40px; }
.refer-form-card h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; }
.refer-form-card p { color: var(--mid); font-size: 0.88rem; margin-bottom: 28px; line-height: 1.6; }
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 6px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  background: white;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--orange); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Leaderboard */
.leaderboard { margin-top: 64px; border: 2px solid var(--charcoal); border-radius: 8px; overflow: hidden; }
.lb-header { background: var(--charcoal); padding: 20px 32px; display: flex; align-items: center; justify-content: space-between; }
.lb-header h3 { color: white; font-size: 1rem; }
.lb-live { background: var(--orange); color: white; font-family: 'Space Mono', monospace; font-size: 0.6rem; padding: 4px 10px; border-radius: 2px; letter-spacing: 0.1em; text-transform: uppercase; }
.lb-tab { padding: 14px 24px; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase; cursor: pointer; color: var(--mid); background: none; border: none; border-bottom: 2px solid transparent; transition: all 0.2s; }
.lb-tab.active { color: var(--orange); border-bottom-color: var(--orange); }
.lb-row { display: flex; align-items: center; padding: 16px 32px; border-bottom: 1px solid var(--border); gap: 20px; transition: background 0.15s; }
.lb-row:hover { background: var(--light); }
.lb-rank { font-family: 'Space Mono', monospace; font-weight: 700; font-size: 0.85rem; color: var(--mid); min-width: 32px; }
.lb-rank.gold { color: #f59e0b; }
.lb-rank.silver { color: #94a3b8; }
.lb-rank.bronze { color: #b45309; }
.lb-name { flex: 1; font-weight: 600; font-size: 0.9rem; }
.lb-college { font-size: 0.8rem; color: var(--mid); }
.lb-count { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1rem; color: var(--orange); min-width: 60px; text-align: right; }
.lb-bar-wrap { flex: 1; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.lb-bar { height: 100%; background: var(--orange); border-radius: 3px; }

/* Ambassador */
.amb-hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, #2a2a2a 100%);
  border-radius: 8px;
  padding: 56px;
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.amb-hero h2 { font-size: 2rem; color: white; margin-bottom: 16px; }
.amb-hero p { color: rgba(255,255,255,0.65); line-height: 1.7; }
.perks-list { display: flex; flex-direction: column; gap: 12px; }
.perk-item { display: flex; align-items: center; gap: 12px; }
.perk-item .perk-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }
.perk-item span { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.amb-form { background: var(--light); border: 2px solid var(--charcoal); border-radius: 8px; padding: 40px; }
.amb-form h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
.amb-form p { color: var(--mid); font-size: 0.88rem; margin-bottom: 28px; }

/* ─── ABOUT PAGE ─── */
.about-hero {
  background: var(--charcoal);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: 'AK';
  position: absolute;
  font-family: 'Montserrat', sans-serif;
  font-size: 20rem;
  font-weight: 900;
  color: rgba(255,255,255,0.02);
  right: -40px;
  top: -60px;
  letter-spacing: -0.05em;
}
.about-hero-grid { display: grid; grid-template-columns: 280px 1fr; gap: 64px; align-items: center; }
.about-hero h1 { font-size: 3rem; font-weight: 900; color: white; letter-spacing: -0.03em; margin-bottom: 12px; }
.about-hero .role-tag { color: var(--orange); font-family: 'Space Mono', monospace; font-size: 0.8rem; letter-spacing: 0.1em; margin-bottom: 24px; }
.about-hero p { color: rgba(255,255,255,0.65); line-height: 1.8; font-size: 1rem; }

.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 8px; bottom: 8px; width: 2px; background: var(--border); }
.tl-item { position: relative; padding-bottom: 40px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot { position: absolute; left: -28px; top: 6px; width: 14px; height: 14px; background: var(--orange); border-radius: 50%; border: 3px solid white; box-shadow: 0 0 0 2px var(--orange); }
.tl-year { font-family: 'Space Mono', monospace; font-size: 0.68rem; color: var(--orange); letter-spacing: 0.1em; margin-bottom: 6px; }
.tl-item h4 { font-weight: 700; margin-bottom: 6px; font-size: 1rem; }
.tl-item p { color: var(--mid); font-size: 0.88rem; line-height: 1.6; }

.appostrofy-card { background: var(--charcoal); border-radius: 8px; padding: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin: 48px 0; }
.appostrofy-card h3 { font-size: 1.6rem; color: white; margin-bottom: 16px; }
.appostrofy-card p { color: rgba(255,255,255,0.65); line-height: 1.7; font-size: 0.92rem; }
.product-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,103,31,0.15);
  border: 1px solid rgba(255,103,31,0.3);
  color: var(--orange);
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  padding: 8px 16px;
  border-radius: 20px;
  margin-top: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.product-chip span { color: white; }
.twenty-two { background: var(--light); border-left: 4px solid var(--orange); padding: 40px 48px; border-radius: 0 8px 8px 0; margin: 48px 0; }
.twenty-two h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 20px; }
.twenty-two ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.twenty-two li { display: flex; gap: 14px; color: var(--slate); font-size: 0.92rem; line-height: 1.6; }
.twenty-two li::before { content: '→'; color: var(--orange); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.contact-form { background: var(--light); border: 2px solid var(--charcoal); border-radius: 8px; padding: 40px; }
.contact-form h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; }
.contact-form p { color: var(--mid); font-size: 0.9rem; margin-bottom: 28px; }

/* ─── ARTICLES PAGE ─── */
.articles-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; border: 2px solid var(--charcoal); }
.article-card {
  padding: 40px;
  border-right: 2px solid var(--charcoal);
  border-bottom: 2px solid var(--charcoal);
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}
.article-card:nth-child(even) { border-right: none; }
.article-card:nth-last-child(-n+2) { border-bottom: none; }
.article-card:hover { background: var(--light); }
.article-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--orange);
  transform: scaleY(0);
  transition: transform 0.2s;
  transform-origin: bottom;
}
.article-card:hover::before { transform: scaleY(1); }
.art-tag { font-family: 'Space Mono', monospace; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
.art-read { font-size: 0.75rem; color: var(--mid); }
.article-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 12px; line-height: 1.3; letter-spacing: -0.01em; }
.article-card p { color: var(--slate); font-size: 0.88rem; line-height: 1.65; margin-bottom: 20px; }
.art-meta { display: flex; align-items: center; justify-content: space-between; }
.art-cta {
  background: none;
  border: none;
  color: var(--orange);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
}
.art-cta:hover { text-decoration: underline; }

.conversion-block {
  background: var(--charcoal);
  border-radius: 8px;
  padding: 48px;
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.conv-text h3 { font-size: 1.4rem; color: white; margin-bottom: 8px; }
.conv-text p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* ─── FOOTER ─── */
footer { background: var(--charcoal); color: white; padding: 60px 0 32px; margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand h3 { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.2rem; margin-bottom: 12px; }
.footer-brand h3 span { color: var(--orange); }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.7; }
.footer-col h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col li a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.78rem; font-family: 'Space Mono', monospace; }

/* ─── SUCCESS MESSAGE ─── */
.success-msg {
  display: none;
  text-align: center;
  padding: 20px;
  background: rgba(255,103,31,0.1);
  border: 2px solid var(--orange);
  border-radius: 6px;
  color: var(--charcoal);
  font-weight: 600;
  margin-top: 12px;
}

/* ─── 404 PAGE ─── */
.error-page {
  min-height: calc(100vh - 104px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px;
}
.error-code {
  font-family: 'Space Mono', monospace;
  font-size: 8rem;
  font-weight: 700;
  color: rgba(255,103,31,0.15);
  line-height: 1;
  margin-bottom: 24px;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-left  { animation: fadeUp 0.5s ease both; }
.hero-right { animation: fadeUp 0.5s ease 0.15s both; }

@media (prefers-reduced-motion: reduce) {
  .hero-left, .hero-right { animation: none; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  nav { padding: 0 20px; top: 36px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { display: none; }
  .hero-left { padding: 60px 20px; border-right: none; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .phil-cell:first-child { border-right: none; border-bottom: 2px solid var(--charcoal); }
  .authority-grid { grid-template-columns: 1fr; }
  .author-photo-placeholder { display: none; }
  .referral-spotlight { grid-template-columns: 1fr; padding: 40px 28px; }
  .book-hero-grid { grid-template-columns: 1fr; }
  .refer-grid { grid-template-columns: 1fr; }
  .amb-hero { grid-template-columns: 1fr; }
  .about-hero-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .article-card { border-right: none !important; }
  .article-card:last-child { border-bottom: none; }
  .conversion-block { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .appostrofy-card { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .lead-form { flex-direction: column; }
  .stat-row { gap: 24px; }
  .section { padding: 56px 0; }
  .top-banner { font-size: 0.7rem; flex-wrap: wrap; gap: 6px; padding: 8px 16px; }
}
