:root {
  --bg: #0b0c0e;
  --surface: #0b0c0e;
  --surface-soft: #141517;
  --page-light: #f1f3f5;
  --page-dark: #111113;
  --text: #f7f9ff;
  --muted: #c6c9cc;
  --line: #2a2d31;
  --primary: #d3f94d;
  --primary-strong: #c3ef2e;
  --accent: #d3f94d;
  --alt-bg: #ffffff;
  --alt-text: #000000;
  --radius: 10px;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.4);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: clip;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--page-dark);
}

.container {
  width: 100%;
  max-width: 1500px;
  padding-inline: 40px;
  margin: 0 auto;
}

.narrow {
  width: min(860px, 100%);
}

.section {
  padding: 88px 0;
}

#latestnews {
  padding: 40px 0;
  background: var(--page-light);
}

#latestnews .container {
  max-width: 1500px;
}

.latestnews-head {
  width: min(760px, 100%);
  margin-bottom: 20px;
}

#latestnews .eyebrow {
  color: #2f3a10;
  margin-bottom: 14px;
}

#latestnews h2 {
  color: #10161f;
  margin-bottom: 0;
}

.latestnews-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.latestnews-card {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 170px;
  padding: 14px 134px 16px 14px;
  border-radius: 12px;
  border: 1px solid;
  border-color: #ffffff #d7e0ea #d7e0ea #ffffff;
  background: #fcfdff;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(12, 22, 36, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.latestnews-thumb {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 108px;
  height: calc(100% - 28px);
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid #d7e0ea;
  background: #eef3f8;
  z-index: 0;
}

.latestnews-card:hover,
.latestnews-card:focus-visible {
  transform: translateY(-1px);
  border-color: #ffffff #b6c6d7 #b6c6d7 #ffffff;
  box-shadow: 0 8px 16px rgba(12, 22, 36, 0.1);
}

.latestnews-tag {
  align-self: flex-start;
  margin-bottom: 16px;
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 0.66rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #334155;
  background: transparent;
  border: 1px solid #dde6f0;
  border-top: 0;
  border-left: 0;
}

.latestnews-card:nth-child(1) .latestnews-tag {
  color: #1d4f8f;
  border-color: #c8dcf4;
}

.latestnews-card:nth-child(2) .latestnews-tag {
  color: #0f5f67;
  border-color: #c7e8ea;
}

.latestnews-card:nth-child(3) .latestnews-tag {
  color: #5c4099;
  border-color: #ddd0fb;
}

.latestnews-card:nth-child(4) .latestnews-tag {
  color: #8f5a18;
  border-color: #f1ddbc;
}

.latestnews-card h3 {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #0f172a;
  font-weight: 500;
}

.latestnews-meta {
  margin: auto 0 0;
  padding-top: 12px;
  font-size: 0.76rem;
  line-height: 1.3;
  color: #617183;
}

.partners-row {
  margin-top: 0;
}

.partners-section {
  padding: 18px 0 35px;
  background: var(--page-light);
}

#partners .container {
  width: min(100%, 1500px);
  max-width: 1500px;
}

.partners-title {
  margin: 0 0 28px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: #bfc3ca;
}

.partners-logos {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
  justify-items: center;
}

.partner-logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: 34px;
  object-fit: contain;
  object-position: center;
}

.partners-logos img:first-child {
  justify-self: start;
}

.partner-calpoly {
  height: 34px;
}

.partner-nyu {
  height: 36px;
}

.partner-ucla {
  height: 38px;
}

.partner-ucsb {
  height: 26px;
}

.partner-ucsd {
  height: 34px;
}

.partner-ucr {
  height: 39px;
}

.partner-uci {
  height: 44px;
}

#approach {
  padding-top: 20px;
  padding-bottom: 40px;
  background: var(--page-light);
}

#approach .narrow {
  background: transparent;
  width: calc(100% - 200px);
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

#approach .icon-badge {
  color: #10161f;
}

#approach h2 {
  color: #4e6174;
  text-align: center;
  font-size: 24px;
}

