/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ─── Tokens ─────────────────────────────────────────────── */
:root {
  --ink:        #1c1a14;
  --cream:      #f5f0e8;
  --warm-white: #faf8f4;
  --sage:       #3d5c45;
  --sage-deep:  #2b4231;
  --sage-lt:    #edf2ee;
  --amber:      #bf7b2e;
  --amber-glow: #d4923f;
  --blush:      #e8d8c4;
  --muted:      #6b6255;
  --border:     rgba(28,26,20,0.1);
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Jost', system-ui, sans-serif;
  --shadow-sm:  0 2px 12px rgba(28,26,20,0.07);
  --shadow-md:  0 8px 32px rgba(28,26,20,0.10);
  --shadow-lg:  0 20px 60px rgba(28,26,20,0.14);
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── Utilities ───────────────────────────────────────────── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 2rem; position: relative; }
.container--narrow { max-width: 760px; margin: 0 auto; padding: 0 2rem; position: relative; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.85rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 560px;
  margin-top: 1rem;
  line-height: 1.78;
}

/* ─── Fade-in ─────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.7rem 1.6rem;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.22s;
}
.btn-primary { background: var(--sage); color: var(--warm-white); }
.btn-primary:hover { background: var(--sage-deep); transform: translateY(-1px); box-shadow: 0 5px 18px rgba(61,92,69,0.28); }
.btn-secondary { background: transparent; color: var(--sage); border: 1.5px solid var(--sage); }
.btn-secondary:hover { background: var(--sage-lt); }
.btn-amber { background: var(--amber); color: #fff; }
.btn-amber:hover { background: var(--amber-glow); transform: translateY(-1px); box-shadow: 0 5px 18px rgba(191,123,46,0.32); }
.btn-lg { font-size: 0.95rem; padding: 0.85rem 2rem; }
.btn-full { width: 100%; text-align: center; }

/* ─── Navigation ─────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0 2rem;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(245,240,232,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}
.nav-logo em { color: var(--sage); font-style: italic; }

.nav-right { display: flex; align-items: center; gap: 2rem; }
.nav-links { display: flex; gap: 1.75rem; list-style: none; }
.nav-links a {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--ink); }

.btn-nav {
  background: var(--sage);
  color: var(--warm-white);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1.15rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  letter-spacing: 0.03em;
}
.btn-nav:hover { background: var(--sage-deep); }

/* ─── Page Header (interior pages) ─────────────────────────── */
.page-header {
  padding: 9rem 0 5rem;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
}
.page-header .section-subtitle { margin-top: 1rem; }

/* ─── Problem section ────────────────────────────────────── */
.problem {
  background: var(--ink);
  color: var(--cream);
  padding: 6.5rem 0;
  position: relative; overflow: hidden;
}
.problem::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 78% 50%, rgba(61,92,69,0.18) 0%, transparent 58%);
}
.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.problem-quote {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  font-weight: 400;
  line-height: 1.28;
  font-style: italic;
  color: var(--cream);
}
.problem-quote strong { font-weight: 700; font-style: normal; color: var(--amber-glow); }
.problem-attr { margin-top: 1.25rem; font-size: 0.78rem; color: rgba(245,240,232,0.35); letter-spacing: 0.08em; text-transform: uppercase; }

.stats { display: flex; flex-direction: column; gap: 2rem; }
.stat { padding-bottom: 2rem; border-bottom: 1px solid rgba(245,240,232,0.07); }
.stat:last-child { border-bottom: none; padding-bottom: 0; }
.stat-n { font-family: var(--serif); font-size: 2.8rem; font-weight: 700; color: var(--amber-glow); line-height: 1; margin-bottom: 0.2rem; }
.stat-d { font-size: 0.88rem; color: rgba(245,240,232,0.55); font-weight: 300; }

/* ─── How it works ────────────────────────────────────────── */
.how { padding: 7rem 0; background: var(--warm-white); }
.how-head { text-align: center; margin-bottom: 5rem; }
.how-head .section-subtitle { margin: 1rem auto 0; text-align: center; }

