/* ==========================================================================
   Mosaic for Superintendents — Landing Page
   Built on the Mosaic design system tokens (tokens.css).
   ========================================================================== */

@import url('tokens.css');

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg-page);
  color: var(--fg-1);
  font-family: var(--font-sans);
  font-size: var(--fs-16);
  line-height: var(--lh-relaxed);
  -webkit-font-smoothing: antialiased;
}

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

/* Layout */
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
.wrap-narrow {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 32px;
}

section { padding: 96px 0; position: relative; }
section.compact { padding: 64px 0; }
section.tight { padding: 48px 0; }

/* =============================================================
   Header
   ============================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-1);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-7);
  padding: 14px 0;
}
.site-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.site-header__logo img { height: 28px; width: auto; }
.site-header__sku {
  font-family: var(--font-heading);
  font-weight: var(--w-semibold);
  font-size: var(--fs-13);
  color: var(--fg-3);
  border-left: 1px solid var(--border-1);
  padding-left: 12px;
  letter-spacing: -0.1px;
}
.site-header__nav {
  display: flex;
  align-items: center;
  gap: var(--sp-7);
}
.site-header__nav a {
  color: var(--fg-3);
  text-decoration: none;
  font-size: var(--fs-14);
  font-weight: var(--w-medium);
  font-family: var(--font-heading);
}
.site-header__nav a:hover { color: var(--brand-primary); }
@media (max-width: 880px) {
  .site-header__nav .link { display: none; }
}

/* =============================================================
   Button
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: var(--w-semibold);
  font-size: var(--fs-15);
  text-decoration: none;
  border-radius: var(--r-pill);
  padding: 12px 22px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--easing),
              box-shadow var(--dur-fast) var(--easing),
              background var(--dur-fast) var(--easing),
              color var(--dur-fast) var(--easing);
  white-space: nowrap;
}
.btn--primary {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 1px 2px rgba(5,42,139,0.18);
}
.btn--primary:hover {
  background: var(--brand-primary-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-button-hover);
}
.btn--primary:active { transform: translateY(0); }
.btn--ghost {
  background: transparent;
  color: var(--brand-primary);
  border-color: var(--border-1);
}
.btn--ghost:hover { background: var(--brand-primary-tint); border-color: var(--brand-primary); }
.btn--inverse {
  background: #fff;
  color: var(--brand-primary);
}
.btn--inverse:hover {
  background: #F0F4FF;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}
.btn--lg { padding: 16px 28px; font-size: var(--fs-16); }

.btn .arrow {
  display: inline-block;
  transition: transform var(--dur-fast) var(--easing);
}
.btn:hover .arrow { transform: translateX(3px); }

.cta-microcopy {
  font-size: var(--fs-13);
  color: var(--fg-4);
  margin-top: 12px;
}

/* =============================================================
   Eyebrow / utility
   ============================================================= */
.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--fs-12);
  font-weight: var(--w-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: var(--sp-6);
}
[data-theme="brand"] .eyebrow,
[data-theme="dark"] .eyebrow { color: var(--brand-logo-blue-light); }

.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head--left { margin-left: 0; text-align: left; }

/* =============================================================
   Typography helpers
   ============================================================= */
h1, .h-display {
  font-family: var(--font-display);
  font-weight: var(--w-black);
  font-size: clamp(36px, 5.2vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  margin: 0 0 var(--sp-7);
}

h2, .h-section {
  font-family: var(--font-display);
  font-weight: var(--w-black);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--fg-1);
  margin: 0 0 var(--sp-7);
}

h3, .h-card {
  font-family: var(--font-heading);
  font-weight: var(--w-semibold);
  font-size: var(--fs-20);
  line-height: 1.3;
  color: var(--fg-1);
  margin: 0 0 var(--sp-3);
}

.lede {
  font-family: var(--font-sans);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--fg-3);
  max-width: 56ch;
  margin: 0 0 var(--sp-8);
}

.body-lg { font-size: var(--fs-17); line-height: 1.6; color: var(--fg-3); }
.body { font-size: var(--fs-15); line-height: 1.65; color: var(--fg-3); }