#approach p {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: center;
  color: #10161f;
}

#approach .eyebrow {
  color: #2f3a10;
  margin-bottom: 30px;
}

#programs {
  padding-top: 16px;
  padding-bottom: 60px;
  background: var(--page-light);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: none;
  background: transparent;
  border-bottom: 0;
  transition: background 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.scrolled {
  backdrop-filter: blur(12px);
  background: rgba(18, 18, 18, 0.85);
}

.nav-wrap {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0 50px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 74px;
}

.news-page .nav-wrap {
  background: rgba(0, 0, 0, 0.5);
}

.news-page .logo {
  color: #fff;
}

.news-page .site-header .top-nav a,
.news-page .site-header .top-nav a:link,
.news-page .site-header .top-nav a:visited,
.news-page .site-header .top-nav a:hover,
.news-page .site-header .top-nav a:active,
.news-page .site-header .top-nav a:focus-visible {
  color: #fff !important;
  -webkit-text-fill-color: #fff;
}

.news-page .site-header .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.06);
}

.news-page .site-header.scrolled {
  background: rgba(11, 12, 14, 0.82);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f2f5ff;
  text-decoration: none;
  font-weight: 600;
}

.logo > span {
  margin-left: 5px;
}

.site-header .logo > span {
  font-size: 0.9rem;
  font-weight: 400;
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: block;
  object-fit: contain;
  flex: 0 0 auto;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle-bar {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #eef2ff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header .top-nav a {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
  opacity: 1;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 400;
}

.site-header .top-nav a:link,
.site-header .top-nav a:visited,
.site-header .top-nav a:hover,
.site-header .top-nav a:active,
.site-header .top-nav a:focus-visible {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
  opacity: 1;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

.site-footer a:hover {
  color: var(--text);
}

.hero {
  padding: 0 0 38px;
  background: #111113;
}

.hero h1,
.hero h2,
.hero .hero-subtitle {
  color: #f2f5ff;
}

.hero .lead {
  color: #d0d8ea;
}

.hero .muted {
  color: #aeb8cd;
}

.hero .btn-secondary {
  color: #eef2ff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.32);
}

.hero .btn-ghost {
  color: #e6ebfa;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.24);
}

.hero-media-wrap {
  position: relative;
  margin-top: 22px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-video {
  display: block;
  width: 100%;
  height: 600px;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08) brightness(0.62);
}

.hero-youtube-frame {
  display: block;
  width: 100%;
  height: 600px;
  border: 0;
}

.hero-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 12, 14, 0) 52%, rgba(11, 12, 14, 0.82) 100%);
  pointer-events: none;
}

.hero-media-caption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  margin: 0;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  max-width: min(1000px, calc(100% - 48px));
  text-wrap: balance;
}

.hero-play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 78px;
  height: 56px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.45);
  cursor: pointer;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease, background 0.18s ease;
}

.hero-play-btn:hover {
  transform: scale(1.03);
  background: rgba(255, 255, 255, 0.4);
}

.hero-play-icon {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #ffffff;
  margin-left: 3px;
}

.hero-media-wrap.is-playing .hero-play-btn {
  display: none;
}

.hero-title-block {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 100px;
  margin-bottom: 80px;
}

.hero-title-block h1 {
  max-width: min(1500px, 100%);
  white-space: normal;
  text-wrap: balance;
  text-align: center;
  margin-top: 20px;
  margin-inline: auto;
  font-size: 50px;
}

.hero-subgrid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
  justify-items: start;
}

.hero-lower {
  margin-top: 70px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: start;
}

.hero-lower .hero-subgrid {
  margin-top: 0;
  padding-left: 50px;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.35;
  margin: 0;
  max-width: none;
}

.hero-copy .lead {
  max-width: none;
  width: 90%;
  font-size: 15px;
  font-weight: 0;
  margin-top: 5px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

h1,
h2,
h3 {
  line-height: 1.12;
  margin: 0 0 16px;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  max-width: 14ch;
}

h2 {
  font-size: clamp(1.7rem, 3.4vw, 3rem);
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.9rem);
}