.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 3rem; position: relative; }
.steps::before {
  content: '';
  position: absolute;
  top: 20px; left: calc(16.66% + 1rem); right: calc(16.66% + 1rem);
  height: 1px;
  background: linear-gradient(90deg, var(--border), var(--amber), var(--border));
}
.step { position: relative; }
.step-n {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 1rem; font-weight: 600;
  color: var(--amber);
  margin-bottom: 1.4rem;
  position: relative; z-index: 1;
}
.step-title { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; margin-bottom: 0.55rem; }
.step-body { font-size: 0.875rem; color: var(--muted); font-weight: 300; line-height: 1.78; }

/* ─── Two tracks ──────────────────────────────────────────── */
.tracks { padding: 7rem 0; background: var(--cream); }
.tracks-head { margin-bottom: 3.5rem; }
.tracks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.track {
  border-radius: 16px;
  padding: 2.5rem;
  position: relative; overflow: hidden;
}
.track--student { background: var(--sage-deep); color: var(--cream); }
.track--parent { background: var(--warm-white); border: 1px solid var(--border); }
.track::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px; border-radius: 50%; opacity: 0.05;
}
.track--student::before { background: #fff; }
.track--parent::before { background: var(--sage); }

.track-icon { font-size: 1.9rem; margin-bottom: 1.25rem; display: block; }
.track-lbl { font-size: 0.67rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.4rem; }
.track--student .track-lbl { color: rgba(245,240,232,0.45); }
.track--parent .track-lbl { color: var(--amber); }
.track-title { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; margin-bottom: 0.7rem; line-height: 1.2; }
.track--student .track-title { color: #fff; }
.track-desc { font-size: 0.875rem; font-weight: 300; line-height: 1.78; margin-bottom: 1.75rem; }
.track--student .track-desc { color: rgba(245,240,232,0.68); }
.track--parent .track-desc { color: var(--muted); }

.track-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.track-list li { font-size: 0.85rem; display: flex; align-items: flex-start; gap: 0.5rem; }
.track--student .track-list li { color: rgba(245,240,232,0.82); }
.track-list li::before { content:'→'; flex-shrink:0; margin-top: 0.04rem; }
.track--student .track-list li::before { color: var(--amber-glow); }
.track--parent .track-list li::before { color: var(--sage); }

/* ─── Proof ───────────────────────────────────────────────── */
.proof { padding: 7rem 0; background: var(--warm-white); }
.proof-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.week-card {
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.wc-head {
  background: var(--sage-deep);
  color: var(--cream);
  padding: 1rem 1.4rem;
  display: flex; justify-content: space-between; align-items: center;
}
.wc-title { font-family: var(--serif); font-size: 0.9rem; font-weight: 600; }
.wc-meta { font-size: 0.7rem; opacity: 0.55; }
.wc-body { padding: 0.5rem 1.4rem; background: var(--warm-white); }

.lesson-row {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
}
.lesson-row:last-child { border-bottom: none; }
.lr-day { font-size: 0.67rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted); width: 36px; flex-shrink: 0; }
.lr-content { flex: 1; }
.lr-t { font-size: 0.8rem; font-weight: 500; color: var(--ink); }
.lr-s { font-size: 0.7rem; color: var(--muted); font-weight: 300; margin-top: 0.06rem; }
.lr-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--sage-lt); color: var(--sage);
  font-size: 0.65rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.proof-badge {
  display: inline-block;
  background: var(--amber); color: #fff;
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font-size: 0.75rem; font-weight: 600;
  box-shadow: var(--shadow-md);
  text-align: center; line-height: 1.45;
  margin-top: 1.25rem;
}
.proof-badge strong { display: block; font-size: 1.4rem; font-family: var(--serif); font-weight: 700; }

.cred-list { display: flex; flex-direction: column; gap: 0.65rem; margin-top: 1.75rem; }
.cred { display: flex; align-items: center; gap: 0.65rem; font-size: 0.875rem; color: var(--ink); }
.cred::before { content:''; display: block; width: 7px; height: 7px; border-radius: 50%; background: var(--amber); flex-shrink: 0; }

/* ─── NH Compliance ───────────────────────────────────────── */
.nh { background: var(--sage-deep); padding: 4rem 0; }
.nh-inner { display: flex; align-items: flex-start; gap: 2.5rem; }
.nh-icon { font-size: 2.2rem; flex-shrink: 0; padding-top: 0.2rem; }
.nh-lbl { font-size: 0.67rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,240,232,0.38); margin-bottom: 0.3rem; }
.nh-title { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: #fff; margin-bottom: 0.5rem; }
.nh-body { font-size: 0.875rem; color: rgba(245,240,232,0.62); font-weight: 300; max-width: 600px; line-height: 1.75; }

/* ─── Service Tiers ───────────────────────────────────────── */
.tiers { padding: 7rem 0; background: var(--warm-white); }
.tiers-head { text-align: center; margin-bottom: 3.5rem; }
.tiers-head .section-subtitle { margin: 1rem auto 0; text-align: center; }

.tiers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 860px; margin: 0 auto; }

