:root {
  --color-ink: #111016;
  --color-night: #0a0d16;
  --color-night-2: #121a28;
  --color-paper: #f7f8fb;
  --color-muted: #68636f;
  --color-line: rgba(17, 16, 22, 0.12);
  --color-line-light: rgba(255, 255, 255, 0.16);
  --brand-purple: #9452d4;
  --brand-blue: #54639a;
  --brand-teal: #087867;
  --brand-purple-soft: #b786f0;
  --brand-blue-soft: #8ea0d6;
  --brand-teal-soft: #55c3b5;
  --brand-gradient: linear-gradient(135deg, var(--brand-purple) 0%, var(--brand-blue) 52%, var(--brand-teal) 100%);
  --brand-gradient-animated: linear-gradient(120deg, #9452d4, #54639a, #087867, #9452d4);
  --faq-gradient: linear-gradient(135deg, #247365 0%, #7f42bd 100%);
  --color-purple: var(--brand-purple);
  --color-purple-soft: var(--brand-purple-soft);
  --color-cyan: var(--brand-teal-soft);
  --font-main: Geist, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Geist, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: min(1120px, calc(100vw - 40px));
  --radius: 8px;
  --space-section: clamp(24px, 3vw, 40px);
  --shadow: 0 24px 70px rgba(15, 12, 22, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(148, 82, 212, 0.17), transparent 30rem),
    radial-gradient(circle at 90% 12%, rgba(8, 120, 103, 0.16), transparent 28rem),
    linear-gradient(180deg, #fbfcff 0%, var(--color-paper) 42%, #ffffff 100%);
  color: var(--color-ink);
  font-family: var(--font-main);
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

.page-loader {
  align-items: center;
  animation: loaderExit 900ms ease 900ms forwards;
  background:
    radial-gradient(circle at 20% 20%, rgba(148, 82, 212, 0.2), transparent 28rem),
    radial-gradient(circle at 80% 80%, rgba(8, 120, 103, 0.2), transparent 28rem),
    var(--color-night);
  display: grid;
  inset: 0;
  justify-content: center;
  pointer-events: none;
  position: fixed;
  z-index: 100;
}

.page-loader img {
  animation: loaderMark 900ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  filter: drop-shadow(0 22px 50px rgba(0, 0, 0, 0.35));
  width: min(280px, 62vw);
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--brand-teal-soft);
  outline-offset: 4px;
}

.skip-link {
  background: var(--color-ink);
  color: white;
  left: 16px;
  padding: 10px 14px;
  position: fixed;
  top: 12px;
  transform: translateY(-150%);
  z-index: 100;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  margin: 0 auto;
  width: var(--container);
}

.section-dark {
  background: var(--color-night);
  color: white;
}

.site-header {
  align-items: center;
  background: rgba(10, 13, 22, 0.72);
  backdrop-filter: blur(22px) saturate(130%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 4vw, 48px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.site-header.is-scrolled {
  background: rgba(10, 13, 22, 0.88);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  min-width: 0;
}

.brand-logo {
  border: 0;
  border-radius: 0;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.22));
  object-fit: contain;
}

.brand-logo-compact {
  height: 48px;
  width: 170px;
}

.brand-logo-footer {
  height: 70px;
  width: 230px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 6px;
}

.site-nav a {
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 650;
  padding: 10px 13px;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: white;
}

.site-nav .nav-cta {
  animation: gradientShift 7s linear infinite;
  background: var(--brand-gradient-animated);
  background-size: 220% 220%;
  color: white;
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 42px;
  padding: 0;
  width: 42px;
}

.nav-toggle span:not(.sr-only) {
  background: linear-gradient(90deg, white, var(--brand-teal-soft));
  display: block;
  height: 2px;
  margin: 7px auto;
  width: 22px;
}

.sr-only {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(85, 195, 181, 0.18), transparent 24rem),
    linear-gradient(135deg, #070b14 0%, #101823 46%, #241a16 100%);
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(86px, 8vw, 112px) 0 20px;
  position: relative;
}

.hero-media,
.hero-overlay {
  inset: 0;
  position: absolute;
}

.hero-media {
  background:
    radial-gradient(circle at 76% 22%, rgba(58, 132, 190, 0.24), transparent 26rem),
    linear-gradient(135deg, #070b14 0%, #101823 48%, #241a16 100%);
}

.hero-media img,
.hero-slide {
  animation: heroImageDrift 18s ease-in-out infinite alternate;
  filter: saturate(1.18) contrast(1.04) brightness(1.22);
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center 34%;
  opacity: 0;
  position: absolute;
  transition: opacity 900ms ease;
  width: 100%;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide-contain {
  object-fit: cover;
}

.hero-overlay {
  background:
    radial-gradient(circle at 82% 24%, rgba(148, 82, 212, 0.12), transparent 21rem),
    radial-gradient(circle at 90% 72%, rgba(8, 120, 103, 0.12), transparent 20rem),
    linear-gradient(90deg, rgba(7, 11, 20, 0.72) 0%, rgba(7, 11, 20, 0.42) 42%, rgba(7, 11, 20, 0.1) 100%),
    linear-gradient(0deg, rgba(7, 11, 20, 0.72), rgba(7, 11, 20, 0.08) 52%, rgba(7, 11, 20, 0.14));
}

.hero-noise {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  inset: 0;
  mix-blend-mode: screen;
  opacity: 0.2;
  pointer-events: none;
  position: absolute;
}

.hero-rings {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
}

.hero-rings span {
  animation: ringFloat 10s ease-in-out infinite;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  height: clamp(180px, 24vw, 360px);
  position: absolute;
  right: clamp(22px, 10vw, 160px);
  top: 18%;
  width: clamp(180px, 24vw, 360px);
}

.hero-rings span:nth-child(2) {
  animation-delay: -3s;
  height: clamp(260px, 34vw, 520px);
  opacity: 0.62;
  right: clamp(-40px, 4vw, 80px);
  top: 36%;
  width: clamp(260px, 34vw, 520px);
}

.hero-rings span:nth-child(3) {
  animation-delay: -6s;
  border-color: rgba(85, 195, 181, 0.18);
  height: clamp(130px, 16vw, 240px);
  right: 42%;
  top: 12%;
  width: clamp(130px, 16vw, 240px);
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr);
  min-height: 430px;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 760px;
  min-width: 0;
}

.hero-copy > * {
  animation: heroRise 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-copy > *:nth-child(1) {
  animation-delay: 980ms;
}

.hero-copy > *:nth-child(2) {
  animation-delay: 1080ms;
}

.hero-copy > *:nth-child(3) {
  animation-delay: 1180ms;
}

.hero-copy > *:nth-child(4) {
  animation-delay: 1300ms;
}

.hero-copy > *:nth-child(5) {
  animation-delay: 1420ms;
}

.hero-copy > *:nth-child(6) {
  animation-delay: 1540ms;
}

.hero-brand-logo {
  animation: floatSoft 5.5s ease-in-out infinite;
  border: 0;
  border-radius: 0;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.34));
  height: 82px;
  margin-bottom: 18px;
  object-fit: contain;
  width: 255px;
}

.eyebrow,
.section-label {
  color: var(--color-muted);
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.section-dark .section-label {
  color: var(--brand-teal-soft);
}

.panel-kicker,
.program-tag {
  color: var(--color-purple-soft);
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 18px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.6vw, 6.2rem);
  letter-spacing: 0;
  line-height: 0.92;
  margin-bottom: 18px;
  max-width: 780px;
}

.word-reveal {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.word-reveal > span {
  animation: wordRise 780ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  display: inline-block;
  transform: translateY(110%);
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 3.35vw, 3.35rem);
  letter-spacing: 0;
  line-height: 1.05;
  margin-bottom: 12px;
}

h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  letter-spacing: 0;
  line-height: 1.05;
  margin-bottom: 14px;
}

.hero-lede,
.section-heading p,
.intro-copy p,
.partner-copy p,
.gallery-intro p,
.contact-section p {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.98rem, 1.24vw, 1.08rem);
  max-width: 680px;
}

.intro-copy p,
.section-heading p,
.gallery-intro p,
.contact-section p {
  color: var(--color-muted);
}

.faq-section p {
  color: var(--color-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  content: "";
  height: 100%;
  left: -120%;
  position: absolute;
  top: 0;
  transform: skewX(-22deg);
  transition: left 520ms ease;
  width: 70%;
}

.button:hover::before {
  left: 130%;
}

.button:hover {
  box-shadow: 0 14px 34px rgba(8, 120, 103, 0.22);
  transform: translateY(-2px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.button-primary {
  animation: gradientShift 8s linear infinite;
  background: var(--brand-gradient-animated);
  background-size: 220% 220%;
  color: white;
}

.button-primary:hover {
  background: linear-gradient(135deg, #9b55df 0%, #5c70aa 52%, #0b8d7a 100%);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: white;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.09);
}

.hero-panel {
  background:
    linear-gradient(145deg, rgba(148, 82, 212, 0.18), rgba(8, 120, 103, 0.12)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  transform-style: preserve-3d;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.hero-proof span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.98rem, 1.24vw, 1.08rem);
  font-weight: 650;
  min-height: 58px;
  padding: 14px 22px;
}

.hero-proof strong {
  color: white;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.scroll-cue {
  align-items: center;
  bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 800;
  gap: 10px;
  left: 50%;
  position: absolute;
  text-transform: uppercase;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-cue span {
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  height: 34px;
  position: relative;
  width: 20px;
}

.scroll-cue span::after {
  animation: scrollDot 1.6s ease-in-out infinite;
  background: white;
  border-radius: 999px;
  content: "";
  height: 5px;
  left: 50%;
  position: absolute;
  top: 7px;
  transform: translateX(-50%);
  width: 5px;
}

@keyframes scrollDot {
  50% {
    opacity: 0.35;
    transform: translate(-50%, 12px);
  }
}

@keyframes loaderMark {
  0% {
    opacity: 0;
    transform: translateY(14px) scale(0.94);
  }

  55% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  100% {
    opacity: 1;
    transform: translateY(-8px) scale(1.02);
  }
}

@keyframes loaderExit {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-100%);
    visibility: hidden;
  }
}

@keyframes heroRise {
  0% {
    opacity: 0;
    transform: translateY(26px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes wordRise {
  0% {
    opacity: 0;
    transform: translateY(110%) rotate(2deg);
  }

  100% {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

@keyframes ringFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-18px, 14px, 0) scale(1.04);
  }
}

@keyframes marqueeMove {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes logoMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 9px));
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 220% 50%;
  }
}

@keyframes heroImageDrift {
  0% {
    transform: scale(1.01) translate3d(0, 0, 0);
  }

  100% {
    transform: scale(1.06) translate3d(-1.2%, -1%, 0);
  }
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes faqAnswerIn {
  0% {
    opacity: 0;
    transform: translateY(-8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.signal-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.signal-list li {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  font-weight: 750;
  gap: 12px;
  grid-template-columns: 36px 1fr;
  padding-top: 12px;
}

.signal-list span {
  background: var(--brand-gradient);
  border-radius: 999px;
  color: white;
  display: inline-grid;
  font-size: 0.72rem;
  height: 28px;
  place-items: center;
  width: 28px;
}

.motion-strip {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  padding: 16px 0;
}

.motion-track {
  animation: marqueeMove 28s linear infinite;
  display: flex;
  gap: 28px;
  width: max-content;
}

.motion-track span {
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  display: inline-flex;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
  gap: 28px;
  text-transform: uppercase;
}

.motion-track span::after {
  background: var(--brand-gradient);
  border-radius: 999px;
  content: "";
  height: 8px;
  width: 8px;
}

.intro-section,
.creates-section,
.fdm-section,
.manifesto-section,
.audience-section,
.process-section,
.impact-section,
.gallery-section,
.contact-section,
.faq-section,
.partner-section,
.collaborations-section,
.impact-map-section,
.team-section,
.parliyouth-section,
.programs-section {
  padding: var(--space-section) 0;
}

.manifesto-section {
  overflow: hidden;
  padding: clamp(34px, 4vw, 54px) 0;
  position: relative;
}

.manifesto-section::before {
  background: var(--brand-gradient);
  background-clip: text;
  content: "NEXT BIG THING";
  font-family: var(--font-display);
  font-size: clamp(4rem, 16vw, 14rem);
  font-weight: 700;
  left: 50%;
  line-height: 0.78;
  position: absolute;
  top: 18px;
  transform: translateX(-50%);
  white-space: nowrap;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.12;
}

.manifesto-grid {
  align-items: start;
  display: grid;
  gap: clamp(16px, 2.5vw, 30px);
  grid-template-columns: 0.42fr 1.2fr 0.88fr;
  position: relative;
  z-index: 1;
}

.manifesto-grid h2 {
  margin-bottom: 0;
}

.mission-layout {
  gap: clamp(18px, 3vw, 28px);
  grid-template-columns: 0.38fr 1fr;
}

.mission-layout .mission-board {
  grid-column: 1 / -1;
}

.shift-points {
  display: grid;
  gap: 10px;
}

.shift-points article {
  background:
    linear-gradient(145deg, rgba(148, 82, 212, 0.18), rgba(8, 120, 103, 0.12)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  min-height: 82px;
  overflow: hidden;
  padding: 16px;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, min-height 260ms ease, transform 220ms ease;
  backface-visibility: hidden;
  contain: paint;
  will-change: transform;
}

.shift-points article:hover,
.shift-points article:focus-visible {
  background:
    linear-gradient(145deg, rgba(148, 82, 212, 0.26), rgba(8, 120, 103, 0.18)),
    rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.2);
  min-height: 132px;
  outline: 0;
  transform: translateY(-4px);
}

.shift-points span {
  color: var(--brand-teal-soft);
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.shift-points strong {
  color: white;
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0;
}

.shift-points p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.45;
  margin: 8px 0 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition: max-height 260ms ease, opacity 220ms ease, transform 260ms ease;
}

.shift-points article:hover p,
.shift-points article:focus-visible p {
  max-height: 80px;
  opacity: 1;
  transform: translateY(0);
}

.mission-board {
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mission-board article {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    linear-gradient(135deg, rgba(148, 82, 212, 0.2), rgba(8, 120, 103, 0.14));
  align-content: center;
  min-height: 168px;
  padding: 22px;
  position: relative;
}

.mission-board article::after {
  background: linear-gradient(180deg, var(--brand-teal-soft), transparent);
  content: "";
  inset: 14px auto 14px 0;
  opacity: 0.7;
  position: absolute;
  width: 3px;
}

.mission-board article:hover,
.mission-board article:focus-visible {
  min-height: 226px;
}

.mission-board strong {
  color: white;
  font-size: clamp(1.18rem, 1.8vw, 1.42rem);
  line-height: 1.12;
  max-width: 15ch;
}

.mission-board p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  line-height: 1.55;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition: max-height 260ms ease, opacity 220ms ease, transform 260ms ease;
}

.mission-board article:hover p,
.mission-board article:focus-visible p {
  max-height: 150px;
  opacity: 1;
  transform: translateY(0);
}

.mission-card-feature {
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
}

.intro-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 220px minmax(0, 1fr);
}

.intro-copy {
  max-width: 850px;
}

.mobile-nbt-summary {
  display: none;
}

.mobile-programs-summary {
  display: none;
}

.mobile-fdm-title {
  display: none;
}

.intro-copy p {
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.65;
}

.section-heading {
  margin-bottom: 14px;
  max-width: 920px;
}

.creates-section .section-heading {
  max-width: 780px;
}

.audience-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(148, 82, 212, 0.1), transparent 24rem),
    radial-gradient(circle at 88% 76%, rgba(8, 120, 103, 0.1), transparent 28rem),
    #ffffff;
}

.audience-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.audience-card {
  aspect-ratio: 1 / 1.12;
  background: var(--color-night);
  border: 1px solid rgba(17, 16, 22, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 18px 54px rgba(17, 16, 22, 0.07);
  color: white;
  isolation: isolate;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
  backface-visibility: hidden;
  contain: paint;
  will-change: transform;
}

.audience-card::before {
  background:
    linear-gradient(180deg, rgba(10, 13, 22, 0.04) 0%, rgba(10, 13, 22, 0.44) 55%, rgba(10, 13, 22, 0.9) 100%),
    linear-gradient(135deg, rgba(148, 82, 212, 0.28), rgba(8, 120, 103, 0.2));
  content: "";
  inset: 0;
  opacity: 0.82;
  position: absolute;
  transition: opacity 260ms ease;
  z-index: 1;
}

.audience-card::after {
  background: linear-gradient(180deg, transparent, rgba(10, 13, 22, 0.46));
  content: "";
  inset: auto 0 0;
  height: 50%;
  position: absolute;
  z-index: 2;
}

.audience-card:hover,
.audience-card:focus-visible {
  border-color: rgba(148, 82, 212, 0.3);
  box-shadow: 0 26px 74px rgba(17, 16, 22, 0.12);
  outline: 0;
  transform: translateY(-6px);
}

.audience-card:hover::before,
.audience-card:focus-visible::before {
  opacity: 0.96;
}

.audience-image {
  backface-visibility: hidden;
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transition: filter 260ms ease, transform 320ms ease;
  width: 100%;
}

.audience-card:hover .audience-image,
.audience-card:focus-visible .audience-image {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.04);
}

.audience-card span {
  color: rgba(255, 255, 255, 0.74);
  display: block;
  font-size: 0.82rem;
  font-weight: 900;
  left: 16px;
  position: absolute;
  top: 16px;
  z-index: 3;
}

.audience-card .tile-copy {
  bottom: 18px;
  display: grid;
  gap: 8px;
  left: 16px;
  position: absolute;
  right: 16px;
  transform: translateY(calc(100% - 1.35rem));
  transition: transform 260ms ease;
  z-index: 3;
}

.audience-card h3 {
  color: white;
  font-size: clamp(1.08rem, 1.45vw, 1.35rem);
  line-height: 1.05;
  margin: 0;
  text-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

.audience-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 750;
  line-height: 1.32;
  margin: 0;
  opacity: 0;
  transition: opacity 220ms ease;
}

.audience-card:hover .tile-copy,
.audience-card:focus-visible .tile-copy {
  transform: translateY(0);
}

.audience-card:hover p,
.audience-card:focus-visible p {
  opacity: 1;
}

.creation-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.creation-card {
  aspect-ratio: 4 / 5;
  background: var(--color-night);
  border: 1px solid rgba(17, 16, 22, 0.1);
  border-radius: var(--radius);
  color: white;
  isolation: isolate;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  transform-style: preserve-3d;
  transition: box-shadow 260ms ease, transform 260ms ease, border-color 260ms ease;
  backface-visibility: hidden;
  contain: paint;
  will-change: transform;
}

.creation-card::before {
  background:
    linear-gradient(180deg, rgba(10, 13, 22, 0.08) 0%, rgba(10, 13, 22, 0.48) 54%, rgba(10, 13, 22, 0.9) 100%),
    linear-gradient(135deg, rgba(148, 82, 212, 0.3), rgba(8, 120, 103, 0.22));
  content: "";
  inset: 0;
  opacity: 0.82;
  position: absolute;
  transition: opacity 260ms ease;
  z-index: 1;
}

.creation-card::after {
  background: linear-gradient(180deg, transparent, rgba(10, 13, 22, 0.42));
  content: "";
  inset: auto 0 0;
  height: 48%;
  position: absolute;
  z-index: 2;
}

.creation-card:hover,
.creation-card:focus-visible {
  border-color: rgba(148, 82, 212, 0.32);
  box-shadow: 0 28px 70px rgba(17, 16, 22, 0.12);
  outline: 0;
  transform: translateY(-6px);
}

.creation-card:hover::before,
.creation-card:focus-visible::before {
  opacity: 0.96;
}

.card-index {
  color: rgba(255, 255, 255, 0.74);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  left: 18px;
  margin: 0;
  position: absolute;
  top: 18px;
  z-index: 3;
}

.creation-image {
  backface-visibility: hidden;
  height: 100%;
  inset: 0;
  margin: 0;
  object-fit: cover;
  position: absolute;
  transition: filter 260ms ease, transform 320ms ease;
  width: 100%;
}

.creation-card:hover .creation-image {
  filter: saturate(1.1) contrast(1.04);
  transform: scale(1.04);
}

.creation-card .tile-copy {
  bottom: 22px;
  display: grid;
  gap: 10px;
  left: 18px;
  position: absolute;
  right: 18px;
  transform: translateY(calc(100% - 1.65rem));
  transition: transform 260ms ease;
  z-index: 3;
}

.creation-card h3 {
  color: white;
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  line-height: 1.05;
  margin: 0;
  text-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

.creation-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.38;
  margin: 0;
  opacity: 0;
  transition: opacity 220ms ease;
}

.creation-card:hover .tile-copy,
.creation-card:focus-visible .tile-copy {
  transform: translateY(0);
}

.creation-card:hover p,
.creation-card:focus-visible p {
  opacity: 1;
}

.program-feature p,
.program-upcoming p,
.fdm-section p {
  color: var(--color-muted);
}

.program-layout,
.partner-grid,
.contact-grid {
  display: grid;
  gap: clamp(28px, 5vw, 58px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.65fr);
}

.programs-section .section-heading p,
.partner-section p {
  color: rgba(255, 255, 255, 0.72);
}

.program-lab {
  background:
    linear-gradient(145deg, rgba(148, 82, 212, 0.15), rgba(8, 120, 103, 0.12)),
    rgba(255, 255, 255, 0.07);
  border: 1px solid var(--color-line-light);
  border-radius: var(--radius);
  display: grid;
  overflow: hidden;
}

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

.program-tab {
  background: rgba(255, 255, 255, 0.08);
  border: 0;
  color: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 850;
  min-height: 58px;
  padding: 12px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.program-tab.is-active {
  background: var(--brand-gradient);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.26);
  color: white;
}

.program-tab:hover {
  color: white;
}

.program-tab.is-active:hover {
  color: white;
}

.program-tab:not(.is-active):hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.program-feature {
  background:
    radial-gradient(circle at top right, rgba(148, 82, 212, 0.18), transparent 14rem),
    radial-gradient(circle at bottom left, rgba(8, 120, 103, 0.13), transparent 13rem),
    white;
  color: var(--color-ink);
  min-height: 235px;
  position: relative;
  transition: opacity 220ms ease, transform 260ms ease;
}

.program-feature::after {
  background: linear-gradient(90deg, transparent, rgba(148, 82, 212, 0.18), rgba(8, 120, 103, 0.16), transparent);
  content: "";
  height: 1px;
  left: 28px;
  position: absolute;
  right: 28px;
  top: 0;
}

.program-stack {
  display: grid;
  gap: 16px;
}

.program-feature,
.program-upcoming {
  border: 1px solid var(--color-line-light);
  border-radius: var(--radius);
  padding: 24px;
}

.program-panel {
  border: 0;
  border-radius: 0;
}

.program-upcoming {
  background: rgba(255, 255, 255, 0.08);
}

.text-link {
  color: var(--brand-teal);
  display: inline-flex;
  font-weight: 850;
  margin-top: 18px;
}

.text-link::after {
  content: " ->";
}

.fdm-grid {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 62px);
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
}

.program-faq-section {
  background:
    radial-gradient(circle at 16% 12%, rgba(148, 82, 212, 0.1), transparent 27rem),
    radial-gradient(circle at 86% 84%, rgba(8, 120, 103, 0.1), transparent 28rem),
    #ffffff;
}

.program-faq-heading {
  margin-bottom: 26px;
  max-width: 760px;
}

.program-faq-heading p:not(.eyebrow) {
  color: var(--color-muted);
}

.program-faq-grid {
  display: grid;
  gap: clamp(28px, 5vw, 56px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.program-faq-group {
  min-width: 0;
}

.program-faq-group-heading {
  border-bottom: 1px solid rgba(17, 16, 22, 0.18);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 0;
  padding-bottom: 14px;
}

.program-faq-group-heading span {
  background: var(--faq-gradient);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  font-weight: 900;
  text-transform: uppercase;
}

.program-faq-group-heading h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  margin: 0;
  text-align: right;
}

.program-faq-group .faq-item:first-child {
  border-top: 0;
}

.program-faq-group .faq-item summary {
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  min-height: 70px;
  padding-left: 18px;
}

.program-faq-group .faq-item::before {
  left: 0;
  width: 2px;
}

.program-faq-group .faq-item p {
  margin-left: 18px;
}

.parliyouth-section {
  background:
    linear-gradient(180deg, rgba(10, 13, 22, 0.94), rgba(10, 13, 22, 0.98)),
    radial-gradient(circle at 12% 0%, rgba(148, 82, 212, 0.3), transparent 30rem),
    radial-gradient(circle at 90% 40%, rgba(8, 120, 103, 0.26), transparent 30rem),
    var(--color-night);
  overflow: hidden;
  position: relative;
}

.parliyouth-section::before {
  background: var(--brand-gradient);
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.parliyouth-layout {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 62px);
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
}

.parliyouth-copy {
  max-width: 650px;
}

.parliyouth-copy p {
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
}

.parliyouth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.parliyouth-media {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.parliyouth-visual {
  margin: 0;
  position: relative;
  transform-style: preserve-3d;
}

.parliyouth-visual::before {
  background: var(--brand-gradient);
  border-radius: var(--radius);
  content: "";
  inset: -12px 12px 12px -12px;
  opacity: 0.72;
  position: absolute;
  z-index: 0;
}

.parliyouth-visual img {
  aspect-ratio: 16 / 11;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  height: 100%;
  object-fit: cover;
  position: relative;
  width: 100%;
  z-index: 1;
}

.parliyouth-visual figcaption {
  backdrop-filter: blur(16px);
  background: rgba(10, 13, 22, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  bottom: 18px;
  color: white;
  font-size: 0.88rem;
  font-weight: 850;
  left: 18px;
  margin: 0;
  padding: 10px 14px;
  position: absolute;
  z-index: 1;
}

.parliyouth-track {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.parliyouth-track article {
  background:
    linear-gradient(145deg, rgba(148, 82, 212, 0.13), rgba(8, 120, 103, 0.1)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  min-height: 155px;
  padding: 24px;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.parliyouth-track article:hover {
  background:
    linear-gradient(145deg, rgba(148, 82, 212, 0.2), rgba(8, 120, 103, 0.16)),
    rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateY(-6px);
}

.parliyouth-track span {
  color: var(--brand-teal-soft);
  display: inline-block;
  font-weight: 900;
  margin-bottom: 28px;
}

.parliyouth-track h3 {
  color: white;
}

.parliyouth-track p {
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 0;
}

.fdm-photo {
  margin: 0;
}

.fdm-photo img,
.moment img {
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.fdm-photo img {
  aspect-ratio: 5 / 6;
  box-shadow: var(--shadow);
}

.fdm-stats {
  border-top: 1px solid var(--color-line);
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
  padding-top: 18px;
}

.fdm-stats div {
  background:
    radial-gradient(circle at top left, rgba(148, 82, 212, 0.1), transparent 9rem),
    white;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 16px;
  transition: border-color 180ms ease, transform 180ms ease;
}

.fdm-stats div:hover {
  border-color: rgba(8, 120, 103, 0.35);
  transform: translateY(-4px);
}

.fdm-stats strong {
  background: var(--brand-gradient);
  background-clip: text;
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1;
  margin-bottom: 8px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fdm-stats span {
  color: var(--color-muted);
  display: block;
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.35;
}

.parliyouth-stats.fdm-stats {
  border-top-color: rgba(255, 255, 255, 0.16);
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
  padding-top: 0;
}

.parliyouth-stats.fdm-stats div {
  display: grid;
  gap: 8px;
  min-height: 108px;
  padding: 14px 16px;
}

.parliyouth-stats.fdm-stats strong {
  font-size: clamp(1.65rem, 2.55vw, 2.25rem);
  margin-bottom: 0;
  overflow-wrap: normal;
  word-break: normal;
}

.parliyouth-stats.fdm-stats .stat-location {
  font-size: clamp(1.2rem, 1.75vw, 1.55rem);
  line-height: 1.05;
}

.parliyouth-stats.fdm-stats span {
  font-size: 0.82rem;
  max-width: 28ch;
}

@media (max-width: 640px) {
  .parliyouth-stats.fdm-stats {
    grid-template-columns: 1fr;
  }

  .parliyouth-stats.fdm-stats div {
    min-height: 0;
  }
}

.fdm-feedback-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(148, 82, 212, 0.08), transparent 20rem),
    linear-gradient(180deg, #ffffff 0%, #f6fbfb 100%);
  padding: clamp(32px, 5vw, 54px) 0;
}

.fdm-feedback-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  max-width: 760px;
}

.fdm-feedback-heading h2 {
  margin-bottom: 0;
}

.fdm-feedback-grid {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
}

.fdm-feedback-card {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(17, 16, 22, 0.12);
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  position: relative;
  transition: border-color 220ms ease;
}

.fdm-feedback-card:first-child {
  border-top: 1px solid rgba(17, 16, 22, 0.12);
}

.fdm-feedback-card::before {
  background: var(--brand-gradient);
  bottom: 16px;
  content: "";
  left: 0;
  position: absolute;
  top: 16px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 240ms ease;
  width: 3px;
}

.fdm-feedback-card:hover,
.fdm-feedback-card:focus-within,
.fdm-feedback-card[open] {
  border-color: rgba(8, 120, 103, 0.28);
  box-shadow: none;
  transform: none;
}

.fdm-feedback-card:hover::before,
.fdm-feedback-card:focus-within::before,
.fdm-feedback-card[open]::before {
  transform: scaleY(1);
}

.fdm-feedback-card summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  list-style: none;
  min-height: 72px;
  padding: 16px 70px 16px 18px;
  position: relative;
}

.fdm-feedback-card summary::-webkit-details-marker {
  display: none;
}

.fdm-feedback-card summary::after {
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  color: var(--color-muted);
  content: "";
  height: 8px;
  position: absolute;
  right: 32px;
  transform: rotate(45deg);
  transition: transform 220ms ease, color 220ms ease;
  width: 8px;
}

.fdm-feedback-card summary::before {
  background: rgba(17, 16, 22, 0.04);
  border: 1px solid rgba(17, 16, 22, 0.08);
  border-radius: 999px;
  content: "";
  height: 36px;
  position: absolute;
  right: 18px;
  transition: background 220ms ease, border-color 220ms ease;
  width: 36px;
}

.fdm-feedback-card[open] summary::after {
  color: #7f42bd;
  transform: rotate(225deg);
}

.fdm-feedback-card[open] summary::before {
  background: linear-gradient(135deg, rgba(36, 115, 101, 0.12), rgba(127, 66, 189, 0.14));
  border-color: rgba(127, 66, 189, 0.24);
}

.fdm-feedback-card p {
  color: var(--color-ink);
  font-size: clamp(0.94rem, 1.1vw, 1rem);
  font-weight: 650;
  line-height: 1.65;
  margin: -4px 70px 20px 18px;
  max-width: 900px;
  padding-top: 0;
}

.fdm-feedback-card strong {
  background: var(--brand-gradient);
  background-clip: text;
  color: var(--color-ink);
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  letter-spacing: 0;
  -webkit-background-clip: text;
}

.fdm-feedback-card[open] strong,
.fdm-feedback-card:hover strong,
.fdm-feedback-card:focus-within strong {
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.fdm-feedback-card em {
  color: var(--color-muted);
  display: block;
  font-size: 0.84rem;
  font-style: normal;
  font-weight: 800;
  margin-top: 4px;
}

.fdm-visual {
  aspect-ratio: 1;
  background:
    linear-gradient(135deg, rgba(148, 82, 212, 0.16), rgba(8, 120, 103, 0.22)),
    var(--color-night);
  border-radius: var(--radius);
  min-height: 320px;
  padding: 22px;
  position: relative;
}

.orbit-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: var(--radius);
  color: var(--color-ink);
  font-weight: 850;
  padding: 15px 18px;
  position: absolute;
}

.orbit-card.primary {
  background: var(--brand-gradient);
  color: white;
  left: 26px;
  top: 26px;
}

.orbit-card:nth-child(2) {
  right: 30px;
  top: 34%;
}

.orbit-card:nth-child(3) {
  bottom: 30px;
  left: 20%;
}

.orbit-card:nth-child(4) {
  bottom: 24%;
  right: 12%;
}

.skill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.skill-cloud span {
  background: white;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  color: var(--color-ink);
  font-weight: 750;
  padding: 10px 14px;
}

.process-section {
  background: white;
}

.process-grid {
  align-items: start;
  display: grid;
  gap: clamp(28px, 5vw, 58px);
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.7fr);
}

.process-grid-compact {
  align-items: center;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
}

.timeline {
  border-left: 1px solid var(--color-line);
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0 0 0 22px;
}

.timeline li {
  align-items: center;
  border-bottom: 1px solid var(--color-line);
  display: grid;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 850;
  gap: 16px;
  grid-template-columns: 54px 1fr;
  min-height: 64px;
}

.timeline span {
  color: var(--brand-teal);
  font-size: 0.82rem;
  font-weight: 900;
}

.format-cards {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.format-card {
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.format-card:hover {
  border-color: rgba(148, 82, 212, 0.34);
  box-shadow: 0 18px 50px rgba(17, 16, 22, 0.08);
  transform: translateY(-5px);
}

.format-card p {
  color: var(--color-muted);
  margin-bottom: 0;
}

.format-board {
  display: grid;
  gap: 12px;
}

.format-timeline-board {
  background:
    radial-gradient(circle at 12% 10%, rgba(148, 82, 212, 0.12), transparent 16rem),
    radial-gradient(circle at 90% 82%, rgba(36, 115, 101, 0.12), transparent 18rem),
    var(--color-paper);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: 0 18px 54px rgba(17, 16, 22, 0.07);
  overflow: hidden;
  padding: clamp(18px, 2.4vw, 28px);
}

.format-flow {
  display: grid;
  gap: clamp(12px, 1.8vw, 20px);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  justify-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.format-flow::before {
  background: linear-gradient(90deg, #247365, #7f42bd);
  content: "";
  height: 3px;
  left: 10%;
  opacity: 0.28;
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.format-flow li {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9)),
    white;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  box-shadow: 0 14px 42px rgba(17, 16, 22, 0.06);
  cursor: default;
  display: flex;
  flex-direction: column;
  height: clamp(112px, 9vw, 132px);
  justify-content: center;
  min-height: 0;
  overflow: hidden;
  padding: 18px;
  position: relative;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
  width: clamp(112px, 9vw, 132px);
  z-index: 1;
}

.format-flow li:first-child {
  grid-column: auto;
}

.format-flow li::before {
  background: linear-gradient(135deg, #247365, #7f42bd);
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 220ms ease;
  z-index: -1;
}

.format-flow li:hover,
.format-flow li:focus-visible {
  border-color: rgba(148, 82, 212, 0.32);
  box-shadow: 0 24px 64px rgba(17, 16, 22, 0.11);
  outline: 0;
  transform: translateY(-6px);
}

.format-flow li:hover::before,
.format-flow li:focus-visible::before {
  opacity: 1;
}

.format-flow span {
  align-items: center;
  background: rgba(17, 16, 22, 0.06);
  border-radius: 999px;
  color: #247365;
  display: inline-flex;
  font-size: 0.74rem;
  font-weight: 950;
  height: 34px;
  justify-content: center;
  margin: 0 auto 10px;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease;
  width: 34px;
}

.format-flow strong {
  color: var(--color-ink);
  display: block;
  font-family: var(--font-display);
  font-size: clamp(0.96rem, 1.18vw, 1.14rem);
  line-height: 1.02;
  min-height: 2.3em;
  text-align: center;
  transition: opacity 180ms ease, transform 220ms ease;
}

.format-flow p {
  color: white;
  font-size: clamp(0.76rem, 0.9vw, 0.86rem);
  font-weight: 750;
  inset: 50% 17px auto;
  line-height: 1.35;
  margin: 0;
  opacity: 0;
  position: absolute;
  text-align: center;
  transform: translateY(-34%) scale(0.96);
  transition: opacity 180ms ease, transform 220ms ease;
}

.format-flow li:hover span,
.format-flow li:focus-visible span {
  opacity: 0;
}

.format-flow li:hover strong,
.format-flow li:focus-visible strong {
  opacity: 0;
  transform: translateY(-12px);
}

.format-flow li:hover p,
.format-flow li:focus-visible p {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.impact-grid {
  display: grid;
  gap: clamp(16px, 2.4vw, 28px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-items: center;
}

.metric {
  align-items: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9)),
    white;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  box-shadow: 0 18px 54px rgba(17, 16, 22, 0.08);
  display: flex;
  flex-direction: column;
  height: clamp(176px, 18vw, 220px);
  justify-content: center;
  overflow: hidden;
  padding: 26px;
  position: relative;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
  backface-visibility: hidden;
  contain: paint;
  will-change: transform;
  width: clamp(176px, 18vw, 220px);
}

.metric::before {
  background: linear-gradient(135deg, #247365, #7f42bd);
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 220ms ease;
  z-index: 0;
}

.metric:hover,
.metric:focus-visible {
  border-color: rgba(127, 66, 189, 0.32);
  box-shadow: 0 26px 70px rgba(17, 16, 22, 0.13);
  outline: 0;
  transform: translateY(-6px);
}

.metric:hover::before,
.metric:focus-visible::before {
  opacity: 1;
}

.metric strong {
  background: var(--brand-gradient);
  background-clip: text;
  display: block;
  font-size: clamp(1.42rem, 1.95vw, 1.86rem);
  letter-spacing: 0;
  line-height: 1.04;
  margin-bottom: 0;
  min-height: 0;
  position: relative;
  text-align: center;
  transition: opacity 180ms ease, transform 220ms ease;
  z-index: 1;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metric span {
  color: white;
  display: block;
  font-size: clamp(0.98rem, 1.14vw, 1.08rem);
  font-weight: 750;
  inset: 50% 24px auto;
  line-height: 1.32;
  opacity: 0;
  position: absolute;
  text-align: center;
  transform: translateY(-34%) scale(0.96);
  transition: opacity 180ms ease, transform 220ms ease;
  z-index: 1;
}

.metric:hover strong,
.metric:focus-visible strong {
  opacity: 0;
  transform: translateY(-12px);
}

.metric:hover span,
.metric:focus-visible span {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.impact-map-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(148, 82, 212, 0.1), transparent 28rem),
    radial-gradient(circle at 84% 76%, rgba(8, 120, 103, 0.08), transparent 30rem),
    #ffffff;
  overflow: hidden;
}

.impact-map-layout {
  align-items: start;
  display: grid;
  gap: clamp(26px, 4vw, 46px);
  grid-template-columns: 1fr;
}

.impact-map-copy p:not(.eyebrow) {
  color: var(--color-muted);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  max-width: 760px;
}

.impact-map-board {
  align-items: start;
  display: grid;
  gap: clamp(18px, 3vw, 34px);
  grid-template-columns: minmax(0, 1.38fr) minmax(300px, 0.82fr);
  width: 100%;
}

.lebanon-map {
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 50% 48%, rgba(148, 82, 212, 0.08), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(247, 248, 251, 0.96)),
    white;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(17, 16, 22, 0.08);
  min-height: 0;
  overflow: hidden;
  position: relative;
  --map-offset-y: 4%;
}

.lebanon-map::before {
  background-image:
    linear-gradient(rgba(17, 16, 22, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 16, 22, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(180deg, black, transparent 92%);
  opacity: 0.52;
  position: absolute;
  -webkit-mask-image: linear-gradient(180deg, black, transparent 92%);
}

.map-shape {
  border: 0;
  filter: grayscale(1) contrast(1.04) opacity(0.72);
  height: 92%;
  left: 0;
  object-fit: contain;
  object-position: center;
  position: absolute;
  top: var(--map-offset-y);
  width: 100%;
}

.map-pin {
  animation: pinEnter 420ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: var(--pin-delay, 0ms);
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: grid;
  height: 42px;
  left: var(--x);
  padding: 0;
  place-items: center;
  position: absolute;
  top: calc(var(--y) + var(--map-offset-y));
  transform: translate(-50%, -50%);
  transition: opacity 220ms ease, transform 220ms ease;
  width: 42px;
  z-index: 2;
}

.map-pin:focus-visible,
.map-pin.is-active {
  z-index: 5;
}

.map-pin::before {
  animation: pinPulse 2.4s ease-out infinite;
  background: rgba(148, 82, 212, 0.16);
  border: 1px solid rgba(148, 82, 212, 0.26);
  border-radius: 999px;
  content: "";
  height: 34px;
  position: absolute;
  width: 34px;
}

.map-pin-dot {
  background: var(--brand-purple);
  border: 3px solid white;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(17, 16, 22, 0.24);
  display: block;
  height: 14px;
  position: relative;
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
  width: 14px;
}

.map-pin.is-active::before {
  animation-duration: 1.8s;
  background: rgba(148, 82, 212, 0.2);
  height: 40px;
  width: 40px;
}

.map-pin.is-active .map-pin-dot {
  background: #7f42bd;
  box-shadow: 0 0 0 7px rgba(148, 82, 212, 0.16), 0 16px 30px rgba(17, 16, 22, 0.24);
  transform: scale(1.22);
}

.map-pin:hover,
.map-pin:focus-visible {
  outline: 0;
  transform: translate(-50%, -50%) scale(1.16);
}

.map-tooltip {
  background: rgba(17, 16, 22, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  bottom: calc(100% - 2px);
  color: white;
  font-size: 0.72rem;
  font-weight: 850;
  left: 50%;
  opacity: 0;
  padding: 6px 9px;
  pointer-events: none;
  position: absolute;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.map-pin:hover .map-tooltip,
.map-pin:focus-visible .map-tooltip,
.map-pin.is-active .map-tooltip {
  opacity: 1;
  transform: translate(-50%, 0);
}

.map-detail-card {
  background:
    radial-gradient(circle at top right, rgba(148, 82, 212, 0.12), transparent 12rem),
    white;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(17, 16, 22, 0.08);
  color: var(--color-ink);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
  overflow: hidden;
  padding: clamp(24px, 3vw, 36px);
  position: relative;
}

.map-detail-card::before {
  background: var(--brand-gradient);
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.map-detail-kicker {
  color: var(--brand-purple);
  font-size: 0.82rem;
  font-weight: 900;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.map-detail-card h3 {
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 0.98;
  margin: 0 0 18px;
  transition: opacity 120ms ease;
}

.map-detail-card [data-map-detail-text] {
  color: var(--color-muted);
  font-weight: 700;
  margin: 0;
  transition: opacity 120ms ease;
}

.map-detail-footer {
  align-items: center;
  border-top: 1px solid var(--color-line);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 16px;
}

.map-detail-footer span {
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.map-detail-actions {
  display: flex;
  gap: 8px;
}

.map-detail-actions button {
  background: white;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  color: var(--color-ink);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 850;
  min-height: 34px;
  padding: 8px 12px;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.map-detail-actions button:hover,
.map-detail-actions button:focus-visible {
  border-color: rgba(148, 82, 212, 0.34);
  color: var(--brand-purple);
  outline: 0;
  transform: translateY(-1px);
}

@keyframes pinPulse {
  70%,
  100% {
    opacity: 0;
    transform: scale(2.25);
  }
}

.partner-paths {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.collaborations-section {
  background:
    radial-gradient(circle at 16% 12%, rgba(148, 82, 212, 0.14), transparent 26rem),
    radial-gradient(circle at 82% 75%, rgba(8, 120, 103, 0.12), transparent 26rem),
    #ffffff;
  overflow: hidden;
}

.collaborations-heading {
  margin-bottom: 24px;
  max-width: 760px;
}

.logo-marquee {
  border-bottom: 1px solid var(--color-line);
  border-top: 1px solid var(--color-line);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  overflow: hidden;
  padding: 18px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.logo-track {
  animation: logoMarquee 24s linear infinite;
  display: flex;
  gap: 18px;
  width: max-content;
}

.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

.collab-logo {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 248, 251, 0.9)),
    white;
  border: 1px solid rgba(17, 16, 22, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(17, 16, 22, 0.08);
  color: var(--color-night);
  display: inline-flex;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 700;
  height: 118px;
  justify-content: center;
  min-width: 230px;
  position: relative;
  transition: border-color 220ms ease, box-shadow 220ms ease, color 220ms ease, transform 220ms ease;
}

.collab-logo::after {
  background: var(--brand-gradient);
  bottom: 0;
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
  width: 100%;
}

.collab-logo:hover {
  border-color: rgba(8, 120, 103, 0.3);
  box-shadow: 0 24px 70px rgba(17, 16, 22, 0.13);
  color: var(--brand-purple);
  transform: translateY(-5px);
}

.collab-logo:hover::after {
  transform: scaleX(1);
}

.collab-logo-image {
  background: white;
  padding: 18px 24px;
}

.collab-logo-image img {
  filter: saturate(0.96) contrast(1.04);
  height: 72px;
  object-fit: contain;
  width: 170px;
}

.collab-logo-image.logo-boost img {
  height: 96px;
  width: 178px;
}

.collab-logo-image.logo-tall img {
  height: 104px;
  width: 78px;
}

.team-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(148, 82, 212, 0.12), transparent 28rem),
    radial-gradient(circle at 92% 80%, rgba(8, 120, 103, 0.12), transparent 28rem),
    var(--color-paper);
}

@keyframes pinEnter {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.65);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.team-directory-section {
  padding: var(--space-section) 0;
}

.team-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86)),
    white;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: 0 18px 54px rgba(17, 16, 22, 0.08);
  cursor: default;
  min-height: 172px;
  overflow: hidden;
  padding: 22px;
  position: relative;
  transform-style: preserve-3d;
  transition: border-color 220ms ease, box-shadow 220ms ease, min-height 260ms ease, transform 220ms ease;
}

.team-card::before {
  background: var(--brand-gradient);
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.team-card:hover,
.team-card:focus-visible {
  border-color: rgba(8, 120, 103, 0.32);
  box-shadow: 0 26px 80px rgba(17, 16, 22, 0.13);
  min-height: 230px;
  outline: 0;
  transform: translateY(-6px);
}

.team-avatar {
  align-items: center;
  background: var(--brand-gradient);
  border-radius: 999px;
  color: white;
  display: flex;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  height: 58px;
  justify-content: center;
  margin-bottom: 28px;
  width: 58px;
}

.team-card h3 {
  margin-bottom: 0;
}

.team-reveal {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(12px);
  transition: max-height 260ms ease, opacity 220ms ease, transform 260ms ease;
}

.team-card:hover .team-reveal,
.team-card:focus-visible .team-reveal {
  max-height: 90px;
  opacity: 1;
  transform: translateY(0);
}

.team-role {
  color: var(--brand-teal);
  font-size: 0.78rem;
  font-weight: 850;
  margin: 0;
  text-transform: uppercase;
}

.team-message {
  color: var(--color-muted);
  margin: 0;
}

.team-preview-card {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88)),
    white;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: 0 18px 54px rgba(17, 16, 22, 0.08);
  color: var(--color-ink);
  display: flex;
  gap: 18px;
  margin: 0 auto;
  max-width: 720px;
  overflow: hidden;
  padding: 22px;
  position: relative;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.team-preview-card::before {
  background: var(--brand-gradient);
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.team-preview-card:hover {
  border-color: rgba(8, 120, 103, 0.32);
  box-shadow: 0 26px 80px rgba(17, 16, 22, 0.13);
  transform: translateY(-6px);
}

.team-preview-card .team-avatar {
  flex: 0 0 auto;
  font-size: 1rem;
  margin: 0;
}

.team-preview-copy {
  display: grid;
  gap: 6px;
}

.team-preview-copy strong {
  font-family: var(--font-display);
  font-size: 1.18rem;
}

.team-preview-copy span {
  color: var(--color-muted);
}

.team-directory-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-click-grid {
  align-items: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 920px;
}

.team-profile-card {
  background: white;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: 0 18px 54px rgba(17, 16, 22, 0.08);
  overflow: hidden;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.team-profile-card:hover,
.team-profile-card:focus-visible {
  border-color: rgba(8, 120, 103, 0.32);
  box-shadow: 0 26px 80px rgba(17, 16, 22, 0.13);
  outline: 0;
  transform: translateY(-6px);
}

.team-profile-photo {
  aspect-ratio: 4 / 3;
  background: var(--color-night);
  margin: 0;
  overflow: hidden;
}

.team-profile-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.team-profile-copy {
  padding: 22px;
}

.team-profile-copy h3 {
  margin-bottom: 8px;
}

.team-click-card {
  cursor: pointer;
}

.team-click-card[open] {
  animation: teamCardOpen 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.team-click-card summary {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: 104px minmax(0, 1fr);
  list-style: none;
  padding: 22px;
}

.team-click-card summary::-webkit-details-marker {
  display: none;
}

.team-click-card .team-profile-copy {
  position: relative;
  min-width: 0;
  padding: 0;
  padding-right: 54px;
}

.team-click-card .team-profile-copy::after {
  align-items: center;
  background: var(--brand-gradient);
  border-radius: 999px;
  color: white;
  content: "+";
  display: inline-flex;
  font-size: 1.1rem;
  font-weight: 800;
  height: 30px;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 260ms ease, box-shadow 260ms ease;
  width: 30px;
}

.team-click-card[open] .team-profile-copy::after {
  content: "-";
  box-shadow: 0 10px 24px rgba(8, 120, 103, 0.22);
  transform: translateY(-50%) rotate(180deg);
}

.team-click-card h3 {
  margin-bottom: 0;
  max-width: 100%;
  overflow-wrap: break-word;
}

.team-click-card .team-profile-photo {
  aspect-ratio: 1;
  border: 3px solid white;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(17, 16, 22, 0.14);
  height: 104px;
  width: 104px;
}

.team-message-panel {
  border-top: 1px solid var(--color-line);
  animation: teamMessageReveal 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
  padding: 0 22px 22px;
  transform-origin: top;
}

.team-message-panel p {
  color: var(--color-muted);
  line-height: 1.58;
  margin: 0;
}

@keyframes teamCardOpen {
  0% {
    box-shadow: 0 18px 54px rgba(17, 16, 22, 0.08);
    transform: translateY(0) scale(0.992);
  }

  100% {
    box-shadow: 0 26px 80px rgba(17, 16, 22, 0.13);
    transform: translateY(-4px) scale(1);
  }
}

@keyframes teamMessageReveal {
  0% {
    opacity: 0;
    transform: translateY(-8px) scaleY(0.96);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

.team-post {
  color: var(--color-ink);
  font-size: 0.94rem;
  font-weight: 800;
  margin: 0 0 12px;
}

.section-logo-mark {
  border: 0;
  border-radius: 0;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.24));
  height: 70px;
  margin-bottom: 16px;
  object-fit: contain;
  width: 230px;
}

.partner-paths a {
  border: 1px solid var(--color-line-light);
  border-radius: var(--radius);
  color: white;
  font-weight: 800;
  padding: 18px;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.partner-paths a:hover {
  background: linear-gradient(135deg, rgba(148, 82, 212, 0.2), rgba(8, 120, 103, 0.16));
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateX(8px);
}

.gallery-intro {
  max-width: 760px;
}

.moment-grid {
  align-items: stretch;
  display: grid;
  gap: 18px;
  grid-template-columns: 1.35fr 0.85fr;
  margin-top: 20px;
}

.moment-grid-expanded {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
}

.moment {
  margin: 0;
}

.moment-large {
  grid-row: span 2;
}

.moment img {
  aspect-ratio: 4 / 3;
  box-shadow: 0 18px 50px rgba(17, 16, 22, 0.1);
  image-rendering: auto;
  transition: filter 220ms ease, transform 260ms ease, box-shadow 260ms ease;
}

.moment-large img {
  aspect-ratio: auto;
  min-height: 390px;
}

.moment-grid-expanded .moment-large img {
  min-height: 420px;
}

.moment {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: 0 18px 54px rgba(17, 16, 22, 0.08);
  overflow: hidden;
  transform-style: preserve-3d;
}

.moment img {
  border: 0;
  border-bottom: 1px solid var(--color-line);
  border-radius: 0;
  display: block;
}

.moment:hover img {
  box-shadow: 0 28px 80px rgba(17, 16, 22, 0.16);
  filter: saturate(1.08) contrast(1.05);
}

.moment figcaption {
  color: rgba(13, 11, 18, 0.72);
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.45;
  margin: 0;
  min-height: 74px;
  padding: 14px 16px 16px;
}

.faq-section {
  background:
    radial-gradient(circle at 16% 18%, rgba(148, 82, 212, 0.12), transparent 28rem),
    radial-gradient(circle at 88% 72%, rgba(8, 120, 103, 0.12), transparent 28rem),
    #ffffff;
}

.faq-layout {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}

.faq-layout .section-heading {
  max-width: 820px;
}

.faq-list {
  display: grid;
  gap: 0;
}

.faq-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(17, 16, 22, 0.12);
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  position: relative;
  transition: border-color 220ms ease;
}

.faq-item:first-child {
  border-top: 1px solid rgba(17, 16, 22, 0.12);
}

.faq-item::before {
  background: var(--faq-gradient);
  bottom: 18px;
  content: "";
  left: 0;
  position: absolute;
  top: 18px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 240ms ease;
  width: 3px;
}

.faq-item[open] {
  border-color: rgba(127, 66, 189, 0.28);
}

.faq-item[open]::before {
  transform: scaleY(1);
}

.faq-item summary {
  align-items: center;
  color: var(--color-ink);
  cursor: pointer;
  display: flex;
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
  font-weight: 700;
  gap: 24px;
  justify-content: space-between;
  line-height: 1.25;
  list-style: none;
  min-height: 76px;
  padding: 20px 70px 20px 18px;
  position: relative;
  transition: color 180ms ease;
}

.faq-item[open] summary {
  background: var(--faq-gradient);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
}

.faq-item summary span {
  max-width: 100%;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  background: rgba(17, 16, 22, 0.04);
  border: 1px solid rgba(17, 16, 22, 0.08);
  border-radius: 999px;
  box-shadow: none;
  content: "";
  height: 36px;
  position: absolute;
  right: 18px;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
  width: 36px;
}

.faq-item summary::after {
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  color: var(--color-muted);
  content: "";
  height: 8px;
  position: absolute;
  right: 32px;
  transform: rotate(45deg);
  transition: transform 220ms ease, color 220ms ease;
  width: 8px;
}

.faq-item[open] summary::before {
  background: linear-gradient(135deg, rgba(36, 115, 101, 0.12), rgba(127, 66, 189, 0.14));
  border-color: rgba(127, 66, 189, 0.24);
}

.faq-item[open] summary::after {
  color: #7f42bd;
  transform: rotate(225deg);
}

.faq-item summary:focus-visible {
  outline: 3px solid rgba(127, 66, 189, 0.22);
  outline-offset: -3px;
}

.faq-item p {
  background: transparent;
  border: 0;
  line-height: 1.7;
  margin: -6px 70px 22px 18px;
  max-width: 820px;
  padding: 0;
}

.faq-item[open] p {
  animation: faqAnswerIn 260ms ease both;
}

.contact-form {
  background: white;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: 0 16px 54px rgba(13, 11, 18, 0.08);
  display: grid;
  gap: 16px;
  padding: 24px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.contact-links a {
  background: white;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  color: var(--color-ink);
  font-weight: 800;
  padding: 10px 14px;
}

.contact-links a:hover {
  border-color: rgba(8, 120, 103, 0.42);
  color: var(--brand-teal);
}

.contact-form label {
  color: var(--color-muted);
  display: grid;
  font-size: 0.86rem;
  font-weight: 800;
  gap: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #fbfaf8;
  border: 1px solid var(--color-line);
  border-radius: 6px;
  color: var(--color-ink);
  min-height: 46px;
  padding: 12px 13px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-page .contact-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(148, 82, 212, 0.14), transparent 26rem),
    radial-gradient(circle at 88% 24%, rgba(8, 120, 103, 0.12), transparent 28rem),
    linear-gradient(180deg, #fbfaf8 0%, #f2f5f3 100%);
  color: var(--color-ink);
  min-height: calc(100vh - 90px);
  padding: 132px 0 72px;
}

.contact-page .contact-grid {
  align-items: start;
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.contact-page .contact-section h1 {
  color: var(--color-ink);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.04;
  margin-bottom: 14px;
  max-width: 680px;
}

.contact-page .contact-section p {
  color: var(--color-muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.62;
  max-width: 680px;
}

.contact-page .contact-form {
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
}

.contact-page .contact-links {
  margin-top: 24px;
}

.site-footer {
  background:
    radial-gradient(circle at 12% 8%, rgba(148, 82, 212, 0.24), transparent 24rem),
    radial-gradient(circle at 90% 90%, rgba(8, 120, 103, 0.24), transparent 24rem),
    var(--color-night);
  color: white;
  padding: 44px 0;
}

.footer-grid {
  align-items: start;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.footer-nav {
  display: grid;
  gap: 14px;
  justify-items: end;
  min-width: min(100%, 460px);
}

.footer-brand {
  margin-bottom: 16px;
}

.site-footer p,
.footer-links a {
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
  line-height: 1.2;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 0;
}

.footer-socials a {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: white;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
  width: 42px;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  background: rgba(85, 195, 181, 0.18);
  border-color: rgba(85, 195, 181, 0.56);
  transform: translateY(-2px);
}

.footer-socials svg {
  fill: currentColor;
  height: 20px;
  width: 20px;
}

.text-nowrap {
  white-space: nowrap;
}

.updates-page .subpage-hero h1 {
  font-size: clamp(2.5rem, 4.4vw, 4.2rem);
  max-width: 20ch;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  font-weight: 700;
  margin: 34px auto 0;
  width: var(--container);
}

.subpage-main {
  background:
    radial-gradient(circle at 8% 6%, rgba(148, 82, 212, 0.12), transparent 28rem),
    radial-gradient(circle at 92% 34%, rgba(8, 120, 103, 0.12), transparent 30rem),
    var(--color-paper);
}

.subpage-hero {
  background:
    radial-gradient(circle at 16% 10%, rgba(148, 82, 212, 0.24), transparent 26rem),
    radial-gradient(circle at 88% 34%, rgba(8, 120, 103, 0.22), transparent 28rem),
    linear-gradient(135deg, #182033 0%, #202942 56%, #173a38 100%);
  min-height: 360px;
  overflow: hidden;
  padding: 116px 0 42px;
  position: relative;
}

.subpage-hero::before {
  background: var(--brand-gradient);
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.subpage-hero::after {
  animation: ringSpin 20s linear infinite;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  content: "";
  height: 440px;
  position: absolute;
  right: -120px;
  top: 78px;
  width: 440px;
}

.subpage-hero-grid {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.05fr) 0.75fr;
  position: relative;
  z-index: 1;
}

.subpage-hero h1 {
  font-size: clamp(2.8rem, 4.8vw, 4.7rem);
  line-height: 0.98;
  max-width: 780px;
}

.subpage-hero p {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  max-width: 680px;
}

.programs-page .subpage-hero {
  background: var(--color-night);
}

.programs-page .subpage-hero-grid {
  grid-template-columns: minmax(0, 1fr);
}

.programs-page .subpage-hero h1 {
  max-width: 980px;
}

.programs-page .subpage-hero p {
  max-width: 920px;
}

.programs-page .programs-section {
  position: relative;
}

.program-section-divider {
  padding: 18px 0;
  position: relative;
}

.program-section-divider span {
  background: linear-gradient(90deg, transparent, var(--brand-purple-soft), var(--brand-teal-soft), transparent);
  box-shadow: 0 0 24px rgba(85, 195, 181, 0.46);
  display: block;
  height: 3px;
  margin: 0 auto;
  position: relative;
  width: var(--container);
}

.program-section-divider span::after {
  background: var(--brand-gradient);
  border-radius: 999px;
  content: "";
  height: 9px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
}

.programs-page .program-layout {
  padding-top: 0;
  position: relative;
}

.programs-page .program-layout::before {
  display: none;
}

.programs-page .program-layout::after {
  display: none;
}

.calendar-page .subpage-hero {
  min-height: 330px;
  padding-bottom: 36px;
}

.news-page .subpage-hero {
  min-height: 330px;
  padding-bottom: 36px;
}

.page-summary-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  padding: 22px;
}

.page-summary-card img {
  border: 0;
  display: block;
  height: 58px;
  margin-bottom: 20px;
  object-fit: contain;
  width: 190px;
}

.page-summary-card p {
  margin: 0;
}

.calendar-section,
.news-section {
  padding: var(--space-section) 0;
}

.calendar-toolbar,
.news-toolbar {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-pills span,
.news-tag,
.event-tag {
  align-items: center;
  background: white;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  color: var(--color-muted);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 850;
  justify-content: center;
  line-height: 1.1;
  padding: 8px 12px;
  text-align: center;
}

.filter-pills span:first-child,
.news-tag.is-primary,
.event-tag.is-primary {
  background: var(--brand-gradient);
  color: white;
}

.event-card .event-tag.is-primary {
  min-height: 34px;
  width: fit-content;
}

.event-grid,
.news-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.event-card,
.statement-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: 0 18px 54px rgba(17, 16, 22, 0.08);
  display: grid;
  gap: 14px;
  min-height: 270px;
  overflow: hidden;
  padding: 24px;
  position: relative;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.event-card {
  align-content: start;
  gap: 10px;
  grid-template-rows: auto auto auto auto;
  min-height: 240px;
}

.event-card::before,
.statement-card::before {
  background: var(--brand-gradient);
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.event-card:hover,
.statement-card:hover {
  border-color: rgba(8, 120, 103, 0.34);
  box-shadow: 0 26px 80px rgba(17, 16, 22, 0.13);
  transform: translateY(-5px);
}

.event-date {
  align-items: center;
  display: flex;
  gap: 14px;
}

.event-date strong {
  background: var(--brand-gradient);
  background-clip: text;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.9;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.event-date span,
.statement-meta {
  color: var(--color-muted);
  font-size: 0.84rem;
  font-weight: 850;
  text-transform: uppercase;
}

.event-card :is(h2, h3),
.statement-card :is(h2, h3) {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.08;
  margin: 0;
}

.event-card p,
.statement-card p {
  color: var(--color-muted);
  margin: 0;
}

.official-note {
  background:
    radial-gradient(circle at top left, rgba(148, 82, 212, 0.1), transparent 18rem),
    white;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  margin-top: 18px;
  padding: 22px;
}

.official-note strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.official-note p {
  color: var(--color-muted);
  margin: 0;
}

.statement-card.featured-statement {
  grid-column: span 2;
}

.statement-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.subpage-main .button-secondary {
  border-color: rgba(13, 11, 18, 0.18);
  color: var(--color-ink);
}

.subpage-main .button-secondary:hover {
  background: rgba(13, 11, 18, 0.05);
}

.admin-body {
  background:
    radial-gradient(circle at 12% 4%, rgba(148, 82, 212, 0.16), transparent 30rem),
    radial-gradient(circle at 88% 18%, rgba(8, 120, 103, 0.16), transparent 32rem),
    var(--color-paper);
  color: var(--color-ink);
  min-height: 100vh;
}

.admin-shell {
  margin: 0 auto;
  max-width: 100%;
  padding: 0 0 42px;
}

.admin-hero {
  align-items: end;
  display: grid;
  gap: clamp(20px, 4vw, 48px);
  grid-template-columns: minmax(0, 1fr) 360px;
  min-height: 560px;
  margin-bottom: 0;
  overflow: hidden;
  padding: 138px max(24px, calc((100vw - 1180px) / 2)) 54px;
  position: relative;
}

.admin-hero::before {
  background: var(--brand-gradient);
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.admin-hero-media,
.admin-hero-overlay {
  inset: 0;
  position: absolute;
}

.admin-hero-media img {
  filter: saturate(1.04) contrast(1.05) brightness(0.86);
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.admin-hero-overlay {
  background:
    radial-gradient(circle at 82% 22%, rgba(148, 82, 212, 0.22), transparent 24rem),
    radial-gradient(circle at 90% 74%, rgba(8, 120, 103, 0.22), transparent 23rem),
    linear-gradient(90deg, rgba(10, 13, 22, 0.96) 0%, rgba(10, 13, 22, 0.78) 48%, rgba(10, 13, 22, 0.42) 100%),
    linear-gradient(0deg, rgba(10, 13, 22, 0.88), rgba(10, 13, 22, 0.1) 56%, rgba(10, 13, 22, 0.34));
}

.admin-hero-content,
.admin-access-card {
  position: relative;
  z-index: 1;
}

.admin-hero-content {
  max-width: 820px;
}

.admin-hero h1 {
  font-size: clamp(2.55rem, 5.8vw, 6.2rem);
  line-height: 0.98;
  margin-bottom: 18px;
  max-width: 850px;
}

.admin-hero p:last-child {
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  max-width: 680px;
}

.admin-access-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  padding: 22px;
}

.admin-nav {
  display: flex;
}

.admin-status {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: 0 14px 44px rgba(17, 16, 22, 0.06);
  color: var(--color-muted);
  font-weight: 800;
  margin: 22px auto 18px;
  padding: 14px 16px;
  width: min(1180px, var(--container));
}

.admin-status[data-tone="success"] {
  border-color: rgba(8, 120, 103, 0.28);
  color: var(--brand-teal);
}

.admin-status[data-tone="error"] {
  border-color: rgba(190, 18, 60, 0.22);
  color: #be123c;
}

.admin-debug {
  background:
    radial-gradient(circle at top left, rgba(148, 82, 212, 0.08), transparent 14rem),
    white;
  border: 1px solid rgba(190, 18, 60, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 14px 44px rgba(17, 16, 22, 0.06);
  margin: 0 auto 18px;
  padding: 16px;
  width: min(1180px, var(--container));
}

.admin-debug strong,
.admin-debug p {
  display: block;
  margin: 0;
}

.admin-debug strong {
  margin-bottom: 8px;
}

.admin-debug p {
  color: var(--color-muted);
  font-weight: 750;
}

.admin-debug p + p {
  margin-top: 6px;
}

.admin-debug code {
  background: rgba(13, 11, 18, 0.06);
  border-radius: 4px;
  color: var(--color-night);
  font-size: 0.9em;
  padding: 2px 5px;
}

.admin-login-card,
.admin-panel {
  background:
    radial-gradient(circle at top left, rgba(148, 82, 212, 0.07), transparent 18rem),
    rgba(255, 255, 255, 0.97);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: 0 18px 54px rgba(17, 16, 22, 0.08);
  padding: 24px;
}

.admin-login-card {
  margin: 0 auto;
  max-width: 520px;
  width: min(520px, var(--container));
}

.admin-dashboard-top {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin: 26px auto 18px;
  width: min(1180px, var(--container));
}

.admin-dashboard-top h2,
.admin-panel h3 {
  margin: 0;
}

.admin-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
  width: min(1180px, var(--container));
}

.admin-panel-heading {
  border-bottom: 1px solid var(--color-line);
  margin-bottom: 18px;
  padding-bottom: 16px;
}

.admin-form {
  display: grid;
  gap: 14px;
}

.admin-form label {
  color: var(--color-muted);
  display: grid;
  font-size: 0.86rem;
  font-weight: 850;
  gap: 8px;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
  background: white;
  border: 1px solid var(--color-line);
  border-radius: 6px;
  color: var(--color-ink);
  font: inherit;
  min-height: 46px;
  padding: 12px 13px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
  border-color: rgba(8, 120, 103, 0.46);
  box-shadow: 0 0 0 4px rgba(8, 120, 103, 0.1);
  outline: 0;
}

.admin-form textarea {
  resize: vertical;
}

.admin-check {
  align-items: center;
  display: flex !important;
  gap: 10px !important;
}

.admin-check input {
  min-height: 0;
  width: 18px;
}

.admin-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.admin-row {
  background:
    radial-gradient(circle at top left, rgba(148, 82, 212, 0.08), transparent 14rem),
    white;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 16px;
}

.admin-row strong,
.admin-row span {
  display: block;
}

.admin-row span {
  color: var(--brand-teal);
  font-size: 0.78rem;
  font-weight: 900;
  margin-top: 6px;
  text-transform: uppercase;
}

.admin-row p,
.admin-empty {
  color: var(--color-muted);
  margin: 8px 0 0;
}

.admin-row-actions {
  display: flex;
  gap: 8px;
}

.admin-row-actions button {
  background: white;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  color: var(--color-ink);
  cursor: pointer;
  font-weight: 850;
  height: 38px;
  padding: 0 12px;
}

.admin-row-actions button:hover {
  border-color: rgba(8, 120, 103, 0.36);
  color: var(--brand-teal);
}

.js .reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition: opacity 820ms ease, transform 820ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js .reveal:nth-child(2) {
  transition-delay: 90ms;
}

.js .reveal:nth-child(3) {
  transition-delay: 160ms;
}

.js .reveal:nth-child(4) {
  transition-delay: 230ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    background: rgba(13, 11, 18, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    display: none;
    flex-direction: column;
    left: 0;
    padding: 12px 20px 20px;
    position: absolute;
    right: 0;
    top: 67px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    text-align: center;
    width: 100%;
  }

  .admin-nav {
    background: transparent;
    border-bottom: 0;
    display: flex;
    flex-direction: row;
    left: auto;
    padding: 0;
    position: static;
    right: auto;
    top: auto;
  }

  .admin-nav a {
    width: auto;
  }

  .hero-grid,
  .intro-grid,
  .faq-layout,
  .program-faq-grid,
  .program-layout,
  .fdm-grid,
  .parliyouth-layout,
  .manifesto-grid,
  .process-grid,
  .partner-grid,
  .contact-grid,
  .moment-grid,
  .subpage-hero-grid,
  .impact-map-layout,
  .impact-map-board {
    grid-template-columns: 1fr;
  }

  .mission-layout {
    grid-template-columns: 1fr;
  }

  .mission-layout .mission-board {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-panel {
    max-width: 520px;
  }

  .creation-grid,
  .audience-grid,
  .format-flow,
  .format-cards,
  .impact-grid,
  .fdm-stats,
  .team-grid,
  .team-directory-grid,
  .parliyouth-track,
  .event-grid,
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .statement-card.featured-statement {
    grid-column: span 2;
  }

  .moment-grid-expanded {
    grid-template-columns: 1fr 1fr;
  }

  .moment-grid-expanded .moment-large {
    grid-column: 1 / -1;
  }

  .admin-hero,
  .admin-grid,
  .admin-row {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 620px) {
  :root {
    --container: calc(100vw - 28px);
    --space-section: 24px;
  }

  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  main,
  section {
    max-width: 100vw;
  }

  .container {
    margin-left: 14px;
    margin-right: 14px;
    max-width: 100%;
    width: auto;
  }

  .site-header {
    padding: 12px 14px;
  }

  .admin-shell {
    padding: 14px;
  }

  .admin-hero,
  .admin-login-card,
  .admin-panel {
    padding: 20px;
  }

  .admin-dashboard-top {
    align-items: flex-start;
    display: grid;
  }

  .admin-row-actions {
    flex-wrap: wrap;
  }

  .brand-name {
    display: none;
  }

  .logo-marquee {
    mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
    max-width: 100vw;
    overflow: hidden;
    padding: 18px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  }

  .logo-track {
    animation-duration: 18s;
  }

  .brand-logo-compact {
    height: 42px;
    width: 148px;
  }

  .hero-brand-logo {
    height: 72px;
    width: 224px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 28px;
  }

  .hero-copy,
  .hero-panel {
    max-width: 100%;
    width: 100%;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(13, 11, 18, 0.58), rgba(13, 11, 18, 0.78) 48%, rgba(13, 11, 18, 0.9)),
      linear-gradient(90deg, rgba(13, 11, 18, 0.3), rgba(13, 11, 18, 0.1));
  }

  .hero-media img {
    height: 100%;
    object-position: center 30%;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 2.95rem);
    line-height: 0.96;
    max-width: 9ch;
  }

  .subpage-hero h1 {
    max-width: 11ch;
  }

  h2 {
    font-size: clamp(1.72rem, 7.4vw, 2.12rem);
    line-height: 1.06;
    max-width: 18ch;
  }

  .hero-lede,
  .intro-copy p,
  .section-heading p,
  .gallery-intro p,
  .contact-section p {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-lede {
    max-width: 32ch;
  }

  .intro-section {
    padding-bottom: 12px;
  }

  .audience-section {
    padding-top: 10px;
  }

  .intro-section .section-label {
    margin-bottom: 8px;
  }

  .intro-copy h2,
  .intro-copy p:not(.mobile-nbt-summary),
  .audience-section .section-heading {
    display: none;
  }

  .mobile-nbt-summary {
    color: var(--color-muted);
    display: block;
    font-size: 1rem;
    line-height: 1.58;
    margin: 0;
    max-width: 34ch;
  }

  .contact-section {
    padding-top: 22px;
  }

  .contact-section h2 {
    font-size: clamp(1.5rem, 6.4vw, 1.9rem);
    line-height: 1.08;
    max-width: 14ch;
  }

  .contact-section p {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .contact-links {
    gap: 8px;
    margin-top: 14px;
  }

  .contact-links a {
    font-size: 0.82rem;
    line-height: 1.1;
    min-height: 36px;
    padding: 8px 11px;
  }

  .contact-form {
    gap: 11px;
    padding: 16px;
  }

  .contact-form label {
    font-size: 0.8rem;
    gap: 6px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 0.9rem;
    min-height: 40px;
    padding: 9px 10px;
  }

  .contact-form textarea {
    min-height: 92px;
  }

  .hero-grid > *,
  .subpage-hero-grid > *,
  .program-layout > *,
  .fdm-grid > *,
  .parliyouth-layout > *,
  .intro-grid > *,
  .section-heading,
  .page-summary-card,
  .program-lab {
    max-width: 100%;
    min-width: 0;
  }

  .page-summary-card,
  .program-feature,
  .program-upcoming {
    padding: 22px;
  }

  .subpage-hero p,
  .page-summary-card p,
  .program-feature p,
  .fdm-section p,
  .parliyouth-copy p,
  .intro-copy p,
  .section-heading p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .programs-page .subpage-hero .reveal-hero > p:not(.eyebrow):not(.mobile-programs-summary),
  .programs-page .page-summary-card {
    display: none;
  }

  .news-page .page-summary-card,
  .news-page .official-note,
  .calendar-page .page-summary-card,
  .calendar-page .official-note {
    display: none;
  }

  .programs-page .mobile-programs-summary {
    display: block;
    font-size: 0.98rem;
    line-height: 1.52;
    max-width: 32ch;
  }

  .hero-actions {
    gap: 10px;
  }

  .button {
    min-height: 46px;
    padding: 12px 17px;
  }

  .faq-item summary {
    font-size: 0.98rem;
    line-height: 1.22;
    min-height: 60px;
    padding: 16px 58px 16px 22px;
  }

  .faq-item summary span {
    max-width: 100%;
  }

  .faq-item summary::before {
    height: 34px;
    right: 0;
    width: 34px;
  }

  .faq-item summary::after {
    right: 13px;
  }

  .faq-item p {
    margin: -2px 58px 18px 22px;
    padding: 0;
  }

  .program-faq-group .faq-item summary {
    padding-left: 22px;
  }

  .program-faq-group .faq-item p {
    margin-left: 22px;
  }

  .hero-proof {
    gap: 10px;
    margin-top: 18px;
  }

  .hero-proof span {
    font-size: 1rem;
    font-weight: 650;
    min-height: 42px;
    padding: 9px 12px;
  }

  .hero-panel {
    padding: 14px;
  }

  .hero-panel .panel-kicker {
    font-size: 0.78rem;
    line-height: 1.15;
    margin-bottom: 10px;
  }

  .hero-panel .signal-list {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 10px;
  }

  .hero-panel .signal-list li {
    border-top: 0;
    font-size: 0.82rem;
    gap: 10px;
    grid-template-columns: 24px 1fr;
    line-height: 1.15;
    min-height: 38px;
    padding-top: 0;
  }

  .hero-panel .signal-list span {
    font-size: 0.58rem;
    height: 22px;
    width: 22px;
  }

  .motion-strip {
    max-width: 100vw;
    overflow: hidden;
  }

  .manifesto-section {
    padding: 22px 0;
  }

  .manifesto-section::before {
    font-size: 3.4rem;
    line-height: 0.9;
    opacity: 0.08;
    top: 14px;
  }

  .manifesto-grid {
    gap: 12px;
  }

  .manifesto-grid .eyebrow {
    margin-bottom: 0;
  }

  .manifesto-grid h2 {
    font-size: clamp(1.62rem, 6.8vw, 2rem);
    line-height: 1.08;
    max-width: 18ch;
  }

  .shift-points {
    gap: 8px;
  }

  .shift-points article {
    align-items: start;
    display: grid;
    gap: 10px;
    grid-template-columns: 34px 1fr;
    min-height: 0;
    padding: 12px;
  }

  .shift-points article:hover,
  .shift-points article:focus-visible {
    min-height: 0;
    transform: none;
  }

  .shift-points span {
    align-items: center;
    background: var(--brand-gradient);
    border-radius: 999px;
    color: white;
    display: inline-flex;
    font-size: 0.68rem;
    height: 28px;
    justify-content: center;
    margin: 0;
    width: 28px;
  }

  .shift-points strong {
    font-size: 0.98rem;
  }

  .shift-points p {
    grid-column: 2;
    margin: -4px 0 0;
    max-height: 0;
    opacity: 0;
    transform: translateY(6px);
  }

  .shift-points article:focus p,
  .shift-points article:focus-visible p {
    max-height: 72px;
    opacity: 1;
    transform: translateY(0);
  }

  main section h2,
  .contact-section h2,
  .manifesto-grid h2 {
    font-size: clamp(1.62rem, 6.8vw, 2rem);
    line-height: 1.08;
    max-width: 18ch;
  }

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

  .format-cards,
  .fdm-feedback-grid,
  .impact-grid,
  .fdm-stats,
  .team-grid,
  .team-directory-grid,
  .parliyouth-track,
  .moment-grid-expanded,
  .event-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .audience-grid {
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .creation-grid {
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-card,
  .creation-card {
    aspect-ratio: 1 / 0.72;
    box-shadow: 0 10px 28px rgba(17, 16, 22, 0.08);
    min-height: 0;
  }

  .audience-card:nth-child(5) {
    aspect-ratio: 16 / 6.2;
    grid-column: 1 / -1;
  }

  .audience-card::before,
  .creation-card::before {
    background:
      linear-gradient(180deg, rgba(10, 13, 22, 0.08) 0%, rgba(10, 13, 22, 0.34) 48%, rgba(10, 13, 22, 0.86) 100%),
      linear-gradient(135deg, rgba(148, 82, 212, 0.2), rgba(8, 120, 103, 0.16));
  }

  .audience-card span,
  .card-index {
    font-size: 0.72rem;
    left: 12px;
    top: 10px;
  }

  .audience-card .tile-copy,
  .creation-card .tile-copy {
    bottom: 10px;
    gap: 4px;
    left: 10px;
    right: 10px;
    transform: translateY(0);
  }

  .audience-card h3,
  .creation-card h3 {
    font-size: 0.92rem;
    line-height: 1;
  }

  .audience-card p,
  .creation-card p {
    display: none;
  }

  .event-card {
    gap: 8px;
    min-height: 0;
    padding: 17px;
  }

  .event-card::before {
    height: 4px;
  }

  .event-date {
    gap: 10px;
  }

  .event-date strong {
    font-size: 2rem;
  }

  .event-date span {
    font-size: 0.72rem;
  }

  .event-card .event-tag.is-primary {
    font-size: 0.7rem;
    min-height: 28px;
    padding: 6px 9px;
  }

  .event-card :is(h2, h3) {
    font-size: 1.12rem;
    line-height: 1.08;
  }

  .event-card p {
    font-size: 0.86rem;
    line-height: 1.42;
  }

  .team-preview-card {
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
  }

  .team-profile-photo {
    aspect-ratio: 16 / 10;
  }

  .team-profile-copy {
    padding: 18px;
  }

  .team-message-panel {
    padding: 0 18px 18px;
  }

  .team-click-card summary {
    gap: 14px;
    grid-template-columns: 76px minmax(0, 1fr);
    padding: 18px;
  }

  .team-click-card .team-profile-photo {
    height: 76px;
    width: 76px;
  }

  .team-click-card .team-profile-copy::after {
    right: 0;
    top: 50%;
  }

  .impact-grid {
    gap: 12px;
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .metric {
    background:
      radial-gradient(circle at top left, rgba(148, 82, 212, 0.1), transparent 8rem),
      white;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    box-shadow: 0 10px 28px rgba(17, 16, 22, 0.07);
    display: grid;
    gap: 6px;
    height: auto;
    justify-content: stretch;
    min-height: 112px;
    overflow: hidden;
    padding: 18px;
    width: 100%;
  }

  .metric::before {
    display: none;
  }

  .metric strong {
    font-size: 1.2rem;
    margin-bottom: 6px;
    min-height: 0;
    text-align: left;
  }

  .metric span {
    color: var(--color-muted);
    display: block;
    font-size: 0.92rem;
    inset: auto;
    line-height: 1.35;
    opacity: 1;
    position: static;
    text-align: left;
    transform: none;
  }

  .metric:hover,
  .metric:focus-visible {
    border-color: rgba(8, 120, 103, 0.34);
    box-shadow: 0 14px 34px rgba(17, 16, 22, 0.09);
    transform: translateY(-3px);
  }

  .metric:hover strong,
  .metric:focus-visible strong,
  .metric:hover span,
  .metric:focus-visible span {
    opacity: 1;
    transform: none;
  }

  .format-flow {
    grid-template-columns: 1fr;
  }

  .process-section .section-heading p {
    display: none;
  }

  .process-grid-compact {
    gap: 8px;
  }

  .process-section .section-heading {
    margin-bottom: 0;
  }

  .format-board {
    gap: 10px;
    padding: 14px;
  }

  .format-flow {
    gap: 12px;
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .format-flow::before {
    display: none;
  }

  .format-flow li {
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9)),
      white;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    box-shadow: 0 10px 28px rgba(17, 16, 22, 0.07);
    cursor: pointer;
    display: grid;
    gap: 4px 12px;
    grid-template-columns: 34px 1fr;
    height: auto;
    justify-content: stretch;
    min-height: 0;
    overflow: hidden;
    padding: 15px 16px;
    width: 100%;
  }

  .format-flow li::before {
    height: auto;
  }

  .format-flow li:hover,
  .format-flow li:focus,
  .format-flow li:focus-visible {
    border-color: rgba(127, 66, 189, 0.28);
    box-shadow: 0 14px 34px rgba(17, 16, 22, 0.09);
    min-height: 0;
    outline: 0;
    transform: translateY(-4px);
  }

  .format-flow span {
    font-size: 0.66rem;
    height: 28px;
    grid-row: 1 / 3;
    margin: 0;
    width: 28px;
  }

  .format-flow strong {
    align-self: center;
    font-size: 0.92rem;
    grid-column: 2;
    line-height: 1.1;
    text-align: left;
  }

  .format-flow p {
    font-size: 0.7rem;
    grid-column: 2;
    inset: auto;
    line-height: 1.24;
    margin: 0;
    opacity: 0;
    position: static;
    text-align: left;
    transform: translateY(6px);
  }

  .format-flow li:hover span,
  .format-flow li:focus-visible span,
  .format-flow li:hover strong,
  .format-flow li:focus-visible strong {
    opacity: 1;
  }

  .format-flow li:hover strong,
  .format-flow li:focus-visible strong {
    color: white;
    transform: none;
  }

  .format-flow li:hover p,
  .format-flow li:focus-visible p {
    opacity: 1;
    transform: translateY(0);
  }

  .statement-card.featured-statement {
    grid-column: auto;
  }

  .subpage-hero {
    min-height: auto;
    padding: 112px 0 40px;
  }

  .programs-page .subpage-hero {
    box-shadow: inset 0 -22px 26px rgba(10, 13, 22, 0.34);
    padding-bottom: 28px;
  }

  .program-section-divider {
    display: none;
  }

  .programs-page .programs-section {
    padding-top: 28px;
    position: relative;
  }

  .programs-page .program-layout {
    padding-top: 0;
  }

  .programs-page .program-layout::before,
  .programs-page .program-layout::after {
    display: none;
  }

  .programs-page .programs-section::before {
    background: linear-gradient(90deg, transparent, rgba(183, 134, 240, 0.72), rgba(85, 195, 181, 0.72), transparent);
    content: "";
    height: 1px;
    left: 14px;
    position: absolute;
    right: 14px;
    top: 0;
  }

  .programs-page .programs-section::after {
    background: var(--brand-gradient);
    border-radius: 999px;
    content: "";
    height: 6px;
    left: 50%;
    opacity: 0.9;
    position: absolute;
    top: -3px;
    transform: translateX(-50%);
    width: 42px;
  }

  .map-detail-card {
    box-shadow: 0 14px 42px rgba(17, 16, 22, 0.1);
    min-height: 0;
    padding: 18px;
  }

  .lebanon-map {
    aspect-ratio: 3 / 3.25;
    --map-offset-y: 3%;
  }

  .map-pin {
    height: 44px;
    width: 44px;
  }

  .map-detail-card::before {
    height: 4px;
  }

  .map-detail-kicker {
    font-size: 0.72rem;
    margin-bottom: 8px;
  }

  .map-detail-card h3 {
    font-size: 1.45rem;
    margin-bottom: 8px;
  }

  .map-detail-card [data-map-detail-text] {
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .map-detail-footer {
    align-items: flex-start;
    display: grid;
    margin-top: 20px;
  }

  .map-detail-actions {
    width: 100%;
  }

  .map-detail-actions button {
    flex: 1;
  }

  .calendar-toolbar,
  .news-toolbar {
    align-items: flex-start;
    display: grid;
  }

  .parliyouth-visual::before {
    inset: -6px 6px 6px -6px;
  }

  .fdm-photo,
  .parliyouth-visual {
    justify-self: center;
    margin-left: auto;
    margin-right: auto;
    max-width: min(100%, 330px);
    width: 100%;
  }

  .fdm-photo {
    max-width: min(100%, 280px);
  }

  .fdm-section #fdm-title {
    display: none;
  }

  .fdm-section .mobile-fdm-title {
    display: block;
    font-size: clamp(1.35rem, 5.8vw, 1.7rem);
    line-height: 1.08;
    margin-bottom: 10px;
    max-width: 14ch;
  }

  .fdm-photo img {
    aspect-ratio: 4 / 3;
    box-shadow: 0 14px 36px rgba(17, 16, 22, 0.13);
  }

  .skill-cloud {
    gap: 7px;
    margin-top: 18px;
  }

  .skill-cloud span {
    font-size: 0.78rem;
    line-height: 1.1;
    padding: 8px 10px;
  }

  .parliyouth-visual img {
    aspect-ratio: 4 / 3;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
  }

  .parliyouth-visual figcaption {
    border-radius: var(--radius);
    bottom: 10px;
    font-size: 0.78rem;
    left: 10px;
    max-width: calc(100% - 20px);
    padding: 8px 10px;
  }

  .parliyouth-track span {
    margin-bottom: 14px;
  }

  .section-actions .button,
  .parliyouth-actions .button {
    font-size: 0.82rem;
    min-height: 38px;
    padding: 9px 12px;
  }

  .parliyouth-copy .section-logo-mark {
    height: 52px;
    margin-bottom: 12px;
    width: 170px;
  }

  .partner-section .section-logo-mark {
    height: 52px;
    margin-bottom: 12px;
    width: 170px;
  }

  .parliyouth-track {
    background:
      linear-gradient(145deg, rgba(148, 82, 212, 0.12), rgba(8, 120, 103, 0.1)),
      rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    gap: 1px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    padding: 0;
  }

  .parliyouth-track article {
    background: rgba(255, 255, 255, 0.06);
    border: 0;
    border-radius: 0;
    min-height: 112px;
    padding: 11px 8px;
  }

  .parliyouth-track article:hover {
    transform: none;
  }

  .parliyouth-track span {
    align-items: center;
    background: var(--brand-gradient);
    border-radius: 999px;
    color: white;
    display: inline-flex;
    font-size: 0.62rem;
    height: 24px;
    justify-content: center;
    margin-bottom: 8px;
    width: 24px;
  }

  .parliyouth-track h3 {
    font-size: 0.82rem;
    line-height: 1.05;
    margin-bottom: 6px;
  }

  .parliyouth-track p {
    font-size: 0.68rem;
    line-height: 1.28;
  }

  .moment-grid,
  .moment-grid-expanded,
  .team-grid {
    display: grid;
    gap: 10px;
    grid-auto-columns: minmax(220px, 76vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    margin-left: -14px;
    margin-right: -14px;
    overflow-x: auto;
    padding: 0 14px 6px;
    scroll-padding-left: 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .moment-grid::-webkit-scrollbar,
  .moment-grid-expanded::-webkit-scrollbar,
  .team-grid::-webkit-scrollbar {
    display: none;
  }

  .moment,
  .moment-large,
  .moment-grid-expanded .moment-large,
  .team-card {
    grid-column: auto;
    grid-row: auto;
    scroll-snap-align: start;
  }

  .team-card {
    min-height: 164px;
    padding: 18px;
  }

  .team-avatar {
    height: 48px;
    margin-bottom: 18px;
    width: 48px;
  }

  .team-card h3 {
    font-size: 1.08rem;
    line-height: 1.08;
  }

  .moment,
  .moment img {
    max-height: none;
    min-height: 0;
  }

  .moment img {
    aspect-ratio: 16 / 9;
  }

  .moment-large img,
  .moment-grid-expanded .moment-large img {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .moment figcaption {
    font-size: 0.82rem;
    min-height: 66px;
    padding: 10px 12px 12px;
  }

  .card-index {
    margin-bottom: 14px;
  }

  .fdm-visual {
    min-height: 280px;
  }

  .orbit-card {
    font-size: 0.86rem;
    padding: 12px 13px;
  }

  .footer-grid {
    display: grid;
  }

  .footer-nav {
    justify-items: start;
    min-width: 0;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-socials {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .mission-layout .mission-board {
    grid-template-columns: 1fr;
  }

  .mission-board article {
    align-content: center;
    display: grid;
    min-height: 106px;
    padding: 15px;
  }

  .mission-board article::after {
    inset: 12px auto 12px 0;
  }

  .mission-board strong {
    font-size: 1.02rem;
    max-width: 100%;
  }

  .mission-board p {
    margin: 8px 0 0;
    max-height: 0;
    opacity: 0;
  }

  .mission-board article:hover,
  .mission-board article:focus,
  .mission-board article:focus-visible {
    min-height: 220px;
  }

  .mission-board article:hover p,
  .mission-board article:focus p,
  .mission-board article:focus-visible p {
    max-height: 170px;
    opacity: 1;
    transform: translateY(0);
  }
}

@media (hover: none) {
  .audience-card .tile-copy,
  .creation-card .tile-copy {
    transform: translateY(0);
  }

  .audience-card p,
  .creation-card p,
  .team-reveal {
    max-height: 80px;
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
