:root {
  --bg: #08131f;
  --bg-soft: #10243a;
  --panel: #ffffff;
  --panel-soft: #f6f8fc;
  --ink: #122033;
  --ink-soft: #60708a;
  --white: #ffffff;
  --line: rgba(18, 32, 51, 0.1);
  --brand: #18c29c;
  --brand-deep: #0f8d74;
  --gold: #ffc857;
  --coral: #ff7a59;
  --indigo: #5c7cfa;
  --violet: #9b8cff;
  --shadow-lg: 0 30px 80px rgba(8, 19, 31, 0.18);
  --shadow-card: 0 18px 48px rgba(15, 27, 45, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --font-body: "Space Grotesk", "Segoe UI", sans-serif;
  --font-display: "Fraunces", "Georgia", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(24, 194, 156, 0.08), transparent 34%),
    radial-gradient(circle at 85% 15%, rgba(255, 200, 87, 0.14), transparent 28%),
    linear-gradient(180deg, #f5f8fc, #ffffff 34%, #f7fbff);
  line-height: 1.68;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(12, 34, 55, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 34, 55, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
  z-index: -2;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

p {
  margin: 0 0 1rem;
}

img {
  display: block;
  width: 100%;
}

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

body .container {
  max-width: 1280px;
}

@media (min-width: 1400px) {
  body .container {
    max-width: 1380px;
  }
}

.btn {
  border-radius: 999px;
  padding: 0.95rem 1.45rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
}

.btn-brand {
  border: none;
  color: #052018;
  background: linear-gradient(135deg, var(--gold), #ffe6aa);
  box-shadow: 0 18px 34px rgba(255, 200, 87, 0.3);
}

.btn-brand:hover,
.btn-brand:focus {
  color: #052018;
  background: linear-gradient(135deg, #ffbf3c, #ffd97a);
}

.btn-outline-brand,
.btn-outline-hero,
.btn-outline-footer {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.btn-outline-brand {
  border-color: rgba(18, 32, 51, 0.16);
  color: var(--ink);
  background: transparent;
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  color: var(--ink);
  border-color: rgba(24, 194, 156, 0.4);
  background: rgba(24, 194, 156, 0.08);
}

.btn-outline-footer {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: transparent;
}

.sticky-cta {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), #8be9d0);
  color: #062b22;
  font-weight: 700;
  box-shadow: 0 18px 45px rgba(24, 194, 156, 0.26);
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem 0;
  background: rgba(8, 19, 31, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.site-nav.scrolled {
  background: rgba(8, 19, 31, 0.94);
  box-shadow: 0 16px 40px rgba(8, 19, 31, 0.22);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--white);
}

.site-brand__mark {
  width: 3rem;
  height: 3rem;
  flex: 0 0 3rem;
}

.site-brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-brand__copy {
  display: flex;
  flex-direction: column;
}

.site-brand__copy strong {
  font-size: 1.04rem;
  font-weight: 700;
}

.site-brand__copy small {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.66);
  max-width: 16rem;
}

.site-nav .nav-link {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
}

.site-nav .nav-link:hover,
.site-nav .nav-link:focus,
.site-nav .nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.site-nav__toggle,
.site-nav__toggle::before,
.site-nav__toggle::after {
  display: block;
  width: 1.45rem;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  content: "";
}

.site-nav__toggle {
  position: relative;
}

.site-nav__toggle::before {
  position: absolute;
  top: -0.4rem;
}

.site-nav__toggle::after {
  position: absolute;
  top: 0.4rem;
}

.hero-section,
.page-hero {
  position: relative;
  overflow: hidden;
}

.hero-section {
  min-height: calc(100vh - 80px);
  padding: 7.5rem 0 5.5rem;
  color: var(--white);
  background: var(--bg);
}

.hero-section--detail {
  min-height: 72vh;
  padding-top: 6.5rem;
}

.page-hero {
  padding: 5.8rem 0 4rem;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 200, 87, 0.18), transparent 22%),
    radial-gradient(circle at 85% 20%, rgba(24, 194, 156, 0.16), transparent 24%),
    linear-gradient(135deg, #08131f, #10243a 48%, #183f79);
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slideshow span {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1200ms ease-in-out, transform 8000ms ease-out;
  background-image:
    linear-gradient(135deg, rgba(8, 19, 31, 0.72), rgba(16, 36, 58, 0.45)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slideshow span.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 19, 31, 0.25), rgba(8, 19, 31, 0.28) 42%, rgba(8, 19, 31, 0.58)),
    radial-gradient(circle at 75% 18%, rgba(255, 200, 87, 0.18), transparent 36%);
}

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

.hero-grid,
.page-hero__grid,
.detail-grid,
.detail-hero,
.cta-panel,
.quote-panel,
.section-heading--split,
.footer-grid {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
}

.page-hero__grid,
.detail-grid,
.detail-hero {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.hero-title {
  font-size: clamp(3.2rem, 5vw, 5.7rem);
  max-width: 12ch;
}

.hero-title--detail {
  font-size: clamp(2.7rem, 4vw, 4.8rem);
  max-width: 14ch;
}

.hero-copy__lead,
.page-hero p {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.84);
  max-width: 42rem;
}

.hero-alert {
  position: relative;
  z-index: 3;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #09261f;
  background: linear-gradient(135deg, rgba(255, 200, 87, 0.94), rgba(255, 239, 196, 0.98));
}

.eyebrow--dark {
  color: var(--coral);
  background: rgba(255, 122, 89, 0.1);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.tag-row span {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
}

.metric-grid,
.trust-grid,
.insight-grid,
.program-grid,
.initiative-grid,
.timeline-grid,
.story-grid,
.values-grid,
.gallery-grid,
.contact-grid,
.model-grid {
  display: grid;
  gap: 1.4rem;
}

.metric-grid {
  margin-top: 2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-card {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.metric-card strong {
  display: block;
  font-size: 1.4rem;
  color: var(--white);
}

.metric-card span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.95rem;
}

.hero-visual__frame,
.page-hero__visual,
.detail-hero__card,
.map-frame,
.form-card,
.model-card,
.value-card,
.story-card,
.insight-card,
.trust-item,
.contact-card,
.timeline-card,
.gallery-card,
.program-card,
.initiative-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.hero-visual__frame,
.page-hero__visual,
.detail-hero__card {
  position: relative;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-visual__frame img,
.page-hero__visual img,
.detail-hero__card img {
  border-radius: calc(var(--radius-lg) - 10px);
}

.hero-note {
  position: absolute;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(8, 19, 31, 0.74);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 600;
  backdrop-filter: blur(12px);
}

.hero-note--top {
  top: 1.3rem;
  right: 1.3rem;
}

.hero-note--bottom {
  left: 1.3rem;
  bottom: 1.3rem;
}

.section-shell {
  position: relative;
  padding: 6rem 0;
}

.section-shell--light {
  background: linear-gradient(180deg, #ffffff, #f7f9fc);
}

.section-shell--warm {
  background: linear-gradient(180deg, #fff9ef, #ffffff);
}

.section-shell--dark {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 200, 87, 0.14), transparent 20%),
    linear-gradient(135deg, #08131f, #10243a 46%, #183f79);
}

.section-shell--contact {
  background: linear-gradient(180deg, #ecfbf8, #ffffff);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 3rem;
}

.section-heading--split {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: end;
  max-width: none;
}

.section-heading h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
  color: var(--ink);
}

.section-heading p,
.section-shell p,
.detail-copy p,
.program-card p,
.initiative-card p,
.story-card p,
.value-card p,
.contact-card p,
.model-card p,
.timeline-card p,
.footer-copy,
.quote-panel__quote {
  color: var(--ink-soft);
}

.section-shell--dark .section-heading h2,
.section-shell--dark .section-heading p,
.section-shell--dark .initiative-card p,
.section-shell--dark .inline-link {
  color: rgba(255, 255, 255, 0.92);
}

.trust-grid,
.model-grid,
.contact-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.trust-item,
.model-card,
.contact-card,
.value-card,
.insight-card,
.timeline-card,
.story-card,
.form-card {
  padding: 1.5rem;
  background: var(--panel);
  border: 1px solid var(--line);
}

.trust-item span,
.story-card span,
.contact-card span,
.timeline-card__phase {
  display: inline-flex;
  margin-bottom: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.trust-item strong,
.contact-card h3 {
  display: block;
  color: var(--ink);
  font-size: 1.25rem;
}

.insight-grid,
.values-grid,
.timeline-grid,
.story-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.program-grid,
.initiative-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.initiative-grid--full,
.story-grid--full {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.program-card,
.initiative-card,
.gallery-card {
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.program-card:hover,
.initiative-card:hover,
.gallery-card:hover,
.story-card:hover,
.value-card:hover,
.insight-card:hover,
.timeline-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.program-card {
  background: var(--panel);
  border: 1px solid var(--line);
}

.initiative-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.program-card__media,
.initiative-card__media {
  aspect-ratio: 16 / 10;
  background: #0c1d2d;
}

.program-card__media img,
.initiative-card__media img,
.gallery-card img {
  height: 100%;
  object-fit: cover;
}

.program-card__body,
.initiative-card__body {
  padding: 1.5rem;
}

.initiative-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
}

.status-pill,
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chip {
  color: #0a2c24;
  background: rgba(24, 194, 156, 0.14);
}

.chip--soft {
  background: rgba(255, 200, 87, 0.18);
  color: #8d5211;
}

.chip--dark {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.status-pill {
  color: #ffe9b3;
  background: rgba(255, 200, 87, 0.14);
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.1rem;
}

.meta-row span {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(18, 32, 51, 0.06);
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.meta-row--light span {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
}

.inline-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1.25rem;
  font-weight: 700;
  color: var(--brand-deep);
}

.inline-link::after {
  content: ">";
  margin-left: 0.55rem;
}

.inline-link--light {
  color: #ffe6aa;
}

.timeline-card__phase {
  color: var(--coral);
}

.timeline-card h3,
.value-card h3,
.insight-card h3,
.program-card h3,
.initiative-card h3,
.story-card strong {
  color: var(--ink);
}

.section-shell--dark .initiative-card h3 {
  color: var(--white);
}

.story-card__rating {
  margin-bottom: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.18em;
}

.quote-panel,
.cta-panel {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  align-items: start;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.quote-panel__quote {
  margin: 1rem 0 1.4rem;
  font-size: 1.18rem;
}

.cta-panel__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.3rem;
}

.cta-panel__list span {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(18, 32, 51, 0.06);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
}

.check-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--gold));
}

.detail-copy,
.detail-form {
  align-self: start;
}

.form-card h3 {
  margin: 0.7rem 0 1.3rem;
  font-size: 1.8rem;
}

.form-label {
  font-weight: 600;
  color: var(--ink);
}

.form-control,
.form-select {
  border-radius: 16px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(18, 32, 51, 0.12);
  color: var(--ink);
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(24, 194, 156, 0.5);
  box-shadow: 0 0 0 0.22rem rgba(24, 194, 156, 0.15);
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid--mosaic .gallery-card:nth-child(3n + 2) {
  transform: translateY(2rem);
}

.gallery-card {
  position: relative;
  min-height: 280px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.gallery-card__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem 1.2rem;
  background: linear-gradient(180deg, rgba(8, 19, 31, 0), rgba(8, 19, 31, 0.82));
  color: var(--white);
}

.gallery-card__caption span {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.map-frame {
  background: var(--panel);
  border: 1px solid var(--line);
}

.map-frame iframe,
.map-placeholder {
  width: 100%;
  min-height: 420px;
  border: 0;
}

.map-placeholder {
  display: grid;
  place-items: center;
  padding: 2rem;
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(255, 200, 87, 0.18), transparent 24%),
    linear-gradient(135deg, #08131f, #10243a);
  color: var(--white);
}

.site-footer {
  padding: 5rem 0 2rem;
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(135deg, #08131f, #10243a 52%, #183f79);
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.9fr 1fr;
  margin-bottom: 2rem;
}

.site-brand--footer {
  margin-bottom: 1rem;
}

.footer-copy,
.site-footer p {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer h3 {
  margin-bottom: 1rem;
  font-size: 1.15rem;
  color: var(--white);
}

.site-footer a {
  display: block;
  margin-bottom: 0.7rem;
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom__links {
  display: flex;
  gap: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1199px) {
  .hero-grid,
  .page-hero__grid,
  .detail-grid,
  .detail-hero,
  .cta-panel,
  .quote-panel,
  .footer-grid,
  .section-heading--split {
    grid-template-columns: 1fr;
  }

  .program-grid,
  .initiative-grid,
  .insight-grid,
  .values-grid,
  .timeline-grid,
  .story-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
  }
}

@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
    padding: 6.5rem 0 4.5rem;
  }

  .metric-grid,
  .trust-grid,
  .model-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .program-grid,
  .initiative-grid,
  .insight-grid,
  .values-grid,
  .timeline-grid,
  .story-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid--mosaic .gallery-card:nth-child(3n + 2) {
    transform: none;
  }

  .section-shell,
  .page-hero {
    padding: 4.5rem 0;
  }

  .sticky-cta {
    right: 1rem;
    left: 1rem;
    bottom: 1rem;
  }
}

@media (max-width: 767px) {
  .hero-title,
  .hero-title--detail,
  .section-heading h2 {
    font-size: clamp(2.3rem, 9vw, 3.2rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .tag-row span,
  .cta-panel__list span {
    width: 100%;
    justify-content: center;
  }

  .site-brand__copy small {
    max-width: none;
  }
}

/* Visionary Youth Refresh */
:root {
  --bg: #081726;
  --bg-soft: #12263d;
  --panel: #ffffff;
  --panel-soft: #f7f1e7;
  --ink: #10263d;
  --ink-soft: #68798c;
  --line: rgba(16, 38, 61, 0.1);
  --brand: #ff6b35;
  --brand-deep: #cf4f21;
  --gold: #ffd166;
  --coral: #ff8a5b;
  --indigo: #59c3ff;
  --violet: #8fd14f;
  --shadow-lg: 0 34px 90px rgba(10, 22, 35, 0.16);
  --shadow-card: 0 20px 48px rgba(10, 22, 35, 0.12);
  --font-body: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --font-display: "Sora", "Plus Jakarta Sans", sans-serif;
}

body {
  background:
    radial-gradient(circle at top left, rgba(255, 107, 53, 0.12), transparent 28%),
    radial-gradient(circle at 88% 0%, rgba(255, 209, 102, 0.18), transparent 24%),
    linear-gradient(180deg, #f9f6ef 0%, #fffdf9 34%, #f4f8fb 100%);
  color: var(--ink);
}

body::before {
  background-image:
    linear-gradient(rgba(16, 38, 61, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 38, 61, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
}

.btn {
  border-radius: 18px;
}

.btn-brand {
  color: var(--white);
  background: linear-gradient(135deg, var(--brand), #ff9569);
  box-shadow: 0 18px 34px rgba(255, 107, 53, 0.28);
}

.btn-brand:hover,
.btn-brand:focus {
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-deep), var(--brand));
}

.btn-outline-brand {
  border-color: rgba(16, 38, 61, 0.12);
  background: rgba(255, 255, 255, 0.8);
}

.btn-outline-hero,
.btn-outline-footer {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.site-nav {
  top: 0.9rem;
  margin: 0 auto;
  width: min(1320px, calc(100% - 1.5rem));
  padding: 0.7rem 0;
  border-radius: 24px;
  background: rgba(255, 250, 242, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 24px 60px rgba(12, 26, 39, 0.12);
}

.site-nav.scrolled {
  background: rgba(255, 250, 242, 0.94);
  box-shadow: 0 26px 72px rgba(12, 26, 39, 0.18);
}

.site-nav .container {
  max-width: none;
  padding-left: 1rem;
  padding-right: 1rem;
}

.site-brand,
.site-nav .nav-link {
  color: var(--ink);
}

.site-brand__copy small {
  color: rgba(16, 38, 61, 0.62);
}

.site-nav .nav-link {
  color: rgba(16, 38, 61, 0.7);
  padding: 0.6rem 0.95rem;
}

.site-nav .nav-link:hover,
.site-nav .nav-link:focus,
.site-nav .nav-link.active {
  color: var(--ink);
  background: rgba(255, 107, 53, 0.08);
}

.site-nav__toggle,
.site-nav__toggle::before,
.site-nav__toggle::after {
  background: var(--ink);
}

.sticky-cta {
  background: linear-gradient(135deg, var(--ink), #1d3856);
  color: var(--white);
  box-shadow: 0 20px 42px rgba(16, 38, 61, 0.24);
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 8.6rem 0 3.5rem;
  color: var(--white);
  background: linear-gradient(135deg, #071321 0%, #102742 55%, #173459 100%);
}

.home-hero .hero-slideshow {
  inset: 0;
}

.home-hero__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 209, 102, 0.2), transparent 22%),
    radial-gradient(circle at 88% 18%, rgba(255, 107, 53, 0.2), transparent 20%),
    linear-gradient(180deg, rgba(7, 19, 33, 0.58), rgba(7, 19, 33, 0.74));
}

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

.home-hero__grid,
.signal-layout,
.initiative-stage,
.story-stage {
  display: grid;
  gap: 1.5rem;
}

.home-hero__grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: end;
  gap: 2rem;
}

.home-hero__content {
  max-width: 45rem;
}

.home-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
}

.hero-title {
  font-size: clamp(3.3rem, 7vw, 6rem);
  letter-spacing: -0.055em;
}

.home-hero .hero-copy__lead {
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.home-hero__metric-row,
.signal-grid,
.hero-thumb-strip {
  display: grid;
  gap: 1rem;
}

.home-hero__metric-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.metric-card--hero {
  min-height: 100%;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.metric-card--hero strong,
.metric-card--hero span {
  color: var(--white);
}

.hero-photo-wall {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.86fr);
  gap: 1rem;
  align-items: stretch;
}

.hero-photo-wall__aside {
  display: grid;
  gap: 1rem;
}

.hero-photo-card,
.hero-note-card,
.hero-thumb-card,
.signal-card,
.aside-photo-card,
.story-stage__visual,
.gallery-showcase__intro {
  overflow: hidden;
  border-radius: 28px;
}

.hero-photo-card {
  position: relative;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 60px rgba(2, 9, 17, 0.24);
}

.hero-photo-card img,
.hero-thumb-card img,
.aside-photo-card img,
.story-stage__visual img,
.program-card__media img,
.initiative-card__media img,
.gallery-card img,
.page-hero__visual img,
.detail-hero__card img,
.insight-card--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-card--primary {
  min-height: 33rem;
}

.hero-photo-card--aside {
  min-height: 12rem;
}

.hero-photo-card__caption,
.hero-thumb-card__caption,
.aside-photo-card__caption,
.story-stage__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem 1.15rem;
  background: linear-gradient(180deg, rgba(7, 19, 33, 0), rgba(7, 19, 33, 0.84));
  color: var(--white);
}

.hero-photo-card__caption span,
.hero-thumb-card__caption span,
.aside-photo-card__caption span,
.story-stage__caption span {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.74rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.hero-note-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.4rem;
  background: linear-gradient(135deg, rgba(255, 209, 102, 0.98), rgba(255, 159, 105, 0.94));
  color: #4b210f;
  min-height: 12rem;
  box-shadow: 0 22px 48px rgba(255, 107, 53, 0.2);
}

.hero-note-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.7rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(75, 33, 15, 0.08);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-note-card strong {
  font-size: 1.05rem;
  line-height: 1.55;
}

.hero-thumb-strip {
  grid-template-columns: repeat(8, minmax(0, 1fr));
  margin-top: 2rem;
}

.hero-thumb-card {
  position: relative;
  min-height: 9.4rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.hero-thumb-card__caption strong,
.hero-thumb-card__caption span {
  font-size: 0.68rem;
}

.section-shell {
  padding: 5.5rem 0;
}

.section-shell--light {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(247, 241, 231, 0.92)),
    linear-gradient(135deg, rgba(89, 195, 255, 0.05), rgba(255, 107, 53, 0.04));
}

.section-shell--dark {
  background:
    radial-gradient(circle at top right, rgba(255, 209, 102, 0.1), transparent 20%),
    linear-gradient(135deg, #081726, #102742 56%, #173459);
}

.section-shell--contact {
  background:
    radial-gradient(circle at top left, rgba(255, 209, 102, 0.14), transparent 22%),
    linear-gradient(180deg, #f8f1e4, #fffefd);
}

.section-heading h2,
.page-hero h1,
.detail-hero h1 {
  font-size: clamp(2.45rem, 5vw, 4.4rem);
  letter-spacing: -0.05em;
}

.section-heading p,
.page-hero p {
  max-width: 46rem;
}

.signal-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.signal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.signal-card {
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(16, 38, 61, 0.08);
  box-shadow: var(--shadow-card);
}

.signal-card span {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
}

.signal-card strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.signal-card p {
  margin: 0;
  color: var(--ink-soft);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}

.program-card,
.initiative-card,
.timeline-card,
.story-card,
.value-card,
.model-card,
.contact-card,
.detail-form .form-card,
.detail-copy,
.quote-panel,
.insight-card {
  border-radius: 28px;
  box-shadow: var(--shadow-card);
}

.program-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.88fr) minmax(0, 1.12fr);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 38, 61, 0.08);
}

.program-card__media img {
  aspect-ratio: 4 / 4;
}

.program-card__body {
  padding: 1.4rem 1.45rem;
}

.initiative-stage {
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.72fr);
  align-items: start;
  gap: 1.5rem;
}

.initiative-stage__aside {
  display: grid;
  gap: 1rem;
}

.aside-photo-card {
  position: relative;
  min-height: 13.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.initiative-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
}

.initiative-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.initiative-card__media img {
  aspect-ratio: 16 / 11;
}

.initiative-card__body {
  padding: 1.35rem 1.4rem;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.meta-row span,
.status-pill,
.chip,
.chip--soft,
.chip--dark,
.tag-row span,
.cta-panel__list span {
  border-radius: 999px;
}

.insight-grid--editorial {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.insight-card--image {
  padding: 0;
  min-height: 100%;
}

.insight-card--image img {
  aspect-ratio: 4 / 5;
}

.gallery-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.gallery-showcase__intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.6rem;
  background: linear-gradient(135deg, #fff7ec, #ffffff);
  border: 1px solid rgba(16, 38, 61, 0.08);
  box-shadow: var(--shadow-card);
}

.gallery-showcase__intro h3 {
  font-size: 1.7rem;
}

.gallery-card {
  overflow: hidden;
  min-height: 17rem;
  border-radius: 24px;
  border: 1px solid rgba(16, 38, 61, 0.08);
  box-shadow: var(--shadow-card);
}

.gallery-card img {
  aspect-ratio: 5 / 4;
}

.gallery-showcase > .gallery-card:nth-child(2),
.gallery-grid--mosaic .gallery-card:nth-child(4n + 2) {
  transform: translateY(1.8rem);
}

.story-stage {
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
}

.story-stage__visual {
  position: relative;
  min-height: 100%;
  border: 1px solid rgba(16, 38, 61, 0.08);
  box-shadow: var(--shadow-card);
}

.story-stage__visual img {
  aspect-ratio: 4 / 5;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.story-card {
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 38, 61, 0.08);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.timeline-card {
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 38, 61, 0.08);
}

.page-hero {
  position: relative;
  padding: 8.2rem 0 4.2rem;
  background:
    radial-gradient(circle at top left, rgba(255, 107, 53, 0.14), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(255, 209, 102, 0.16), transparent 20%),
    linear-gradient(180deg, #fbf6ee, #f4f8fb);
}

.page-hero__grid,
.detail-grid,
.detail-hero,
.cta-panel,
.quote-panel,
.footer-grid,
.section-heading--split,
.contact-grid,
.model-grid,
.values-grid,
.insight-grid,
.detail-copy,
.detail-form {
  display: grid;
  gap: 1rem;
}

.page-hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: center;
  gap: 1.8rem;
}

.page-hero__visual,
.detail-hero__card,
.map-frame {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(16, 38, 61, 0.08);
  box-shadow: var(--shadow-card);
  background: rgba(255, 255, 255, 0.84);
}

.page-hero__visual img {
  aspect-ratio: 4 / 5;
}

.model-grid,
.contact-grid,
.values-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.model-card,
.contact-card,
.value-card,
.insight-card {
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 38, 61, 0.08);
}

.quote-panel,
.cta-panel {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 38, 61, 0.08);
}

.detail-hero {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  align-items: end;
}

.detail-hero__card img {
  aspect-ratio: 4 / 5;
}

.detail-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.detail-copy,
.detail-form .form-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 38, 61, 0.08);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.site-footer {
  padding: 4rem 0 2rem;
  background:
    radial-gradient(circle at top right, rgba(255, 209, 102, 0.1), transparent 24%),
    linear-gradient(135deg, #071321, #102742 54%, #173459);
}

.footer-grid {
  grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
}

@media (max-width: 1199px) {
  .home-hero__grid,
  .signal-layout,
  .initiative-stage,
  .story-stage,
  .page-hero__grid,
  .detail-grid,
  .detail-hero,
  .cta-panel,
  .quote-panel,
  .footer-grid,
  .section-heading--split {
    grid-template-columns: 1fr;
  }

  .gallery-showcase,
  .insight-grid--editorial {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-thumb-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .site-nav .navbar-collapse {
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.86);
  }
}

@media (max-width: 991px) {
  .home-hero {
    padding-top: 7.6rem;
  }

  .home-hero__metric-row,
  .signal-grid,
  .program-grid,
  .initiative-grid,
  .story-grid,
  .timeline-grid,
  .gallery-grid,
  .model-grid,
  .contact-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .gallery-showcase {
    grid-template-columns: 1fr;
  }

  .gallery-showcase > .gallery-card:nth-child(2),
  .gallery-grid--mosaic .gallery-card:nth-child(4n + 2) {
    transform: none;
  }

  .program-card {
    grid-template-columns: 1fr;
  }

  .program-card__media img,
  .initiative-card__media img,
  .gallery-card img {
    aspect-ratio: 16 / 10;
  }

  .hero-photo-wall {
    grid-template-columns: 1fr;
  }

  .hero-photo-card--primary {
    min-height: 24rem;
  }
}

@media (max-width: 767px) {
  .site-nav {
    width: calc(100% - 1rem);
  }

  .home-hero__metric-row,
  .hero-thumb-strip {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .tag-row span,
  .cta-panel__list span {
    width: 100%;
    justify-content: center;
  }

  .story-stage__visual img,
  .page-hero__visual img,
  .detail-hero__card img {
    aspect-ratio: 16 / 11;
  }
}

/* Visionary Youth Premium Inner Pages */
body {
  background:
    radial-gradient(circle at top left, rgba(255, 190, 116, 0.14), transparent 18%),
    linear-gradient(180deg, #f6f0e7 0%, #f4f7fb 26%, #fbfcfe 100%);
  color: #10263d;
}

.site-nav {
  top: 1rem;
  background: rgba(255, 252, 247, 0.78);
  border: 1px solid rgba(16, 38, 61, 0.08);
  backdrop-filter: blur(24px);
  box-shadow: 0 22px 60px rgba(10, 26, 44, 0.12);
}

.site-nav.scrolled {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 26px 68px rgba(10, 26, 44, 0.16);
}

.site-brand__mark {
  box-shadow: 0 16px 32px rgba(7, 17, 29, 0.18);
}

.site-brand__copy strong {
  font-size: 1.36rem;
  letter-spacing: -0.04em;
}

.site-brand__copy small {
  max-width: 28rem;
  color: rgba(16, 38, 61, 0.56);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 9rem 0 5rem;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 133, 84, 0.18), transparent 20%),
    radial-gradient(circle at 92% 8%, rgba(93, 233, 184, 0.16), transparent 18%),
    linear-gradient(135deg, #07111d 6%, #0c2237 52%, #143a5d 100%);
  color: #f8fbff;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 42%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.04), transparent 48%);
  pointer-events: none;
}

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

.page-hero__grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 420px);
  gap: clamp(1.5rem, 3vw, 2.6rem);
}

.page-hero .eyebrow {
  color: #ffe1a3;
  background: rgba(255, 225, 163, 0.14);
  border-color: rgba(255, 225, 163, 0.18);
}

.page-hero h1,
.page-hero .hero-title,
.page-hero .hero-title--detail {
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: clamp(2.8rem, 4.6vw, 4.9rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  max-width: 12ch;
}

.page-hero p {
  color: rgba(232, 241, 252, 0.82);
  font-size: 1.08rem;
  max-width: 35rem;
}

.page-hero__visual {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 28px 80px rgba(3, 8, 15, 0.38);
}

.page-hero__visual::after {
  content: "";
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  height: 5rem;
  border-radius: 20px;
  background: linear-gradient(180deg, transparent, rgba(4, 10, 17, 0.58));
  pointer-events: none;
}

.page-hero__visual img {
  aspect-ratio: 4 / 4.8;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
}

.model-card,
.contact-card,
.value-card,
.insight-card,
.detail-copy,
.detail-form .form-card,
.quote-panel,
.cta-panel,
.map-frame {
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(10, 26, 44, 0.1);
}

.model-card,
.contact-card,
.value-card,
.insight-card,
.detail-copy,
.detail-form .form-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.96));
}

.model-card__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #08284a, #153f66);
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 0.92rem;
  letter-spacing: -0.03em;
}

.value-card__index {
  display: inline-flex;
  margin-bottom: 0.65rem;
  color: #ff7b54;
  font-family: "Sora", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.quote-panel {
  background: linear-gradient(135deg, #0d2034, #14385b);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e9f2ff;
}

.quote-panel .eyebrow--dark {
  color: #ffe1a3;
  background: rgba(255, 225, 163, 0.12);
  border-color: rgba(255, 225, 163, 0.2);
}

.quote-panel h2,
.quote-panel strong {
  color: #ffffff;
}

.quote-panel__quote {
  color: #ffffff;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  line-height: 1.28;
}

.quote-panel .check-list li {
  color: rgba(236, 244, 255, 0.84);
}

.quote-panel .check-list li::before {
  background: linear-gradient(135deg, #ff905f, #ffd166);
  box-shadow: none;
}

.about-stage {
  position: relative;
  overflow: hidden;
  padding: 9rem 0 4rem;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 133, 84, 0.2), transparent 18%),
    radial-gradient(circle at 90% 10%, rgba(93, 233, 184, 0.18), transparent 18%),
    linear-gradient(135deg, #07111d 0%, #0f2238 58%, #173e61 100%);
  color: #f8fbff;
}

.about-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 40%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, 100% 110px, 110px 100%;
  pointer-events: none;
}

.about-stage__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(1.5rem, 3.8vw, 3rem);
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.75rem);
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.about-stage__copy {
  max-width: 42rem;
}

.about-stage__copy .eyebrow {
  color: #ffe1a3;
  background: rgba(255, 225, 163, 0.14);
  border-color: rgba(255, 225, 163, 0.18);
}

.about-stage__copy h1 {
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: clamp(3rem, 5.2vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  max-width: 10.5ch;
}

.about-stage__copy p {
  max-width: 38rem;
  color: rgba(235, 243, 253, 0.82);
  font-size: 1.08rem;
}

.about-stage__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.5rem 0 1.25rem;
}

.about-stage__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.about-stage__tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(244, 250, 255, 0.84);
  font-size: 0.88rem;
  font-weight: 600;
}

.about-stage__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.35rem;
}

.about-stage__stat {
  padding: 1rem 1rem 1.1rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 18, 30, 0.52);
  backdrop-filter: blur(18px);
}

.about-stage__stat strong {
  display: block;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.35rem);
  letter-spacing: -0.04em;
}

.about-stage__stat span {
  display: inline-block;
  margin-top: 0.3rem;
  color: rgba(238, 246, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-stage__visual {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(180px, 0.78fr);
  gap: 1rem;
  align-items: stretch;
}

.about-stage__image,
.about-stage__thumb {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.25);
}

.about-stage__image img,
.about-stage__thumb img,
.about-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-stage__image--main img {
  aspect-ratio: 4 / 5.2;
}

.about-stage__visual-stack {
  display: grid;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 1rem;
}

.about-stage__thumb img {
  aspect-ratio: 1 / 1.08;
}

.about-stage__image-caption,
.about-photo-card__caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(6, 14, 24, 0.08), rgba(6, 14, 24, 0.82));
  color: #ffffff;
}

.about-stage__image-caption span,
.about-photo-card__caption span {
  display: block;
  margin-bottom: 0.18rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 224, 163, 0.84);
}

.about-stage__image-caption strong,
.about-photo-card__caption strong {
  display: block;
  font-size: 1rem;
  line-height: 1.4;
}

.about-stage__note {
  padding: 1.1rem 1.15rem;
  border-radius: 24px;
  background: linear-gradient(135deg, #ff7b54, #ff9659);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(255, 123, 84, 0.28);
}

.about-stage__note span {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.82;
}

.about-stage__note strong {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.06rem;
  line-height: 1.5;
}

.about-gallery-band {
  position: relative;
  margin-top: -1.8rem;
}

.about-gallery-band__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.about-photo-card {
  position: relative;
  overflow: hidden;
  min-height: 19rem;
  border-radius: 30px;
  border: 1px solid rgba(16, 38, 61, 0.08);
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(10, 26, 44, 0.1);
}

.about-photo-card:first-child {
  grid-column: span 2;
  min-height: 21rem;
}

.about-photo-card:nth-child(2) {
  transform: translateY(2rem);
}

.about-photo-card:nth-child(4) {
  transform: translateY(1rem);
}

.about-photo-card img {
  aspect-ratio: 4 / 5;
}

.sticky-cta {
  right: 1rem;
  bottom: 1rem;
  padding: 0.82rem 1.05rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 17, 29, 0.9);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 36px rgba(10, 26, 44, 0.18);
}

@media (max-width: 1199px) {
  .about-stage__panel,
  .about-stage__visual,
  .page-hero__grid {
    grid-template-columns: 1fr;
  }

  .about-stage__stats,
  .about-gallery-band__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-photo-card:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 991px) {
  .page-hero,
  .about-stage {
    padding-top: 8rem;
  }

  .about-stage__stats,
  .about-gallery-band__grid {
    grid-template-columns: 1fr;
  }

  .about-photo-card:first-child {
    grid-column: auto;
  }

  .about-photo-card:nth-child(2),
  .about-photo-card:nth-child(4) {
    transform: none;
  }
}

@media (max-width: 767px) {
  .site-nav {
    background: rgba(255, 255, 255, 0.88);
  }

  .sticky-cta {
    right: 0.75rem;
    left: 0.75rem;
    bottom: 0.75rem;
  }

  .about-stage__copy h1,
  .page-hero h1,
  .page-hero .hero-title,
  .page-hero .hero-title--detail {
    font-size: clamp(2.5rem, 11vw, 3.5rem);
  }

  .about-stage__actions {
    flex-direction: column;
  }

  .about-stage__actions .btn {
    width: 100%;
  }

  .about-stage__tags {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* Visionary Youth Master Refresh */
:root {
  --font-body: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --font-display: "Sora", "Segoe UI", sans-serif;
}

body {
  background:
    radial-gradient(circle at top left, rgba(255, 170, 122, 0.14), transparent 20%),
    radial-gradient(circle at 92% 8%, rgba(88, 220, 183, 0.14), transparent 18%),
    linear-gradient(180deg, #f5efe6 0%, #f6f8fb 28%, #fbfcfe 100%);
  color: #10263d;
}

body::before {
  background-image:
    linear-gradient(rgba(12, 34, 55, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 34, 55, 0.025) 1px, transparent 1px);
  background-size: 96px 96px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  letter-spacing: -0.055em;
}

.btn-brand {
  color: #10263d;
  background: linear-gradient(135deg, #ff8d5f, #ffca7a);
  box-shadow: 0 18px 40px rgba(255, 141, 95, 0.24);
}

.btn-brand:hover,
.btn-brand:focus {
  color: #10263d;
  background: linear-gradient(135deg, #ff7a57, #ffc76a);
}

.btn-outline-brand {
  border-color: rgba(16, 38, 61, 0.16);
  color: #10263d;
  background: rgba(255, 255, 255, 0.66);
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  border-color: rgba(255, 122, 87, 0.32);
  background: rgba(255, 255, 255, 0.88);
}

.site-nav {
  top: 1rem;
  padding: 0.55rem 0;
  background: rgba(255, 251, 246, 0.82);
  border: 1px solid rgba(16, 38, 61, 0.08);
  box-shadow: 0 22px 60px rgba(10, 26, 44, 0.12);
  backdrop-filter: blur(26px);
}

.site-nav .container {
  align-items: center;
}

.site-nav.scrolled {
  background: rgba(255, 255, 255, 0.9);
}

.site-brand__mark {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 18px;
  background: linear-gradient(145deg, #09192a, #13385a);
  box-shadow: 0 18px 34px rgba(8, 19, 31, 0.18);
}

.site-brand__copy strong {
  font-size: 1.26rem;
  letter-spacing: -0.05em;
}

.site-brand__copy small {
  color: rgba(16, 38, 61, 0.56);
  font-size: 0.76rem;
  max-width: 28rem;
}

.site-nav .nav-link {
  border-radius: 999px;
  padding: 0.72rem 1rem;
  color: rgba(16, 38, 61, 0.72);
  font-weight: 700;
}

.site-nav .nav-link:hover,
.site-nav .nav-link:focus,
.site-nav .nav-link.active {
  color: #10263d;
  background: rgba(255, 141, 95, 0.12);
}

.site-nav .btn-brand {
  padding-inline: 1.3rem;
}

.vision-home {
  position: relative;
  overflow: hidden;
  padding: 8.75rem 0 4.5rem;
  color: #f8fbff;
  background: linear-gradient(135deg, #07111d 0%, #0d2337 48%, #144564 100%);
}

.vision-home__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 200, 122, 0.16), transparent 20%),
    radial-gradient(circle at 88% 16%, rgba(80, 220, 180, 0.18), transparent 20%),
    linear-gradient(180deg, rgba(7, 17, 29, 0.46), rgba(7, 17, 29, 0.72));
}

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

.vision-home__shell {
  position: relative;
  padding: clamp(1.3rem, 3vw, 2.6rem);
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: 0 35px 90px rgba(3, 8, 15, 0.34);
}

.vision-home__grid,
.vision-home__stats,
.vision-home__ticker,
.program-atlas,
.initiative-runway,
.voice-salon,
.editorial-hero__shell,
.editorial-hero__rail,
.contact-bar,
.contact-command,
.program-matrix,
.program-matrix__grid,
.framework-band,
.initiative-cluster,
.initiative-cluster__stack,
.lane-grid,
.voices-grid,
.gallery-atlas,
.evidence-grid,
.footer-launchpad,
.radar-layout,
.radar-grid {
  display: grid;
  gap: 1rem;
}

.vision-home__grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: clamp(1.6rem, 3vw, 2.8rem);
  align-items: center;
}

.vision-home__copy {
  max-width: 42rem;
}

.vision-home__copy .eyebrow,
.footer-launchpad .eyebrow {
  color: #ffe3ae;
  background: rgba(255, 227, 174, 0.12);
  border-color: rgba(255, 227, 174, 0.16);
}

.vision-home__copy h1 {
  margin-bottom: 1rem;
  font-size: clamp(3.35rem, 6vw, 6.3rem);
  line-height: 0.9;
  color: #ffffff;
  max-width: 10ch;
}

.vision-home__copy p {
  max-width: 36rem;
  color: rgba(232, 241, 252, 0.84);
  font-size: 1.08rem;
}

.vision-home__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.5rem 0 1.2rem;
}

.vision-home__tags,
.editorial-hero__tags,
.cta-panel__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.vision-home__tags span,
.editorial-hero__tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(242, 248, 255, 0.84);
  font-size: 0.84rem;
  font-weight: 700;
}

.vision-home__stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.3rem;
}

.vision-home__stat,
.editorial-hero__rail-card {
  padding: 1rem 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(6, 16, 28, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.vision-home__stat strong,
.editorial-hero__rail-card strong {
  display: block;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  letter-spacing: -0.05em;
}

.vision-home__stat span,
.editorial-hero__rail-card span {
  display: inline-block;
  margin-top: 0.22rem;
  color: rgba(237, 245, 255, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.vision-home__media {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(190px, 0.72fr);
  gap: 1rem;
}

.vision-home__lead-image,
.vision-home__thumb,
.program-atlas__lead,
.program-atlas__card,
.initiative-runway__lead,
.initiative-runway__card,
.evidence-grid__photo,
.editorial-hero__visual,
.program-matrix__lead,
.program-matrix__card,
.initiative-cluster__lead,
.initiative-cluster__card,
.voices-grid__lead,
.voices-grid__card,
.gallery-atlas__card,
.contact-bar__card,
.contact-command__copy,
.contact-command__form .form-card,
.footer-launchpad,
.radar-card,
.lane-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(16, 38, 61, 0.08);
  box-shadow: 0 24px 60px rgba(10, 26, 44, 0.12);
}

.vision-home__lead-image,
.vision-home__thumb {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}

.vision-home__lead-image img {
  aspect-ratio: 4 / 5.1;
  object-fit: cover;
}

.vision-home__side {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
}

.vision-home__thumb img {
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
}

.vision-home__note {
  padding: 1.2rem;
  border-radius: 24px;
  background: linear-gradient(145deg, #ff835e, #ffab68);
  color: #ffffff;
  box-shadow: 0 22px 46px rgba(255, 131, 94, 0.28);
}

.vision-home__note span {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.86;
}

.vision-home__note strong {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.05rem;
  line-height: 1.55;
}

.vision-home__caption,
.gallery-card__caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.82rem 1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(6, 14, 24, 0.08), rgba(6, 14, 24, 0.82));
  color: #ffffff;
}

.vision-home__caption span,
.gallery-card__caption span {
  display: block;
  margin-bottom: 0.15rem;
  color: rgba(255, 224, 170, 0.84);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vision-home__caption strong,
.gallery-card__caption strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.42;
}

.vision-home__ticker {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.1rem;
}

.vision-home__ticker-card {
  padding: 1.2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.vision-home__ticker-card span {
  display: block;
  color: rgba(255, 224, 170, 0.86);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.vision-home__ticker-card strong {
  display: block;
  margin: 0.38rem 0;
  color: #ffffff;
  font-size: 1.08rem;
}

.vision-home__ticker-card p {
  margin: 0;
  color: rgba(233, 242, 254, 0.74);
  font-size: 0.92rem;
}

.radar-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 1.4rem;
  align-items: start;
}

.radar-grid,
.lane-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.radar-card,
.lane-card {
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.96));
}

.radar-card__index,
.lane-card__index,
.program-atlas__count,
.program-matrix__count,
.framework-band__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #0a2746, #17456e);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.9rem;
}

.radar-card h3,
.lane-card h3,
.framework-band__card h3,
.program-matrix__card h3,
.initiative-cluster__card h3,
.gallery-atlas__intro h2 {
  margin-bottom: 0.6rem;
  font-size: 1.35rem;
}

.program-atlas {
  grid-template-columns: minmax(320px, 0.98fr) minmax(0, 1.02fr);
  align-items: start;
}

.program-atlas__lead,
.program-matrix__lead,
.initiative-runway__lead,
.initiative-cluster__lead {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(245, 248, 252, 0.96));
}