p {
  margin: 0 0 14px;
}

.lead {
  max-width: 70ch;
}

.muted {
  opacity: 0.95;
}

.tagline {
  margin-top: 22px;
  color: var(--text);
  font-weight: 600;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero .cta-row {
  margin-top: 48px;
}

.hero-lower .cta-row {
  margin-top: 0;
  flex-direction: column;
  align-items: stretch;
  justify-self: end;
  padding-right: 50px;
}

.hero-lower .cta-row .btn {
  width: clamp(220px, 16vw, 300px);
}

.hero .cta-row .btn {
  padding-inline: 21px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 11px 18px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

button.btn {
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  line-height: 1.2;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(120deg, var(--primary), var(--primary-strong));
  color: #0c1116;
  box-shadow: none;
}

.btn-secondary {
  color: var(--text);
  background: rgba(211, 249, 77, 0.14);
  border-color: rgba(211, 249, 77, 0.4);
}

.program-card .btn-secondary {
  width: 100%;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  margin-top: 28px;
  margin-bottom: 10px;
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.24);
}

.btn-outline {
  color: var(--text);
  border-color: rgba(211, 249, 77, 0.45);
  background: rgba(255, 255, 255, 0.03);
}

.btn-small {
  padding: 8px 14px;
  font-size: 0.92rem;
}

.site-header .btn-small {
  height: 38px;
  padding: 0 14px;
  font-size: 0.86rem;
  font-weight: 400;
}

.site-header .btn-outline {
  color: #eef2ff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.large {
  margin-top: 20px;
  padding: 12px 26px;
}

.scroll-next {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

.scroll-next > span {
  margin-top: 10px;
}

.arrow {
  font-size: 0.95rem;
  animation: bob 1.5s ease-in-out infinite;
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(3px);
  }
}

.hero-panel,
.program-card,
.impact-card,
.initiative-card {
  background: linear-gradient(155deg, rgba(20, 21, 23, 0.97), rgba(11, 12, 14, 0.97));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.icon-badge {
  margin: 0 0 14px;
  font-size: 1.25rem;
}

.program-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.program-card {
  display: grid;
  grid-template-columns: minmax(360px, 490px) minmax(0, 1fr);
  gap: 0;
  height: clamp(360px, 46vw, 475px);
  padding: 0;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(6, 10, 17, 0.12);
  background: transparent;
  box-shadow: none;
}

.program-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding-top: clamp(24px, 3vw, 42px);
  padding-right: clamp(20px, 2.4vw, 36px);
  padding-bottom: clamp(24px, 3vw, 42px);
  padding-left: clamp(24px, 5vw, 50px);
}

.program-main {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.program-main::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(6, 9, 15, 0.76) 0%, rgba(6, 9, 15, 0.62) 28%, rgba(6, 9, 15, 0.62) 100%);
}

.program-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-main-content {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  max-width: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  padding: clamp(24px, 4vw, 40px) 50px;
  color: #fff;
}

.program-side-title {
  margin: 0;
  color: var(--alt-text);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.95;
  font-size: clamp(2.8rem, 11vw, 5rem);
}

.program-side-subtitle {
  margin: 0;
  max-width: 18ch;
  color: var(--alt-text);
  font-size: clamp(1.2rem, 2.7vw, 1.5625rem);
  font-weight: 600;
  line-height: 1.2;
}

.program-side-cta {
  width: fit-content;
  min-width: clamp(240px, 26vw, 360px);
  margin-top: auto;
  font-size: 0.94rem;
}

.program-card--lab .program-side {
  background: #101217;
}

.program-card--lab .program-side-title,
.program-card--lab .program-side-subtitle {
  color: #f7f9ff;
}

.program-card--lab .program-side-cta {
  color: #10161f;
  background: var(--primary);
  border-color: transparent;
}

.program-card--lab .program-side-cta:hover {
  background: var(--primary-strong);
}

.program-card--incubator .program-side {
  background: var(--primary);
}

.program-card--incubator .program-side-title {
  font-size: clamp(2.8rem, 10vw, 5rem);
}

