/* ══════════════════════════════════════════════════════
   Institutional Intelligence — Cinematic Stylesheet
   ══════════════════════════════════════════════════════ */

/* ─── Reset & Base ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand:       #6C3FD6;
  --brand-mid:   #8A5FFF;
  --brand-light: #C4A0FF;
  --gold:        #D4AF37;
  --gold-warm:   #F5A623;
  --bg-deepest:  #04040E;
  --bg-deep:     #070714;
  --bg-dark:     #0C0C20;
  --bg-card:     #101024;
  --border:      rgba(255,255,255,0.07);
  --border-glow: rgba(108,63,214,0.28);
  --text-1:      #F4F3FF;
  --text-2:      #B2B0D4;
  --text-3:      #6E6C90;
  --white:       #FFFFFF;
  --font-sans:   'Inter', sans-serif;
  --font-serif:  'Playfair Display', Georgia, serif;
  --r:           16px;
  --rs:          10px;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
}

html  { scroll-behavior: smooth; font-size: 16px; }
body  {
  font-family: var(--font-sans);
  background: var(--bg-deepest);
  color: var(--text-1);
  line-height: 1.65;
  overflow-x: hidden;
}
a    { text-decoration: none; color: inherit; }
img  { max-width: 100%; display: block; object-fit: cover; }
ul   { list-style: none; }

/* ─── Noise / Film Grain Overlay ────────────────────── */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

/* ─── Container ─────────────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* ─── Typography helpers ────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-light);
  background: rgba(108,63,214,0.1);
  border: 1px solid rgba(108,63,214,0.25);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.section-label-light {
  color: var(--gold-warm);
  background: rgba(245,166,35,0.1);
  border-color: rgba(245,166,35,0.3);
}
.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-1);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-title-light { color: var(--white); }
.section-desc {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 0;
}
.title-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  color: var(--brand-light);
}

/* ─── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--rs);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-mid) 100%);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(108,63,214,0.45);
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(108,63,214,0.6);
  background: linear-gradient(135deg, #7d4fea, #9a6fff);
}

.btn-hero-ghost {
  background: rgba(255,255,255,0.07);
  color: var(--text-1);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
}
.btn-hero-ghost:hover {
  border-color: var(--brand-light);
  color: var(--brand-light);
  transform: translateY(-3px);
}

.btn-nav {
  background: var(--brand);
  color: var(--white);
  padding: 9px 20px;
  font-size: 13.5px;
  border-radius: 8px;
}
.btn-nav:hover { background: var(--brand-mid); transform: translateY(-1px); }

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 15px;
  background: linear-gradient(135deg, var(--brand), var(--brand-mid));
  color: white;
  border-radius: var(--rs);
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(108,63,214,0.4);
  transition: all 0.25s var(--ease);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(108,63,214,0.55); }

/* ─── Navigation ────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(4,4,14,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; gap: 40px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--brand), var(--brand-mid));
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900; color: white;
  flex-shrink: 0; letter-spacing: -0.5px;
}
.logo-text { font-size: 15px; font-weight: 500; color: var(--text-1); letter-spacing: -0.3px; }
.logo-text strong { font-weight: 800; }
.nav-links { display: flex; gap: 32px; flex: 1; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-2);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-1); }
.nav-cta { margin-left: auto; }
.nav-toggle { display: none; background: none; border: none; color: var(--text-1); font-size: 20px; cursor: pointer; }

/* ─── HERO ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 80px;
  overflow: hidden;
}
.hero-bg-image {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  animation: heroZoom 16s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-cinematic-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(4,4,14,0.55) 0%,
    rgba(4,4,14,0.30) 35%,
    rgba(4,4,14,0.65) 70%,
    rgba(4,4,14,0.97) 100%
  );
}
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(4,4,14,0.6) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding-top: 200px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}
.eyebrow-pulse {
  width: 7px; height: 7px;
  background: var(--brand-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity:1; transform: scale(1); box-shadow: 0 0 0 0 rgba(196,160,255,0.6); }
  50%       { opacity:0.7; transform: scale(1.3); box-shadow: 0 0 0 8px rgba(196,160,255,0); }
}
.eyebrow-sep { color: rgba(255,255,255,0.2); }

.hero-headline {
  font-family: var(--font-sans);
  font-size: clamp(44px, 7.5vw, 96px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 22px;
}
.hero-headline-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(120deg, var(--brand-light), var(--gold-warm));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.92em;
  display: block;
}
.hero-sub {
  font-size: clamp(16px, 2.2vw, 20px);
  color: rgba(255,255,255,0.72);
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: 20px;
}
.text-highlight { color: var(--brand-light); font-weight: 600; }
.hero-starting-line { margin-bottom: 36px; }
.starting-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.35);
  color: var(--gold);
  font-size: 13.5px; font-weight: 700;
  padding: 9px 20px; border-radius: 999px;
  letter-spacing: 0.04em;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero-stats {
  display: flex; align-items: center; gap: 36px;
  flex-wrap: wrap;
}
.hero-stat-num {
  display: block;
  font-size: 34px; font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 11.5px; color: rgba(255,255,255,0.45);
  font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.07em;
}
.hero-stat-line { width: 1px; height: 42px; background: rgba(255,255,255,0.12); }

.hero-scroll-cue {
  position: absolute; bottom: 32px; right: 40px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 2; writing-mode: vertical-lr; letter-spacing: 0.15em;
  font-size: 10px; font-weight: 600; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── Ticker Bar ────────────────────────────────────── */
