/* ========================================
   JCU Entrepreneurship — Design System
   Colors: JCU Gold #E9B820, JCU Blue #0A4068
   ======================================== */

:root {
  --gold: #E9B820;
  --gold-bright: #F5C933;
  --gold-deep: #C99C12;
  --blue: #0A4068;
  --blue-dark: #062A44;
  --blue-deep: #041B2D;
  --ink: #0F1724;
  --paper: #FFFFFF;
  --cream: #FBF7EE;
  --gray-100: #F5F6F8;
  --gray-200: #E6E9EE;
  --gray-400: #8A93A1;
  --gray-600: #4A5565;

  --font-display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --shadow-sm: 0 2px 10px rgba(6, 42, 68, 0.08);
  --shadow-md: 0 10px 30px rgba(6, 42, 68, 0.12);
  --shadow-lg: 0 30px 80px rgba(6, 42, 68, 0.25);

  --container: 1240px;
  --radius: 14px;
  --radius-lg: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

::selection { background: var(--gold); color: var(--blue-deep); }

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: none;
}

.display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: currentColor;
}

.section-title {
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 0.95;
  margin-bottom: 1rem;
}

.lede {
  font-size: clamp(1.125rem, 1.5vw, 1.35rem);
  color: var(--gray-600);
  max-width: 56ch;
  line-height: 1.55;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

section {
  padding: clamp(72px, 10vw, 140px) 0;
  position: relative;
}

/* ---------- Nav ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(6, 42, 68, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(233, 184, 32, 0.15);
  transition: all 0.3s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}
.nav-logo img { height: 44px; width: auto; }
.nav-logo span { display: none; }
@media (min-width: 1100px) { .nav-logo span { display: inline; } }

.nav-links {
  display: none;
  list-style: none;
  gap: 6px;
  align-items: center;
}
@media (min-width: 960px) { .nav-links { display: flex; } }

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 999px;
  transition: all 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--gold); background: rgba(233,184,32,0.08); }
.nav-links a.active { color: var(--gold); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--blue-deep);
  font-weight: 700;
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 0.9rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}
.nav-cta:hover { background: var(--gold-bright); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(233, 184, 32, 0.35); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
}
@media (min-width: 960px) { .nav-toggle { display: none; } }
.nav-toggle span { width: 24px; height: 2px; background: #fff; transition: 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 76px;
  left: 0; right: 0;
  background: var(--blue-deep);
  padding: 24px 28px 40px;
  border-bottom: 1px solid rgba(233,184,32,0.2);
  transform: translateY(-120%);
  transition: transform 0.3s ease;
  z-index: 99;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block;
  color: #fff;
  padding: 14px 12px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a:hover { color: var(--gold); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  transition: all 0.25s;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--gold);
  color: var(--blue-deep);
}
.btn-primary:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(233, 184, 32, 0.4); }

.btn-secondary {
  background: var(--blue);
  color: #fff;
}
.btn-secondary:hover { background: var(--blue-dark); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-ghost:hover { background: var(--blue); color: #fff; }

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost-light:hover { background: #fff; color: var(--blue-deep); border-color: #fff; }

.btn-lg { padding: 20px 36px; font-size: 1.05rem; }

.btn-arrow::after {
  content: "→";
  transition: transform 0.25s;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ---------- Hero (Home) ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  background: var(--blue-deep);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -30%; right: -15%;
  width: 80%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(233,184,32,0.35), transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -20%; left: -10%;
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(10,64,104,0.6), transparent 55%);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 2; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
@media (min-width: 1000px) {
  .hero-grid { grid-template-columns: 1.3fr 1fr; gap: 80px; }
}

.hero h1 {
  font-size: clamp(3rem, 8.5vw, 7.5rem);
  line-height: 0.88;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.hero h1 .hustle {
  display: block;
  color: var(--gold);
  font-style: italic;
}
.hero h1 .humbly {
  display: block;
}
.hero h1 em {
  display: block;
  font-style: normal;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  font-size: 0.55em;
  line-height: 1.05;
  margin-top: 18px;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  color: rgba(255,255,255,0.78);
  max-width: 50ch;
  line-height: 1.5;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  background:
    radial-gradient(circle at 20% 10%, rgba(233,184,32,0.35), transparent 55%),
    radial-gradient(circle at 80% 95%, rgba(10,64,104,0.7), transparent 60%),
    linear-gradient(160deg, #0A4068 0%, #041B2D 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(233,184,32,0.35);
  overflow: hidden;
  display: flex;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(233,184,32,0.15), transparent 40%),
    linear-gradient(to top, rgba(4,27,45,0.5), transparent 50%);
  pointer-events: none;
}

.hero-visual-inner {
  position: relative;
  z-index: 2;
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  color: #fff;
}
.hero-visual-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-visual-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
}
.hero-visual-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  line-height: 1.05;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  margin: auto 0;
  max-width: 14ch;
}
.hero-visual-quote em {
  display: block;
  color: var(--gold);
  font-style: italic;
}
.hero-visual-sig {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 3;
  background: rgba(4,27,45,0.85);
  backdrop-filter: blur(12px);
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid rgba(233,184,32,0.35);
  max-width: 220px;
}
.hero-badge strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-badge span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.35;
  display: block;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.hero-scroll::after {
  content: "";
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  animation: scroll-ping 2s infinite;
}
@keyframes scroll-ping {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Trust Strip ---------- */

.trust {
  background: var(--cream);
  padding: 80px 0;
  border-bottom: 1px solid var(--gray-200);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (min-width: 700px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .trust-grid { grid-template-columns: repeat(6, 1fr); } }

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--blue-deep);
  color: var(--gold);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 24px; height: 24px; }