.program-atlas__lead-media img,
.program-matrix__lead-media img,
.initiative-runway__lead-media img,
.initiative-cluster__lead-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 4.8;
}

.program-atlas__lead-body,
.program-matrix__lead-body,
.initiative-runway__lead-body,
.initiative-cluster__lead-body {
  padding: 1.6rem;
}

.program-atlas__lead-body h3,
.program-matrix__lead-body h2,
.initiative-runway__lead-body h3,
.initiative-cluster__lead-body h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.6rem);
}

.program-atlas__grid,
.program-matrix__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.program-atlas__card,
.program-matrix__card {
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.97);
}

.program-atlas__card-media,
.program-matrix__card-media,
.initiative-runway__card-media,
.initiative-cluster__card-media {
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.program-atlas__card-media img,
.program-matrix__card-media img,
.initiative-runway__card-media img,
.initiative-cluster__card-media img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.initiative-runway,
.initiative-cluster {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: start;
}

.initiative-runway__lead,
.initiative-cluster__lead {
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.initiative-runway__lead-body,
.initiative-cluster__lead-body,
.initiative-runway__card-body,
.initiative-cluster__card-body {
  color: rgba(231, 241, 253, 0.86);
}

.initiative-runway__lead-body h3,
.initiative-cluster__lead-body h2,
.initiative-runway__card-body h3,
.initiative-cluster__card-body h3 {
  color: #ffffff;
}

.initiative-runway__stack,
.initiative-cluster__stack {
  display: grid;
  gap: 1rem;
}

.initiative-runway__card,
.initiative-cluster__card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  padding: 1rem;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.2);
}

