/* ============================================================
   "Modern Academy" design system — from the Stitch redesign
   (docs/stitch/DESIGN.md is the token source of truth).
   Deep Navy = authority · Ochre = CTA/accent · light blue-tinted
   surfaces · Rubik display + Assistant body · soft-modern shapes.
   ============================================================ */
:root {
  --bg: #f9f9ff;              /* surface */
  --bg-alt: #f0f3ff;          /* surface-container-low — section alternates */
  --bg-card: #ffffff;         /* surface-container-lowest */
  --bg-chip: #dee8ff;         /* surface-container-high — pills/chips */

  --navy: #002045;            /* primary */
  --navy-container: #1a365d;  /* primary-container — solid B2B card */
  --navy-soft: #d6e3ff;       /* primary-fixed — decor blobs, soft fills */

  --ochre: #ffc250;           /* secondary-container — primary CTA bg */
  --ochre-deep: #d69e2e;      /* hover state of CTA */
  --ochre-text: #7d5700;      /* secondary — ochre-family text on light bg */
  --ochre-soft: #ffdeaa;      /* secondary-fixed — decor blob */

  --ink: #121c2c;             /* on-surface */
  --ink-soft: #43474e;        /* on-surface-variant */
  --line: #c4c6cf;            /* outline-variant */

  --font-display: "Rubik", sans-serif;
  --font-ui: "Assistant", sans-serif;

  --radius: 8px;              /* buttons, inputs, standard elements */
  --radius-card: 16px;        /* cards, media, photos */
  --shadow-soft: 0 4px 12px rgba(18, 28, 44, .05);
  --shadow-lift: 0 8px 16px rgba(18, 28, 44, .08);
  --wrap: 1200px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}
.wrap.narrow { max-width: 760px; }

/* ============================================================
   Sticky nav
   ============================================================ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg-card);
  box-shadow: var(--shadow-soft);
}
.topbar-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--ochre-text); }
.nav-cta {
  display: inline-block;
  background: var(--ochre);
  color: var(--navy) !important;
  font-weight: 700;
  font-size: 14.5px;
  padding: 9px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  color: var(--navy);
}
.nav-toggle svg { display: block; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-card);
    box-shadow: var(--shadow-lift);
    padding: 8px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 13px 24px;
    font-size: 16px;
  }
  .nav-links .nav-cta {
    margin: 8px 24px 10px;
    text-align: center;
  }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 17px;
  padding: 14px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:focus-visible { outline: 3px solid var(--navy); outline-offset: 3px; }

.btn-primary {
  background: var(--ochre);
  color: var(--navy);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover {
  background: var(--ochre-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; }

.btn-on-dark {
  background: var(--ochre);
  color: var(--navy);
}
.btn-on-dark:hover { background: var(--ochre-deep); transform: translateY(-2px); }

.micro {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-top: 10px;
}

/* ============================================================
   HERO — two-column, noise settles into clarity
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 24px 64px;
}
.hero-blob {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
  pointer-events: none;
}
.hero-blob-a { background: var(--navy-soft); top: -90px; right: -90px; }
.hero-blob-b { background: var(--ochre-soft); bottom: -90px; left: -90px; }

.hero-grid {
  position: relative;
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) {
  .hero { padding-top: 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
}

.hero-text {
  position: relative;
  z-index: 1;
}

.noise-field {
  position: absolute;
  inset: -40px -20px;
  pointer-events: none;
  z-index: -1;
}
.noise-tag {
  position: absolute;
  right: var(--x);
  top: var(--y);
  transform: rotate(var(--r)) scale(1);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink-soft);
  background: var(--navy-soft);
  border: 1px solid var(--line);
  padding: 5px 11px;
  border-radius: var(--radius);
  white-space: nowrap;
  opacity: 0;
  animation: noise-in .5s ease forwards, noise-out .8s ease forwards;
  animation-delay: var(--d), calc(var(--d) + 1.3s);
}
@keyframes noise-in {
  from { opacity: 0; transform: rotate(var(--r)) scale(.85) translateY(6px); }
  to   { opacity: .8; transform: rotate(var(--r)) scale(1) translateY(0); }
}
@keyframes noise-out {
  from { opacity: .8; }
  to   { opacity: 0; transform: rotate(var(--r)) scale(.92) translateY(-10px); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--navy);
  background: var(--bg-chip);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  margin: 0 0 20px;
  opacity: 0;
  animation: rise .7s ease forwards;
  animation-delay: 1.5s;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4.5vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--navy);
  opacity: 0;
  animation: rise .8s ease forwards;
  animation-delay: 1.6s;
}

.hero-sub {
  font-size: clamp(16.5px, 2vw, 19px);
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 0 0 28px;
  opacity: 0;
  animation: rise .8s ease forwards;
  animation-delay: 1.75s;
}

.hero .btn,
.hero .micro {
  opacity: 0;
  animation: rise .8s ease forwards;
}
.hero .btn { animation-delay: 1.9s; }
.hero .micro { animation-delay: 2.05s; }

.hero-photo {
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: rise .9s ease forwards;
  animation-delay: 1.7s;
}
.hero-photo img {
  width: 100%;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lift);
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 4px solid rgba(255, 194, 80, .25);
  border-radius: var(--radius-card);
  pointer-events: none;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .noise-tag { display: none; }
  .eyebrow, .hero-title, .hero-sub, .hero .btn, .hero .micro, .hero-photo {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }
}

/* ============================================================
   Section scaffolding + scroll reveal
   ============================================================ */