.program-card--incubator .program-side-cta {
  color: #f7f9ff;
  background: #101217;
  border-color: transparent;
}

.program-card--incubator .program-side-cta:hover {
  background: #1a202a;
}

.card-kicker {
  margin: 0;
  color: #ffffff;
  font-size: clamp(22px, 1.8vw, 30px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.02em;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
}

.card-kicker span {
  display: block;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  margin-bottom: 0;
  color: #fff;
}

#programs .program-card .check-list li {
  margin-bottom: 6px;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.5;
}

#programs .program-main-content > p:not(.card-kicker) {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  width: 100%;
  max-width: none;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.5;
}

.check-list li::before {
  content: "• ";
}

.values-section {
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--page-light);
}

.values-section h2,
.values-section p {
  color: var(--alt-text);
}

.values-section .eyebrow {
  color: #2f3a10;
  margin-bottom: 26px;
}

.values-section .narrow > p:not(.icon-badge):not(.eyebrow) {
  margin: 0 0 8px;
}

.impact-card {
  padding: 34px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 18px;
  align-items: end;
}

#impact .impact-card {
  width: 80%;
  margin-inline: auto;
  padding: 46px 40px;
  min-height: 380px;
  gap: 26px;
  align-items: center;
}

#impact .container {
  max-width: 1500px;
}

#impact .impact-card .eyebrow {
  margin-bottom: 42px;
}

#impact .impact-card h2 {
  margin-bottom: 24px;
}

#impact .impact-card p {
  margin-bottom: 0;
  line-height: 1.72;
}

#impact .impact-card .cta-row {
  margin-top: 10px;
  justify-content: flex-end;
}

.initiatives-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #111113;
}

#initiatives > .container {
  width: calc(100% - 200px);
}

.section-head {
  width: min(860px, 100%);
  margin-bottom: 26px;
}

.initiatives-section .section-head h2,
.initiatives-section .section-head p {
  color: #eef2ff;
}

.initiatives-section .section-head {
  margin-bottom: clamp(36px, 6vw, 80px);
}

.initiatives-section .section-head .eyebrow {
  color: #c9d3ea;
  margin-bottom: 48px;
}

.initiative-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.initiative-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  height: 180px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: #0f1116;
}

.initiative-card:first-child {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.initiative-card:last-child {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.initiative-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.42) 100%);
  pointer-events: none;
  transition: background 0.28s ease;
}

.initiative-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1);
  transition: filter 0.28s ease;
}

.initiative-copy {
  position: relative;
  z-index: 1;
  height: 180px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
}

.initiative-title {
  margin: 0;
  color: #fff;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-wrap: balance;
  transition: transform 0.28s ease;
}

.initiative-subtext {
  margin: 0;
  width: min(760px, 100%);
  color: rgba(255, 255, 255, 0.95);
  font-size: 17px;
  line-height: 1.3;
  height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(8px);
  transition: height 0.28s ease, opacity 0.22s ease, transform 0.28s ease, margin-top 0.28s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.initiative-card:hover .initiative-title,
.initiative-card:focus-within .initiative-title {
  transform: translateY(-8px);
}

.initiative-card:hover .initiative-image,
.initiative-card:focus-within .initiative-image {
  filter: brightness(0.7);
}

.initiative-card:hover::after,
.initiative-card:focus-within::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.58) 100%);
}

.initiative-card:hover .initiative-subtext,
.initiative-card:focus-within .initiative-subtext {
  margin-top: 8px;
  height: calc(1.3em * 2);
  opacity: 1;
  transform: translateY(0);
}

#get-involved {
  padding-top: 160px;
  padding-bottom: 170px;
  background: var(--page-light);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

#get-involved .container {
  width: min(100%);
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#get-involved .container::before {
  content: none;
}

#get-involved h2,
#get-involved p {
  color: #10161f;
}

#get-involved h2 {
  color: #10161f;
  text-shadow: none;
  margin-bottom: 24px;
}