.initiative-runway__card-media,
.initiative-cluster__card-media {
  margin-bottom: 0;
}

.initiative-runway__card-body,
.initiative-cluster__card-body {
  padding: 0.25rem 0 0.25rem 1rem;
}

.evidence-grid {
  grid-template-columns: 1.05fr repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(220px, auto);
}

.evidence-grid__intro {
  grid-row: span 2;
  padding: 1.6rem;
  border-radius: 30px;
  border: 1px solid rgba(16, 38, 61, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(245, 248, 252, 0.96));
  box-shadow: 0 24px 60px rgba(10, 26, 44, 0.1);
}

.evidence-grid__intro h3 {
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
}

.evidence-grid__photo {
  min-height: 17rem;
  background: #ffffff;
}

.evidence-grid__photo img,
.gallery-atlas__card img,
.editorial-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice-salon {
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 1.4rem;
}

.voice-salon__feature {
  padding: 1.7rem;
  border-radius: 32px;
  background: linear-gradient(135deg, #0d2034, #153a5e);
  color: #e8f1fd;
  box-shadow: 0 28px 68px rgba(10, 26, 44, 0.18);
}

.voice-salon__feature h2,
.voice-salon__feature strong {
  color: #ffffff;
}

.voice-salon__quote {
  margin: 1rem 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.45rem);
  line-height: 1.22;
  letter-spacing: -0.05em;
  color: #ffffff;
}

