/* =====================================================================
   Focus Forward — site styles
   ===================================================================== */
:root {
  --navy: #022C66;
  --sky: #0181C9;
  --strong-blue: #0073C6;
  --pastel-blue: #E6F2FB;
  --green: #81BD29;
  --green-2: #8ABF26;
  --dark-green: #6FA320;
  --orange: #FC6E13;
  --orange-2: #FD7016;
  --gold: #FCB206;
  --purple: #5B43A2;
  --teal: #029EB1;

  --text: #1f2937;
  --text-muted: #4b5563;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 12px rgba(2,44,102,.08);
  --shadow-lg: 0 10px 30px rgba(2,44,102,.12);
  --shadow-xl: 0 20px 40px rgba(2,44,102,.15);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  --container: 1200px;
  --header-h: 112px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
h1,h2,h3,h4 { font-family: 'Ubuntu', 'Inter', sans-serif; font-weight: 700; line-height: 1.15; margin: 0; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 16px; }
@media (min-width: 768px) { .container { padding: 0 24px; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}
.brand img { height: 96px; width: auto; }
@media (min-width: 768px) { .brand img { height: 108px; } }
.primary-nav { display: none; align-items: center; gap: 32px; }
@media (min-width: 900px) { .primary-nav { display: flex; } }
.nav-link {
  font-size: 15px; font-weight: 600; letter-spacing: .02em;
  color: rgba(0,0,0,.78); transition: color .2s;
}
.nav-link:hover, .nav-link.is-active { color: var(--sky); }
.menu-toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  width: 44px; height: 44px; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--navy);
}
.menu-toggle:hover { background: var(--pastel-blue); }
.menu-toggle .menu-icon-bar {
  width: 22px; height: 2px; background: currentColor; border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.menu-toggle.is-open .menu-icon-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open .menu-icon-bar:nth-child(2) { opacity: 0; }
.menu-toggle.is-open .menu-icon-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 900px) { .menu-toggle { display: none; } }
.mobile-nav { background: #fff; border-top: 1px solid rgba(0,0,0,.05); }
.mobile-nav .container { display: flex; flex-direction: column; gap: 4px; padding-top: 16px; padding-bottom: 24px; }
.mobile-nav .nav-link { padding: 12px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700; font-size: 15px; letter-spacing: .02em;
  transition: background-color .2s, color .2s, transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--dark-green); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--sky); }