.section { padding: 80px 0; scroll-margin-top: 64px; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 3.2vw, 32px);
  line-height: 1.3;
  margin: 0 0 26px;
  color: var(--navy);
}
.section-title.center { text-align: center; }
.section-title.small-top { margin-top: 56px; }

.section-kicker {
  font-weight: 700;
  color: var(--ochre-text);
  margin: -16px 0 24px;
}

.section-body {
  font-size: 17.5px;
  color: var(--ink-soft);
}

/* ============================================================
   HOW — bio blurb + portrait
   ============================================================ */
.how { background: var(--bg-alt); }

.how-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.how-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--ochre);
  box-shadow: var(--shadow-lift);
}
@media (max-width: 720px) {
  .how-grid { grid-template-columns: 1fr; text-align: center; }
  .how-photo { order: -1; max-width: 220px; margin: 0 auto; }
}

/* ============================================================
   DUAL GATES — visual-weight split (solid navy vs. outlined white)
   ============================================================ */
.tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 720px) {
  .tabs { grid-template-columns: 1fr; }
}

.tab {
  position: relative;
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}
.tab:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }

.tab-label {
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* B2B — solid navy authority card */
.tab-b2b {
  background: var(--navy-container);
  color: #fff;
}
.tab-b2b .tab-label { background: rgba(255, 255, 255, .12); color: var(--ochre); }
.tab-b2b .tab-pain { color: #fff; }
.tab-b2b .tab-offer { color: var(--navy-soft); }

/* B2C — white card with ochre top accent */
.tab-b2c {
  background: var(--bg-card);
  border-top: 4px solid var(--ochre);
}
.tab-b2c .tab-label { background: var(--bg-chip); color: var(--navy); }
.tab-b2c .tab-pain { color: var(--navy); }
.tab-b2c .tab-offer { color: var(--ink-soft); }

.tab-pain {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  margin: 0 0 12px;
}
.tab-offer {
  font-size: 15.5px;
  margin: 0 0 22px;
}

.tab-b2b .btn { background: var(--ochre); color: var(--navy); border: none; }
.tab-b2b .btn:hover { background: var(--ochre-deep); }
.tab-b2c .btn { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.tab-b2c .btn:hover { background: var(--navy); color: #fff; }

/* ============================================================
   ABOUT — timeline
   ============================================================ */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-right: 3px solid var(--navy-soft);
}
.timeline-item {
  position: relative;
  padding: 0 30px 30px 0;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  right: -8px;
  top: 5px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--ochre);
  border: 2px solid var(--bg);
}
.timeline-item h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.4;
  margin: 0 0 6px;
  color: var(--navy);
}
.timeline-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15.5px;
}