.voice-salon__list {
  display: grid;
  gap: 1rem;
}

.voice-salon__card,
.voices-grid__card {
  padding: 1.25rem;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.96));
  border: 1px solid rgba(16, 38, 61, 0.08);
  box-shadow: 0 20px 46px rgba(10, 26, 44, 0.08);
}

.voice-salon__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 4.2rem;
  padding: 1rem 1.2rem;
  border-radius: 999px;
  background: rgba(16, 38, 61, 0.06);
  border: 1px solid rgba(16, 38, 61, 0.08);
  font-weight: 700;
}

.cta-panel--premium {
  align-items: stretch;
  padding: 1.7rem;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 248, 252, 0.96));
  box-shadow: 0 28px 70px rgba(10, 26, 44, 0.12);
}

.cta-panel--premium .cta-panel__copy {
  padding-right: 1rem;
}

.editorial-hero {
  position: relative;
  overflow: hidden;
  padding: 8.9rem 0 4.3rem;
  color: #f8fbff;
  background: linear-gradient(135deg, #08131f 0%, #0f2a43 52%, #164d71 100%);
}

.editorial-hero--warm {
  background: linear-gradient(135deg, #0b1b2a 0%, #17304a 42%, #6f3a2a 100%);
}

.editorial-hero--gallery {
  background: linear-gradient(135deg, #08131f 0%, #12314c 48%, #154867 100%);
}

.editorial-hero__shell {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(1.5rem, 3vw, 2.8rem);
  align-items: center;
}

.editorial-hero__veil,
.about-stage__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 14, 24, 0.32), rgba(6, 14, 24, 0.24) 36%, rgba(6, 14, 24, 0.68)),
    radial-gradient(circle at 82% 16%, rgba(255, 192, 118, 0.16), transparent 24%),
    radial-gradient(circle at 18% 20%, rgba(86, 221, 183, 0.12), transparent 22%);
  pointer-events: none;
}