/* =============================================================
   HERO
   ============================================================= */
.hero {
  padding: 80px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__copy { position: relative; z-index: 2; }
.hero__cta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero__visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 56px rgba(5,42,139,0.18), 0 2px 8px rgba(0,0,0,0.06);
  aspect-ratio: 4/3;
}
.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__visual-caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(5,42,139,0.92);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: var(--w-semibold);
  font-size: var(--fs-12);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 4px;
  backdrop-filter: blur(6px);
}
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* =============================================================
   Reach — metrics + district logos
   ============================================================= */
.reach {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
}
.reach__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.reach__title {
  font-family: var(--font-display);
  font-weight: var(--w-bold);
  font-size: var(--fs-32);
  line-height: var(--lh-tight);
  letter-spacing: -0.5px;
  margin: 14px 0 12px;
  color: var(--fg-1);
}
.reach__lede {
  font-family: var(--font-sans);
  font-size: var(--fs-16);
  line-height: var(--lh-relaxed);
  color: var(--fg-2);
  margin: 0 auto;
  max-width: 56ch;
}

/* Metrics row */
.reach__metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.metric {
  padding: 28px 22px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid var(--border-1);
  position: relative;
}
.metric:last-child { border-right: 0; }
.metric__num {
  font-family: var(--font-display);
  font-weight: var(--w-bold);
  font-size: 48px;
  line-height: 1;
  letter-spacing: -1.5px;
  color: var(--brand-primary);
  display: inline-flex;
  align-items: baseline;
}
.metric__plus {
  font-size: 0.6em;
  font-weight: var(--w-semibold);
  margin-left: 2px;
  color: var(--brand-primary);
  letter-spacing: -0.5px;
}
.metric__unit {
  font-family: var(--font-heading);
  font-size: 0.32em;
  font-weight: var(--w-semibold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-left: 8px;
  color: var(--fg-3);
  line-height: 1.2;
  align-self: center;
}
.metric__label {
  font-family: var(--font-sans);
  font-size: var(--fs-13);
  font-weight: var(--w-regular);
  color: var(--fg-2);
  line-height: 1.45;
}
@media (max-width: 900px) {
  .reach__metrics { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(2) { border-right: 0; }
  .metric:nth-child(1), .metric:nth-child(2) { border-bottom: 1px solid var(--border-1); }
  .metric__num { font-size: 40px; }
}
@media (max-width: 520px) {
  .reach__metrics { grid-template-columns: 1fr; }
  .metric { border-right: 0; border-bottom: 1px solid var(--border-1); }
  .metric:last-child { border-bottom: 0; }
}

/* Districts row */
.reach__districts {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.reach__districts-label {
  font-family: var(--font-heading);
  font-size: var(--fs-12);
  font-weight: var(--w-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-4);
}
.district-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
  width: 100%;
}
.district {
  flex: 1 1 240px;
  max-width: 320px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--border-1);
  border-radius: 14px;
  transition: transform var(--dur-base) var(--easing), box-shadow var(--dur-base) var(--easing), border-color var(--dur-base) var(--easing);
}
.district:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(5, 42, 139, 0.10);
  border-color: var(--brand-primary-tint);
}
.district__mark {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border-1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.district__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.district__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.district__name {
  font-family: var(--font-heading);
  font-weight: var(--w-semibold);
  font-size: var(--fs-15);
  color: var(--fg-1);
  line-height: 1.25;
}
.district__state {
  font-family: var(--font-sans);
  font-size: var(--fs-12);
  font-weight: var(--w-medium);
  color: var(--fg-4);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.district__pin {
  width: 12px;
  height: 12px;
  color: var(--brand-primary);
  flex-shrink: 0;
  margin-left: -2px;
}
@media (max-width: 600px) {
  .district { flex: 1 1 100%; max-width: 420px; }
}

/* =============================================================
   Trust strip
   ============================================================= */
.trust {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
  padding: 32px 0;
}
.trust__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.trust__label {
  font-family: var(--font-heading);
  font-size: var(--fs-12);
  font-weight: var(--w-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-4);
}
.trust__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 56px;
}
.trust__name {
  font-family: var(--font-heading);
  font-weight: var(--w-semibold);
  font-size: var(--fs-15);
  color: var(--fg-3);
  letter-spacing: -0.1px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border-2);
  display: inline-block;
}

