/* ============================================================
   IDEA TO IMPACT — Main Stylesheet
   Fonts: Playfair Display (display) + Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #F7F9FB;
  --bg-cream:     #F0EBE3;
  --bg-cream-dk:  #E8DDD1;
  --navy:         #1C2B3A;
  --navy-dk:      #131C25;
  --blue:         #3A6D9E;
  --blue-lt:      #EEF4F9;
  --blue-bd:      #C2D5E8;
  --blue-dk:      #2B5580;
  --gold:         #D4A847;
  --gold-lt:      #FBF5E0;
  --gold-dk:      #9A7620;
  --teal:         #0E7C7B;
  --teal-lt:      #E4F4F1;
  --teal-bd:      #B8DDD9;
  --rust:         #7A3E20;
  --rust-lt:      #F5EDE8;
  --rust-bd:      #E0C4B4;
  --green:        #1A6B3C;
  --txt-dk:       #1C2B3A;
  --txt-md:       #4A6073;
  --txt-lt:       #6B7E90;
  --txt-mt:       #8A9EAD;
  --bd:           #E4ECF3;
  --bd-lt:        #F0F4F8;
  --white:        #FFFFFF;
  --radius-sm:    6px;
  --radius-md:    10px;
  --radius-lg:    12px;
  --font-disp:    'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --transition:   0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--txt-dk);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
ul { list-style: none; }

/* ── Typography ───────────────────────────────────────────── */
.disp { font-family: var(--font-disp); }

h1, h2, h3 { font-family: var(--font-disp); line-height: 1.1; }

.eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.eyebrow-blue  { color: var(--blue); }
.eyebrow-gold  { color: var(--gold-dk); }
.eyebrow-teal  { color: var(--teal); }
.eyebrow-rust  { color: var(--rust); }
.eyebrow-white { color: var(--gold); }

/* ── Layout ───────────────────────────────────────────────── */
.container { max-width: 900px; margin: 0 auto; padding: 0 28px; }
.section   { padding: 52px 0; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  padding: 11px 22px; border-radius: var(--radius-sm);
  border: none; cursor: pointer; text-decoration: none;
  transition: opacity var(--transition);
}
.btn:hover { opacity: .88; }
.btn-primary  { background: var(--blue); color: var(--white); }
.btn-gold     { background: var(--gold); color: var(--navy); font-weight: 600; }
.btn-teal     { background: var(--teal); color: var(--white); }
.btn-rust     { background: var(--rust); color: var(--white); }
.btn-outline  { background: var(--white); color: var(--blue); border: 1.5px solid var(--blue-bd); }
.btn-outline-teal { background: var(--white); color: var(--teal); border: 1.5px solid var(--teal-bd); }
.btn-outline-rust { background: var(--white); color: var(--rust); border: 1.5px solid var(--rust-bd); }
.btn-white    { background: var(--white); color: var(--blue); font-weight: 600; }
.btn-white-gold { background: var(--white); color: var(--gold-dk); font-weight: 600; }
.btn-white-teal { background: var(--white); color: var(--teal); font-weight: 600; }
.btn-white-rust { background: var(--white); color: var(--rust); font-weight: 600; }
.btn-ghost    { color: var(--txt-md); text-decoration: none; font-size: 13px; }

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px; background: var(--white);
  border-bottom: 1px solid var(--bd);
  position: sticky; top: 0; z-index: 100;
}
.nav-logo {
  font-family: var(--font-disp); font-weight: 700;
  font-size: 17px; color: var(--txt-dk);
  text-decoration: none;
}
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-link  { font-size: 13px; color: var(--txt-md); text-decoration: none; transition: color var(--transition); }
.nav-link:hover { color: var(--txt-dk); }
.nav-back  { font-size: 12px; text-decoration: none; transition: color var(--transition); }
.nav-back-blue { color: var(--blue); }
.nav-back-gold { color: var(--gold-dk); }
.nav-back-teal { color: var(--teal); }
.nav-back-rust { color: var(--rust); }

/* Hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--txt-dk); margin: 5px 0;
  transition: var(--transition);
}
.nav-mobile { display: none; flex-direction: column; gap: 12px; padding: 16px 28px; background: var(--white); border-bottom: 1px solid var(--bd); }
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link { font-size: 15px; }

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; margin-bottom: 20px;
}
.breadcrumb a { text-decoration: none; transition: opacity var(--transition); }
.breadcrumb a:hover { opacity: .7; }
.breadcrumb span { color: var(--txt-mt); }
.bc-blue a { color: var(--blue); }
.bc-gold a { color: var(--gold-dk); }
.bc-teal a { color: var(--teal); }
.bc-rust a { color: var(--rust); }

/* ── Badges ───────────────────────────────────────────────── */
.badge {
  display: inline-block; font-size: 10px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 16px;
}
.badge + .badge { margin-left: 8px; }
.badge-blue   { background: var(--blue); color: var(--white); }
.badge-gold   { background: var(--gold); color: var(--white); }
.badge-teal   { background: var(--teal); color: var(--white); }
.badge-rust   { background: var(--rust); color: var(--white); }
.badge-navy   { background: var(--navy); color: var(--white); }
.badge-green  { background: var(--green); color: var(--white); }
.badge-tag-blue  { background: var(--blue-lt); color: var(--blue-dk); }
.badge-tag-gold  { background: var(--gold-lt); color: var(--gold-dk); }
.badge-tag-teal  { background: var(--teal-lt); color: var(--teal); }
.badge-tag-rust  { background: var(--rust-lt); color: var(--rust); }

/* ── Homepage Hero ────────────────────────────────────────── */
.hero-home {
  background: var(--bg-cream);
  padding: 56px 28px 52px;
  overflow: hidden; position: relative;
  min-height: 360px;
}
.hero-home__bg {
  position: absolute; right: -32px; top: -8px;
  font-family: var(--font-disp); font-weight: 900;
  font-size: 260px; color: #E5D8CC;
  line-height: .85; letter-spacing: -8px;
  writing-mode: vertical-rl; text-orientation: mixed;
  pointer-events: none; user-select: none;
  z-index: 0; opacity: .9;
}
.hero-home__content { position: relative; z-index: 1; max-width: 400px; }
.hero-home__pretitle {
  font-family: var(--font-disp); font-style: italic;
  font-size: 26px; font-weight: 400; color: var(--txt-lt);
  line-height: 1; margin-bottom: 4px; display: block;
}
.hero-home__title {
  font-family: var(--font-disp); font-weight: 900;
  font-size: 86px; line-height: .88; color: var(--txt-dk);
  letter-spacing: -3px; margin-bottom: 24px;
}
.hero-home__tagline { font-size: 15px; font-weight: 500; color: var(--txt-dk); margin-bottom: 6px; }
.hero-home__sub { font-size: 13px; color: var(--txt-lt); line-height: 1.65; margin-bottom: 28px; max-width: 320px; }
.hero-home__btns { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* ── Mission Bar ──────────────────────────────────────────── */
.mission-bar {
  background: var(--white); padding: 28px 28px;
  text-align: center; border-bottom: 1px solid var(--bd-lt);
}
.mission-bar p {
  font-size: 14px; line-height: 1.75; color: var(--txt-md);
  max-width: 540px; margin: 0 auto;
}
.mission-bar strong { color: var(--txt-dk); font-weight: 500; }

/* ── Program Cards Grid ───────────────────────────────────── */
.programs-section { background: var(--bg); padding: 52px 28px; }
.cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--bd); overflow: hidden;
  transition: box-shadow var(--transition);
}
.card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.card__head { padding: 20px 20px 16px; border-bottom: 1px solid var(--bd-lt); }
.card__title {
  font-family: var(--font-disp); font-size: 19px; font-weight: 700;
  color: var(--txt-dk); line-height: 1.15; margin-bottom: 4px;
}
.card__sub { font-size: 11px; color: var(--txt-mt); }
.card__body { padding: 16px 20px 20px; }
.card__features { margin-bottom: 16px; }
.card__features li {
  font-size: 12px; color: var(--txt-md); padding: 4px 0;
  display: flex; align-items: flex-start; gap: 8px; line-height: 1.45;
}
.feat-dot {
  width: 5px; height: 5px; background: var(--gold);
  border-radius: 50%; flex-shrink: 0; margin-top: 4px;
}
.card__cta {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 12px; font-weight: 500; color: var(--blue);
  border: 1px solid var(--blue-bd); padding: 9px 16px;
  border-radius: var(--radius-sm); text-decoration: none; width: 100%;
  transition: background var(--transition);
}
.card__cta:hover { background: var(--blue-lt); }