.editorial-hero .container,
.about-stage .container {
  position: relative;
  z-index: 2;
}

.editorial-hero .hero-slideshow span,
.about-stage .hero-slideshow span {
  background-image:
    linear-gradient(135deg, rgba(5, 13, 23, 0.8), rgba(11, 33, 52, 0.42)),
    var(--hero-image);
  filter: saturate(1.02) contrast(1.02);
}

.editorial-hero__copy h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.9rem, 5.1vw, 5.35rem);
  line-height: 0.92;
  color: #ffffff;
  max-width: 11ch;
}

.editorial-hero__copy p {
  max-width: 36rem;
  color: rgba(240, 246, 255, 0.9);
  font-size: 1.06rem;
}

.editorial-hero__visual {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.26);
}

.editorial-hero__visual img {
  aspect-ratio: 4 / 4.7;
}

.program-matrix {
  gap: 1.25rem;
}

.program-matrix__lead {
  margin-bottom: 0.2rem;
}

.framework-band {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.framework-band__card {
  padding: 1.45rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.framework-band__card p {
  color: rgba(231, 241, 253, 0.76);
}

.voices-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.voices-grid__lead {
  grid-column: span 2;
  padding: 1.7rem;
  background: linear-gradient(135deg, #0d2034, #163c61);
  color: #e8f1fd;
}

.voices-grid__lead blockquote {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.8vw, 2.55rem);
  line-height: 1.22;
  letter-spacing: -0.05em;
  color: #ffffff;
}

.voices-grid__lead strong,
.voices-grid__card strong {
  display: block;
  margin-top: 0.5rem;
}

.gallery-atlas {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 17rem;
}

.gallery-atlas__intro {
  grid-column: span 2;
  grid-row: span 2;
  padding: 1.7rem;
  border-radius: 30px;
  border: 1px solid rgba(16, 38, 61, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.96));
  box-shadow: 0 24px 60px rgba(10, 26, 44, 0.1);
}

.gallery-atlas__card {
  min-height: 100%;
  background: #ffffff;
}

.gallery-atlas__card:nth-child(4n) {
  transform: translateY(1.4rem);
}

.contact-bar {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-bar__card {
  padding: 1.35rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.96));
}