/* =============================================================
   Problem section — pull-quote with stat
   ============================================================= */
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .problem__grid { grid-template-columns: 1fr; gap: 48px; } }

.pullquote {
  position: relative;
  background: linear-gradient(135deg, #FAFBFC 0%, #F2F5FA 100%);
  border: 1px solid var(--border-1);
  border-radius: 16px;
  padding: 40px 40px 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
}
.pullquote__stat {
  font-family: var(--font-display);
  font-weight: var(--w-black);
  font-size: 120px;
  line-height: 0.9;
  letter-spacing: -0.04em;
  background: var(--gradient-royal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pullquote__body {
  font-family: var(--font-heading);
  font-size: var(--fs-20);
  line-height: 1.4;
  color: var(--fg-2);
  font-weight: var(--w-medium);
}
.pullquote__attrib {
  display: block;
  margin-top: 16px;
  font-family: var(--font-sans);
  font-size: var(--fs-13);
  font-weight: var(--w-semibold);
  color: var(--brand-primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pullquote__attrib-sub {
  display: block;
  margin-top: 2px;
  font-size: var(--fs-13);
  color: var(--fg-4);
  font-weight: var(--w-regular);
  text-transform: none;
  letter-spacing: 0;
}
@media (max-width: 600px) {
  .pullquote { grid-template-columns: 1fr; gap: 16px; padding: 28px; }
  .pullquote__stat { font-size: 88px; }
}

/* =============================================================
   The shift — big question
   ============================================================= */
.shift {
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}
.shift::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('assets/bg-light-grid.png');
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  pointer-events: none;
}
.shift .wrap { position: relative; z-index: 1; }
.shift__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.shift__question {
  font-family: var(--font-display);
  font-weight: var(--w-black);
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--brand-primary);
  margin: 0 0 var(--sp-7);
}
.shift__question .accent {
  background: var(--gradient-royal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.shift__visual {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/3;
}
.shift__visual img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .shift__grid { grid-template-columns: 1fr; gap: 40px; } }

/* =============================================================
   How it works — 4 step grid
   ============================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 16px;
}
@media (max-width: 1000px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .steps { grid-template-columns: 1fr; } }

.step {
  background: #fff;
  border: 1px solid var(--border-1);
  border-radius: 14px;
  padding: 28px 24px 26px;
  position: relative;
  transition: transform var(--dur-base) var(--easing-out),
              box-shadow var(--dur-base) var(--easing-out),
              border-color var(--dur-base) var(--easing-out);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.step:hover {
  transform: translateY(-2px);
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-card);
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-primary-tint);
  color: var(--brand-primary);
  font-family: var(--font-display);
  font-weight: var(--w-black);
  font-size: var(--fs-16);
}
.step h3 { margin: 0; font-size: var(--fs-17); }
.step p { margin: 0; font-size: var(--fs-14); line-height: 1.55; color: var(--fg-3); }

.cohort-note {
  margin-top: 40px;
  padding: 24px 28px;
  background: var(--brand-primary-tint);
  border-left: 3px solid var(--brand-primary);
  border-radius: 10px;
  font-family: var(--font-heading);
  font-weight: var(--w-medium);
  font-size: var(--fs-17);
  line-height: 1.5;
  color: var(--fg-1);
}
.cohort-note strong { color: var(--brand-primary); font-weight: var(--w-bold); }

.process-image {
  margin: 48px auto 0;
  max-width: 1040px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-1);
  background: #fff;
  box-shadow: var(--shadow-card);
}
.process-image img { width: 100%; display: block; }

/* =============================================================
   Two jobs
   ============================================================= */
.twojobs {
  background: var(--bg-soft);
}
.twojobs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 800px) { .twojobs__grid { grid-template-columns: 1fr; } }
.job-card {
  background: #fff;
  border: 1px solid var(--border-1);
  border-radius: 16px;
  padding: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  transition: transform var(--dur-base) var(--easing-out),
              box-shadow var(--dur-base) var(--easing-out);
}
.job-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }

/* Visual area at the top of each card */
.job-card__visual {
  position: relative;
  width: 100%;
  height: 320px;
  background: linear-gradient(180deg, #F5F7FB 0%, #EAEFF7 100%);
  border-bottom: 1px solid var(--border-1);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

/* Stacked report spreads */
.job-card__visual--reports {
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 24px 22px;
  background: #fff;
  border-bottom: 0;
}
.report-spread {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  display: block;
}

/* Communications card — composite image */
.job-card__visual--social {
  background: #fff;
  border-bottom: 0;
  padding: 0;
}
.comms-composite {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.job-card__tag {
  font-family: var(--font-heading);
  font-size: var(--fs-12);
  font-weight: var(--w-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-primary);
  padding: 28px 32px 0;
}
.job-card h3 {
  font-family: var(--font-display);
  font-weight: var(--w-black);
  font-size: var(--fs-24);
  letter-spacing: -0.01em;
  margin: 0;
  padding: 0 32px;
}
.job-card p { margin: 0; padding: 0 32px; font-size: var(--fs-15); color: var(--fg-3); line-height: 1.6; }

/* =============================================================
   Proof tiles
   ============================================================= */
.proof__intro {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}
@media (max-width: 900px) { .proof__intro { grid-template-columns: 1fr; gap: 16px; } }
.proof__intro p { margin: 0; }

.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1000px) { .tiles { grid-template-columns: 1fr; } }

.tile {
  background: #fff;
  border: 1px solid var(--border-1);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-base) var(--easing-out),
              box-shadow var(--dur-base) var(--easing-out);
}
.tile:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(5,42,139,0.12); }

.tile__cover {
  position: relative;
  aspect-ratio: 1/1;
  background: #052A8B;
  overflow: hidden;
}
.tile__cover img {
  width: 100%; height: 100%; object-fit: cover;
}
.tile__district {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 18px 12px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: var(--w-bold);
  font-size: var(--fs-13);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tile__body {
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}
.tile__stat {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.tile__stat-num {
  font-family: var(--font-display);
  font-weight: var(--w-black);
  font-size: 56px;
  line-height: 0.95;
  letter-spacing: -0.03em;
  background: var(--gradient-royal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tile__stat-label {
  font-family: var(--font-heading);
  font-weight: var(--w-semibold);
  font-size: var(--fs-14);
  color: var(--fg-3);
  line-height: 1.35;
}

.tile__quote {
  font-family: var(--font-sans);
  font-size: var(--fs-15);
  line-height: 1.6;
  color: var(--fg-2);
  margin: 0;
  border-left: 3px solid var(--brand-primary);
  padding-left: 16px;
  font-style: italic;
}
.tile__attrib {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-1);
}
.tile__avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-muted);
  flex-shrink: 0;
}
.tile__person-name {
  font-family: var(--font-heading);
  font-weight: var(--w-bold);
  font-size: var(--fs-15);
  color: var(--fg-1);
  line-height: 1.2;
}
.tile__person-title {
  font-size: var(--fs-13);
  color: var(--fg-4);
  line-height: 1.4;
  margin-top: 2px;
}

/* Advisor endorsement — elevated band with portrait */
.endorsement {
  padding-top: 64px;
  padding-bottom: 64px;
}
.endorsement__card {
  margin: 0;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 36px;
  align-items: center;
  background: var(--gradient-deep);
  color: #fff;
  border-radius: 20px;
  padding: 36px 44px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(5, 42, 139, 0.22), 0 6px 16px rgba(5, 42, 139, 0.10);
}
.endorsement__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('assets/bg-grid.png');
  background-size: cover;
  background-position: center;
  opacity: 0.16;
  pointer-events: none;
}
.endorsement__card > * { position: relative; z-index: 1; }
.endorsement__portrait {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  box-shadow:
    0 0 0 4px rgba(255,255,255,0.10),
    0 0 0 1px rgba(255,255,255,0.20) inset,
    0 12px 28px rgba(0,0,0,0.28);
  flex-shrink: 0;
}
.endorsement__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.endorsement__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.endorsement__eyebrow {
  font-family: var(--font-heading);
  font-size: var(--fs-11);
  font-weight: var(--w-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
.endorsement__quote {
  position: relative;
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--w-medium);
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.4;
  letter-spacing: -0.2px;
  color: #fff;
  text-wrap: pretty;
}
.endorsement__mark {
  font-family: var(--font-display);
  font-weight: var(--w-black);
  font-style: italic;
  font-size: 1.5em;
  line-height: 0;
  color: rgba(255, 255, 255, 0.35);
  margin-right: 2px;
  vertical-align: -0.18em;
}
.endorsement__attrib {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-top: 4px;
}
.endorsement__name {
  font-family: var(--font-heading);
  font-weight: var(--w-bold);
  font-size: var(--fs-15);
  color: #fff;
  letter-spacing: -0.2px;
}
.endorsement__role {
  font-family: var(--font-heading);
  font-size: var(--fs-11);
  font-weight: var(--w-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
@media (max-width: 900px) {
  .endorsement { padding-top: 48px; padding-bottom: 48px; }
  .endorsement__card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 32px 28px;
    text-align: center;
    justify-items: center;
  }
  .endorsement__portrait {
    width: 132px;
    height: 132px;
  }
  .endorsement__body { align-items: center; }
  .endorsement__attrib { align-items: center; }
}
@media (max-width: 520px) {
  .endorsement__card { padding: 26px 20px; }
  .endorsement__portrait { width: 116px; height: 116px; }
}

/* Legacy advisor band — kept for any leftover usage */
.advisor {
  margin-top: 48px;
  padding: 36px 40px;
  background: var(--gradient-deep);
  border-radius: 18px;
  color: #fff;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.advisor::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('assets/bg-grid.png');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  pointer-events: none;
}
.advisor > * { position: relative; z-index: 1; }
.advisor__mark {
  font-family: var(--font-display);
  font-weight: var(--w-black);
  font-size: 88px;
  line-height: 0.7;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}
.advisor__body {
  font-family: var(--font-heading);
  font-weight: var(--w-medium);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.45;
  color: #fff;
}
.advisor__attrib {
  display: block;
  margin-top: 16px;
  font-size: var(--fs-13);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: var(--w-semibold);
  color: rgba(255,255,255,0.78);
}
@media (max-width: 700px) {
  .advisor { grid-template-columns: 1fr; padding: 28px; gap: 12px; }
  .advisor__mark { font-size: 64px; }
}

/* =============================================================
   Partnerships
   ============================================================= */
.partners {
  background: var(--bg-soft);
}
.partners__inner {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.partners__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: nowrap;
  margin-top: 40px;
}
@media (max-width: 600px) {
  .partners__logos { flex-wrap: wrap; gap: 32px; }
}
.partner-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--dur-base) var(--easing);
}
.partner-logo:hover {
  opacity: 0.78;
}
.partner-logo img {
  display: block;
  width: auto;
  object-fit: contain;
}
.partner-logo--nass img {
  height: 56px;
}
.partner-logo--newera img {
  height: 84px;
}
.partner-logo--cookcenter img {
  height: 48px;
}
@media (max-width: 900px) {
  .partners__logos { gap: 40px; }
  .partner-logo--nass img { height: 44px; }
  .partner-logo--newera img { height: 68px; }
  .partner-logo--cookcenter img { height: 38px; }
}
@media (max-width: 600px) {
  .partners__logos { gap: 32px; }
  .partner-logo--nass img { height: 40px; }
  .partner-logo--newera img { height: 64px; }
  .partner-logo--cookcenter img { height: 34px; }
}
.partner-slot {
  width: 220px;
  height: 96px;
  border-radius: 12px;
  border: 1.5px dashed var(--border-2);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-4);
  font-family: var(--font-heading);
  font-weight: var(--w-semibold);
  font-size: var(--fs-14);
  letter-spacing: 0.04em;
}
.partner-slot__name {
  font-family: var(--font-display);
  font-weight: var(--w-black);
  font-size: var(--fs-20);
  letter-spacing: -0.01em;
  color: var(--brand-primary);
}
.partner-slot__hint {
  display: block;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--fg-5);
  text-transform: uppercase;
  font-weight: var(--w-medium);
  margin-top: 4px;
}