.trust-item p {
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.3;
  color: var(--ink);
}

/* ---------- Path Section ---------- */

.paths {
  background: #fff;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 64px;
}
@media (min-width: 900px) {
  .section-head { grid-template-columns: 1.3fr 1fr; gap: 60px; }
}

.paths-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 800px) { .paths-grid { grid-template-columns: repeat(3, 1fr); } }

.path-card {
  position: relative;
  padding: 40px 32px 36px;
  border-radius: var(--radius-lg);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 420px;
}
.path-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.path-card.featured {
  background: var(--blue-deep);
  color: #fff;
  border-color: var(--blue-deep);
}
.path-card.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(233,184,32,0.3), transparent 60%);
}
.path-card.featured > * { position: relative; z-index: 1; }

.path-number {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 24px;
}

.path-title {
  font-size: 2.3rem;
  line-height: 1;
  margin-bottom: 16px;
  color: inherit;
}

.path-copy {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--gray-600);
  margin-bottom: 24px;
  flex: 1;
}
.path-card.featured .path-copy { color: rgba(255,255,255,0.8); }

.path-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.95rem;
  transition: gap 0.2s;
}
.path-card.featured .path-link { color: var(--gold); }
.path-link:hover { gap: 14px; }
.path-link::after { content: "→"; }

/* ---------- Stats Band (Big Numbers) ---------- */

.stats-band {
  background: var(--blue-deep);
  color: #fff;
  padding: clamp(70px, 10vw, 120px) 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: "";
  position: absolute;
  top: -30%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(233,184,32,0.22), transparent 60%);
  pointer-events: none;
}
.stats-band::after {
  content: "";
  position: absolute;
  bottom: -30%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(10,64,104,0.8), transparent 60%);
  pointer-events: none;
}
.stats-band.cream {
  background: var(--cream);
  color: var(--ink);
}
.stats-band.cream::before {
  background: radial-gradient(circle, rgba(233,184,32,0.3), transparent 60%);
}
.stats-band.cream::after {
  background: radial-gradient(circle, rgba(10,64,104,0.15), transparent 60%);
}