.contact-command {
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  gap: 1.3rem;
}

.contact-command__copy {
  padding: 1.6rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.96));
}

.contact-command__copy h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.contact-command__form .form-card {
  padding: 1.6rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(245, 248, 252, 0.97));
}

.footer-launchpad {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  margin-bottom: 1.4rem;
  padding: 1.45rem 1.5rem;
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  color: #eef4ff;
}

.footer-launchpad h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  max-width: 16ch;
}

.site-footer {
  padding-top: 3rem;
  background:
    radial-gradient(circle at top right, rgba(255, 193, 122, 0.12), transparent 22%),
    linear-gradient(135deg, #06111d, #0f2a43 52%, #173e61);
}

.section-shell {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.58), rgba(247, 243, 237, 0.82));
}

.section-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 184, 129, 0.08), transparent 18%),
    radial-gradient(circle at 88% 18%, rgba(91, 209, 182, 0.06), transparent 18%);
  pointer-events: none;
}

.section-shell > .container {
  position: relative;
  z-index: 1;
}

.section-shell--light {
  background:
    linear-gradient(180deg, rgba(251, 247, 240, 0.9), rgba(244, 247, 251, 0.95)),
    linear-gradient(135deg, rgba(89, 195, 255, 0.05), rgba(255, 107, 53, 0.04));
}