/* =============================================================
   Mid CTA banner
   ============================================================= */
.mid-cta {
  background: var(--gradient-royal);
  color: #fff;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.mid-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('assets/bg-grid.png');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  pointer-events: none;
}
.mid-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.mid-cta__title {
  font-family: var(--font-display);
  font-weight: var(--w-black);
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0;
  max-width: 700px;
}

/* =============================================================
   Why different — 4 credibility cards
   ============================================================= */
.creds {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 760px) { .creds { grid-template-columns: 1fr; } }
.cred {
  background: #fff;
  border: 1px solid var(--border-1);
  border-radius: 14px;
  padding: 28px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--dur-base) var(--easing-out),
              box-shadow var(--dur-base) var(--easing-out),
              border-color var(--dur-base) var(--easing-out);
}
.cred:hover {
  transform: translateY(-2px);
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-card);
}
.cred__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--brand-primary-tint);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cred__icon svg { width: 22px; height: 22px; }
.cred h3 { margin: 0; font-size: var(--fs-17); }
.cred p { margin: 0; font-size: var(--fs-14); line-height: 1.6; color: var(--fg-3); }

/* =============================================================
   Board section
   ============================================================= */
.board__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 880px) { .board__inner { grid-template-columns: 1fr; gap: 32px; } }