.ticker-bar {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex; align-items: center; gap: 28px;
  animation: ticker 32s linear infinite;
  font-size: 13px; font-weight: 600;
  color: var(--text-2);
  white-space: nowrap;
  will-change: transform;
}
.ticker-track i { color: var(--brand-light); margin-right: 7px; }
.ticker-dot { color: var(--brand); font-size: 18px; opacity: 0.5; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

/* ─── Human Moment (Split) ──────────────────────────── */
.human-moment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}
.human-moment-image {
  position: relative;
  overflow: hidden;
}
.human-moment-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.human-moment-image:hover img { transform: scale(1.04); }
.human-moment-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 70%, var(--bg-dark) 100%);
}
.human-moment-content {
  background: var(--bg-dark);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.human-moment-content > p {
  font-size: 16px; color: var(--text-2);
  line-height: 1.8; margin-bottom: 40px;
  max-width: 480px;
}
.platform-quad {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.quad-item {
  display: flex; gap: 14px; align-items: flex-start;
}
.quad-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(108,63,214,0.13);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-light); font-size: 15px;
}
.quad-item strong {
  display: block; font-size: 14px; font-weight: 700;
  color: var(--text-1); margin-bottom: 4px;
}
.quad-item p { font-size: 12.5px; color: var(--text-3); line-height: 1.55; }

/* ─── Who Section ───────────────────────────────────── */
.who-section { padding: 100px 0; background: var(--bg-deepest); }
.who-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px; flex-wrap: wrap; gap: 20px;
}
.who-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 20px;
}
.who-col-right {
  display: flex; flex-direction: column; gap: 20px;
}

/* Who Cards */
.who-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
  display: flex; flex-direction: column;
}
.who-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.who-card-lg .who-card-photo { height: 320px; }
.who-card-photo { position: relative; overflow: hidden; flex-shrink: 0; }
.who-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}
.who-card:hover .who-card-photo img { transform: scale(1.07); }
.who-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(16,16,36,0.92) 100%);
}
.who-card-photo-sm { height: 140px; }

