/*
Theme Name: Civics 250
Theme URI: https://civics250.org
Author: Katherine Bray Murphy
Author URI: https://hiddenlightinstitute.org
Description: Official WordPress theme for Civics 250 — A National Initiative. Reigniting Civics Learning for America's Next Generation.
Version: 1.0.0
License: All Rights Reserved
License URI: https://civics250.org
Text Domain: civics250
Tags: civics, education, nonprofit, custom-logo, custom-menu
*/

/* ─── Design Philosophy ────────────────────────────────────────────────────
   Civics 250 — American Civic Gravitas
   Movement:    Editorial Americana — authoritative, institutional, trustworthy
   Palette:     Midnight Blue #1C2E4A | Steel Gray #6B7A8F | Soft White #F9FAFB
                Accent Blue #2D6CDF | Muted Red #B23A48
   Typography:  Merriweather (serif, headlines) + Inter (sans, body)
   Layout:      Asymmetric two-column grids, left-anchored content, strong verticals
   Signature:   Red-to-blue gradient accents, dark quote cards, left-border callouts
──────────────────────────────────────────────────────────────────────────── */

/* ── Brand Tokens ── */
:root {
  --midnight:    #1C2E4A;
  --steel:       #6B7A8F;
  --soft-white:  #F9FAFB;
  --blue:        #2D6CDF;
  --red:         #B23A48;
  --light-bg:    #EEF2F7;
  --border:      #D1D9E6;
  --card-bg:     #ffffff;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #F9FAFB;
  color: #1C2E4A;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Announcement Banner ── */
.c250-banner {
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 10px 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
}
.c250-banner a.banner-btn {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s;
}
.c250-banner a.banner-btn:hover { background: rgba(255,255,255,0.35); }
.c250-banner-close {
  position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,0.7);
  font-size: 1.1rem; cursor: pointer; line-height: 1;
}