.stats-band .container { position: relative; z-index: 1; }

.stats-eyebrow {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 70px);
}
.stats-eyebrow .eyebrow {
  justify-content: center;
  display: inline-flex;
}
.stats-eyebrow h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-top: 18px;
  line-height: 0.98;
  letter-spacing: -0.015em;
}
.stats-eyebrow h2 em { color: var(--gold); font-style: italic; }

.stats-row {
  display: grid;
  gap: 50px 24px;
  grid-template-columns: 1fr;
  text-align: center;
}
@media (min-width: 700px) { .stats-row.cols-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 700px) { .stats-row.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .stats-row.cols-4 { grid-template-columns: repeat(4, 1fr); } }

.stat-big {
  padding: 0 16px;
  position: relative;
}
.stats-row.cols-3 .stat-big:not(:last-child)::after,
.stats-row.cols-4 .stat-big:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20%; right: 0;
  width: 1px; height: 60%;
  background: rgba(233,184,32,0.25);
}
@media (max-width: 699px) {
  .stat-big:not(:last-child)::after { display: none !important; }
}
@media (min-width: 700px) and (max-width: 999px) {
  .stats-row.cols-4 .stat-big:nth-child(2n)::after { display: none; }
}

.stat-big .big-num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 0.88;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.035em;
  display: inline-flex;
  align-items: flex-start;
  gap: 2px;
}
.stats-band.cream .stat-big .big-num { color: var(--blue-deep); }
.stat-big .big-num sup {
  font-size: 0.35em;
  font-weight: 700;
  line-height: 1;
  margin-top: 0.5em;
  margin-left: 2px;
  color: inherit;
}
.stat-big .big-num .prefix {
  font-size: 0.55em;
  font-weight: 600;
  margin-right: 2px;
  line-height: 1;
  margin-top: 0.15em;
}
.stat-big .big-num .suffix {
  font-size: 0.5em;
  font-weight: 600;
  line-height: 1;
  margin-top: 0.32em;
  margin-left: 2px;
}

.stat-big .split-num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 0.88;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.025em;
}
.stat-big .split-num .slash {
  color: rgba(255,255,255,0.35);
  font-weight: 500;
  padding: 0 2px;
}
.stats-band.cream .stat-big .split-num { color: var(--blue-deep); }
.stats-band.cream .stat-big .split-num .slash { color: rgba(10,64,104,0.3); }

.stat-big .label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.stats-band.cream .stat-big .label { color: var(--blue); }

.stat-big .desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  max-width: 24ch;
  margin: 0 auto;
  line-height: 1.45;
}
.stats-band.cream .stat-big .desc { color: var(--gray-600); }

/* ---------- Meet The Team ---------- */

.team {
  background: var(--cream);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 600px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }

.team-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.25s;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.team-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  display: grid;
  place-items: center;
}
.team-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 2;
}
.team-photo::before {
  content: attr(data-initials);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.5rem, 7vw, 5rem);
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  z-index: 1;
}
.team-photo::after {
  content: "";
  position: absolute;
  top: -30%; right: -30%;
  width: 80%; height: 80%;
  background: radial-gradient(circle, rgba(233,184,32,0.2), transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 8px;
  color: var(--ink);
}
.team-role {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.team-sub {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.45;
  margin-bottom: 18px;
  flex: 1;
}
.team-email {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blue);
  word-break: break-all;
  padding-top: 14px;
  border-top: 1px solid var(--gray-200);
}
.team-email:hover { color: var(--gold-deep); }

/* ---------- Big Feature Block (Minor) ---------- */

.feature-block {
  background: var(--blue-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.feature-block::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(233,184,32,0.18), transparent 60%);
  pointer-events: none;
}
.feature-block .container { position: relative; z-index: 1; }

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
@media (min-width: 1000px) {
  .feature-grid { grid-template-columns: 1.1fr 1fr; gap: 80px; }
}

.feature-block h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  margin-bottom: 28px;
}
.feature-block h2 em {
  font-style: italic;
  color: var(--gold);
}