.who-card-body { padding: 24px 26px 26px; flex: 1; display: flex; flex-direction: column; }
.who-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.who-icon-wrap {
  width: 44px; height: 44px;
  background: rgba(108,63,214,0.15);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-light); font-size: 18px;
}
.who-icon-sm { width: 34px; height: 34px; font-size: 14px; border-radius: 8px; }
.who-card h3 {
  font-size: 20px; font-weight: 800;
  color: var(--text-1); margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.who-card-sm { flex-direction: row; align-items: stretch; }
.who-card-sm .who-card-photo { flex-shrink: 0; width: 130px; height: auto; }
.who-card-sm .who-card-photo img { width: 100%; height: 100%; min-height: 130px; }
.who-card-sm .who-card-body { padding: 16px 18px; }
.who-card-sm h3 { font-size: 14.5px; }
.who-card p { font-size: 14px; color: var(--text-2); line-height: 1.65; flex: 1; margin-bottom: 18px; }
.who-card-sm p { font-size: 12.5px; margin-bottom: 12px; }

.badge-launch {
  background: linear-gradient(135deg, var(--brand), var(--brand-mid));
  color: white;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 999px;
}
.badge-soon {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text-3);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 999px;
}
.card-cta {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 700;
  color: var(--brand-light);
  transition: gap 0.2s, color 0.2s;
}
.card-cta:hover { color: #d8b8ff; gap: 12px; }
.card-cta-dim { color: var(--text-3); cursor: default; font-size: 12px; }

/* ─── Quote Break ───────────────────────────────────── */
.quote-break {
  position: relative; overflow: hidden;
  padding: 120px 0;
  text-align: center;
}
.quote-bg-image {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}
.quote-overlay {
  position: absolute; inset: 0;
  background: rgba(4,4,14,0.82);
}
.quote-content {
  position: relative; z-index: 2;
  max-width: 860px;
}
.quote-mark {
  font-family: var(--font-serif);
  font-size: 120px; line-height: 0.6;
  color: var(--brand);
  opacity: 0.4;
  margin-bottom: 10px;
}
.quote-content blockquote {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 24px;
}
.quote-content blockquote em {
  color: var(--brand-light);
  font-style: italic;
}
.quote-attribution {
  font-size: 13px; font-weight: 600;
  color: var(--text-3); letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── HBCU Section ──────────────────────────────────── */
.hbcu-section { padding: 100px 0; background: var(--bg-dark); }
.hbcu-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}

/* Visual Stack */
.hbcu-visuals { position: relative; min-height: 480px; }
.hbcu-img-primary {
  position: relative;
  border-radius: var(--r); overflow: hidden;
  height: 520px; box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.hbcu-img-primary img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.hbcu-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(7,7,20,0.5));
}
.hbcu-img-secondary {
  position: absolute; bottom: -32px; right: -32px;
  width: 200px; height: 240px;
  border-radius: var(--r); overflow: hidden;
  border: 3px solid var(--bg-dark);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}
.hbcu-img-secondary img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

.hbcu-float-card {
  position: absolute; top: 36px; left: -28px;
  background: rgba(12,12,32,0.92);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glow);
  border-radius: var(--rs);
  padding: 18px 22px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
  min-width: 190px;
}
.float-card-row {
  display: flex; flex-direction: column;
  padding: 8px 0;
}
.float-num {
  font-size: 26px; font-weight: 900;
  color: var(--white); line-height: 1;
  margin-bottom: 3px;
  letter-spacing: -0.03em;
}
.float-label { font-size: 11px; color: var(--text-3); font-weight: 500; }
.float-divider {
  width: 100%; height: 1px; background: var(--border); margin: 4px 0;
}

/* HBCU Copy */
.hbcu-lead {
  font-size: 17px; color: var(--text-2);
  line-height: 1.75; margin-bottom: 36px;
}
.hbcu-feature-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.hbcu-feature {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: var(--rs);
  padding: 16px 20px;
  transition: border-color 0.2s;
}
.hbcu-feature:hover { border-color: var(--border-glow); }
.hbcu-feature-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(108,63,214,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-light); font-size: 14px;
}
.hbcu-feature strong { display: block; font-size: 14px; font-weight: 700; color: var(--text-1); margin-bottom: 3px; }
.hbcu-feature p { font-size: 13px; color: var(--text-3); line-height: 1.5; }
.hbcu-cta-row {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.hbcu-note {
  font-size: 12px; color: var(--text-3); font-style: italic;
  max-width: 220px; line-height: 1.5;
}



/* ─── Modules ───────────────────────────────────────── */
.modules-section { padding: 100px 0; background: var(--bg-deepest); }
.modules-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: end; margin-bottom: 52px;
}
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.module-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 30px 28px;
  position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.module-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand), var(--brand-mid), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.module-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-glow);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.module-card:hover::after { opacity: 1; }