.board-kit {
  background: linear-gradient(180deg, #FAFBFC 0%, #F2F5FA 100%);
  border: 1px solid var(--border-1);
  border-radius: 16px;
  padding: 32px 32px 28px;
}
.board-kit__title {
  font-family: var(--font-heading);
  font-weight: var(--w-bold);
  font-size: var(--fs-14);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin: 0 0 18px;
}
.board-kit__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.board-kit__list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  font-family: var(--font-heading);
  font-size: var(--fs-15);
  font-weight: var(--w-medium);
  color: var(--fg-2);
  line-height: 1.45;
}
.board-kit__list li::before {
  content: "";
  display: block;
  width: 18px; height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--brand-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* =============================================================
   Offer / Pilot
   ============================================================= */
.offer {
  background: var(--bg-soft);
}
.offer__card {
  background: #fff;
  border: 1px solid var(--border-1);
  border-radius: 20px;
  padding: 48px 48px 44px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.offer__card::before {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 6px;
  background: var(--gradient-royal);
}
@media (max-width: 900px) {
  .offer__card { grid-template-columns: 1fr; padding: 32px; gap: 28px; }
}
.offer__price {
  font-family: var(--font-display);
  font-weight: var(--w-black);
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--brand-primary);
  margin: 0 0 8px;
}
.offer__price .from {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--fs-13);
  font-weight: var(--w-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-4);
  margin-bottom: 8px;
}
.offer__terms {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.offer__terms li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  font-size: var(--fs-15);
  color: var(--fg-2);
  line-height: 1.5;
}
.offer__terms li svg {
  width: 18px; height: 18px;
  color: var(--success);
  margin-top: 2px;
}
.offer__pilot-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.offer__pilot-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  background: var(--bg-soft);
  border-radius: 10px;
  font-family: var(--font-heading);
  font-weight: var(--w-medium);
  font-size: var(--fs-14);
  color: var(--fg-2);
}
.offer__pilot-list li .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: var(--w-black);
  font-size: var(--fs-12);
}