.section-shell--contact {
  background:
    radial-gradient(circle at top left, rgba(255, 209, 102, 0.1), transparent 22%),
    linear-gradient(180deg, rgba(247, 241, 230, 0.96), rgba(250, 251, 253, 0.98));
}

.section-heading p,
.radar-card p,
.lane-card p,
.program-atlas__card p,
.program-matrix__card p,
.contact-command__copy p,
.gallery-atlas__intro p,
.evidence-grid__intro p,
.voices-grid__card p,
.voice-salon__card p {
  color: rgba(16, 38, 61, 0.74);
}

.footer-grid {
  grid-template-columns: 1.15fr 0.85fr 0.85fr 0.95fr;
}

.footer-copy,
.footer-grid p,
.footer-grid a {
  color: rgba(233, 241, 253, 0.74);
}

.footer-grid h3 {
  color: #ffffff;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 1.3rem;
  padding-top: 1rem;
}

@media (max-width: 1199px) {
  .vision-home__grid,
  .vision-home__media,
  .radar-layout,
  .program-atlas,
  .initiative-runway,
  .voice-salon,
  .editorial-hero__shell,
  .initiative-cluster,
  .contact-command,
  .footer-launchpad,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .vision-home__stats,
  .vision-home__ticker,
  .contact-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-atlas {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-atlas__intro {
    grid-column: span 2;
  }
}

@media (max-width: 991px) {
  .vision-home,
  .editorial-hero {
    padding-top: 7.9rem;
  }

  .vision-home__stats,
  .vision-home__ticker,
  .radar-grid,
  .program-atlas__grid,
  .program-matrix__grid,
  .framework-band,
  .lane-grid,
  .voices-grid,
  .contact-bar,
  .gallery-atlas {
    grid-template-columns: 1fr;
  }

  .evidence-grid {
    grid-template-columns: 1fr;
  }

  .evidence-grid__intro {
    grid-row: auto;
  }

  .gallery-atlas__intro {
    grid-column: auto;
    grid-row: auto;
  }

  .program-atlas__lead,
  .program-matrix__lead,
  .initiative-runway__lead,
  .initiative-cluster__lead,
  .initiative-runway__card,
  .initiative-cluster__card {
    grid-template-columns: 1fr;
  }

  .initiative-runway__card-body,
  .initiative-cluster__card-body {
    padding-left: 0;
  }

  .voices-grid__lead {
    grid-column: auto;
  }

  .gallery-atlas__card:nth-child(4n) {
    transform: none;
  }
}

@media (max-width: 767px) {
  .site-nav {
    width: calc(100% - 1rem);
    top: 0.5rem;
  }

  .vision-home__copy h1,
  .editorial-hero__copy h1 {
    font-size: clamp(2.6rem, 11vw, 4rem);
  }

  .vision-home__actions,
  .vision-home__tags,
  .editorial-hero__tags,
  .cta-panel__list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .vision-home__actions .btn {
    width: 100%;
  }

  .vision-home__stats,
  .vision-home__ticker,
  .contact-bar {
    grid-template-columns: 1fr;
  }

  .vision-home__shell,
  .about-stage__panel {
    padding: 1.2rem;
  }

  .vision-home__lead-image img,
  .editorial-hero__visual img,
  .program-atlas__lead-media img,
  .program-matrix__lead-media img,
  .initiative-runway__lead-media img,
  .initiative-cluster__lead-media img {
    aspect-ratio: 16 / 11;
  }
}