.tier-card {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 2.75rem 2.25rem;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.tier-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tier-card.featured { background: var(--sage-deep); border-color: transparent; }

.tier-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--amber); color: #fff;
  font-size: 0.63rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.22rem 0.75rem; border-radius: 100px;
  white-space: nowrap;
}

.tier-icon { font-size: 2rem; margin-bottom: 1.25rem; display: block; }
.tier-name { font-family: var(--serif); font-size: 1.55rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--ink); }
.tier-card.featured .tier-name { color: #fff; }
.tier-tagline { font-size: 0.8rem; font-weight: 500; color: var(--amber); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.1rem; }
.tier-card.featured .tier-tagline { color: var(--amber-glow); }
.tier-desc { font-size: 0.875rem; font-weight: 300; color: var(--muted); line-height: 1.75; margin-bottom: 1.75rem; }
.tier-card.featured .tier-desc { color: rgba(245,240,232,0.68); }

.tier-list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 2rem; flex: 1; }
.tier-list li { font-size: 0.85rem; display: flex; align-items: flex-start; gap: 0.5rem; color: var(--ink); }
.tier-card.featured .tier-list li { color: rgba(245,240,232,0.82); }
.tier-list li::before { content:'✓'; font-size: 0.7rem; font-weight: 700; flex-shrink: 0; margin-top: 0.1rem; color: var(--sage); }
.tier-card.featured .tier-list li::before { color: var(--amber-glow); }

.tier-audience {
  font-size: 0.76rem;
  color: var(--muted);
  font-style: italic;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.tier-card.featured .tier-audience { color: rgba(245,240,232,0.38); border-top-color: rgba(245,240,232,0.1); }

.tiers-note { text-align: center; font-size: 0.8rem; color: var(--muted); font-weight: 300; margin: 2.5rem auto 0; max-width: 480px; line-height: 1.7; }
.tiers-note strong { color: var(--ink); font-weight: 500; }

/* ─── Objections (We've Heard the Feedback) ──────────────── */
.objections { padding: 7rem 0; background: var(--cream); }
.objections-head { text-align: center; margin-bottom: 4rem; }
.objections-head .section-subtitle { margin: 1rem auto 0; text-align: center; }

.obj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }

.obj-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  transition: box-shadow 0.25s;
}
.obj-card:hover { box-shadow: var(--shadow-md); }