.module-num {
  font-size: 11px; font-weight: 700;
  color: var(--text-3); letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.module-icon {
  font-size: 26px; color: var(--brand-mid);
  margin-bottom: 14px; display: block;
}
.module-card h4 {
  font-size: 16px; font-weight: 700;
  color: var(--text-1); margin-bottom: 10px;
}
.module-card p { font-size: 13.5px; color: var(--text-2); line-height: 1.65; }

/* ─── Image Break ───────────────────────────────────── */
.image-break {
  position: relative; height: 440px; overflow: hidden;
}
.image-break img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 35%;
}
.image-break-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(4,4,14,0.92) 0%, rgba(4,4,14,0.6) 50%, rgba(4,4,14,0.92) 100%);
  display: flex; align-items: center;
}
.image-break-text {
  display: flex; flex-direction: column; gap: 6px;
}
.image-break-text span {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 30px);
  font-style: italic; font-weight: 700;
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
}
.image-break-text span:nth-child(2) { color: var(--brand-light); padding-left: 28px; }
.image-break-text span:nth-child(3) { color: var(--gold); padding-left: 56px; font-size: 0.75em; }

/* ─── SEMCOG ────────────────────────────────────────── */
.semcog-section { padding: 100px 0; background: var(--bg-dark); }
.semcog-inner {
  display: grid; grid-template-columns: 380px 1fr;
  gap: 72px; align-items: start;
}
.semcog-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.semcog-badge-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--r); padding: 24px;
  margin-bottom: 20px;
}
.semcog-logo-mark {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--brand), var(--brand-mid));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900; color: white;
  flex-shrink: 0;
}
.semcog-powered-label { font-size: 10.5px; color: var(--text-3); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; }
.semcog-name { font-size: 22px; font-weight: 800; color: var(--text-1); }
.semcog-platform-list {
  display: flex; flex-direction: column; gap: 10px; margin-top: 0;
}
.semcog-platform {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--rs); padding: 13px 18px;
  font-size: 14px; font-weight: 600; color: var(--text-2);
  transition: border-color 0.2s;
}
.semcog-platform.active { border-color: var(--border-glow); color: var(--text-1); }
.semcog-platform i { color: var(--brand-light); width: 16px; flex-shrink: 0; }
.semcog-platform span:nth-child(2) { flex: 1; }
.platform-status {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 3px 10px; border-radius: 999px;
}
.platform-status.live {
  background: rgba(74,222,128,0.12);
  border: 1px solid rgba(74,222,128,0.3);
  color: #4ade80;
}
.platform-status.soon {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text-3);
}
.semcog-copy p {
  font-size: 16px; color: var(--text-2);
  line-height: 1.8; margin-bottom: 16px;
  max-width: 560px;
}
.semcog-copy strong { color: var(--brand-light); font-weight: 700; }
.semcog-copy em { color: rgba(255,255,255,0.6); font-style: normal; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(108,63,214,0.4); }

/* ─── Access Section ────────────────────────────────── */
.access-section { position: relative; overflow: hidden; padding: 100px 0; }
.access-bg-image {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.access-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(4,4,14,0.96) 0%, rgba(7,7,32,0.9) 100%);
}
.access-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}
.access-copy .section-title-light .title-serif,
.access-copy .section-title-light em {
  font-family: var(--font-serif); font-style: italic;
  color: var(--brand-light);
}
.access-desc {
  font-size: 16px; color: var(--text-2);
  line-height: 1.8; margin: 0 0 36px;
}
.access-audience-list { display: flex; flex-direction: column; gap: 16px; }
.access-audience-item {
  display: flex; align-items: center; gap: 14px;
}
.access-audience-item i {
  color: var(--brand-light); font-size: 18px; flex-shrink: 0;
}
.access-audience-item strong {
  display: block; font-size: 14px; font-weight: 700;
  color: var(--text-1); margin-bottom: 1px;
}
.access-audience-item span { font-size: 12.5px; color: var(--text-3); }