/* =============================================================
   FAQ
   ============================================================= */
.faq {
  max-width: 860px;
  margin: 0 auto;
}
.faq details {
  border-bottom: 1px solid var(--border-1);
  padding: 22px 0;
}
.faq details[open] summary .faq__chev { transform: rotate(180deg); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-heading);
  font-weight: var(--w-semibold);
  font-size: var(--fs-18);
  color: var(--fg-1);
  transition: color var(--dur-fast) var(--easing);
}
.faq summary:hover { color: var(--brand-primary); }
.faq summary::-webkit-details-marker { display: none; }
.faq__chev {
  width: 24px; height: 24px;
  color: var(--brand-primary);
  transition: transform var(--dur-base) var(--easing-out);
  flex-shrink: 0;
}
.faq__answer {
  margin-top: 14px;
  font-size: var(--fs-15);
  line-height: 1.65;
  color: var(--fg-3);
  max-width: 70ch;
}

/* =============================================================
   Closing CTA
   ============================================================= */
.close-cta {
  background: var(--gradient-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 112px 0;
}
.close-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('assets/bg-grid.png');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  pointer-events: none;
}
.close-cta .wrap { position: relative; z-index: 1; }
.close-cta h2 {
  color: #fff;
  font-size: clamp(34px, 4vw, 56px);
}
.close-cta p {
  color: rgba(255,255,255,0.85);
  font-size: clamp(17px, 1.4vw, 20px);
  max-width: 640px;
  margin: 0 auto var(--sp-9);
}
.close-cta .cta-microcopy { color: rgba(255,255,255,0.7); }

