/* ============================================================
   Boomerang Classroom — Site Styles
   Locked to Brand Kit v1.0
   ============================================================ */

:root {
  /* Parent palette */
  --return-blue: #2563EB;
  --classroom-navy: #172554;
  --chalk-warmth: #FFF7ED;
  --paper-mist: #F8FAFC;

  /* Product palette */
  --pass-maroon: #9F1239;
  --projects-plum: #7C3AED;
  --progress-green: #16A34A;
  --pencil-gold: #F59E0B;

  /* Neutrals */
  --ink: #0F172A;
  --ink-soft: #334155;
  --line: #E2E8F0;

  /* Type */
  --font-display: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-hand: "Caveat", "Segoe Script", cursive;
  --font-serif: "Fraunces", "Iowan Old Style", "Hoefler Text", Georgia, "Times New Roman", serif;

  /* Layout */
  --maxw: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(15,23,42,0.06), 0 4px 14px rgba(15,23,42,0.06);
  --shadow-md: 0 10px 30px rgba(15,23,42,0.10);
}

/* =================== Reset =================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper-mist);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--return-blue); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font: inherit; cursor: pointer; }

/* =================== Typography =================== */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--classroom-navy); margin: 0 0 .5em; letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.1; }
h3 { font-size: 1.35rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

h2 em, h2 i {
  font-family: var(--font-hand);
  font-style: normal;
  color: var(--pencil-gold);
  font-weight: 600;
  font-size: 1.1em;
  line-height: 1;
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--return-blue);
  margin: 0 0 .75rem;
}
.eyebrow.light { color: #BFDBFE; }
.lede { font-family: var(--font-serif); font-size: 1.2rem; line-height: 1.55; color: var(--ink-soft); max-width: 60ch; font-weight: 400; letter-spacing: -0.005em; }
.lede.light { color: #DBEAFE; }
.muted { color: #64748B; }

/* ---- Elegant prose voice for narrative passages ---- */
.prose p,
.about-copy p,
.investor-cta p,
.investor-why li,
.legal-inner p,
.legal-inner li,
.product-desc,
.resource-card p,
.contact-card p,
.privacy-card p,
.home-classroom-copy .lede {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.08rem;
  line-height: 1.65;
  letter-spacing: -0.003em;
  color: var(--ink-soft);
}
.about-copy p em,
.investor-why li em,
.prose em { font-style: italic; color: var(--classroom-navy); }
.about-copy strong,
.investor-why strong,
.prose strong { font-family: var(--font-serif); font-weight: 600; color: var(--classroom-navy); }

/* ---- Branded inline product mention ---- */
.brand-product {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, var(--return-blue), #1D4ED8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
  font-style: normal;
}
.brand-product-light {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
}
/* Per-product color tints when context is clear */
.product-card.pass .brand-product { background: linear-gradient(180deg, var(--pass-maroon), #7F1130); -webkit-background-clip: text; background-clip: text; color: transparent; }
.product-card.projects .brand-product { background: linear-gradient(180deg, var(--projects-plum), #6D28D9); -webkit-background-clip: text; background-clip: text; color: transparent; }
.product-card.progress .brand-product { background: linear-gradient(180deg, var(--progress-green), #15803D); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* =================== Layout helpers =================== */
.section-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-header { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.section-header .lede { margin: 0 auto; }

/* =================== Buttons =================== */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-decoration: none;
  line-height: 1;
}
.btn-primary { background: var(--return-blue); color: #fff; border-color: var(--return-blue); }
.btn-primary:hover { background: #1D4ED8; text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-block { width: 100%; padding: 1rem 1.5rem; font-size: 1.05rem; }

/* =================== Accessibility helpers =================== */
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 0; top: 0; transform: translateY(-150%);
  background: var(--pencil-gold); color: var(--classroom-navy);
  padding: 0.6rem 1rem; font-family: var(--font-display); font-weight: 600;
  z-index: 100; border-radius: 0 0 8px 0;
  transition: transform .15s ease;
}
.skip-link:focus { transform: translateY(0); text-decoration: none; outline: 3px solid var(--classroom-navy); outline-offset: 2px; }

.brand-lockup { display: flex; align-items: center; gap: 0.65rem; color: #fff; text-decoration: none; }
.brand-lockup:hover { text-decoration: none; }
.brand-mark { width: 34px; height: 34px; flex: 0 0 34px; }
.brand-wordmark { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: 0.04em; }
.brand-sub { font-family: var(--font-display); font-weight: 500; font-size: 0.72rem; letter-spacing: 0.28em; color: #93C5FD; margin-top: 2px; }

/* =================== Hero (locked image with clickable hotspots) =================== */
.hero { position: relative; background: #0E1B47; overflow: hidden; margin: 0; padding: 0; }
.hero-frame { position: relative; display: block; width: 100%; max-width: 1600px; margin: 0 auto; line-height: 0; }
.hero-img { width: 100%; height: auto; display: block; }
.hero-hotspot {
  position: absolute;
  display: block;
  font-size: 0; color: transparent;
  background: transparent;
  border-radius: 6px;
  text-decoration: none;
  transition: background .15s ease, box-shadow .15s ease;
}
.hero-hotspot:hover { background: rgba(255,255,255,0.08); text-decoration: none; }
.hero-hotspot:focus-visible {
  outline: 3px solid var(--pencil-gold);
  outline-offset: 2px;
  background: rgba(255,255,255,0.10);
}
.hero-hotspot-cta:hover { background: rgba(245,158,11,0.12); }

/* =================== Trust strip =================== */
.trust-strip { background: var(--chalk-warmth); border-bottom: 1px solid var(--line); padding: 1.5rem 0; }
.trust-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.trust-item {
  display: flex; align-items: center; gap: 0.75rem;
  color: var(--classroom-navy); font-size: 0.95rem;
}
.trust-item svg { width: 26px; height: 26px; flex: 0 0 26px; color: var(--return-blue); }
.trust-item strong { font-family: var(--font-display); font-weight: 600; }
@media (max-width: 860px) { .trust-inner { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .trust-inner { grid-template-columns: 1fr; } }

/* =================== Products =================== */
.products { background: var(--paper-mist); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 960px) { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  position: relative;
  display: block;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 1.75rem;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  overflow: hidden;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); text-decoration: none; }
.product-card::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 5px;
}
.product-card.pass::before { background: var(--pass-maroon); }
.product-card.projects::before { background: var(--projects-plum); }
.product-card.progress::before { background: var(--progress-green); }

.product-icon { width: 64px; height: 64px; margin-bottom: 1.25rem; }
.product-icon svg { width: 100%; height: 100%; }
.product-eyebrow { font-family: var(--font-display); font-weight: 500; font-size: 0.85rem; color: var(--ink-soft); letter-spacing: 0.08em; text-transform: uppercase; margin: 0 0 0.1rem; }
.product-name { font-family: var(--font-display); font-weight: 700; font-size: 1.75rem; letter-spacing: 0.04em; margin: 0 0 0.85rem; }
.product-card.pass .product-name { color: var(--pass-maroon); }
.product-card.projects .product-name { color: var(--projects-plum); }
.product-card.progress .product-name { color: var(--progress-green); }
.product-desc { color: var(--ink-soft); font-size: 0.98rem; margin: 0 0 1.5rem; }
.product-link { font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; color: var(--return-blue); }
.product-card.pass .product-link { color: var(--pass-maroon); }
.product-card.projects .product-link { color: var(--projects-plum); }
.product-card.progress .product-link { color: var(--ink-soft); }
.product-link.muted { color: var(--ink-soft); font-weight: 500; }

.coming-soon { opacity: 0.95; }
.coming-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--progress-green); color: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 0.7rem; border-radius: 999px;
}

/* =================== Our Why =================== */
.our-why { background: var(--chalk-warmth); }
.why-grid {
  display: grid; grid-template-columns: 320px 1fr; gap: 3rem; align-items: center;
}
@media (max-width: 860px) { .why-grid { grid-template-columns: 1fr; gap: 2rem; } .why-arc { max-width: 260px; margin: 0 auto; } }
.why-arc svg { width: 100%; height: auto; }
.why-copy h2 { max-width: 18ch; }
.belief-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 0.9rem; }
.belief-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 1.05rem; color: var(--classroom-navy); }
.belief-list svg { width: 24px; height: 24px; flex: 0 0 24px; margin-top: 3px; }

/* =================== About =================== */
.about { background: var(--paper-mist); }
.about-grid {
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 3rem; align-items: start;
}
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }
.about-copy p { color: var(--ink-soft); font-size: 1.05rem; margin: 0 0 1.1rem; max-width: 62ch; }
.about-copy strong { color: var(--classroom-navy); }
.about-copy .btn { margin-top: 1rem; }

.about-card {
  background: var(--classroom-navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}
.about-card h3 { color: #fff; font-family: var(--font-display); margin: 0 0 1.25rem; font-size: 1.1rem; letter-spacing: 0.08em; text-transform: uppercase; }
.about-card dl { margin: 0; display: grid; gap: 0.75rem; }
.about-card dt { font-family: var(--font-display); font-weight: 500; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: #93C5FD; }
.about-card dd { margin: 0 0 0.5rem; font-size: 1.02rem; color: #fff; }

/* =================== Beta =================== */
.beta { background: var(--classroom-navy); color: #fff; position: relative; overflow: hidden; }
.beta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(800px 280px at 90% 0%, rgba(124,58,237,0.25), transparent 60%),
    radial-gradient(700px 260px at 5% 90%, rgba(37,99,235,0.30), transparent 60%);
  pointer-events: none;
}
.beta-inner { position: relative; max-width: 820px; margin: 0 auto; padding: 0 var(--gutter); text-align: center; }
.beta h2 { color: #fff; }
.beta h2 em { color: var(--pencil-gold); }
.beta-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.25rem;
  margin-top: 2.5rem; text-align: left;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(6px);
}
.field { display: flex; flex-direction: column; }
.field-full { grid-column: 1 / -1; }
.field label { font-family: var(--font-display); font-weight: 500; font-size: 0.85rem; letter-spacing: 0.04em; color: #BFDBFE; margin-bottom: 0.45rem; }
.field input, .field select {
  background: #fff;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  font: inherit;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--pencil-gold); box-shadow: 0 0 0 4px rgba(245,158,11,0.25); }
.checkbox-row { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; padding: 0.25rem 0; }
.check { display: flex; align-items: center; gap: 0.5rem; color: #E2E8F0; font-size: 0.95rem; }
.check input { accent-color: var(--pencil-gold); width: 18px; height: 18px; }
.form-fineprint { grid-column: 1 / -1; color: #93C5FD; font-size: 0.85rem; margin: 0; text-align: center; }
.form-success {
  grid-column: 1 / -1;
  background: rgba(22,163,74,0.15);
  border: 1px solid rgba(22,163,74,0.45);
  color: #BBF7D0;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  text-align: center;
}
.form-success a { color: #fff; text-decoration: underline; }
@media (max-width: 640px) { .beta-form { grid-template-columns: 1fr; padding: 1.25rem; } }

/* =================== Resources =================== */
.resources { background: var(--paper-mist); }
.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 960px) { .resource-grid { grid-template-columns: 1fr; } }
.resource-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.resource-card h3 { margin: 0.5rem 0 0.5rem; color: var(--classroom-navy); }
.resource-card p { color: var(--ink-soft); margin: 0 0 1rem; font-size: 0.98rem; }
.resource-tag {
  font-family: var(--font-display); font-weight: 600; font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase; margin: 0; display: inline-block;
  padding: 0.3rem 0.65rem; border-radius: 999px;
}
.pass-tag { background: rgba(159,18,57,0.12); color: var(--pass-maroon); }
.projects-tag { background: rgba(124,58,237,0.12); color: var(--projects-plum); }
.progress-tag { background: rgba(22,163,74,0.12); color: var(--progress-green); }

/* =================== Footer (minimal, mirrors boomerangpass.com voice) =================== */
.site-footer { background: var(--classroom-navy); color: #CBD5E1; padding: 2rem 0 1rem; font-size: 0.82rem; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem 2rem; }
.footer-cols h4 { color: #fff; font-family: var(--font-display); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; margin: 0 0 0.6rem; }
.footer-cols ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.35rem; }
.footer-cols a { color: #CBD5E1; font-size: 0.82rem; font-family: var(--font-body); }
.footer-cols a:hover { color: #fff; text-decoration: none; }
.footer-cols .muted { color: #94A3B8; font-size: 0.82rem; }
.footer-bottom {
  max-width: var(--maxw); margin: 1.5rem auto 0; padding: 1rem var(--gutter) 0;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center; gap: 0.75rem; flex-wrap: wrap;
  color: #94A3B8; font-size: 0.75rem;
}
.footer-bottom p { margin: 0; }
.footer-legal a { color: #94A3B8; font-size: 0.75rem; }
.footer-legal a:hover { color: #fff; text-decoration: none; }
.footer-build { color: #64748B; font-size: 0.7rem; margin-left: 0.6rem; letter-spacing: 0.04em; }
@media (max-width: 860px) { .footer-cols { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .footer-cols { grid-template-columns: 1fr; } }

/* =================== Focus visibility =================== */
:focus-visible {
  outline: 3px solid var(--pencil-gold);
  outline-offset: 3px;
  border-radius: 6px;
}

/* =================== Inner-page nav (matches hero's nav styling) =================== */
.inner-nav {
  position: sticky; top: 0; z-index: 60;
  background: #172554;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.inner-nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.9rem var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.inner-nav-links { display: flex; align-items: center; gap: 1.6rem; }
.inner-nav-links a {
  color: #E2E8F0;
  font-family: var(--font-display);
  font-weight: 500; font-size: 0.95rem;
  padding: 0.4rem 0.1rem;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.inner-nav-links a:hover { color: #fff; text-decoration: none; }
.inner-nav-links a[aria-current="page"] { color: #fff; border-bottom-color: var(--pencil-gold); }
.inner-nav-cta {
  background: #fff !important; color: var(--classroom-navy) !important;
  padding: 0.55rem 1.15rem !important; border-radius: 999px !important;
  font-weight: 600 !important; border-bottom: 0 !important;
}
.inner-nav-cta:hover { background: var(--chalk-warmth) !important; }
.inner-nav-cta[aria-current="page"] { background: var(--pencil-gold) !important; }

.inner-nav-toggle { display: none; background: transparent; border: 0; padding: 0.5rem; width: 40px; height: 40px; }
.inner-nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; margin: 4px auto; border-radius: 2px; }
.inner-mobile-menu { display: none; flex-direction: column; padding: 1rem var(--gutter); background: var(--classroom-navy); border-top: 1px solid rgba(255,255,255,.08); }
.inner-mobile-menu a { color: #E2E8F0; padding: 0.85rem 0; font-family: var(--font-display); font-weight: 500; border-bottom: 1px solid rgba(255,255,255,.06); }
.inner-mobile-menu .inner-nav-cta { display: inline-block; margin-top: 0.85rem; align-self: flex-start; }
@media (max-width: 900px) {
  .inner-nav-links { display: none; }
  .inner-nav-toggle { display: block; }
  .inner-mobile-menu[hidden] { display: none; }
  .inner-mobile-menu:not([hidden]) { display: flex; }
}

/* Home page secondary nav strip (below hero on index.html) */
/* =================== Home: classroom band (replaces the repeated nav) =================== */
.home-classroom { background: var(--chalk-warmth); padding: clamp(3rem, 6vw, 5rem) 0; }
.home-classroom-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
@media (max-width: 860px) { .home-classroom-inner { grid-template-columns: 1fr; } }
.home-classroom-figure { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.home-classroom-figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.home-classroom-copy h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); margin: 0 0 0.75rem; }
.home-classroom-copy h2 em { font-family: var(--font-serif); font-style: italic; color: var(--classroom-navy); background: linear-gradient(transparent 62%, rgba(245, 158, 11, 0.35) 62%); padding: 0 0.05em; font-size: 1em; }
.home-classroom-copy .lede { margin: 0 0 1.5rem; }
.home-classroom-copy .cta-row { margin-top: 0.5rem; }

/* legacy secondary nav (no longer used on home but kept for safety) */
.home-secondary-nav { background: var(--chalk-warmth); border-bottom: 1px solid var(--line); }
.home-secondary-inner { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: center; padding: 1rem var(--gutter); }
.home-secondary-inner a { font-family: var(--font-display); font-weight: 500; color: var(--classroom-navy); font-size: 0.95rem; }
.home-secondary-inner a:hover { color: var(--return-blue); text-decoration: none; }
.home-secondary-inner .inner-nav-cta {
  background: var(--return-blue) !important; color: #fff !important;
  padding: 0.55rem 1.15rem !important; border-radius: 999px !important; font-weight: 600 !important;
}
.home-secondary-inner .inner-nav-cta:hover { background: #1D4ED8 !important; }

/* =================== Page header strip (inner pages) =================== */
.page-head {
  background: linear-gradient(180deg, #172554 0%, #1E3A8A 100%);
  color: #fff;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2.5rem, 6vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(600px 220px at 85% 10%, rgba(124,58,237,0.30), transparent 60%),
    radial-gradient(700px 240px at 10% 100%, rgba(22,163,74,0.22), transparent 60%);
  pointer-events: none;
}
.page-head-inner { position: relative; max-width: 820px; }
.page-head .eyebrow { color: #BFDBFE; margin-bottom: 0.5rem; }
.page-head h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.1;
  color: #fff;
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
}
.page-head h1 em { font-family: var(--font-hand); font-style: normal; color: var(--pencil-gold); font-weight: 600; font-size: 1.1em; }
.page-head .lede { color: #DBEAFE; margin: 0 auto; }

/* =================== CTA row =================== */
.cta-row { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2.5rem; justify-content: center; }
.btn-secondary { background: transparent; color: var(--return-blue); border-color: var(--return-blue); }
.btn-secondary:hover { background: var(--return-blue); color: #fff; text-decoration: none; transform: translateY(-1px); }

/* =================== About — portrait =================== */
.about-grid { display: grid; grid-template-columns: 360px 1fr; gap: 3rem; align-items: start; }
.about-portrait { margin: 0; }
.about-portrait img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.about-portrait figcaption {
  margin-top: 0.85rem;
  font-family: var(--font-display); font-weight: 500;
  color: var(--ink-soft); font-size: 0.9rem; text-align: center;
}
.about-role { font-family: var(--font-display); color: var(--return-blue); font-weight: 500; margin: -0.25rem 0 1.25rem; }
.about-card-row { max-width: var(--maxw); margin: 3rem auto 0; padding: 0 var(--gutter); }
.about-card-row .about-card { max-width: 100%; }
.about-card-row dl { grid-template-columns: max-content 1fr; display: grid; gap: 0.4rem 1.25rem; }
.about-card-row dt { color: #93C5FD; }
.about-card-row dd { color: #fff; margin: 0; }
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-portrait { max-width: 320px; margin: 0 auto; }
}

/* =================== Investors =================== */
.investors { background: var(--paper-mist); }
.investor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
@media (max-width: 860px) { .investor-grid { grid-template-columns: 1fr; } }
.investor-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--return-blue);
}
.investor-stat {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--return-blue); line-height: 1; margin: 0 0 0.5rem;
}
.investor-label { font-family: var(--font-display); font-weight: 600; color: var(--classroom-navy); margin: 0 0 0.5rem; }
.investor-note { color: var(--ink-soft); font-size: 0.98rem; margin: 0; }

.investor-why {
  background: var(--chalk-warmth);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  margin-bottom: 2rem;
  border: 1px solid var(--line);
}
.investor-why h3 { font-size: 1.25rem; margin-bottom: 1rem; }
.investor-why ul { padding-left: 1.25rem; margin: 0; display: grid; gap: 0.65rem; }
.investor-why li { color: var(--ink-soft); font-size: 1.02rem; }
.investor-why strong { color: var(--classroom-navy); }

.investor-cta {
  background: var(--classroom-navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.investor-cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 200px at 50% -20%, rgba(245,158,11,0.20), transparent 60%);
  pointer-events: none;
}
.investor-cta h3 { color: #fff; font-size: 1.5rem; margin: 0 0 0.5rem; position: relative; }
.investor-cta p { color: #DBEAFE; max-width: 56ch; margin: 0 auto 1.25rem; position: relative; }
.investor-cta .btn { position: relative; }
.investor-email-line { font-family: var(--font-serif); font-size: 1.05rem; color: #DBEAFE; margin: 0 auto 1.25rem; position: relative; }
.investor-email {
  font-family: var(--font-display);
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 1px;
  letter-spacing: 0.01em;
}
.investor-email:hover { color: var(--pencil-gold); border-bottom-color: var(--pencil-gold); text-decoration: none; }
.investor-fineprint { color: #93C5FD; font-size: 0.78rem; font-family: var(--font-body); margin-top: 1.5rem; max-width: 64ch; margin-left: auto; margin-right: auto; }

/* =================== Privacy grid =================== */
.privacy { background: var(--paper-mist); }
.privacy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2.5rem; }
@media (max-width: 960px) { .privacy-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .privacy-grid { grid-template-columns: 1fr; } }
.privacy-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.privacy-icon {
  width: 48px; height: 48px;
  background: rgba(37,99,235,0.10); color: var(--return-blue);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.privacy-icon svg { width: 26px; height: 26px; }
.privacy-card h3 { color: var(--classroom-navy); margin: 0 0 0.5rem; font-size: 1.15rem; }
.privacy-card p { color: var(--ink-soft); margin: 0; font-size: 0.98rem; }

.privacy-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-top: 1rem; }
.privacy-fineprint { color: var(--ink-soft); font-size: 0.9rem; text-align: center; margin-top: 1.5rem; max-width: 70ch; margin-left: auto; margin-right: auto; }

/* =================== Footer trust strip =================== */
.footer-trust { background: #0F1B47; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-trust-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 1.25rem var(--gutter);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.footer-trust-item {
  display: flex; align-items: center; gap: 0.65rem;
  color: #DBEAFE; font-size: 0.9rem;
  text-decoration: none;
  padding: 0.25rem 0;
  transition: color .15s ease;
}
.footer-trust-item:hover { color: #fff; text-decoration: none; }
.footer-trust-item svg { width: 22px; height: 22px; flex: 0 0 22px; color: var(--pencil-gold); }
.footer-trust-item strong { font-family: var(--font-display); font-weight: 600; color: #fff; }
@media (max-width: 860px) { .footer-trust-inner { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .footer-trust-inner { grid-template-columns: 1fr; } }

/* Update footer columns to 4 cols */
.footer-cols { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .footer-cols { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .footer-cols { grid-template-columns: 1fr; } }

/* =================== Legal pages (terms, dpa) =================== */
.legal { background: var(--paper-mist); }
.legal-inner { max-width: 760px; }
.legal-inner p { color: var(--ink-soft); font-size: 1.05rem; margin: 0 0 1rem; }
.legal-inner h3 { color: var(--classroom-navy); margin: 2rem 0 0.75rem; font-size: 1.2rem; }
.legal-inner ul { padding-left: 1.25rem; display: grid; gap: 0.4rem; color: var(--ink-soft); }
.legal-inner strong { color: var(--classroom-navy); }

/* =================== Contact =================== */
.contact { background: var(--paper-mist); }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow-sm); text-align: left;
}
.contact-card h3 { color: var(--classroom-navy); margin: 0 0 0.5rem; }
.contact-card p { color: var(--ink-soft); margin: 0 0 1.25rem; }
.contact-card .btn { display: inline-block; }
.contact-grid-single { grid-template-columns: minmax(0, 640px); justify-content: center; }
.contact-card-wide { text-align: center; padding: 2.5rem 2rem; }
.contact-card-wide p { margin-left: auto; margin-right: auto; max-width: 52ch; }
.contact-email-line { font-family: var(--font-serif); font-size: 1.1rem; }
.contact-email { font-family: var(--font-display); font-weight: 600; color: var(--classroom-navy); border-bottom: 1px solid rgba(23,37,84,0.3); }
.contact-email:hover { color: var(--return-blue); border-bottom-color: var(--return-blue); text-decoration: none; }

/* =================== Reduced motion =================== */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