#get-involved > .container > p:not(.eyebrow):not(.icon-badge) {
  color: #10161f;
  margin-bottom: 24px;
}

#get-involved .eyebrow {
  color: rgba(194, 207, 240, 0.64);
  margin-bottom: 99px;
  letter-spacing: 0.08em;
}

#get-involved .icon-badge {
  color: rgba(243, 247, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.06);
}

#get-involved .btn-primary.large {
  align-self: end;
  margin-top: 0;
  white-space: nowrap;
}

.join-form {
  margin-top: 8px;
  width: min(100%, 620px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 10px;
}

.join-form label {
  grid-column: 1 / -1;
  color: #10161f;
  font-weight: 500;
  font-size: 0.92rem;
}

.join-form select {
  width: 100%;
  border: 1px solid #c9d4e2;
  border-radius: 10px;
  padding: 11px 13px;
  font: inherit;
  color: #10161f;
  background: #ffffff;
}

.join-form select:focus-visible {
  outline: 2px solid rgba(61, 95, 201, 0.35);
  outline-offset: 1px;
  border-color: #4e6fda;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin-top: 16px;
}

.audience-grid p {
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.site-footer {
  border-top: 0;
  outline: 0;
  backdrop-filter: blur(12px);
  background: rgba(11, 12, 14, 0.82);
  padding: 20px 0;
}

.footer-wrap {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-wrap p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 300;
}

.footer-wrap a {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 300;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.legal-main {
  padding-top: 118px;
  padding-bottom: 56px;
}

.legal-page .page-bg {
  background: var(--page-dark);
}

.legal-shell {
  width: min(900px, 100%);
}

.legal-section {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(18, 21, 26, 0.65);
  padding: 36px 30px;
}

.legal-section h1 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.legal-section h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.legal-section p,
.legal-section li {
  color: #d7dce7;
}

.legal-section ul {
  margin-top: 10px;
  margin-bottom: 0;
  padding-left: 22px;
}

.legal-section a {
  color: var(--primary);
}

.legal-meta {
  margin: 0 0 20px;
  color: #b7becf;
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.news-main {
  padding-top: 0;
  background: #edf0f3;
}

.news-shell {
  width: min(1240px, 100%);
}

.news-page .news-shell {
  width: 100%;
  max-width: none;
  padding-inline: 200px;
}

.news-hero {
  position: relative;
  z-index: 3;
  padding-bottom: 0;
  background:
    radial-gradient(980px 440px at 4% -8%, rgba(211, 249, 77, 0.16), transparent 66%),
    radial-gradient(680px 320px at 90% 14%, rgba(120, 145, 255, 0.1), transparent 72%),
    linear-gradient(180deg, #1a4451 0%, #10323f 100%);
}

.news-body {
  position: relative;
  z-index: 1;
  padding-top: 0px;
  background: transparent;
}

.news-back-link {
  display: inline-flex;
  margin-bottom: 28px;
  font-size: 0.86rem;
  color: #deebff;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
}

.news-back-link:hover {
  color: #ffffff;
}

.news-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(260px, 0.9fr);
  align-items: end;
  gap: clamp(28px, 4vw, 72px);
}

.news-hero-copy {
  min-width: 0;
  align-self: start;
  padding-top: 32px;
  padding-bottom: 100px;
}

.news-hero-copy-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.news-kicker {
  margin: 0;
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(246, 209, 255, 0.48);
  background: rgba(232, 192, 248, 0.12);
  color: #f6cbff;
  padding: 3px 10px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-page #news-title {
  margin: 20px 0 22px;
  padding-top: 22px;
  max-width: 30ch;
  font-size: clamp(2.1rem, 5vw, 4.1rem);
  line-height: 1.02;
  color: rgba(255, 255, 255, 1);
}

.news-page #news-category {
  margin-top: 0;
}

.news-meta {
  margin: 0;
  color: #deecf8;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-hero-media {
  display: none;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  height: 560px;
  max-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 30px rgba(2, 8, 16, 0.36);
  transform: translateY(30px);
  position: relative;
  z-index: 2;
}

.news-hero-media.is-visible {
  display: block;
}

.news-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.news-article {
  background: #ffffff;
  color: #10161f;
  border-radius: 0;
  padding: clamp(26px, 3.5vw, 54px) clamp(22px, 6vw, 72px);
  border: 0;
  box-shadow: none;
}

.news-page .news-article {
  padding-inline: clamp(10px, 2vw, 24px);
}

.news-article > * {
  width: min(940px, 100%);
}

.news-page .news-article > * {
  width: 100%;
}

.news-article > *:last-child {
  margin-bottom: 0;
}

.news-article h1,
.news-article h2,
.news-article h3,
.news-article h4,
.news-article h5,
.news-article h6 {
  color: #10161f;
  margin-top: 30px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.news-article h1 {
  margin-top: 0;
  padding-top: 50px;
  padding-bottom: 50px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  max-width: none;
}

.news-article h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.95rem);
}

.news-article h3 {
  font-size: clamp(1.18rem, 2vw, 1.55rem);
}

.news-article p,
.news-article li {
  color: #1f2a37;
  line-height: 1.7;
  font-size: 1.02rem;
}

.news-article ul,
.news-article ol {
  margin: 0 0 20px 22px;
  padding: 0;
}

.news-article blockquote {
  margin: 24px 0;
  padding: 12px 16px;
  border-left: 4px solid #9eb25d;
  background: #f5f8ee;
}

.news-article blockquote p {
  margin: 0;
}

.news-article hr {
  border: 0;
  border-top: 1px solid #dbe3ec;
  margin: 30px 0;
}

.news-article a {
  color: #1c4f8d;
  text-decoration: underline;
}

.news-article code {
  background: #eef2f7;
  color: #263445;
  border-radius: 5px;
  padding: 2px 6px;
  font-size: 0.9em;
}

.contact-main {
  background: var(--page-light);
}

.contact-section {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 1.15fr);
  gap: 28px;
}

.contact-info,
.contact-form {
  background: #ffffff;
  border: 1px solid #dbe2ea;
  border-radius: 12px;
  padding: clamp(22px, 3.2vw, 34px);
  box-shadow: 0 10px 26px rgba(16, 22, 31, 0.08);
}

.contact-info {
  background: var(--page-dark);
  border-color: var(--line);
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.contact-info > * {
  position: relative;
  z-index: 1;
}

.contact-info::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: clamp(280px, 68%, 560px);
  aspect-ratio: 1 / 1;
  right: clamp(-100px, -8vw, 10px);
  bottom: clamp(-130px, -10vw, -10px);
  background: url("assets/svg/l2l-logo-2026-2-white.svg") center / contain no-repeat;
  opacity: 0.14;
  pointer-events: none;
}

.contact-info h1 {
  color: var(--text);
  max-width: none;
  font-size: 60px;
}

.contact-info p {
  color: var(--text);
}

.contact-address {
  margin-top: 60px;
  font-style: normal;
  line-height: 1.8;
  color: var(--text);
}

.contact-address strong {
  font-weight: 600;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-info.reveal,
.contact-form.reveal {
  padding: 50px;
}

.contact-form label {
  color: #10161f;
  font-weight: 500;
  font-size: 0.92rem;
}

.contact-inline-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-notice {
  margin: 0 0 6px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 0.9rem;
}

.contact-notice-error {
  color: #7b1d1d;
  background: #ffefef;
  border-color: #f2caca;
}

.contact-notice-success {
  color: #184c23;
  background: #eefaf0;
  border-color: #c7e8cf;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #c9d4e2;
  border-radius: 10px;
  padding: 11px 13px;
  font: inherit;
  color: #10161f;
  background: #ffffff;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  outline: 2px solid rgba(61, 95, 201, 0.35);
  outline-offset: 1px;
  border-color: #4e6fda;
}

.contact-form .btn {
  margin-top: 8px;
  align-self: flex-start;
}

@media (max-width: 1100px) {
  .news-shell {
    width: min(980px, 100%);
  }

  .news-hero {
    padding-bottom: 76px;
  }

  .news-body {
    padding-top: 78px;
  }

  .news-hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .news-hero-copy {
    padding-bottom: 0;
  }

  .news-hero-media {
    max-width: 760px;
    transform: translateY(110px);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .contact-info::after {
    width: clamp(220px, 62%, 360px);
    right: -15px;
    bottom: -40px;
    opacity: 0.12;
  }

  .contact-inline-fields {
    grid-template-columns: 1fr;
  }

  .news-main {
    padding-top: 0;
  }

  .news-back-link {
    margin-bottom: 18px;
  }

  .news-page #news-title {
    max-width: 100%;
  }

  .news-body {
    padding-top: 56px;
  }

  .news-hero-media {
    transform: translateY(80px);
    border-radius: 12px;
  }

  .news-article {
    border-left: 0;
    border-right: 0;
    padding-inline: 16px;
    padding-bottom: 38px;
  }
}

@media (max-width: 980px) {
  .hero-lower {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-lower .hero-subgrid {
    padding-left: 0;
  }

  .hero-lower .cta-row {
    justify-self: start;
    padding-right: 0;
  }

  .hero-lower .cta-row .btn {
    width: 100%;
  }

  .hero-title-block h1 {
    white-space: normal;
  }

  .hero-subgrid,
  .impact-card,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .program-card {
    grid-template-columns: 1fr;
    height: auto;
  }

  .program-side {
    gap: 18px;
  }

  .program-side-subtitle {
    max-width: none;
  }

  .program-main {
    min-height: 320px;
  }

  .top-nav {
    display: none;
  }

  .nav-wrap {
    position: relative;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-header .btn-small {
    display: none;
  }

  .site-header.menu-open .top-nav {
    display: flex;
    position: absolute;
    top: calc(100% + 10px);
    left: 88px;
    right: 88px;
    z-index: 45;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    background: rgba(11, 12, 14, 0.95);
    backdrop-filter: blur(8px);
  }

  .site-header.menu-open .top-nav a {
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.92rem;
    background: rgba(255, 255, 255, 0.04);
  }

  .site-header.menu-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.menu-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-wrap {
    display: flex;
    justify-content: space-between;
    padding: 0 88px;
  }

  .footer-wrap {
    padding: 0 88px;
  }
}

@media (max-width: 1120px) {
  .latestnews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partners-logos {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .latestnews-grid {
    grid-template-columns: 1fr;
  }

  .partners-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (max-width: 1200px) {
  .nav-wrap {
    padding: 0 40px;
  }

  .footer-wrap {
    padding: 0 54px;
  }
}

@media (max-width: 900px) {
  .nav-wrap {
    padding: 0 15px;
  }

  .site-header.menu-open .top-nav {
    left: 15px;
    right: 15px;
  }

  .footer-wrap {
    padding: 0 15px;
  }

  #approach .narrow,
  #partners .container,
  #initiatives > .container {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 70px 0;
  }

  #get-involved {
    padding-top: 110px;
    padding-bottom: 120px;
  }

  .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
  }

  .btn-small {
    display: none;
  }

  .join-form {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  #get-involved .btn-primary.large {
    justify-self: stretch;
  }

  .cta-row {
    width: 100%;
  }

  .hero {
    padding: 104px 0 62px;
  }

  .hero-title-block {
    margin-top: 0px;
    margin-bottom: 40px;
  }

  .hero-title-block h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .hero-video {
    height: min(42vh, 320px);
  }

  .hero-youtube-frame {
    height: min(42vh, 320px);
  }

  .initiative-card,
  .initiative-copy {
    height: 180px;
  }

  .initiative-title {
    font-size: 24px;
  }

  .initiative-copy {
    padding: 14px 16px;
  }

  .initiative-subtext {
    font-size: 14px;
  }

  .program-card {
    border-radius: 10px;
  }

  .program-side {
    padding: 24px 20px;
  }

  .program-side-cta {
    min-width: 0;
  }

  .program-main {
    min-height: 360px;
  }

  .program-main-content {
    padding: 22px 20px;
  }
}