/* ============================================================
   PROOF
   ============================================================ */
.proof { background: var(--bg-alt); }

.org-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 12px;
}
.org-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 108px;
  min-width: 210px;
  padding: 16px 32px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
}
.org-chip img {
  max-height: 66px;
  max-width: 210px;
  width: auto;
  object-fit: contain;
}
.org-chip-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  color: var(--ink-soft);
  text-align: center;
}

/* ============================================================
   STAT ROW — YouTube reach numbers
   ============================================================ */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 780px;
  margin: 36px auto 0;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 5vw, 42px);
  color: var(--navy);
}
.stat-label {
  display: block;
  margin-top: 4px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
}
@media (max-width: 560px) {
  .stat-row { grid-template-columns: 1fr; gap: 22px; }
}

/* ============================================================
   WHATSAPP SCREENSHOTS — real messages, click to enlarge
   ============================================================ */
.wa-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}
@media (max-width: 720px) {
  .wa-grid { grid-template-columns: repeat(2, 1fr); }
}
.wa-shot {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  padding: 0;
  border: none;
  border-radius: var(--radius-card);
  overflow: hidden;
  cursor: pointer;
  background: var(--navy);
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-shot:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.wa-shot:focus-visible { outline: 3px solid var(--navy); outline-offset: 2px; }
.wa-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 720px) {
  .quotes { grid-template-columns: 1fr; }
}

.quote-card {
  margin: 0;
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 26px 24px;
  box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--ochre);
  transition: transform .2s ease, box-shadow .2s ease;
}
.quote-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.quote-card.q2, .quote-card.q4 { border-top-color: var(--navy-container); }
.quote-card.q5 { grid-column: 1 / -1; }
.quote-card p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 14px;
  color: var(--ink);
}
.quote-card cite {
  font-style: normal;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--navy);
  display: block;
}

.letter-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  color: var(--ochre-text);
  text-decoration: none;
  background: none;
  border: none;
  border-bottom: 1px solid var(--ochre);
  padding: 0;
  cursor: pointer;
}
.letter-link:hover { color: var(--ochre-deep); }
.letter-link:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; }

/* ============================================================
   LETTER MODAL — read proof letters in-page, never leave the site
   ============================================================ */
.letter-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.letter-modal[hidden] { display: none; }
.letter-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 32, 69, .55);
}
.letter-modal-panel {
  position: relative;
  width: min(920px, 100%);
  height: min(88vh, 900px);
  background: var(--bg-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}
.letter-modal-close {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--bg-card);
  color: var(--navy);
  font-size: 16px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}
.letter-modal-close:hover { background: var(--bg-alt); }
.letter-modal-frame {
  width: 100%;
  height: 100%;
  border: none;
}
.letter-modal-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--navy);
  touch-action: none;
  cursor: zoom-in;
  transform-origin: center center;
}
.letter-modal-img.is-light {
  background: var(--bg-card);
}
.letter-modal-img.is-zoom-anim {
  transition: transform .2s ease;
}
@media (max-width: 560px) {
  .letter-modal { padding: 0; }
  .letter-modal-panel { width: 100%; height: 100%; border-radius: 0; }
}

/* ============================================================
   GALLERY SLIDER — photos from real sessions
   RTL note: the track is laid out with `direction: ltr` so slide
   index N always sits at translateX(-N * 100%). Mixing RTL flex
   order with transform math is the classic way this breaks.
   ============================================================ */
.gallery { background: var(--bg-alt); }

.slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.slider-viewport {
  overflow: hidden;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lift);
  background: var(--navy);
}
.slider-track {
  display: flex;
  direction: ltr;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1);
}
@media (prefers-reduced-motion: reduce) {
  .slider-track { transition: none; }
}
.slide {
  flex: 0 0 100%;
  position: relative;
  direction: rtl;
}
.slide img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Portrait-oriented source photo — cover would force a 16:10 crop down to
   roughly a third of the image's height (a tight face-only zoom). Show the
   whole photo instead, letterboxed on the slider's navy background. */