.obj-concern {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.obj-concern::before {
  content: '"';
  color: var(--amber);
  font-size: 1.5rem;
  line-height: 0;
  vertical-align: -0.25em;
  margin-right: 0.15em;
}
.obj-concern::after {
  content: '"';
  color: var(--amber);
  font-size: 1.5rem;
  line-height: 0;
  vertical-align: -0.25em;
  margin-left: 0.1em;
}

.obj-response { font-size: 0.875rem; color: var(--muted); font-weight: 300; line-height: 1.78; }
.obj-response strong { font-weight: 600; color: var(--ink); }

/* ─── About ───────────────────────────────────────────────── */
.about { padding: 7rem 0; background: var(--cream); }
.about-intro { max-width: 700px; margin-bottom: 5rem; }
.about-intro p { font-size: 0.975rem; color: var(--muted); font-weight: 300; line-height: 1.85; margin-bottom: 1.1rem; }
.about-intro p strong { font-weight: 600; color: var(--ink); }

.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }

.team-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.team-card::before {
  content: ''; position: absolute; top: -30px; right: -30px;
  width: 140px; height: 140px; border-radius: 50%;
  background: var(--sage-lt); opacity: 0.6;
}
.team-card.founder-lead { border-color: var(--sage); }

.team-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-lt), var(--blush));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 1.4rem; font-weight: 700;
  color: var(--sage-deep);
  margin-bottom: 1.25rem;
  position: relative; z-index: 1;
}

.team-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.2rem;
  position: relative; z-index: 1;
}
.team-title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
  position: relative; z-index: 1;
}
.team-bio {
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.82;
  margin-bottom: 1.5rem;
  position: relative; z-index: 1;
}
.team-bio strong { font-weight: 600; color: var(--ink); }

.team-creds { display: flex; flex-direction: column; gap: 0.5rem; position: relative; z-index: 1; }
.team-cred { display: flex; align-items: flex-start; gap: 0.55rem; font-size: 0.82rem; color: var(--ink); }
.team-cred-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); flex-shrink: 0; margin-top: 0.44rem; }

.about-body { font-size: 0.925rem; color: var(--muted); font-weight: 300; line-height: 1.85; margin-bottom: 1.1rem; }
.about-body strong { font-weight: 600; color: var(--ink); }

.platform-claim {
  background: var(--sage-deep);
  border-radius: 14px;
  padding: 2.5rem;
  margin-top: 4rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.platform-claim-icon { font-size: 1.75rem; flex-shrink: 0; }
.platform-claim-text { font-family: var(--serif); font-size: 1.35rem; font-weight: 400; font-style: italic; color: #fff; line-height: 1.4; }
.platform-claim-text strong { font-style: normal; font-weight: 700; color: var(--amber-glow); }

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq { padding: 7rem 0; background: var(--warm-white); }
.faq-head { text-align: center; margin-bottom: 3.5rem; }
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
  max-width: 860px; margin: 0 auto;
}
.faq-item {
  padding: 1.7rem 1.9rem;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.faq-item:hover { background: var(--cream); }
.faq-item:nth-child(even) { border-right: none; }
.faq-item:nth-last-child(-n+2) { border-bottom: none; }
.faq-q { font-family: var(--serif); font-size: 0.98rem; font-weight: 600; color: var(--ink); margin-bottom: 0.45rem; line-height: 1.35; }
.faq-a { font-size: 0.84rem; color: var(--muted); font-weight: 300; line-height: 1.72; }

/* ─── Waitlist ─────────────────────────────────────────────── */
.waitlist { padding: 8rem 0; background: var(--cream); position: relative; overflow: hidden; }
.waitlist::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 720px; height: 720px; border-radius: 50%;
  background: radial-gradient(circle, rgba(191,123,46,0.055) 0%, transparent 65%);
  pointer-events: none;
}
.waitlist-inner { text-align: center; position: relative; }
.waitlist-title {
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4.5vw, 3.5rem);
  font-weight: 600; line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.9rem;
}
.waitlist-title em { font-style: italic; color: var(--sage); }
.waitlist-sub { font-size: 1rem; color: var(--muted); font-weight: 300; max-width: 460px; margin: 0 auto 2.5rem; line-height: 1.78; }