.feature-lede {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  line-height: 1.55;
}

.mini-bullets {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-bottom: 36px;
}
.mini-bullets li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  color: #fff;
}
.mini-bullets li::before {
  content: "";
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--blue-deep);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23062A44' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

.feature-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 700px) { .feature-pillars { grid-template-columns: repeat(3, 1fr); } }

.pillar {
  padding: 28px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(233,184,32,0.2);
  border-radius: var(--radius);
  transition: all 0.25s;
}
.pillar:hover {
  background: rgba(233,184,32,0.08);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.pillar h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--gold);
}
.pillar p {
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
}

/* ---------- Card Grids (Hands-on learning) ---------- */

.hands-on {
  background: #fff;
}

.card-grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 700px) { .card-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .card-grid-4 { grid-template-columns: repeat(4, 1fr); } }

.mini-card {
  padding: 32px 28px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all 0.25s;
  position: relative;
}
.mini-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.mini-card .num {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.9;
}
.mini-card h4 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: var(--ink);
}
.mini-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ---------- Split Section (LaunchNET, Community) ---------- */

.split {
  background: var(--cream);
}
.split.blue {
  background: var(--blue-deep);
  color: #fff;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
@media (min-width: 900px) {
  .split-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
  .split-grid.flip > :first-child { order: 2; }
}

.split-text h2,
.split .split-grid > .reveal > h2 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  margin-bottom: 24px;
  line-height: 0.95;
}
.split.blue .eyebrow { color: var(--gold); }
.split-text p,
.split .split-grid > .reveal > p {
  color: var(--gray-600);
  margin: 0 0 18px;
  font-size: 1.05rem;
  line-height: 1.65;
}
.split .split-grid > .reveal > p:last-of-type { margin-bottom: 24px; }
.split.blue .split-text p,
.split.blue .split-grid > .reveal > p { color: rgba(255,255,255,0.85); }

.split-visual {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--blue-deep);
}
.split-visual.dark {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--gold);
}
.split-visual-icon {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.02em;
  opacity: 0.95;
  text-align: center;
  padding: 40px;
  word-break: normal;
  overflow-wrap: break-word;
  max-width: 100%;
}
.split-visual-label {
  position: absolute;
  bottom: 28px;
  left: 28px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.8;
}

ul.check-list {
  list-style: none;
  margin: 24px 0;
  display: grid;
  gap: 12px;
}
ul.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-weight: 500;
}
.split.blue ul.check-list li { border-color: rgba(255,255,255,0.12); }
ul.check-list li::before {
  content: "→";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- Community / Quote ---------- */

.community {
  background: var(--blue);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.community::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(233,184,32,0.15), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(233,184,32,0.1), transparent 40%);
}
.community .container { position: relative; z-index: 1; }