/* Form Card */
.form-card {
  background: rgba(16,16,36,0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
}
.form-card-header {
  background: rgba(108,63,214,0.08);
  border-bottom: 1px solid var(--border);
  padding: 24px 28px;
}
.form-card-header h3 {
  font-size: 18px; font-weight: 800;
  color: var(--text-1); margin-bottom: 4px;
}
.form-card-header p { font-size: 13px; color: var(--text-3); }
.access-form {
  display: flex; flex-direction: column; gap: 16px;
  padding: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 12.5px; font-weight: 600;
  color: var(--text-2); letter-spacing: 0.02em;
}
.form-group input,
.form-group select {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 11px 15px;
  color: var(--text-1);
  font-family: var(--font-sans); font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none; -webkit-appearance: none;
}
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236E6C90' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group select option { background: #0c0c20; }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--brand-mid);
  box-shadow: 0 0 0 3px rgba(108,63,214,0.18);
  background: rgba(108,63,214,0.06);
}
.form-group input::placeholder { color: var(--text-3); }
.form-footnote {
  font-size: 12px; color: var(--text-3);
  text-align: center; margin-top: -4px;
}
.form-success {
  padding: 48px 28px; text-align: center;
}
.success-icon { font-size: 56px; color: #4ade80; margin-bottom: 16px; }
.form-success h3 {
  font-size: 22px; font-weight: 800;
  color: var(--text-1); margin-bottom: 10px;
}
.form-success p { font-size: 15px; color: var(--text-2); line-height: 1.65; }

/* ─── Footer ────────────────────────────────────────── */
.footer { background: var(--bg-deepest); border-top: 1px solid var(--border); padding: 64px 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 64px; padding-bottom: 52px;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.footer-tagline { font-size: 13px; color: var(--text-3); margin-bottom: 10px; line-height: 1.5; }
.footer-semcog {
  font-size: 12px; color: var(--text-3);
  transition: color 0.2s;
}
.footer-semcog strong { color: var(--brand-light); font-weight: 700; }
.footer-semcog:hover { color: var(--text-2); }
.footer-nav {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 32px;
}
.footer-col h5 {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 16px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 13.5px; color: var(--text-2); transition: color 0.2s; }
.footer-col a:hover { color: var(--brand-light); }
.footer-dim { font-size: 13.5px; color: var(--text-3); opacity: 0.55; }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; }
.footer-bottom-inner {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: var(--text-3);
}

/* ─── Scroll Reveal ─────────────────────────────────── */
.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal-item.revealed { opacity: 1; transform: translateY(0); }

/* ─── Responsive ────────────────────────────────────── */
@media (max-width: 1100px) {
  .hbcu-inner { grid-template-columns: 1fr; gap: 48px; }
  .hbcu-visuals { min-height: 420px; }
  .hbcu-img-secondary { display: none; }
  .hbcu-float-card { left: 16px; top: 20px; }
  .semcog-inner { grid-template-columns: 1fr; gap: 40px; }
  .modules-grid { grid-template-columns: repeat(2,1fr); }
  .modules-header { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 960px) {
  .human-moment { grid-template-columns: 1fr; }
  .human-moment-image { height: 400px; }
  .human-moment-img-overlay { background: linear-gradient(to bottom, transparent 60%, var(--bg-dark) 100%); }
  .human-moment-content { padding: 52px 36px; }
  .who-grid { grid-template-columns: 1fr; }
  .who-card-lg .who-card-photo { height: 240px; }
  .who-card-sm { flex-direction: column !important; }
  .who-card-sm .who-card-photo { width: 100% !important; height: 160px !important; min-height: unset !important; }
  .who-card-sm .who-card-body { padding: 16px 20px !important; }
  .access-inner { grid-template-columns: 1fr; gap: 48px; }
  .semcog-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0;
    background: rgba(4,4,14,0.98);
    backdrop-filter: blur(24px);
    padding: 24px; gap: 20px;
    border-bottom: 1px solid var(--border);
    z-index: 999;
  }
  .nav-links.open a { font-size: 16px; color: var(--text-1); }
  .hero { padding-bottom: 60px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stat-line { display: none; }
  .hero-scroll-cue { display: none; }
  .platform-quad { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hbcu-cta-row { flex-direction: column; align-items: flex-start; }
  .image-break { height: 320px; }
  .image-break-text span:nth-child(2) { padding-left: 0; }
  .image-break-text span:nth-child(3) { padding-left: 0; }
}

@media (max-width: 480px) {
  .section-title { font-size: 26px; }
  .hero-headline { font-size: 38px; }
  .footer-nav { grid-template-columns: 1fr; }
}