.btn-gold { background: var(--gold); color: var(--navy); box-shadow: var(--shadow-md); }
.btn-gold:hover { filter: brightness(1.05); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,.1); }
.btn-ghost-blue { background: transparent; color: var(--strong-blue); }
.btn-ghost-blue:hover { background: var(--pastel-blue); color: var(--navy); }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.nav-cta { padding: 14px 28px; }

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
@media (min-width: 768px) { .section { padding: 112px 0; } }
.section-tight { padding: 64px 0; }
.section-bg-navy { background: var(--navy); color: #fff; }
.section-bg-sky { background: var(--sky); color: #fff; }
.section-bg-green { background: var(--green); color: #fff; }
.section-bg-pastel { background: var(--pastel-blue); }
.section-bg-blue-strong { background: #0181C9; color: #fff; }

.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 12px;
}

.section-heading {
  font-size: 32px; line-height: 1.1; color: var(--navy);
}
@media (min-width: 768px) { .section-heading { font-size: 48px; } }
.section-bg-navy .section-heading,
.section-bg-sky  .section-heading,
.section-bg-green .section-heading,
.section-bg-blue-strong .section-heading { color: #fff; }
.accent-gold { color: var(--gold); }
.accent-sky  { color: var(--sky); }
.accent-orange { color: var(--orange); }

.section-intro { font-size: 18px; line-height: 1.6; color: rgba(2,44,102,.7); }
.section-bg-navy .section-intro,
.section-bg-sky  .section-intro,
.section-bg-green .section-intro,
.section-bg-blue-strong .section-intro { color: rgba(255,255,255,.85); }

.center { text-align: center; }
.max-3 { max-width: 720px; margin-inline: auto; }
.max-4 { max-width: 880px; margin-inline: auto; }
.max-5 { max-width: 1040px; margin-inline: auto; }

/* ---------- Hero (interior pages) ---------- */
.page-hero {
  position: relative; overflow: hidden;
  min-height: 70vh;
  display: flex; align-items: center; justify-content: center;
  padding: 200px 0 128px;
  color: #fff; text-align: center;
}
.page-hero h1 { font-size: 40px; line-height: 1.1; }
@media (min-width: 768px) { .page-hero h1 { font-size: 56px; } }
@media (min-width: 1024px) { .page-hero h1 { font-size: 72px; } }
.page-hero p { font-size: 18px; max-width: 720px; margin: 24px auto 0; line-height: 1.6; color: rgba(255,255,255,.88); }
.hero-pattern { position: absolute; inset: 0; opacity: .15; pointer-events: none; }
.page-hero.bg-navy { background: var(--navy); }
.page-hero.bg-sky { background: var(--sky); }
.page-hero.bg-green { background: var(--green); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease-out, transform .6s ease-out; }
.reveal.is-revealed { opacity: 1; transform: none; }

/* ---------- Home: hero ---------- */
.home-hero {
  background: var(--navy); color: #fff; position: relative; overflow: hidden;
}
.home-hero-pattern {
  position: absolute; inset: 0; pointer-events: none; opacity: .03;
  background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
  background-size: 40px 40px;
}
.home-hero-inner { position: relative; z-index: 1; padding: 160px 0 80px; }
@media (min-width: 768px) { .home-hero-inner { padding: 192px 0 128px; } }
.home-hero-grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 768px) { .home-hero-grid { grid-template-columns: 1fr 1fr; } }
.home-hero h1 { font-size: 36px; line-height: 1.1; }
@media (min-width: 768px) { .home-hero h1 { font-size: 48px; } }
@media (min-width: 1024px) { .home-hero h1 { font-size: 60px; } }
.home-hero p { font-size: 17px; line-height: 1.6; color: rgba(255,255,255,.85); margin: 24px 0 0; max-width: 560px; }
.home-hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }

/* video play button on hero image */
.video-play-btn {
  position: relative; display: block; width: 100%;
  border-radius: var(--radius-xl);
  cursor: pointer;
}
.video-play-btn:focus-visible { outline: 4px solid rgba(252,178,6,.6); outline-offset: 4px; }
.play-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.play-circle {
  position: relative;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
  transition: transform .25s;
}
.play-circle::before {
  content: ''; position: absolute; inset: -30px; border-radius: 50%;
  background: rgba(252,178,6,.4); filter: blur(28px); z-index: -1;
}
.video-play-btn:hover .play-circle { transform: scale(1.1); }
@media (min-width: 768px) { .play-circle { width: 96px; height: 96px; } }
.play-circle svg { width: 36px; height: 36px; margin-left: 4px; fill: currentColor; }
@media (min-width: 768px) { .play-circle svg { width: 44px; height: 44px; } }

/* ---------- Problem cards (home) ---------- */
.problem-grid { display: grid; gap: 24px; margin-bottom: 64px; }
@media (min-width: 768px) { .problem-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .problem-grid { grid-template-columns: repeat(4,1fr); } }
.problem-card {
  border-radius: var(--radius-lg); padding: 32px; color: #fff;
  box-shadow: var(--shadow-sm);
}
.problem-card .num {
  width: 48px; height: 48px; background: #fff; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Ubuntu',sans-serif; font-weight: 700; font-size: 20px;
  margin-bottom: 24px;
}
.problem-card h3 { font-size: 20px; margin-bottom: 12px; }
.problem-card p { color: rgba(255,255,255,.9); margin: 0; }

.quote-card {
  background: var(--navy); color: #fff;
  border-radius: var(--radius-xl); padding: 32px;
  max-width: 720px; margin: 0 auto; text-align: center;
}
@media (min-width: 768px) { .quote-card { padding: 40px; } }
.quote-card p { font-size: 20px; font-weight: 500; line-height: 1.5; margin: 0; }
@media (min-width: 768px) { .quote-card p { font-size: 24px; } }

/* ---------- EF Domains ---------- */
.ef-section { background: var(--navy); color: #fff; position: relative; overflow: hidden; padding: 80px 0; }
@media (min-width: 768px) { .ef-section { padding: 112px 0; } }
.ef-section-pattern {
  position: absolute; inset: 0; opacity: .08; pointer-events: none;
  background-image: radial-gradient(circle, #fff 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}
.ef-grid { position: relative; z-index: 1; display: grid; gap: 40px; align-items: center; }
@media (min-width: 1024px) { .ef-grid { grid-template-columns: 5fr 2fr 5fr; gap: 32px; } }
.ef-pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.ef-pill {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  padding: 12px 20px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 10px;
  backdrop-filter: blur(4px);
}
.ef-pill .dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.ef-mascot-wrap { position: relative; display: flex; justify-content: center; }
.ef-mascot-wrap::before {
  content:''; position: absolute; inset: 50% auto auto 50%;
  width: 256px; height: 256px; transform: translate(-50%,-50%);
  background: var(--sky); opacity: .3; border-radius: 50%; filter: blur(48px);
}
.ef-mascot {
  position: relative; max-width: 288px; width: 100%; height: auto;
  filter: drop-shadow(0 25px 25px rgba(0,0,0,.35));
}
.ef-photo {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,.25);
  aspect-ratio: 4/3;
}
.ef-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Comparison table ---------- */
.compare-table {
  max-width: 1040px; margin: 0 auto; overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200); box-shadow: var(--shadow-lg);
}
.compare-head {
  display: grid; grid-template-columns: 1fr;
  background: var(--navy); color: #fff;
}
@media (min-width: 768px) { .compare-head { grid-template-columns: 1fr 1fr 1fr; } }
.compare-head > div {
  padding: 24px;
  font-family: 'Ubuntu',sans-serif; font-weight: 700; font-size: 18px;
}
.compare-head .col-empty { display: none; }
@media (min-width: 768px) { .compare-head .col-empty { display: block; } }
.compare-head .col-tutoring { background: rgba(255,255,255,.05); }
.compare-head .col-ff { color: var(--gold); background: rgba(1,129,201,.2); }
.compare-row {
  display: grid; grid-template-columns: 1fr;
  background: #fff; border-bottom: 1px solid var(--gray-100);
}
@media (min-width: 768px) { .compare-row { grid-template-columns: 1fr 1fr 1fr; } }
.compare-row:last-child { border-bottom: 0; }
.compare-row > div { padding: 24px; border-bottom: 1px solid var(--gray-100); }
@media (min-width: 768px) {
  .compare-row > div { border-bottom: 0; }
  .compare-row > div:not(:last-child) { border-right: 1px solid var(--gray-100); }
}
.compare-row .label {
  background: var(--gray-50); font-family: 'Ubuntu',sans-serif; font-weight: 700; color: var(--navy);
}
.compare-row .tutoring { color: var(--gray-600); }
.compare-row .ff { background: rgba(230,242,251,.5); color: var(--strong-blue); font-weight: 500; }

/* ---------- Stats bar ---------- */
.stats-bar { background: var(--navy); color: #fff; padding: 64px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.stats-grid { display: grid; gap: 32px; grid-template-columns: repeat(2,1fr); text-align: center; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4,1fr); gap: 48px; } }
.stat-num { font-family: 'Ubuntu',sans-serif; font-weight: 700; font-size: 56px; color: var(--gold); margin-bottom: 12px; }
@media (min-width: 768px) { .stat-num { font-size: 64px; } }
.stat-text { color: rgba(255,255,255,.8); font-weight: 500; max-width: 200px; margin: 0 auto; }

/* ---------- Program — components ---------- */
.program-components { display: grid; gap: 24px; }
@media (min-width: 768px) { .program-components { grid-template-columns: repeat(3,1fr); gap: 32px; } }
.pc-card {
  background: #fff; border-radius: 32px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(2,44,102,.08); border: 1px solid var(--gray-100);
  display: flex; flex-direction: column;
  transition: transform .25s;
}
.pc-card:hover { transform: translateY(-6px); }
.pc-band {
  position: relative; height: 128px; padding: 24px 28px 0;
  display: flex; align-items: flex-start; justify-content: space-between; overflow: hidden;
}
.pc-band::before, .pc-band::after {
  content:''; position: absolute; border-radius: 50%; background: rgba(255,255,255,.1);
}
.pc-band::before { right: -32px; top: -32px; width: 128px; height: 128px; }
.pc-band::after  { right: -8px; bottom: -40px; width: 80px; height: 80px; }
.pc-tag {
  position: relative; z-index: 1;
  background: rgba(255,255,255,.2); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}
.pc-num {
  position: relative; z-index: 1;
  font-family: 'Ubuntu',sans-serif; font-weight: 700; color: rgba(255,255,255,.9);
  font-size: 56px; line-height: 1;
}
@media (min-width: 768px) { .pc-num { font-size: 64px; } }
.pc-icon-wrap {
  position: relative; margin-top: -32px; padding: 0 28px;
}
.pc-icon {
  width: 64px; height: 64px; border-radius: 18px; background: #fff;
  box-shadow: 0 6px 14px rgba(0,0,0,.08);
  display: flex; align-items: center; justify-content: center;
  border: 4px solid #fff;
}
.pc-icon svg { width: 32px; height: 32px; }
.pc-body { padding: 20px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.pc-body h3 { font-size: 22px; color: var(--navy); margin-bottom: 8px; }
.pc-meta { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; margin-bottom: 16px; }
.pc-desc { color: var(--gray-600); margin: 0 0 20px; line-height: 1.6; }
.pc-callout {
  margin-top: auto; border-radius: 18px; padding: 16px;
  display: flex; align-items: flex-start; gap: 12px;
}
.pc-callout-dot {
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0;
}
.pc-callout p { font-weight: 600; font-size: 14px; line-height: 1.4; color: var(--navy); margin: 0; }

.delivered-line {
  margin-top: 48px; display: flex; align-items: center; justify-content: center; gap: 12px;
  color: rgba(2,44,102,.7); font-weight: 600;
}

/* ---------- Bento schedule grid ---------- */
.bento { display: grid; gap: 24px; }
@media (min-width: 1024px) {
  .bento {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: auto;
  }
}
.bento-card { border-radius: var(--radius-xl); overflow: hidden; }
.bento-schedule {
  background: var(--sky); color: #fff; padding: 32px; position: relative; overflow: hidden;
  min-height: 420px; display: flex; flex-direction: column; justify-content: space-between;
}
@media (min-width: 1024px) { .bento-schedule { grid-column: span 6; grid-row: span 2; padding: 40px; } }
.bento-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15); padding: 6px 16px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 600; backdrop-filter: blur(4px);
  width: fit-content;
}
.bento-schedule h3 { font-size: 28px; margin: 20px 0 16px; max-width: 380px; }
@media (min-width: 768px) { .bento-schedule h3 { font-size: 32px; } }
.bento-schedule p { color: rgba(255,255,255,.9); max-width: 380px; margin: 0; }
.bento-mascot {
  position: absolute; right: -16px; bottom: -8px;
  width: 224px; height: auto; pointer-events: none; user-select: none;
  filter: drop-shadow(0 16px 24px rgba(0,0,0,.25));
}
@media (min-width: 768px) { .bento-mascot { width: 288px; } }

.bento-end { background: var(--gold); color: var(--navy); padding: 32px; min-height: 200px; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 1024px) { .bento-end { grid-column: span 6; } }
.bento-end .bento-tag { background: rgba(2,44,102,.1); color: var(--navy); }
.bento-end h3 { font-size: 22px; margin: 16px 0 8px; }
@media (min-width: 768px) { .bento-end h3 { font-size: 28px; } }
.bento-end p { color: rgba(2,44,102,.8); margin: 0; }

.bento-img-card { background: #fff; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
@media (min-width: 1024px) { .bento-img-card { grid-column: span 3; } }
.bento-img-card .img-frame { aspect-ratio: 4/3; overflow: hidden; }
.bento-img-card .img-frame img { width: 100%; height: 100%; object-fit: cover; }
.bento-img-card .body { padding: 24px; }
.bento-img-card h4 { font-size: 18px; color: var(--navy); margin: 12px 0 8px; }
.bento-img-card p { color: var(--gray-600); font-size: 14px; margin: 0; }
.bento-img-card .small-tag {
  display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 600; background: rgba(252,110,19,.1); color: var(--orange);
}
.bento-cohort { background: var(--green); color: #fff; }
@media (min-width: 1024px) { .bento-cohort { grid-column: span 3; } }
.bento-cohort h4 { color: #fff; }
.bento-cohort p { color: rgba(255,255,255,.9); }
.bento-cohort .small-tag { background: rgba(255,255,255,.2); color: #fff; }

/* ---------- Team cards ---------- */
.team-grid { display: grid; gap: 24px; }
@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(3,1fr); gap: 32px; } }
.team-card { border-radius: var(--radius-xl); overflow: hidden; color: #fff; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; }
.team-card .img-frame { aspect-ratio: 4/3; overflow: hidden; }
.team-card .img-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-card .body { padding: 32px; text-align: center; flex: 1; display: flex; flex-direction: column; }
.team-card h3 { font-size: 24px; margin-bottom: 12px; }
.team-card p { color: rgba(255,255,255,.9); margin: 0 0 24px; line-height: 1.6; }
.team-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: auto; }
.team-pills .pill { background: rgba(255,255,255,.95); color: var(--navy); font-size: 13px; font-weight: 600; padding: 6px 14px; border-radius: var(--radius-pill); }

/* ---------- Identification block ---------- */
.identify-card {
  background: var(--green); border-radius: 40px; padding: 40px; position: relative; overflow: hidden;
}
@media (min-width: 768px) { .identify-card { padding: 56px; } }
.identify-card-pattern {
  position: absolute; inset: 0; opacity: .12; pointer-events: none;
  background-image: radial-gradient(circle, #fff 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}
.identify-grid { position: relative; z-index: 1; display: grid; gap: 40px; align-items: start; }
@media (min-width: 1024px) { .identify-grid { grid-template-columns: 5fr 7fr; gap: 48px; } }
.identify-grid h2 { color: #fff; font-size: 32px; line-height: 1.1; margin-bottom: 32px; }
@media (min-width: 768px) { .identify-grid h2 { font-size: 48px; } }
.identify-grid p { color: rgba(255,255,255,.9); font-size: 18px; line-height: 1.6; margin: 0 0 32px; max-width: 420px; }
.steps-grid { display: grid; gap: 32px 40px; }
@media (min-width: 640px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
.step-row { display: flex; gap: 20px; }
.step-num {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%;
  background: var(--sky); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Ubuntu',sans-serif; font-weight: 700; font-size: 20px;
  box-shadow: var(--shadow-md);
}
.step-row h3 { color: #fff; font-size: 18px; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px; }
@media (min-width: 768px) { .step-row h3 { font-size: 20px; } }
.step-row p { color: rgba(255,255,255,.85); font-size: 14px; margin: 0; line-height: 1.6; }
@media (min-width: 768px) { .step-row p { font-size: 16px; } }

/* ---------- Funding cards ---------- */
.funding-grid { display: grid; gap: 32px; margin-bottom: 96px; }
@media (min-width: 768px) { .funding-grid { grid-template-columns: repeat(3,1fr); } }
.funding-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-xl); padding: 32px; backdrop-filter: blur(4px); }
.funding-card h3 { font-size: 20px; margin-bottom: 12px; color: #fff; }
.funding-card p { color: rgba(255,255,255,.7); margin: 0; }

.compliance-card {
  background: var(--green); border-radius: var(--radius-xl); padding: 32px;
  color: #fff; max-width: 880px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 32px; align-items: center;
}
@media (min-width: 768px) { .compliance-card { flex-direction: row; padding: 48px; } }
.compliance-card svg { width: 80px; height: 80px; flex-shrink: 0; color: rgba(255,255,255,.8); }
.compliance-card h2 { font-size: 30px; line-height: 1.1; margin-bottom: 16px; }
.compliance-card p { font-size: 18px; line-height: 1.6; color: rgba(255,255,255,.9); margin: 0; }

/* ---------- In-Action ---------- */
.video-card {
  max-width: 1040px; margin: -128px auto 80px; position: relative; z-index: 5;
  background: #fff; padding: 16px; border-radius: var(--radius-xl);
  box-shadow: 0 25px 50px rgba(2,44,102,.2); border: 1px solid var(--gray-100);
}
@media (min-width: 768px) { .video-card { padding: 24px; } }
.video-card-head { display: flex; align-items: center; gap: 12px; padding: 0 8px 16px; }
.video-card-head svg { width: 24px; height: 24px; color: var(--orange); }
.video-card-head h3 { font-size: 16px; color: #111827; }
.video-card-head .meta { font-size: 14px; color: var(--gray-500); margin: 0; }
.video-frame { aspect-ratio: 16/9; background: #111; border-radius: var(--radius-lg); overflow: hidden; }
.video-frame iframe { width: 100%; height: 100%; border: 0; }

.three-points { max-width: 1040px; margin: 0 auto 96px; display: grid; gap: 40px; }
@media (min-width: 768px) { .three-points { grid-template-columns: repeat(3,1fr); } }
.three-points h3 { color: var(--navy); font-size: 24px; margin-bottom: 16px; }
.three-points p { color: var(--gray-600); font-size: 18px; line-height: 1.6; margin: 0; }
.three-points .item { text-align: center; }

.cta-card {
  max-width: 1200px; margin: 0 auto 96px;
  display: grid; grid-template-columns: 1fr;
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 20px 40px rgba(2,44,102,.1);
}
@media (min-width: 768px) { .cta-card { grid-template-columns: 1fr 1fr; } }
.cta-photo { background: #0181C9; min-height: 360px; position: relative; }
.cta-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; opacity: .9; }
.cta-photo .overlay { position: absolute; inset: 0; background: linear-gradient(to top right, rgba(1,129,201,.7), transparent 60%); }
.cta-photo .live-pill {
  position: absolute; left: 24px; right: 24px; bottom: 24px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.95); color: var(--navy);
  padding: 8px 16px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 600; backdrop-filter: blur(8px);
  width: fit-content; box-shadow: var(--shadow-md);
}
.live-pill .live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.cta-body { background: #fff; padding: 24px; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 768px) { .cta-body { padding: 48px; } }
.cta-body h2 { color: var(--navy); font-size: 30px; line-height: 1.1; margin: 16px 0; }
@media (min-width: 768px) { .cta-body h2 { font-size: 44px; } }
.cta-body p { color: var(--gray-600); font-size: 18px; line-height: 1.6; margin: 0 0 32px; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 640px) { .cta-actions { flex-direction: row; } }

.team-blurb { max-width: 1040px; margin: 0 auto; display: grid; gap: 48px; align-items: center; }
@media (min-width: 768px) { .team-blurb { grid-template-columns: 1fr 2fr; } }
.team-blurb-num {
  text-align: center; padding-bottom: 32px; border-bottom: 1px solid var(--gray-200);
}
@media (min-width: 768px) { .team-blurb-num { text-align: left; padding: 0 48px 0 0; border-bottom: 0; border-right: 1px solid var(--gray-200); } }
.team-blurb-num .big { font-family: 'Ubuntu',sans-serif; font-weight: 700; font-size: 88px; line-height: 1; color: var(--gold); margin-bottom: 8px; }
@media (min-width: 768px) { .team-blurb-num .big { font-size: 112px; } }
.team-blurb-num .label { font-family: 'Ubuntu',sans-serif; font-weight: 700; font-size: 20px; color: var(--navy); }
.team-blurb p { font-size: 20px; line-height: 1.6; color: var(--gray-700); font-weight: 500; margin: 0; }

/* ---------- Get Started form ---------- */
.gs-grid { display: grid; gap: 64px; max-width: 1100px; margin: -128px auto 0; position: relative; z-index: 5; }
@media (min-width: 1024px) { .gs-grid { grid-template-columns: 1fr 1fr; } }
.form-card { background: #fff; border-radius: var(--radius-xl); padding: 32px; box-shadow: var(--shadow-xl); border: 1px solid var(--gray-100); }
@media (min-width: 768px) { .form-card { padding: 40px; } }
.form-row { display: grid; gap: 24px; }
@media (min-width: 768px) { .form-row.cols-2 { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.field label { font-weight: 600; color: var(--gray-700); font-size: 14px; }
.field input,
.field select,
.field textarea {
  font: inherit; padding: 12px 14px; border: 1px solid var(--gray-200);
  border-radius: 10px; background: rgba(249,250,251,.5); color: var(--text);
  outline: none; transition: border-color .15s, box-shadow .15s;
}
.field textarea { resize: vertical; min-height: 128px; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--sky); box-shadow: 0 0 0 3px rgba(1,129,201,.2); }
.field .error { color: #dc2626; font-size: 13px; }
.form-card .form-row + .form-row,
.form-card .form-row + .field { margin-top: 0; }
.submit-btn { width: 100%; background: var(--navy); color: #fff; padding: 16px; border-radius: 12px; font-weight: 700; font-size: 18px; transition: background-color .2s; }
.submit-btn:hover { background: var(--sky); }
.recaptcha-wrap { margin: 24px 0; display: flex; justify-content: center; }

.alert { padding: 16px 20px; border-radius: 14px; margin-bottom: 24px; font-weight: 500; }
.alert-success { background: rgba(129,189,41,.12); border: 1px solid rgba(129,189,41,.4); color: #2d5d10; }
.alert-error { background: rgba(220,38,38,.08); border: 1px solid rgba(220,38,38,.3); color: #991b1b; }

.sidebar-card {
  background: var(--pastel-blue); border-radius: var(--radius-xl); padding: 32px;
  border: 1px solid rgba(1,129,201,.2);
}
.sidebar-card h3 { font-size: 24px; color: var(--navy); margin-bottom: 24px; }
.steps-list { display: flex; flex-direction: column; gap: 24px; }
.step-item { display: flex; gap: 16px; }
.step-item .num {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Ubuntu',sans-serif; font-weight: 700; font-size: 14px;
}
.step-item h4 { color: var(--sky); font-size: 16px; margin-bottom: 4px; }
.step-item p { color: var(--gray-600); font-size: 14px; line-height: 1.6; margin: 0; }

.contact-cards { display: grid; gap: 24px; max-width: 1040px; margin: 96px auto 0; }
@media (min-width: 640px) { .contact-cards { grid-template-columns: 1fr 1fr; } }
.contact-card {
  border-radius: var(--radius-xl); padding: 32px; color: #fff;
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: var(--shadow-md);
}
.contact-card .icon-box {
  width: 48px; height: 48px; border-radius: 16px;
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
}
.contact-card .label { font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; opacity: .8; margin-bottom: 4px; }
.contact-card .value { font-family: 'Ubuntu',sans-serif; font-weight: 700; font-size: 18px; line-height: 1.3; word-break: break-word; }
.contact-card.bg-orange { background: var(--orange); }
.contact-card.bg-gold { background: var(--gold); }

.closing-quote { max-width: 880px; margin: 128px auto 0; text-align: center; }
.closing-quote h2 { color: var(--navy); font-size: 30px; line-height: 1.1; margin-bottom: 48px; }
@media (min-width: 768px) { .closing-quote h2 { font-size: 44px; } }
.closing-words {
  display: inline-flex; align-items: center; justify-content: center; gap: 16px;
  color: var(--gold); font-family: 'Ubuntu',sans-serif; font-weight: 700;
  letter-spacing: .15em; font-size: 14px;
}
.closing-words .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* ---------- Privacy/Terms ---------- */
.legal-article {
  max-width: 760px; margin: 0 auto;
  background: #fff; padding: 40px; border-radius: var(--radius-xl);
  box-shadow: 0 20px 40px rgba(2,44,102,.05); border: 1px solid var(--gray-100);
}
@media (min-width: 768px) { .legal-article { padding: 56px; } }
.legal-article .updated { font-size: 14px; color: var(--gray-500); margin-bottom: 40px; }
.legal-section { margin-bottom: 40px; }
.legal-section h2 { font-size: 22px; color: var(--navy); margin-bottom: 12px; }
.legal-section p, .legal-section ul { color: var(--gray-700); margin: 0 0 12px; line-height: 1.7; }
.legal-section ul { padding-left: 24px; }
.legal-section ul li { margin-bottom: 8px; }
.legal-section a { color: var(--sky); font-weight: 600; }
.legal-section a:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #fff; padding: 64px 0; }
.footer-grid { display: grid; gap: 48px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4,1fr); } }
.footer-logo { height: 112px; width: auto; margin-bottom: 16px; }
.footer-blurb { color: rgba(255,255,255,.8); font-size: 14px; max-width: 320px; margin: 0; }
.footer-col h3 { color: #fff; font-size: 18px; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,.8); transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,.8); word-break: break-word; }
.social-row { display: flex; gap: 12px; }
.social-row a {
  background: rgba(255,255,255,.1); padding: 10px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; color: #fff;
  transition: background-color .2s;
}
.social-row a:hover { background: var(--sky); }
.footer-bottom {
  margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.2);
  display: flex; flex-direction: column; gap: 16px; align-items: center; justify-content: space-between;
  font-size: 14px; color: rgba(255,255,255,.6);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a:hover { color: #fff; }

/* ---------- Video Modal ---------- */
.video-modal {
  position: fixed; inset: 0; z-index: 100;
  display: none; align-items: center; justify-content: center;
  background: rgba(0,0,0,.85); padding: 16px;
}
.video-modal.is-open { display: flex; }
.video-modal-inner {
  position: relative; width: 100%; max-width: 1024px;
  background: #000; border-radius: var(--radius-lg); overflow: hidden;
}
.video-modal-inner > div { aspect-ratio: 16/9; }
.video-modal-inner iframe { width: 100%; height: 100%; border: 0; }
.video-modal-close {
  position: absolute; top: -44px; right: 0;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.15); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; line-height: 1;
}
.video-modal-close:hover { background: rgba(255,255,255,.3); }

/* ---------- 404 ---------- */
.notfound-wrap { padding: 160px 0; text-align: center; }
.notfound-wrap h1 { color: var(--navy); font-size: 80px; margin-bottom: 16px; }
.notfound-wrap p { font-size: 20px; color: var(--gray-600); margin: 0 0 32px; }