/* =============================================================
   Footer
   ============================================================= */
.footer {
  background: #0A0E2E;
  color: rgba(255,255,255,0.7);
  padding: 56px 0 40px;
  font-size: var(--fs-14);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 760px) { .footer__top { grid-template-columns: 1fr; gap: 28px; } }
.footer__brand-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.footer__brand-row img { height: 28px; }
.footer__brand-row .sep {
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,0.2);
}
.footer__la {
  height: 22px;
  opacity: 0.85;
}
.footer__about { line-height: 1.6; max-width: 36ch; color: rgba(255,255,255,0.65); }
.footer h4 {
  font-family: var(--font-heading);
  font-weight: var(--w-semibold);
  font-size: var(--fs-13);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
}
.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__list a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color var(--dur-fast) var(--easing);
}
.footer__list a:hover { color: #fff; }
.footer__list--social a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity var(--dur-fast) var(--easing);
}
.footer__list--social a:hover .footer__icon { opacity: 1; }
.footer__legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: var(--fs-12);
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 12px;
}

/* =============================================================
   Tiny utilities
   ============================================================= */
.muted { color: var(--fg-4); }
.center { text-align: center; }

/* =============================================================
   Calendly modal
   ============================================================= */
.cal-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s var(--easing);
}
.cal-modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}
.cal-modal__scrim {
  position: absolute;
  inset: 0;
  background: rgba(19, 22, 65, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.cal-modal__panel {
  position: relative;
  width: 100%;
  max-width: 1040px;
  height: min(820px, calc(100vh - 48px));
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(5, 42, 139, 0.35), 0 8px 24px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(8px) scale(0.98);
  transition: transform 0.24s var(--easing);
}
.cal-modal[aria-hidden="false"] .cal-modal__panel {
  transform: translateY(0) scale(1);
}
.cal-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-1);
  gap: 16px;
  flex-shrink: 0;
}
.cal-modal__eyebrow {
  font-family: var(--font-heading);
  font-size: var(--fs-11);
  font-weight: var(--w-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin: 0 0 4px;
}
.cal-modal__title {
  font-family: var(--font-display);
  font-weight: var(--w-bold);
  font-size: var(--fs-20);
  letter-spacing: -0.3px;
  color: var(--fg-1);
  margin: 0;
  line-height: 1.2;
}
.cal-modal__close {
  background: var(--bg-soft);
  border: 1px solid var(--border-1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--fg-2);
  transition: background var(--dur-base) var(--easing), color var(--dur-base) var(--easing), border-color var(--dur-base) var(--easing);
  flex-shrink: 0;
}
.cal-modal__close:hover {
  background: var(--brand-primary-tint);
  color: var(--brand-primary);
  border-color: var(--brand-primary-tint);
}
.cal-modal__close svg {
  width: 18px;
  height: 18px;
}
.cal-modal__body {
  flex: 1;
  min-height: 0;
  position: relative;
}
.cal-modal__body .calendly-inline-widget {
  position: absolute;
  inset: 0;
  height: 100% !important;
  width: 100%;
}
@media (max-width: 600px) {
  .cal-modal { padding: 0; }
  .cal-modal__panel {
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
  }
}