.slide-portrait img {
  object-fit: contain;
}
.slide-caption {
  position: absolute;
  inset: auto 0 0 0;
  margin: 0;
  padding: 30px 20px 14px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  background: linear-gradient(to top, rgba(0, 32, 69, .85), transparent);
}

.slider-btn {
  position: absolute;
  top: calc(50% - 22px);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--bg-card);
  color: var(--navy);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-lift);
  transition: background .15s ease, transform .15s ease;
}
.slider-btn:hover { background: var(--ochre); transform: scale(1.06); }
.slider-btn:focus-visible { outline: 3px solid var(--navy); outline-offset: 2px; }
.slider-prev { right: -10px; }
.slider-next { left: -10px; }
@media (max-width: 980px) {
  .slider-prev { right: 6px; }
  .slider-next { left: 6px; }
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
}
.slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: var(--line);
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}
.slider-dot.is-active { background: var(--ochre-deep); transform: scale(1.25); }
.slider-dot:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; }

/* ============================================================
   MEDIA — TV appearances (click-to-load facade)
   ============================================================ */
.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .media-grid { grid-template-columns: 1fr; }
}

.media-card { text-align: center; }

.media-play {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  padding: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  cursor: pointer;
  background: var(--navy);
  box-shadow: var(--shadow-soft);
}
.media-play img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .85;
  transition: opacity .2s ease, transform .3s ease;
}
.media-play:hover img { opacity: 1; transform: scale(1.03); }
.media-play-icon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--navy);
  background: rgba(255, 194, 80, .95);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .3);
}
.media-caption {
  margin: 12px 0 0;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-soft);
}
.media-iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: var(--radius-card);
}

/* ============================================================
   OFFERS
   ============================================================ */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 720px) {
  .offer-grid { grid-template-columns: 1fr; }
}
.offer-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 28px 26px;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}
.offer-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.offer-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  margin: 0 0 10px;
  color: var(--navy);
}
.offer-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15.5px;
}

/* ============================================================
   BOLD DISQUALIFICATION strip
   ============================================================ */
.disqualify {
  background: var(--navy);
  color: var(--navy-soft);
  padding: 64px 0;
  text-align: center;
}
.disqualify p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(19px, 2.4vw, 24px);
  line-height: 1.45;
  margin: 0 0 10px;
}
.disqualify p.strong {
  font-weight: 600;
  color: #fff;
}
.disqualify p.strong em,
.disqualify p em { font-style: normal; color: var(--ochre); }

/* ============================================================
   LEAD FORM
   ============================================================ */
.lead-section { background: var(--bg-alt); }

.lead-sub {
  text-align: center;
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: -10px auto 28px;
}

.lead-form {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.field-row { display: flex; gap: 14px; }
.field-row .field { flex: 1; }
.field label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
  font-size: 15.5px;
  font-family: inherit;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 2px var(--navy-soft);
}
.field textarea { min-height: 70px; resize: vertical; }

.lead-form .btn { align-self: flex-start; }
.lead-form .btn:disabled { opacity: .6; cursor: default; transform: none; }

@media (max-width: 560px) {
  .field-row { flex-direction: column; }
}

.form-msg {
  font-size: 14.5px;
  font-weight: 700;
  display: none;
}
.form-msg.ok { display: block; color: #1a7a3a; }
.form-msg.err { display: block; color: #ba1a1a; }

/* ============================================================
   FOOTER — navy
   ============================================================ */
.footer {
  background: var(--navy);
  color: var(--navy-soft);
  padding: 44px 24px;
  text-align: center;
  font-size: 14.5px;
}
.footer .footer-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: #fff;
  display: block;
  margin-bottom: 12px;
}
.footer a {
  color: var(--navy-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer a:hover { color: var(--ochre); }