.wl-form {
  display: flex; gap: 0.65rem;
  max-width: 460px; margin: 0 auto 1rem;
}
.wl-form input {
  flex: 1;
  font-family: var(--sans); font-size: 0.875rem;
  padding: 0.72rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: 5px;
  background: #fff; color: var(--ink);
  outline: none; transition: border-color 0.2s;
}
.wl-form input:focus { border-color: var(--sage); }
.wl-form input::placeholder { color: var(--muted); opacity: 0.65; }
.wl-note { font-size: 0.75rem; color: var(--muted); opacity: 0.65; }

.wl-success {
  display: none;
  background: var(--sage-lt);
  border: 1px solid rgba(61,92,69,0.25);
  border-radius: 8px;
  padding: 0.9rem 1.5rem;
  font-size: 0.875rem; color: var(--sage-deep); font-weight: 500;
  max-width: 460px; margin: 0 auto;
}
.wl-success.show { display: block; }

/* ─── CTA Band ─────────────────────────────────────────────── */
.cta-band { background: var(--sage-deep); padding: 6rem 0; text-align: center; }
.cta-band .eyebrow { color: rgba(245,240,232,0.4); }
.cta-band h2 { font-family: var(--serif); font-size: clamp(2rem,4vw,3rem); font-weight: 600; color: #fff; margin: 0.75rem 0 1.2rem; line-height: 1.15; letter-spacing: -0.02em; }
.cta-band h2 em { font-style: italic; color: var(--amber-glow); }
.cta-band p { font-size: 0.97rem; color: rgba(245,240,232,0.62); font-weight: 300; margin-bottom: 2.5rem; max-width: 420px; margin-left: auto; margin-right: auto; line-height: 1.78; }

/* ─── Footer ──────────────────────────────────────────────── */
footer { background: var(--ink); color: rgba(245,240,232,0.5); padding: 3.5rem 0; }
.ft-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.ft-brand { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--cream); text-decoration: none; }
.ft-brand em { color: var(--amber-glow); font-style: italic; }
.ft-tag { font-size: 0.75rem; margin-top: 0.2rem; font-style: italic; color: rgba(245,240,232,0.3); }
.ft-links { display: flex; gap: 1.75rem; flex-wrap: wrap; }
.ft-links a { font-size: 0.78rem; color: rgba(245,240,232,0.38); text-decoration: none; transition: color 0.2s; }
.ft-links a:hover { color: var(--cream); }
.ft-legal { width: 100%; font-size: 0.7rem; color: rgba(245,240,232,0.22); padding-top: 2rem; border-top: 1px solid rgba(245,240,232,0.05); margin-top: 0.75rem; line-height: 1.6; }