.community-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
@media (min-width: 900px) {
  .community-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.community h2 em {
  font-style: italic;
  color: var(--gold);
}

.quote-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(233,184,32,0.25);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
}
.quote-card::before {
  content: """;
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.5;
}
.quote-card blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 1.25;
  font-weight: 500;
  color: #fff;
  margin: 20px 0 24px;
  position: relative;
  z-index: 1;
  font-style: italic;
}
.quote-card cite {
  font-style: normal;
  font-weight: 700;
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  display: block;
}

/* ---------- Stories Grid ---------- */

.stories {
  background: #fff;
}
.stories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 700px) { .stories-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .stories-grid { grid-template-columns: repeat(3, 1fr); } }

.story-card {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
}
.story-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.story-card::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(233,184,32,0.2), transparent 70%);
  border-radius: 50%;
}

.story-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--blue-deep);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.story-name {
  font-size: 1.35rem;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}
.story-meta {
  font-size: 0.85rem;
  color: var(--gray-400);
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.story-quote {
  font-style: italic;
  color: var(--gray-600);
  line-height: 1.55;
  font-size: 0.98rem;
  margin-bottom: 20px;
  flex: 1;
}
.story-outcome {
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.story-outcome::before { content: "→ "; color: var(--gold); }

/* ---------- CTA / Contact ---------- */

.cta-section {
  background: var(--blue-deep);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before, .cta-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta-section::before {
  top: -30%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(233,184,32,0.2), transparent 60%);
}
.cta-section::after {
  bottom: -30%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(233,184,32,0.15), transparent 60%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 24px;
  max-width: 18ch;
  margin-left: auto; margin-right: auto;
  line-height: 0.95;
}
.cta-section h2 em { color: var(--gold); font-style: italic; }
.cta-section .lede {
  color: rgba(255,255,255,0.8);
  margin: 0 auto 40px;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 50px;
  text-align: left;
}
@media (min-width: 700px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .contact-grid { grid-template-columns: repeat(4, 1fr); } }

.contact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(233,184,32,0.25);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: all 0.2s;
}
.contact-card:hover {
  background: rgba(233,184,32,0.1);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.contact-card .label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.contact-card .name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #fff;
}
.contact-card .role {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
  line-height: 1.35;
}
.contact-card a.email {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  word-break: break-word;
}
.contact-card a.email:hover { text-decoration: underline; }

.socials {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 48px;
}
.social-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(233,184,32,0.3);
  display: grid;
  place-items: center;
  color: #fff;
  transition: all 0.2s;
}
.social-btn:hover { background: var(--gold); color: var(--blue-deep); transform: translateY(-3px); }
.social-btn svg { width: 20px; height: 20px; }

/* ---------- FAQ ---------- */

.faq {
  background: var(--cream);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 28px 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--blue); }
.faq-q .sign {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blue-deep);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  font-family: var(--font-body);
  font-weight: 300;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-q .sign { transform: rotate(45deg); background: var(--gold); color: var(--blue-deep); }
.faq-a {
  display: none;
  padding: 0 0 28px;
  color: var(--gray-600);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 68ch;
}
.faq-item.open .faq-a { display: block; }

/* ---------- Footer ---------- */

.footer {
  background: var(--blue-deep);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 40px;
  border-top: 1px solid rgba(233,184,32,0.2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }

.footer-brand img { height: 60px; width: auto; margin-bottom: 16px; }
.footer-brand p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.1;
  color: var(--gold);
  font-weight: 600;
  max-width: 20ch;
  font-style: italic;
}

.footer h5 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 18px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer ul a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer ul a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.88rem;
}
.footer-bottom em { font-style: italic; color: var(--gold); }

/* ---------- Chat Widget ---------- */

.chat-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: auto;
  background: var(--gold);
  color: var(--blue-deep);
  border: none;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(233,184,32,0.45);
  transition: all 0.2s;
  font-family: var(--font-body);
}
.chat-fab:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(233,184,32,0.6); }
.chat-fab svg { width: 20px; height: 20px; }
.chat-fab .dot {
  width: 8px; height: 8px;
  background: #10B981;
  border-radius: 50%;
  margin-left: 4px;
  box-shadow: 0 0 0 4px rgba(16,185,129,0.25);
}

.chat-panel {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 360px;
  max-width: calc(100vw - 48px);
  max-height: 560px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 91;
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.chat-panel.open { display: flex; animation: chat-up 0.25s ease; }
@keyframes chat-up { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.chat-header {
  background: var(--blue-deep);
  color: #fff;
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-header strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  display: block;
}
.chat-header small { color: var(--gold); font-size: 0.8rem; font-weight: 600; }
.chat-close {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 1.5rem;
  padding: 4px 8px;
}
.chat-body {
  padding: 22px;
  overflow-y: auto;
  flex: 1;
  background: var(--cream);
}
.chat-bubble {
  background: #fff;
  padding: 14px 16px;
  border-radius: 14px 14px 14px 4px;
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 16px;
  border: 1px solid var(--gray-200);
}
.chat-options { display: grid; gap: 8px; }
.chat-option {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.88rem;
  text-align: left;
  cursor: pointer;
  color: var(--blue);
  font-weight: 500;
  transition: all 0.15s;
  font-family: inherit;
}
.chat-option:hover { border-color: var(--gold); background: #FFFCF3; }

/* ---------- Inner Page Hero (secondary pages) ---------- */

.page-hero {
  background: var(--blue-deep);
  color: #fff;
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(233,184,32,0.25), transparent 50%),
    radial-gradient(circle at 15% 85%, rgba(10,64,104,0.5), transparent 50%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2.75rem, 7vw, 6rem);
  line-height: 0.92;
  margin-bottom: 28px;
  max-width: 20ch;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  color: rgba(255,255,255,0.8);
  max-width: 56ch;
  line-height: 1.55;
}
.crumb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 24px;
}
.crumb a { color: rgba(255,255,255,0.6); }
.crumb a:hover { color: var(--gold); }

/* ---------- Prose content (long-form) ---------- */

.prose {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--ink);
}
.prose h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin: 60px 0 20px;
  line-height: 1.05;
}
.prose h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  margin: 40px 0 14px;
}
.prose p { margin-bottom: 20px; color: var(--gray-600); }
.prose p.lead { font-size: 1.25rem; color: var(--ink); font-weight: 500; }
.prose ul, .prose ol { margin: 0 0 24px 22px; }
.prose ul li, .prose ol li { margin-bottom: 10px; color: var(--gray-600); }
.prose strong { color: var(--ink); }
.prose a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--gold-deep); }

/* ---------- Pillars (Strategic Plan) ---------- */

.pillars {
  background: #fff;
}
.pillars-intro {
  max-width: 720px;
  text-align: center;
  margin: 0 auto 80px;
}

.pillar-block {
  margin-bottom: 100px;
}
.pillar-block:last-child { margin-bottom: 0; }

.pillar-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
@media (min-width: 900px) { .pillar-head { grid-template-columns: auto 1fr; gap: 50px; } }

.pillar-num {
  font-family: var(--font-display);
  font-size: clamp(5rem, 10vw, 9rem);
  line-height: 0.8;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: -0.04em;
}
.pillar-head h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin-bottom: 16px;
  line-height: 0.95;
}
.pillar-head p { color: var(--gray-600); font-size: 1.05rem; line-height: 1.65; max-width: 60ch; }

.program-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 700px) { .program-grid { grid-template-columns: repeat(2, 1fr); } }

.program-card {
  background: var(--cream);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.program-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--gold);
  transform: scaleY(0.3);
  transform-origin: top;
  transition: transform 0.3s;
}
.program-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--shadow-md); }
.program-card:hover::before { transform: scaleY(1); }
.program-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--ink);
}
.program-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--gray-600);
}

/* ---------- Events ---------- */

.events-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  justify-content: center;
}
.filter-btn {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--gray-600);
  transition: all 0.15s;
  font-family: inherit;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--blue-deep);
  color: #fff;
  border-color: var(--blue-deep);
}

.events-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.event-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  padding: 28px 32px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  align-items: center;
  transition: all 0.2s;
}
.event-row:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
@media (max-width: 700px) { .event-row { grid-template-columns: 1fr; gap: 16px; } }

.event-date {
  background: var(--blue-deep);
  color: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  text-align: center;
  min-width: 96px;
}
.event-date .day {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--gold);
  font-weight: 700;
}
.event-date .month {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 2px;
}

.event-info h4 {
  font-size: 1.3rem;
  margin-bottom: 6px;
  color: var(--ink);
}
.event-info .meta {
  color: var(--gray-400);
  font-size: 0.88rem;
  font-weight: 500;
}
.event-info .tag {
  display: inline-block;
  background: var(--cream);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-top: 10px;
}

/* ---------- Bootcamp / Apply ---------- */

.big-cta {
  background: var(--gold);
  color: var(--blue-deep);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.big-cta::before {
  content: "";
  position: absolute;
  top: -50%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.35), transparent 60%);
  border-radius: 50%;
}
.big-cta > * { position: relative; z-index: 1; }
.big-cta h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
  line-height: 0.95;
}
.big-cta p { font-size: 1.15rem; margin-bottom: 30px; }
.big-cta .btn-primary { background: var(--blue-deep); color: #fff; }
.big-cta .btn-primary:hover { background: var(--ink); }

.stat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}
@media (min-width: 700px) { .stat-grid { grid-template-columns: repeat(3, 1fr); } }

.stat {
  text-align: left;
  padding: 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(233,184,32,0.2);
  border-radius: var(--radius);
}
.cta-section .stat { background: rgba(233,184,32,0.08); }

.stat .num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}
.stat p { color: rgba(255,255,255,0.85); font-size: 1rem; line-height: 1.4; }

/* ---------- Case Study (community) ---------- */

.case-study {
  padding: clamp(72px, 10vw, 140px) 0;
  border-bottom: 1px solid var(--gray-200);
}
.case-study:nth-child(even) { background: var(--cream); }

.case-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
@media (min-width: 900px) {
  .case-grid { grid-template-columns: 1fr 1.2fr; gap: 80px; }
  .case-study:nth-child(even) .case-grid > :first-child { order: 2; }
}

.case-visual {
  aspect-ratio: 5/4;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #fff;
}
.case-study:nth-child(even) .case-visual {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--blue-deep);
}
.case-visual-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.9;
  text-align: center;
  padding: 40px;
  letter-spacing: -0.02em;
}

.case-text h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 20px;
  line-height: 0.95;
}
.case-text p {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 18px;
}
.case-text blockquote {
  padding: 24px 28px;
  background: rgba(10,64,104,0.06);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  margin: 24px 0;
  font-size: 1.02rem;
  color: var(--ink);
}
.case-text blockquote cite {
  display: block;
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  font-style: normal;
  letter-spacing: 0.05em;
}

/* ---------- Photo visual variants ---------- */

.split-visual.photo,
.case-visual.photo {
  background: var(--blue-deep);
  padding: 0;
}
.split-visual.photo img,
.case-visual.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-visual.photo-with-logo {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 28px 28px 0;
  gap: 20px;
  box-shadow: 0 30px 60px -30px rgba(10,64,104,0.25);
}
.split-visual.photo-with-logo .photo-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0 4px;
}
.split-visual.photo-with-logo .photo-logo img {
  max-width: 70%;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.split-visual.photo-with-logo .photo-frame {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0 -28px -0;
  border-radius: 0;
}
.split-visual.photo-with-logo .photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Image gallery used inside feature/split sections */
.image-gallery {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
.image-gallery.cols-2 { grid-template-columns: 1fr 1fr; }
.image-gallery.cols-3 { grid-template-columns: 1fr; }
@media (min-width: 700px) {
  .image-gallery.cols-3 { grid-template-columns: repeat(3, 1fr); }
}
.image-gallery .photo-tile {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-200);
  box-shadow: 0 20px 40px -25px rgba(10,64,104,0.35);
}
.image-gallery .photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.image-gallery .photo-tile:hover img { transform: scale(1.04); }

.image-gallery.feature {
  margin-top: 40px;
}

/* ---------- Utility ---------- */

.mt-0 { margin-top: 0 !important; }
.text-center { text-align: center; }
.hide-mobile { display: none; }
@media (min-width: 800px) { .hide-mobile { display: initial; } .hide-desktop { display: none; } }

/* subtle fade in */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