/* ── Navigation ── */
.snav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--midnight);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.snav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; gap: 2rem;
  height: 72px;
}
.snav-brand {
  display: flex; align-items: center; gap: 1rem;
  text-decoration: none; flex-shrink: 0;
}
.snav-brand-logo { height: 52px; width: auto; }
.snav-brand-text { display: flex; flex-direction: column; gap: 2px; border-left: 2px solid #B23A48; padding-left: 0.75rem; }
.snav-brand-name { font-family: 'Merriweather', serif; font-size: 1.1rem; font-weight: 900; color: #fff; letter-spacing: 0.06em; text-transform: uppercase; line-height: 1; }
.snav-brand-tagline { font-size: 0.55rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.snav-links { display: flex; align-items: center; gap: 0.25rem; margin-left: auto; }
.snav-link {
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem; font-weight: 500;
  padding: 0.5rem 0.75rem; border-radius: 4px;
  transition: color 0.15s, background 0.15s;
  background: none; border: none; cursor: pointer;
  white-space: nowrap; display: flex; align-items: center; gap: 4px;
  font-family: 'Inter', sans-serif;
}
.snav-link:hover, .snav-link.open { color: #fff; background: rgba(255,255,255,0.08); }
.snav-dropdown-wrap { position: relative; list-style: none; }
.snav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: #fff; border: 1px solid var(--border);
  border-radius: 8px; box-shadow: 0 8px 32px rgba(28,46,74,0.18);
  min-width: 220px; padding: 0.5rem; z-index: 100;
  display: none;
}
.snav-dropdown.open { display: block; }
.snav-dropdown a {
  display: block; padding: 0.6rem 0.75rem; border-radius: 5px;
  color: var(--midnight); font-size: 0.85rem; font-weight: 500;
  transition: background 0.15s;
}
.snav-dropdown a:hover { background: var(--light-bg); }
.snav-dropdown-desc { font-size: 0.72rem; color: var(--steel); margin-top: 2px; }
.snav-cta {
  background: var(--red); color: #fff !important;
  padding: 9px 18px; border-radius: 4px;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  white-space: nowrap; margin-left: 0.5rem;
  transition: background 0.2s;
}
.snav-cta:hover { background: #9a2f3c; }
.snav-hamburger {
  display: none; background: none; border: none;
  color: #fff; cursor: pointer; margin-left: auto;
  padding: 0.5rem;
}
.snav-mobile-panel {
  background: #162440;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 1.5rem 1.5rem;
}
.snav-mobile-group-label {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  padding: 0.9rem 0 0.3rem; display: block;
}
.snav-mobile-link {
  display: block; color: rgba(255,255,255,0.78);
  font-size: 0.88rem; font-weight: 500;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
}
.snav-mobile-link:hover { color: #fff; }
.snav-mobile-cta {
  display: block; background: var(--red); color: #fff !important;
  text-align: center; padding: 0.85rem !important;
  border-radius: 4px; font-weight: 700 !important;
  margin-top: 1.25rem; border-bottom: none !important;
  text-decoration: none; font-size: 0.85rem;
  letter-spacing: 0.06em; text-transform: uppercase;
}

/* ── Hero ── */
.c250-hero {
  position: relative; background: var(--midnight);
  min-height: 620px; display: flex; align-items: center; overflow: hidden;
}
.c250-hero-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(135deg, rgba(28,46,74,0.96) 0%, rgba(28,46,74,0.80) 55%, rgba(45,108,223,0.22) 100%),
    url('https://d2xsxph8kpxj0f.cloudfront.net/310419663027291830/4YWpcruDvXvP2sh5tEer96/classroom_28a9b239.jpg');
  background-size: cover; background-position: center 40%;
}
.c250-hero-stripe {
  position: absolute; left: 0; top: 0; bottom: 0; width: 6px;
  background: linear-gradient(to bottom, var(--red) 0%, var(--blue) 100%);
}
.c250-hero-inner {
  position: relative; max-width: 1200px; margin: 0 auto;
  padding: 5rem 2rem 5rem 3rem;
  display: grid; grid-template-columns: 1fr 340px; gap: 4rem; align-items: center;
  width: 100%;
}
.c250-hero-brand {
  display: flex; align-items: center; gap: 1.75rem;
  margin-bottom: 2rem; padding-bottom: 2rem;
  border-bottom: 2px solid rgba(178,58,72,0.35);
}
.c250-hero-brand-logo {
  height: 110px; width: auto; flex-shrink: 0;
  filter: drop-shadow(0 0 22px rgba(178,58,72,0.55)) drop-shadow(0 4px 14px rgba(0,0,0,0.55));
}
.c250-hero-brand-text {
  display: flex; flex-direction: column; gap: 6px;
  border-left: 3px solid #B23A48; padding-left: 1.25rem;
}
.c250-hero-brand-name {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 2.4rem; font-weight: 900; color: #fff;
  letter-spacing: 0.04em; line-height: 1; text-transform: uppercase;
}
.c250-hero-brand-name span { color: #e05a6a; }
.c250-hero-brand-sub {
  font-size: 0.64rem; font-weight: 800;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255,255,255,0.88);
}
.c250-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(178,58,72,0.18); border: 1px solid rgba(178,58,72,0.4);
  color: #f4a0aa; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 1.25rem;
}
.c250-eyebrow::before {
  content: ''; width: 6px; height: 6px;
  background: var(--red); border-radius: 50%;
}
.c250-hero h1 {
  font-family: 'Merriweather', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
  color: #fff; line-height: 1.2; margin-bottom: 1.5rem;
}
.c250-hero h1 span { color: #7aaeff; }
.c250-hero-lead {
  color: rgba(255,255,255,0.82); font-size: 1.05rem;
  max-width: 560px; margin-bottom: 2rem; line-height: 1.8;
}
.c250-hero-lead strong { color: #fff; }
.c250-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--blue); color: #fff;
  padding: 13px 26px; border-radius: 5px; font-weight: 600;
  font-size: 0.92rem; text-decoration: none; display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #1e54c0; transform: translateY(-1px); }
.btn-outline {
  border: 2px solid rgba(255,255,255,0.4); color: #fff;
  padding: 11px 24px; border-radius: 5px; font-weight: 600;
  font-size: 0.92rem; text-decoration: none; display: inline-block;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* Stat cards */
.c250-stats { display: flex; flex-direction: column; gap: 1rem; }
.stat-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-left: 4px solid var(--blue); border-radius: 6px;
  padding: 1.1rem 1.4rem; backdrop-filter: blur(6px);
}
.stat-card.red { border-left-color: var(--red); }
.stat-num {
  font-family: 'Merriweather', serif; font-size: 2rem;
  font-weight: 900; color: #fff; line-height: 1;
}
.stat-num sup { font-size: 1rem; vertical-align: super; }
.stat-label { color: rgba(255,255,255,0.6); font-size: 0.78rem; margin-top: 4px; }

/* ── Partner Bar ── */
.c250-partners {
  background: #fff;
  border-bottom: 2px solid var(--border);
  border-top: 2px solid var(--border);
  padding: 1.6rem 2rem;
}
.partners-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.partners-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--steel); white-space: nowrap;
}
.partners-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }
.partners-logos { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }

/* ── Section Shared ── */
.c250-section { padding: 5rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 0.5rem;
}
.section-title {
  font-family: 'Merriweather', serif; font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900; color: var(--midnight); margin-bottom: 0.5rem; line-height: 1.25;
}
.divider-line {
  width: 56px; height: 4px;
  background: linear-gradient(to right, var(--red), var(--blue));
  border-radius: 2px; margin-bottom: 2rem;
}

/* ── Why Civics ── */
.c250-why { background: var(--soft-white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.why-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.why-stat-box {
  background: #fff; border: 1px solid var(--border);
  border-top: 3px solid var(--red); border-radius: 8px;
  padding: 1.25rem; text-align: center;
}
.why-stat-box.blue { border-top-color: var(--blue); }
.why-stat-num {
  font-family: 'Merriweather', serif; font-size: 2.2rem;
  font-weight: 900; color: var(--midnight); line-height: 1;
}
.why-stat-label { font-size: 0.78rem; color: var(--steel); margin-top: 0.25rem; line-height: 1.4; }
.why-quote {
  background: var(--midnight); border-radius: 10px;
  padding: 2rem; position: relative; overflow: hidden;
}
.why-quote::before {
  content: '"'; position: absolute; top: -0.5rem; left: 1rem;
  font-family: 'Merriweather', serif; font-size: 6rem;
  color: rgba(255,255,255,0.06); line-height: 1;
}
.why-quote blockquote {
  font-family: 'Merriweather', serif; font-style: italic;
  font-size: 1rem; color: rgba(255,255,255,0.9); line-height: 1.75;
  position: relative; z-index: 1;
}
.why-quote cite {
  display: block; margin-top: 1rem; font-style: normal;
  font-size: 0.75rem; color: rgba(255,255,255,0.45); letter-spacing: 0.04em;
}
.why-points { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.why-point {
  display: flex; gap: 0.75rem; align-items: flex-start;
  background: #fff; border: 1px solid var(--border);
  border-left: 3px solid var(--blue); border-radius: 6px;
  padding: 1rem 1.25rem;
}
.why-point-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 0.1rem; }
.why-point-text h4 { font-weight: 700; font-size: 0.9rem; color: var(--midnight); margin-bottom: 0.25rem; }
.why-point-text p { font-size: 0.82rem; color: var(--steel); line-height: 1.6; }

/* ── Legacy ── */
.c250-legacy { background: var(--midnight); color: #fff; }
.legacy-grid { display: grid; grid-template-columns: 160px 1fr; gap: 2.5rem; align-items: start; }
.legacy-portrait img {
  width: 100%; height: auto; border-radius: 8px;
  filter: grayscale(15%); box-shadow: 0 12px 32px rgba(0,0,0,0.45);
}
.legacy-portrait-caption { margin-top: 1rem; text-align: center; }
.legacy-portrait-caption strong { display: block; font-size: 0.92rem; color: rgba(255,255,255,0.9); }
.legacy-portrait-caption span { font-size: 0.75rem; color: rgba(255,255,255,0.42); }
.legacy-content .section-label { color: #7aaeff; }
.legacy-content .section-title { color: #fff; }
.legacy-content p { color: rgba(255,255,255,0.75); font-size: 1rem; line-height: 1.8; margin-bottom: 1.2rem; }
.legacy-content p strong { color: rgba(255,255,255,0.95); }
.senate-quote {
  border-left: 4px solid var(--red); padding: 1.5rem 2rem;
  background: rgba(255,255,255,0.05); border-radius: 0 6px 6px 0; margin: 2rem 0;
}
.senate-quote blockquote {
  font-family: 'Merriweather', serif; font-style: italic;
  font-size: 1.1rem; color: rgba(255,255,255,0.92); line-height: 1.75;
}
.senate-quote cite {
  display: block; margin-top: 0.75rem; font-style: normal;
  font-size: 0.78rem; color: rgba(255,255,255,0.42); letter-spacing: 0.04em;
}
.career-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1.5rem; }
.career-tag {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75); font-size: 0.72rem; font-weight: 600;
  padding: 4px 12px; border-radius: 20px;
}

/* ── Program Modules ── */
.c250-program { background: #fff; }
.modules-intro { max-width: 680px; margin-bottom: 3rem; }
.modules-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
.module-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(28,46,74,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}
.module-card:hover { box-shadow: 0 8px 28px rgba(28,46,74,0.12); transform: translateY(-2px); }
.module-card-header { padding: 1.5rem 1.5rem 1rem; }
.module-num {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 0.5rem;
}
.module-card h3 {
  font-family: 'Merriweather', serif; font-size: 1rem;
  font-weight: 700; color: var(--midnight); margin-bottom: 0.5rem; line-height: 1.35;
}
.module-card p { font-size: 0.85rem; color: var(--steel); line-height: 1.65; }
.module-card-footer {
  padding: 0.75rem 1.5rem; background: var(--light-bg);
  border-top: 1px solid var(--border);
  font-size: 0.75rem; color: var(--steel);
  display: flex; align-items: center; gap: 0.5rem;
}

/* ── Flip Cards (Why Civics section) ── */
.flip-cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.25rem; margin-top: 2rem; }
.flip-card { perspective: 900px; height: 260px; cursor: pointer; }
.flip-card-inner {
  position: relative; width: 100%; height: 100%;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
  transform-style: preserve-3d;
}
.flip-card.flipped .flip-card-inner { transform: rotateY(180deg); }
.flip-card-front, .flip-card-back {
  position: absolute; inset: 0; border-radius: 10px;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  overflow: hidden;
}
.flip-card-front {
  background: #fff; border: 1px solid var(--border);
  padding: 1.5rem; display: flex; flex-direction: column;
}
.flip-card-front::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--blue), var(--midnight));
}
.flip-card-back {
  background: var(--midnight); transform: rotateY(180deg);
  padding: 1.75rem; display: flex; flex-direction: column; justify-content: flex-start;
}
.flip-card-back::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--red), var(--blue));
}
.feature-icon {
  width: 46px; height: 46px; background: var(--light-bg); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; font-size: 1.35rem; flex-shrink: 0;
}
.flip-card-front h3 {
  font-family: 'Merriweather', serif; font-size: 1rem; font-weight: 700;
  color: var(--midnight); margin-bottom: 0.5rem;
}
.flip-card-front p { font-size: 0.88rem; color: var(--steel); line-height: 1.7; }
.flip-card-back h3 {
  font-family: 'Merriweather', serif; font-size: 0.95rem; font-weight: 700;
  color: #fff; margin-bottom: 1rem; line-height: 1.4;
}
.flip-hint {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--blue); margin-top: auto;
  display: flex; align-items: center; gap: 0.35rem;
}
.flip-hint-back {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.35); margin-top: auto;
  display: flex; align-items: center; gap: 0.35rem;
}
.flip-back-module { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.65rem; }
.flip-back-module-num {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--blue); color: #fff; font-size: 0.65rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.flip-back-module-text { font-size: 0.82rem; color: rgba(255,255,255,0.8); line-height: 1.5; }
.flip-back-module-text strong { color: #fff; display: block; font-size: 0.85rem; }

/* ── Video Gallery ── */
.c250-video-gallery { background: #F9FAFB; padding: 5rem 2rem; border-top: 1px solid #e5e9ef; }
.vg-header { max-width: 1200px; margin: 0 auto 2.5rem; }
.vg-search-wrap {
  position: relative; max-width: 420px; margin-bottom: 1.25rem;
}
.vg-search-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); pointer-events: none; }
.vg-search {
  width: 100%; padding: 0.65rem 1rem 0.65rem 2.5rem;
  border: 1px solid var(--border); border-radius: 6px;
  font-size: 0.88rem; color: var(--midnight); background: #fff;
  font-family: 'Inter', sans-serif;
}
.vg-search:focus { outline: none; border-color: var(--blue); }
.vg-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.5rem; }
.vg-filter-btn {
  background: #fff; border: 1px solid var(--border);
  color: var(--steel); font-size: 0.78rem; font-weight: 600;
  padding: 5px 14px; border-radius: 20px; cursor: pointer;
  transition: all 0.15s; font-family: 'Inter', sans-serif;
}
.vg-filter-btn:hover, .vg-filter-btn.active {
  background: var(--midnight); color: #fff; border-color: var(--midnight);
}
.vg-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.75rem; max-width: 1200px; margin: 0 auto; }
.vg-card {
  background: #fff; border: 1px solid var(--border); border-radius: 10px;
  overflow: hidden; cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
}
.vg-card:hover { box-shadow: 0 8px 28px rgba(28,46,74,0.12); transform: translateY(-2px); }
.vg-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #0d1a2b; }
.vg-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.vg-card:hover .vg-thumb img { transform: scale(1.04); }
.vg-play-btn {
  position: absolute; inset: 0; display: flex;
  align-items: center; justify-content: center;
  background: rgba(28,46,74,0.35); transition: background 0.2s;
}
.vg-card:hover .vg-play-btn { background: rgba(28,46,74,0.55); }
.vg-play-circle {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.vg-info { padding: 1rem 1.25rem; }
.vg-title { font-family: 'Merriweather', serif; font-size: 0.92rem; font-weight: 700; color: var(--midnight); margin-bottom: 0.35rem; }
.vg-desc { font-size: 0.8rem; color: var(--steel); line-height: 1.6; margin-bottom: 0.65rem; }
.vg-badge {
  display: inline-block; color: #fff; font-size: 0.65rem;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 2px 8px; border-radius: 3px;
}
.vg-load-more {
  display: block; margin: 2rem auto 0;
  background: none; border: 2px solid var(--midnight);
  color: var(--midnight); font-size: 0.88rem; font-weight: 600;
  padding: 10px 28px; border-radius: 5px; cursor: pointer;
  font-family: 'Inter', sans-serif; transition: all 0.2s;
}
.vg-load-more:hover { background: var(--midnight); color: #fff; }
/* Lightbox */
.vg-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.88);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  padding: 2rem;
}
.vg-modal-box {
  background: #0d1a2b; border-radius: 10px; overflow: hidden;
  width: 100%; max-width: 900px; position: relative;
}
.vg-modal-close {
  position: absolute; top: 0.75rem; right: 0.75rem;
  background: rgba(255,255,255,0.1); border: none; color: #fff;
  width: 32px; height: 32px; border-radius: 50%; cursor: pointer;
  font-size: 0.9rem; z-index: 1;
}
.vg-modal-title {
  padding: 0.75rem 1rem; font-size: 0.82rem; color: rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.vg-modal-iframe { width: 100%; aspect-ratio: 16/9; border: none; display: block; }

/* ── Testimonials ── */
.c250-testimonials { background: #fff; padding: 5rem 2rem; }
.testimonials-tabs { display: flex; gap: 0.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.tab-btn {
  background: none; border: 1px solid var(--border);
  color: var(--steel); font-size: 0.82rem; font-weight: 600;
  padding: 7px 18px; border-radius: 20px; cursor: pointer;
  transition: all 0.15s; font-family: 'Inter', sans-serif;
}
.tab-btn.active, .tab-btn:hover { background: var(--midnight); color: #fff; border-color: var(--midnight); }
.testimonials-featured {
  background: var(--midnight); border-radius: 12px;
  padding: 2.5rem; margin-bottom: 2rem; position: relative; overflow: hidden;
}
.testimonials-featured::before {
  content: '"'; position: absolute; top: -1rem; left: 1.5rem;
  font-family: 'Merriweather', serif; font-size: 8rem;
  color: rgba(255,255,255,0.05); line-height: 1;
}
.testimonials-featured blockquote {
  font-family: 'Merriweather', serif; font-style: italic;
  font-size: 1.05rem; color: rgba(255,255,255,0.9); line-height: 1.8;
  position: relative; z-index: 1; margin-bottom: 1.5rem;
}
.testimonials-featured .t-author { display: flex; align-items: center; gap: 0.75rem; }
.t-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 0.85rem; flex-shrink: 0;
}
.t-name { font-weight: 700; font-size: 0.9rem; color: #fff; }
.t-role { font-size: 0.75rem; color: rgba(255,255,255,0.55); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.t-card {
  background: #fff; border: 1px solid var(--border); border-radius: 10px;
  padding: 1.5rem; display: flex; flex-direction: column;
  box-shadow: 0 2px 8px rgba(28,46,74,0.05);
}
.t-card blockquote {
  font-size: 0.88rem; color: #3a4a5c; line-height: 1.75;
  font-style: italic; flex: 1; margin-bottom: 1.25rem;
}
.t-card .t-author { display: flex; align-items: center; gap: 0.6rem; }
.t-card .t-name { font-weight: 700; font-size: 0.85rem; color: var(--midnight); }
.t-card .t-role { font-size: 0.72rem; color: var(--steel); }
.t-load-more {
  display: block; margin: 1.5rem auto 0;
  background: none; border: 2px solid var(--midnight);
  color: var(--midnight); font-size: 0.85rem; font-weight: 600;
  padding: 9px 24px; border-radius: 5px; cursor: pointer;
  font-family: 'Inter', sans-serif; transition: all 0.2s;
}
.t-load-more:hover { background: var(--midnight); color: #fff; }

/* ── Educator Invite ── */
.c250-invite { background: var(--midnight); color: #fff; padding: 5rem 2rem; }
.invite-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.invite-form-wrap { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 2rem; }
.invite-form-wrap h3 { font-family: 'Merriweather', serif; font-size: 1.1rem; color: #fff; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.7); letter-spacing: 0.04em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  color: #fff; padding: 0.65rem 0.85rem; border-radius: 5px;
  font-size: 0.88rem; font-family: 'Inter', sans-serif;
  transition: border-color 0.15s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--blue);
}
.form-group select option { background: var(--midnight); color: #fff; }
.form-submit {
  background: var(--blue); color: #fff; border: none;
  padding: 13px 28px; border-radius: 5px; font-weight: 700;
  font-size: 0.92rem; cursor: pointer; width: 100%;
  font-family: 'Inter', sans-serif; transition: background 0.2s;
}
.form-submit:hover { background: #1e54c0; }

/* ── Closing Banner ── */
.closing-banner {
  background: linear-gradient(135deg, #1C2E4A 0%, #2D6CDF 100%);
  padding: 4rem 2rem; text-align: center;
}
.closing-banner h2 {
  font-family: 'Merriweather', serif; font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem); color: rgba(255,255,255,0.92);
  max-width: 800px; margin: 0 auto 1rem; line-height: 1.65;
}
.closing-banner p { font-size: 0.85rem; color: rgba(255,255,255,0.5); letter-spacing: 0.04em; }

/* ── Footer ── */
.c250-footer { background: #0f1e33; color: rgba(255,255,255,0.7); padding: 4rem 2rem 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.c250-brand {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: 'Merriweather', serif; font-size: 1.1rem;
  font-weight: 900; color: #fff; letter-spacing: 0.06em; text-transform: uppercase;
}
.footer-brand-desc { font-size: 0.82rem; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 320px; margin-top: 1rem; }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { font-size: 0.85rem; color: rgba(255,255,255,0.65); transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.35); line-height: 1.7; }
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: #fff; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--midnight); padding: 4rem 2rem 3rem;
  border-bottom: 3px solid var(--blue); position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 5px;
  background: linear-gradient(to bottom, var(--red), var(--blue));
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; padding-left: 1.5rem; }
.page-hero-eyebrow {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: #7aaeff; margin-bottom: 0.5rem;
}
.page-hero h1 {
  font-family: 'Merriweather', serif; font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900; color: #fff; line-height: 1.2; margin-bottom: 0.75rem;
}
.page-hero-lead { color: rgba(255,255,255,0.75); font-size: 1rem; max-width: 680px; line-height: 1.75; }

/* ── Page Content ── */
.page-content { max-width: 1200px; margin: 0 auto; padding: 3.5rem 2rem; }

/* ── FAQ Accordion ── */
.faq-accordion { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; text-align: left; background: #fff; border: none;
  padding: 1.25rem 1.5rem; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; cursor: pointer; font-family: 'Inter', sans-serif;
  font-size: 0.95rem; font-weight: 600; color: var(--midnight);
  transition: background 0.15s;
}
.faq-question:hover { background: var(--light-bg); }
.faq-question.open { background: var(--light-bg); color: var(--blue); }
.faq-chevron { flex-shrink: 0; transition: transform 0.25s; }
.faq-question.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 1.5rem 1.25rem; background: var(--light-bg); }
.faq-answer.open { display: block; }
.faq-answer p { font-size: 0.9rem; color: #3a4a5c; line-height: 1.75; }

/* ── Glossary ── */
.glossary-alpha { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 2rem; }
.alpha-btn {
  width: 34px; height: 34px; border-radius: 5px;
  border: 1px solid var(--border); background: #fff;
  font-size: 0.82rem; font-weight: 700; color: var(--steel);
  cursor: pointer; font-family: 'Inter', sans-serif; transition: all 0.15s;
}
.alpha-btn:hover, .alpha-btn.active { background: var(--midnight); color: #fff; border-color: var(--midnight); }
.glossary-letter-group { margin-bottom: 2rem; }
.glossary-letter-heading {
  font-family: 'Merriweather', serif; font-size: 1.5rem; font-weight: 900;
  color: var(--midnight); border-bottom: 2px solid var(--border);
  padding-bottom: 0.5rem; margin-bottom: 1rem;
}
.glossary-term { padding: 1rem 0; border-bottom: 1px solid var(--border); }
.glossary-term:last-child { border-bottom: none; }
.glossary-term dt { font-weight: 700; font-size: 0.95rem; color: var(--midnight); margin-bottom: 0.25rem; }
.glossary-term dd { font-size: 0.88rem; color: var(--steel); line-height: 1.65; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .snav-links, .snav-cta { display: none; }
  .snav-hamburger { display: flex; }
  .snav-brand-text { display: none; }
  .snav-brand-logo { height: 48px; }
  .c250-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .c250-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .why-grid, .legacy-grid, .invite-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .c250-section { padding: 3rem 1.25rem; }
  .page-content { padding: 2rem 1.25rem; }
  .why-stat-row { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: 1fr; }
}