/* ─── Hero (home page) ───────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; top: 0; right: 0;
  width: 52%; height: 100%;
  background: var(--warm-white);
  clip-path: polygon(9% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}
.hero-glow {
  position: absolute; bottom: -80px; right: 8%;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(191,123,46,0.09) 0%, transparent 70%);
  z-index: 0;
}
.hero-text {
  padding: 5rem 2rem 5rem max(2rem, calc((100vw - 1120px)/2 + 2rem));
  position: relative; z-index: 1;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--blush);
  border: 1px solid rgba(191,123,46,0.22);
  border-radius: 100px;
  padding: 0.32rem 0.9rem 0.32rem 0.55rem;
  font-size: 0.76rem; font-weight: 500; color: var(--amber);
  margin-bottom: 1.75rem;
  animation: fadeDown 0.6s ease both;
}
.hero-pill .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--amber);
  animation: blink 2.2s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.45;transform:scale(0.8)} }
@keyframes fadeDown { from{opacity:0;transform:translateY(-10px)} to{opacity:1;transform:none} }

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.2vw, 4.4rem);
  font-weight: 600;
  line-height: 1.07;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.4rem;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-headline em { font-style: italic; color: var(--sage); }

.hero-sub {
  font-size: 1.08rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.78;
  max-width: 460px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-ctas {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 2.75rem;
  animation: fadeUp 0.7s 0.3s ease both;
}
.hero-footnote {
  display: flex; align-items: center; gap: 0.65rem;
  font-size: 0.77rem; color: var(--muted);
  animation: fadeUp 0.7s 0.4s ease both;
}
.hero-footnote::before { content:''; display:block; width:28px; height:1px; background:var(--border); }
@keyframes fadeUp { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:none} }

.hero-visual {
  position: relative; z-index: 1;
  padding: 5rem 3rem 5rem 2rem;
  display: flex; justify-content: center; align-items: center;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 1.75rem;
  width: 330px;
  animation: cardIn 0.85s 0.5s ease both;
  position: relative;
}
@keyframes cardIn { from{opacity:0;transform:translateY(24px) scale(0.97)} to{opacity:1;transform:none} }
.card-top {
  display: flex; align-items: center; gap: 0.85rem;
  padding-bottom: 1.1rem; margin-bottom: 1.1rem;
  border-bottom: 1px solid var(--border);
}
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-lt), var(--blush));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.1rem; font-weight: 700;
  color: var(--sage-deep); flex-shrink: 0;
}
.card-name { font-weight: 600; font-size: 0.9rem; }
.card-meta { font-size: 0.72rem; color: var(--muted); margin-top: 0.08rem; }
.tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 1.1rem; }
.tag { background: var(--sage-lt); color: var(--sage-deep); font-size: 0.7rem; font-weight: 500; padding: 0.22rem 0.55rem; border-radius: 100px; }
.tag.amber { background: #fdf0de; color: var(--amber); }
.card-block { border-radius: 9px; padding: 0.85rem 0.95rem; margin-bottom: 0.6rem; }
.card-block:last-child { margin-bottom: 0; }
.card-block.lesson { background: var(--cream); }
.card-block.coaching { background: var(--sage-lt); }
.block-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.3rem; }
.card-block.lesson .block-label { color: var(--amber); }
.card-block.coaching .block-label { color: var(--sage); }
.block-title { font-family: var(--serif); font-size: 0.9rem; font-weight: 600; color: var(--ink); line-height: 1.3; }
.block-text { font-size: 0.78rem; color: var(--muted); line-height: 1.55; }
.chip {
  position: absolute; background: #fff; border-radius: 10px;
  box-shadow: var(--shadow-md); padding: 0.55rem 0.85rem;
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.74rem; font-weight: 500; color: var(--ink); white-space: nowrap;
}
.chip-1 { bottom: 60px; left: -44px; animation: chipL 0.7s 0.85s ease both; }
.chip-2 { top: 56px; right: -36px; animation: chipR 0.7s 1.05s ease both; }
@keyframes chipL { from{opacity:0;transform:translateX(-16px)} to{opacity:1;transform:none} }
@keyframes chipR { from{opacity:0;transform:translateX(16px)} to{opacity:1;transform:none} }

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 80px; }
  .hero-bg { display: none; }
  .hero-text { padding: 3rem 2rem 1rem; }
  .hero-visual { padding: 2rem; justify-content: flex-start; }
  .card { width: 100%; max-width: 360px; }
  .chip-1, .chip-2 { display: none; }
  .problem-grid { grid-template-columns: 1fr; gap: 3rem; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .tracks-grid, .proof-inner, .tiers-grid, .team-grid { grid-template-columns: 1fr; }
  .tiers-grid { max-width: 460px; }
  .obj-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-item { border-right: none; }
  .faq-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .faq-item:last-child { border-bottom: none; }
  .nh-inner { flex-direction: column; gap: 1.25rem; }
  .nav-links { display: none; }
  .wl-form { flex-direction: column; }
  .platform-claim { flex-direction: column; }
}
@media (max-width: 600px) {
  .container, .container--narrow { padding: 0 1.25rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-headline { font-size: 2.5rem; }
  .section-title { font-size: 2rem; }
}

/* ─── Shared script fragment ──────────────────────────────── */