/* ── Waitlist CTA Section ─────────────────────────────────── */
.waitlist-cta {
  background: var(--navy); padding: 56px 28px; text-align: center;
}
.waitlist-cta__title {
  font-family: var(--font-disp); font-size: 30px; font-weight: 700;
  color: var(--white); margin-bottom: 10px; line-height: 1.2;
}
.waitlist-cta__sub { font-size: 13px; color: #7A95A8; line-height: 1.65; margin-bottom: 28px; }
.waitlist-cta__progs { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; margin-top: 24px; }
.prog-pill { font-size: 11px; color: #556D7E; display: flex; align-items: center; gap: 6px; }
.prog-pill__dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; opacity: .7; }

/* ── Page Hero (program detail pages) ────────────────────── */
.page-hero { padding: 48px 28px 44px; border-bottom: 1px solid; }
.page-hero--blue  { background: var(--blue-lt);  border-color: var(--blue-bd); }
.page-hero--gold  { background: var(--gold-lt);  border-color: #E8D99A; }
.page-hero--teal  { background: var(--teal-lt);  border-color: var(--teal-bd); }
.page-hero--rust  { background: var(--rust-lt);  border-color: var(--rust-bd); }
.page-hero--cream { background: var(--bg-cream); border-color: var(--bg-cream-dk); }

.page-hero__title {
  font-family: var(--font-disp); font-weight: 900;
  font-size: 52px; line-height: .95; color: var(--txt-dk);
  letter-spacing: -1.5px; margin-bottom: 16px;
}
.page-hero__desc {
  font-size: 14px; color: var(--txt-md); line-height: 1.75;
  max-width: 480px; margin-bottom: 28px;
}

/* Stats bar */
.stats-bar {
  display: flex; border: 1px solid; border-radius: var(--radius-md);
  overflow: hidden; background: var(--white); width: fit-content;
  margin-bottom: 28px;
}
.stats-bar--blue  { border-color: var(--blue-bd); }
.stats-bar--gold  { border-color: #E8D99A; }
.stats-bar--teal  { border-color: var(--teal-bd); }
.stat-cell { padding: 12px 20px; text-align: center; border-right: 1px solid; }
.stat-cell:last-child { border-right: none; }
.stats-bar--blue .stat-cell { border-color: var(--bd); }
.stats-bar--gold .stat-cell { border-color: #F0E8C8; }
.stats-bar--teal .stat-cell { border-color: var(--teal-bd); }
.stat-cell__num {
  font-family: var(--font-disp); font-size: 22px; font-weight: 700;
  display: block; line-height: 1;
}
.stat-cell__label {
  font-size: 10px; color: var(--txt-mt);
  text-transform: uppercase; letter-spacing: .08em;
  margin-top: 3px; display: block;
}
.stat-cell--blue .stat-cell__num { color: var(--blue); }
.stat-cell--gold .stat-cell__num { color: var(--gold-dk); }
.stat-cell--teal .stat-cell__num { color: var(--teal); }

/* ── Section headers ──────────────────────────────────────── */
.sec-title {
  font-family: var(--font-disp); font-size: 26px; font-weight: 700;
  color: var(--txt-dk); margin-bottom: 10px; line-height: 1.2;
}
.sec-sub {
  font-size: 13px; color: var(--txt-lt); line-height: 1.65;
  margin-bottom: 24px; max-width: 520px;
}

/* ── Bands (AI Lab) ───────────────────────────────────────── */
.bands-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.band-card { border-radius: var(--radius-lg); border: 1px solid var(--bd); overflow: hidden; }
.band-card__head { padding: 20px 20px 16px; }
.band-card__head--a { background: var(--blue-lt); border-bottom: 3px solid var(--blue); }
.band-card__head--b { background: var(--navy); border-bottom: 3px solid var(--gold); }
.band-card__band {
  font-size: 10px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 6px; display: block;
}
.band-card__band--a { color: var(--blue); }
.band-card__band--b { color: var(--gold); }
.band-card__name {
  font-family: var(--font-disp); font-size: 21px; font-weight: 700;
  line-height: 1.1; margin-bottom: 4px;
}
.band-card__name--a { color: var(--txt-dk); }
.band-card__name--b { color: var(--white); }
.band-card__ages { font-size: 12px; }
.band-card__ages--a { color: var(--txt-lt); }
.band-card__ages--b { color: #7A95A8; }
.band-card__body { padding: 18px 20px; background: var(--white); }
.band-card__body p { font-size: 13px; color: var(--txt-md); line-height: 1.65; margin-bottom: 14px; }
.band-card__what {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .08em; color: var(--txt-mt); margin-bottom: 8px;
}
.band-card__list li {
  font-size: 12px; color: var(--txt-md); padding: 3px 0;
  display: flex; align-items: flex-start; gap: 8px; line-height: 1.45;
}

/* ── What to Expect (3-col) ───────────────────────────────── */
.expect-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.expect-item {
  background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--bd); padding: 18px 16px;
}
.expect-item__num {
  font-family: var(--font-disp); font-size: 36px; font-weight: 700;
  opacity: .12; line-height: 1; margin-bottom: 6px;
}
.expect-item__title { font-size: 13px; font-weight: 500; color: var(--txt-dk); margin-bottom: 4px; }
.expect-item__desc { font-size: 11px; color: var(--txt-lt); line-height: 1.55; }

/* ── Demo Day ─────────────────────────────────────────────── */
.demo-section { background: var(--navy); padding: 44px 28px; }
.demo-section__eyebrow { color: var(--gold); }
.demo-section__title {
  font-family: var(--font-disp); font-size: 28px; font-weight: 700;
  color: var(--white); margin-bottom: 14px; line-height: 1.15;
}
.demo-section__desc { font-size: 13px; color: #7A95A8; line-height: 1.75; margin-bottom: 20px; }
.demo-section__quote {
  border-left: 3px solid var(--gold);
  padding: 14px 16px; background: #243141;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.demo-section__quote p { font-size: 13px; color: #AABCCC; line-height: 1.7; font-style: italic; }

/* ── Pricing ──────────────────────────────────────────────── */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.price-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--bd); padding: 24px;
}
.price-card--featured { border: 2px solid var(--blue); }
.price-card__amount {
  font-family: var(--font-disp); font-size: 42px; font-weight: 700;
  color: var(--txt-dk); line-height: 1; margin-bottom: 4px;
}
.price-card__period { font-size: 12px; color: var(--txt-mt); margin-bottom: 16px; }
.price-card__label { font-size: 12px; color: var(--txt-mt); margin-bottom: 4px; }
.price-card__divider { border: none; border-top: 1px solid var(--bd-lt); margin: 16px 0; }
.price-card__includes {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .08em; color: var(--txt-mt); margin-bottom: 10px;
}
.price-card__feats li {
  font-size: 12px; color: var(--txt-md); padding: 4px 0;
  display: flex; align-items: flex-start; gap: 8px; line-height: 1.45;
}
.pfeat-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; margin-top: 5px; }
.price-card__note { font-size: 11px; color: var(--txt-mt); margin-top: 12px; line-height: 1.5; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { margin-top: 20px; }
.faq-item { border-bottom: 1px solid var(--bd-lt); padding: 16px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item__q { font-size: 13px; font-weight: 500; color: var(--txt-dk); margin-bottom: 8px; cursor: pointer; display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.faq-item__q::after { content: '+'; font-size: 18px; color: var(--txt-mt); flex-shrink: 0; }
.faq-item__q.open::after { content: '−'; }
.faq-item__a { font-size: 12px; color: var(--txt-md); line-height: 1.65; display: none; }
.faq-item__a.open { display: block; }

/* ── Page CTA section ─────────────────────────────────────── */
.page-cta { padding: 44px 28px; text-align: center; border-top: 1px solid; }
.page-cta--blue  { background: var(--blue-lt);  border-color: var(--blue-bd); }
.page-cta--gold  { background: var(--gold); border-color: var(--gold); }
.page-cta--teal  { background: var(--teal);  border-color: var(--teal); }
.page-cta--rust  { background: var(--rust);  border-color: var(--rust); }
.page-cta__title {
  font-family: var(--font-disp); font-size: 28px; font-weight: 700;
  margin-bottom: 10px;
}
.page-cta--blue  .page-cta__title { color: var(--txt-dk); }
.page-cta--gold  .page-cta__title,
.page-cta--teal  .page-cta__title,
.page-cta--rust  .page-cta__title { color: var(--white); }
.page-cta__sub { font-size: 13px; line-height: 1.6; margin-bottom: 24px; }
.page-cta--blue  .page-cta__sub { color: var(--txt-md); }
.page-cta--gold  .page-cta__sub,
.page-cta--teal  .page-cta__sub,
.page-cta--rust  .page-cta__sub { color: rgba(255,255,255,.8); }
.page-cta__btns  { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.page-cta__note  { font-size: 11px; margin-top: 14px; }
.page-cta--blue  .page-cta__note { color: var(--txt-mt); }
.page-cta--gold  .page-cta__note { color: rgba(255,255,255,.7); }
.page-cta--teal  .page-cta__note { color: rgba(255,255,255,.7); }
.page-cta--rust  .page-cta__note { color: rgba(255,255,255,.7); }

/* ── Who section (3-col) ──────────────────────────────────── */
.who-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-top: 20px; }
.who-item { border-radius: var(--radius-md); padding: 14px 16px; border: 1px solid; }
.who-item--teal { background: var(--teal-lt); border-color: var(--teal-bd); }
.who-item--rust { background: var(--rust-lt); border-color: var(--rust-bd); }
.who-item--gold { background: var(--gold-lt); border-color: #F0E8C8; }
.who-item__title { font-size: 13px; font-weight: 500; color: var(--txt-dk); margin-bottom: 3px; }
.who-item__desc  { font-size: 11px; color: var(--txt-lt); line-height: 1.5; }

/* ── Expect list (coming soon pages) ─────────────────────── */
.expect-list { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.expect-row {
  background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--bd); padding: 14px 18px;
  display: flex; align-items: flex-start; gap: 14px;
}
.expect-row__dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 4px; }
.expect-row__dot--teal { background: var(--teal); }
.expect-row__dot--rust { background: var(--rust); }
.expect-row__text { font-size: 13px; color: var(--txt-md); line-height: 1.55; }
.expect-row__text strong { color: var(--txt-dk); font-weight: 500; display: block; margin-bottom: 2px; }

/* ── Coming Soon card ─────────────────────────────────────── */
.coming-soon-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 2px dashed; padding: 28px; text-align: center;
}
.coming-soon-card--teal { border-color: var(--teal-bd); }
.coming-soon-card--rust { border-color: var(--rust-bd); }
.coming-soon-card__label {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .1em; margin-bottom: 8px;
}
.coming-soon-card--teal .coming-soon-card__label { color: var(--teal); }
.coming-soon-card--rust .coming-soon-card__label { color: var(--rust); }
.coming-soon-card__title {
  font-family: var(--font-disp); font-size: 22px; font-weight: 700;
  color: var(--txt-dk); margin-bottom: 8px;
}
.coming-soon-card__desc { font-size: 12px; color: var(--txt-lt); line-height: 1.6; margin-bottom: 16px; }

/* ── Waitlist Form page ───────────────────────────────────── */
.form-hero {
  background: var(--bg-cream); padding: 44px 28px 40px;
  text-align: center; border-bottom: 1px solid var(--bg-cream-dk);
}
.form-hero__title {
  font-family: var(--font-disp); font-size: 40px; font-weight: 700;
  color: var(--txt-dk); margin-bottom: 12px; line-height: 1.1;
}
.form-hero__sub { font-size: 14px; color: var(--txt-lt); line-height: 1.7; max-width: 420px; margin: 0 auto; }

.form-section { padding: 44px 28px; background: var(--white); }
.form-wrap { max-width: 520px; margin: 0 auto; }

.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; }

.form-label {
  font-size: 12px; font-weight: 500; color: var(--txt-dk);
  margin-bottom: 6px; display: block;
}
.form-label__hint { font-size: 11px; color: var(--txt-mt); font-weight: 400; margin-left: 4px; }

.form-input, .form-textarea {
  width: 100%; padding: 10px 14px;
  font-size: 13px; font-family: var(--font-body); color: var(--txt-dk);
  border: 1.5px solid #D8E4EE; border-radius: var(--radius-sm);
  background: var(--bg); outline: none;
  transition: border-color var(--transition), background var(--transition);
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--blue); background: var(--white);
}
.form-input::placeholder, .form-textarea::placeholder { color: #AAB8C4; }
.form-textarea { resize: vertical; height: 80px; }

.form-divider { border: none; border-top: 1px solid var(--bd-lt); margin: 24px 0; }

.check-label {
  font-size: 12px; font-weight: 500; color: var(--txt-dk);
  margin-bottom: 10px; display: block;
}
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.check-item {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; border: 1.5px solid #D8E4EE;
  border-radius: var(--radius-sm); background: var(--bg);
  cursor: pointer; transition: border-color var(--transition), background var(--transition);
  user-select: none;
}
.check-item:has(input:checked), .check-item.checked {
  border-color: var(--blue); background: var(--blue-lt);
}
.check-item input[type="checkbox"] { display: none; }
.check-box {
  width: 16px; height: 16px; border-radius: 4px;
  border: 1.5px solid var(--blue-bd); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.check-item:has(input:checked) .check-box, .check-item.checked .check-box {
  background: var(--blue); border-color: var(--blue);
}
.check-item:has(input:checked) .check-box::after, .check-item.checked .check-box::after {
  content: '✓'; color: var(--white); font-size: 10px; font-weight: 700;
}
.check-prog-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot-blue { background: var(--blue); }
.dot-gold { background: var(--gold); }
.dot-teal { background: var(--teal); }
.dot-rust { background: var(--rust); }
.check-text { font-size: 12px; color: var(--txt-md); line-height: 1.3; }
.check-text strong { display: block; color: var(--txt-dk); font-weight: 500; font-size: 12px; }

.submit-btn {
  width: 100%; padding: 14px;
  background: var(--blue); color: var(--white);
  font-size: 14px; font-weight: 600;
  border: none; border-radius: var(--radius-sm);
  cursor: pointer; font-family: var(--font-body);
  margin-bottom: 12px;
  transition: opacity var(--transition);
}
.submit-btn:hover { opacity: .9; }
.submit-btn:disabled { opacity: .6; cursor: not-allowed; }

.form-disclaimer { font-size: 11px; color: var(--txt-mt); text-align: center; line-height: 1.6; }

.error-msg { font-size: 11px; color: #C0392B; margin-top: 4px; display: none; }
.error-msg.show { display: block; }

/* ── What happens next ────────────────────────────────────── */
.next-section { background: var(--bg); padding: 40px 28px; border-top: 1px solid var(--bd); }
.next-steps { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-top: 20px; }
.next-step {
  text-align: center; padding: 20px 14px;
  background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--bd);
}
.next-step__num {
  font-family: var(--font-disp); font-size: 32px; font-weight: 700;
  color: var(--blue-lt); margin-bottom: 8px; line-height: 1;
}
.next-step__title { font-size: 13px; font-weight: 500; color: var(--txt-dk); margin-bottom: 4px; }
.next-step__desc  { font-size: 11px; color: var(--txt-lt); line-height: 1.55; }

/* ── Thank You ────────────────────────────────────────────── */
.thankyou-section { background: var(--white); padding: 64px 28px; text-align: center; }
.thankyou-icon {
  width: 56px; height: 56px; background: var(--blue-lt);
  border-radius: 50%; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--blue); font-weight: 700;
}
.thankyou-title {
  font-family: var(--font-disp); font-size: 32px; font-weight: 700;
  color: var(--txt-dk); margin-bottom: 10px;
}
.thankyou-sub {
  font-size: 14px; color: var(--txt-lt); line-height: 1.75;
  max-width: 400px; margin: 0 auto 28px;
}
.thankyou-progs { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 28px; }
.thankyou-prog {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--txt-md);
  background: var(--bg); border: 1px solid var(--bd);
  padding: 6px 14px; border-radius: 20px;
}
.thankyou-note { font-size: 11px; color: var(--txt-mt); margin-top: 14px; line-height: 1.6; }
.thankyou-note a { color: var(--blue); }

/* ── Outcomes grid (workshop) ─────────────────────────────── */
.outcomes-intro { font-size: 13px; color: var(--txt-md); line-height: 1.7; margin-bottom: 24px; max-width: 520px; }
.outcomes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.outcome-item {
  background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--bd); padding: 14px 16px;
  display: flex; align-items: flex-start; gap: 12px;
}
.outcome-item__num {
  font-family: var(--font-disp); font-size: 20px; font-weight: 700;
  color: #E8D99A; line-height: 1; flex-shrink: 0; width: 24px;
}
.outcome-item__text { font-size: 12px; color: var(--txt-md); line-height: 1.55; }
.outcome-item__text strong { color: var(--txt-dk); font-weight: 500; display: block; margin-bottom: 2px; }

/* ── Format grid (workshop) ───────────────────────────────── */
.format-section { background: var(--navy); padding: 44px 28px; }
.format-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-top: 20px; }
.format-item { background: #243141; border-radius: var(--radius-md); padding: 16px; border: 1px solid #2E3F52; }
.format-item__icon { font-size: 20px; margin-bottom: 8px; }
.format-item__title { font-size: 13px; font-weight: 500; color: var(--white); margin-bottom: 4px; }
.format-item__desc { font-size: 11px; color: #6B839A; line-height: 1.55; }

/* ── Dates section (workshop) ─────────────────────────────── */
.dates-section { padding: 44px 28px; border-bottom: 1px solid; }
.dates-section--gold { background: var(--gold-lt); border-color: #E8D99A; }
.dates-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }

/* ── Footer ───────────────────────────────────────────────── */
.footer { background: var(--navy-dk); padding: 28px 28px; }
.footer__top {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 20px; border-bottom: 1px solid #1F2E3C; margin-bottom: 18px;
}
.footer__logo {
  font-family: var(--font-disp); font-weight: 700;
  font-size: 15px; color: var(--white); text-decoration: none;
}
.footer__logo small {
  display: block; font-size: 10px; font-family: var(--font-body);
  color: #3A5065; letter-spacing: .08em; text-transform: uppercase; margin-top: 2px;
}
.footer__links { display: flex; gap: 18px; align-items: center; }
.footer__link { font-size: 12px; color: #3A5065; text-decoration: none; transition: color var(--transition); }
.footer__link:hover { color: #7A95A8; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer__copy { font-size: 11px; color: #2A3D4D; }
.footer__social { display: flex; gap: 8px; }
.footer__social-ic {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid #1F2E3C; display: flex; align-items: center;
  justify-content: center; text-decoration: none; font-size: 12px;
  color: #3A5065; transition: border-color var(--transition), color var(--transition);
}
.footer__social-ic:hover { border-color: #3A5065; color: #7A95A8; }

/* ── Utilities ────────────────────────────────────────────── */
.bg-white    { background: var(--white); }
.bg-lt       { background: var(--bg); }
.bg-cream    { background: var(--bg-cream); }
.bg-navy     { background: var(--navy); }
.bg-blue-lt  { background: var(--blue-lt); }
.bg-gold-lt  { background: var(--gold-lt); }
.bg-teal-lt  { background: var(--teal-lt); }
.bg-rust-lt  { background: var(--rust-lt); }

.text-center { text-align: center; }
.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mb-4  { margin-bottom: 16px; }
.mb-6  { margin-bottom: 24px; }
.p-section { padding: 44px 28px; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }

  .hero-home__bg { font-size: 160px; right: -20px; }
  .hero-home__title { font-size: 60px; }

  .cards-grid       { grid-template-columns: 1fr; }
  .bands-grid       { grid-template-columns: 1fr; }
  .price-grid       { grid-template-columns: 1fr; }
  .expect-grid      { grid-template-columns: 1fr; }
  .who-grid         { grid-template-columns: 1fr; }
  .outcomes-grid    { grid-template-columns: 1fr; }
  .format-grid      { grid-template-columns: 1fr; }
  .next-steps       { grid-template-columns: 1fr; }
  .dates-inner      { grid-template-columns: 1fr; }
  .check-grid       { grid-template-columns: 1fr; }
  .form-row         { grid-template-columns: 1fr; margin-bottom: 0; }

  .page-hero__title { font-size: 38px; }

  .waitlist-cta__progs { flex-direction: column; align-items: center; }

  .stats-bar { flex-wrap: wrap; }
  .stat-cell { border-right: none; border-bottom: 1px solid var(--bd); }
  .stat-cell:last-child { border-bottom: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
