:root {
  color-scheme: dark;
  --bg: #04141d;
  --bg-deep: #020c12;
  --panel: rgba(9, 37, 47, 0.74);
  --line: rgba(148, 199, 204, 0.16);
  --text: #f3fbfa;
  --muted: #a7c0c3;
  --green: #6be76b;
  --mint: #34d7a4;
  --teal: #25b8c8;
  --max: 1640px;
}

* { box-sizing: border-box; }

html { min-width: 320px; height: 100%; background: var(--bg-deep); overflow: hidden; }

body {
  margin: 0;
  min-height: 100svh;
  height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 20%, rgba(52, 215, 164, 0.08), transparent 34%),
    radial-gradient(circle at 86% 76%, rgba(37, 184, 200, 0.08), transparent 36%),
    linear-gradient(135deg, #061d27 0%, #04141d 48%, #020d13 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button, input, textarea, select { font: inherit; }

a { color: inherit; }

.page-shell {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 22px clamp(20px, 3vw, 54px) 16px;
  overflow: hidden;
}

.grid {
  position: absolute;
  inset: 0;
  z-index: -4;
  opacity: .17;
  background-image:
    linear-gradient(rgba(183, 224, 227, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(183, 224, 227, .08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 87%);
}

.ambient {
  position: absolute;
  z-index: -3;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.ambient-one {
  width: min(48vw, 760px);
  height: min(48vw, 760px);
  top: -32%;
  left: -11%;
  background: rgba(60, 213, 130, .12);
}

.ambient-two {
  width: min(46vw, 720px);
  height: min(46vw, 720px);
  right: -10%;
  bottom: -34%;
  background: rgba(29, 173, 197, .12);
}

.site-header,
.site-footer,
.hero {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  width: clamp(190px, 14vw, 252px);
  text-decoration: none;
}

.brand img { display: block; width: 100%; height: auto; }

.launch-marker {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 0 11px;
  padding: 11px 15px 11px 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(4, 22, 30, .56);
  backdrop-filter: blur(16px);
  box-shadow: inset 0 1px rgba(255,255,255,.025);
}

.launch-marker__dot {
  grid-row: 1 / span 2;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(107, 231, 107, .75);
}

.launch-marker span:not(.launch-marker__dot) {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.launch-marker strong {
  margin-top: 2px;
  font-size: 15px;
  letter-spacing: .03em;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .93fr) minmax(580px, 1.07fr);
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  padding-block: clamp(20px, 3.5vh, 42px) clamp(10px, 2vh, 22px);
}

.hero-copy { position: relative; z-index: 4; max-width: 730px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 25px;
  color: #c7dadb;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--green), var(--teal));
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(54px, 5.6vw, 96px);
  font-weight: 650;
  letter-spacing: -.062em;
  line-height: .94;
  text-wrap: balance;
}

.intro {
  max-width: 675px;
  margin: 29px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.7;
}

.launch-panel {
  display: grid;
  grid-template-columns: auto minmax(48px, 1fr) minmax(220px, .9fr);
  align-items: center;
  gap: 20px;
  margin-top: 38px;
  padding: 21px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(10, 41, 51, .82), rgba(5, 25, 33, .72));
  box-shadow: 0 20px 60px rgba(0, 7, 11, .18), inset 0 1px rgba(255,255,255,.03);
  backdrop-filter: blur(18px);
}

.launch-panel__label {
  display: block;
  margin-bottom: 6px;
  color: #86a5a9;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.launch-panel strong { font-size: 18px; white-space: nowrap; }

.launch-panel__line {
  position: relative;
  height: 1px;
  background: rgba(151, 199, 202, .16);
  overflow: hidden;
}

.launch-panel__line span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  background: linear-gradient(90deg, var(--green), var(--teal));
  box-shadow: 0 0 14px rgba(44, 205, 171, .5);
  animation: linePulse 3.6s ease-in-out infinite;
}

.launch-panel p {
  margin: 0;
  color: #9fb8ba;
  font-size: 12px;
  line-height: 1.55;
}

.capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 25px;
  color: #81a0a4;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.capabilities span { display: inline-flex; align-items: center; gap: 9px; }
.capabilities span::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 10px rgba(52, 215, 164, .6);
}

.system-visual {
  position: relative;
  width: min(100%, 760px);
  aspect-ratio: 1.085 / 1;
  justify-self: end;
  isolation: isolate;
}

.system-visual::before {
  content: "";
  position: absolute;
  inset: 9%;
  z-index: -2;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28, 175, 171, .13), transparent 66%);
  filter: blur(4px);
}

.orbit {
  position: absolute;
  z-index: -1;
  inset: 50%;
  border: 1px solid rgba(98, 190, 193, .12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 16px rgba(37, 184, 200, .8);
}

.orbit-one { width: 46%; aspect-ratio: 1; animation: rotate 22s linear infinite; }
.orbit-two { width: 70%; aspect-ratio: 1; animation: rotateReverse 34s linear infinite; }
.orbit-three { width: 94%; aspect-ratio: 1; animation: rotate 46s linear infinite; }

.core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: clamp(176px, 15vw, 224px);
  aspect-ratio: 1;
  display: grid;
  justify-items: center;
  align-content: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(101, 213, 187, .25);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 36%, rgba(52, 215, 164, .15), transparent 34%),
    linear-gradient(145deg, rgba(13, 51, 59, .97), rgba(4, 22, 29, .98));
  box-shadow: 0 25px 80px rgba(0, 10, 14, .48), inset 0 0 48px rgba(53, 193, 179, .07);
}

.core__glow {
  position: absolute;
  inset: -28px;
  z-index: -1;
  border-radius: 50%;
  border: 1px solid rgba(86, 215, 183, .09);
  box-shadow: 0 0 70px rgba(50, 209, 169, .1);
}

.core img { width: 58px; height: 58px; object-fit: contain; margin-bottom: 10px; }
.core span { font-size: 20px; font-weight: 750; letter-spacing: -.02em; }
.core small { margin-top: 4px; color: #83a7a9; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }

.module {
  --module-shift-x: 0;
  position: absolute;
  z-index: 4;
  width: min(31%, 216px);
  min-height: 102px;
  padding: 17px 17px 15px;
  border: 1px solid rgba(138, 195, 198, .16);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(11, 43, 52, .9), rgba(4, 23, 30, .82));
  box-shadow: 0 20px 48px rgba(0, 7, 10, .22), inset 0 1px rgba(255,255,255,.025);
  backdrop-filter: blur(14px);
  animation: moduleFloat 6s ease-in-out infinite;
}

.module::after {
  content: "";
  position: absolute;
  left: 17px;
  right: 17px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(52, 215, 164, .48), transparent);
}

.module__index {
  display: block;
  margin-bottom: 14px;
  color: var(--mint);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
}

.module strong { display: block; font-size: 15px; }
.module small { display: block; margin-top: 5px; color: #86a4a7; font-size: 10px; line-height: 1.4; }
.module-campaigns { top: 10%; left: 0; animation-delay: 0s; }
.module-fundraising { top: 11%; right: 0; animation-delay: -1.2s; }
.module-governance { bottom: 11%; left: 0; animation-delay: -2.4s; }
.module-impact { right: 0; bottom: 11%; animation-delay: -3.6s; }
.module-programmes {
  --module-shift-x: -50%;
  left: 50%;
  bottom: 0;
  width: min(34%, 228px);
  min-height: 96px;
  animation-delay: -4.8s;
}

.connections {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.connections path {
  fill: none;
  stroke: url(#connectionGradient);
  stroke-width: 1.4;
  stroke-dasharray: 5 8;
  animation: dash 16s linear infinite;
}

.connections circle { fill: var(--mint); filter: drop-shadow(0 0 8px rgba(52, 215, 164, .8)); }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-top: 10px;
  border-top: 1px solid rgba(138, 192, 194, .13);
  color: #6e8e92;
  font-size: 11px;
  letter-spacing: .03em;
}

.site-footer p { margin: 0; }

@keyframes rotate { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes rotateReverse { to { transform: translate(-50%, -50%) rotate(-360deg); } }
@keyframes dash { to { stroke-dashoffset: -180; } }
@keyframes moduleFloat {
  0%, 100% { transform: translate(var(--module-shift-x, 0), 0); }
  50% { transform: translate(var(--module-shift-x, 0), -7px); }
}
@keyframes linePulse { 0%,100% { width: 34%; opacity: .72; } 50% { width: 78%; opacity: 1; } }

@media (max-width: 1180px) {
  .page-shell { min-height: 100svh; height: 100svh; }
  .hero { grid-template-columns: 1fr; gap: 22px; padding-block: 16px 8px; }
  .hero-copy { max-width: 850px; }
  h1 { max-width: 850px; }
  .system-visual { justify-self: center; width: min(88vw, 560px); }
  .site-footer { padding-top: 8px; }
}

@media (max-width: 700px) {
  .page-shell { padding: 16px 16px 12px; }
  .site-header { align-items: flex-start; }
  .brand { width: 150px; padding-top: 4px; }
  .launch-marker { padding: 8px 10px; gap: 0 8px; }
  .launch-marker span:not(.launch-marker__dot) { font-size: 7px; }
  .launch-marker strong { font-size: 11px; }
  .hero { gap: 18px; padding-block: 12px 6px; }
  h1 { font-size: clamp(36px, 10.8vw, 50px); letter-spacing: -.057em; }
  .intro { font-size: 15px; line-height: 1.54; }
  .launch-panel { grid-template-columns: 1fr; gap: 12px; padding: 14px 14px; }
  .launch-panel__line { display: none; }
  .launch-panel p { max-width: 420px; }
  .system-visual { width: min(100%, 400px); margin-inline: auto; }
  .module { width: 31%; min-height: 68px; padding: 10px 10px 8px; }
  .module__index { margin-bottom: 6px; }
  .module strong { font-size: 10px; }
  .module small { display: none; }
  .core { width: 122px; }
  .core img { width: 36px; height: 36px; }
  .core span { font-size: 14px; }
  .site-footer { flex-direction: column; gap: 6px; }
}

@media (max-width: 440px) {
  .site-header { gap: 12px; }
  .brand { width: 124px; }
  .launch-marker { border-radius: 10px; padding: 7px 8px; }
  .eyebrow { font-size: 10px; }
  .capabilities { gap: 8px 12px; font-size: 9px; }
  .system-visual { width: min(100%, 340px); margin-inline: auto; }
}

@media (max-height: 860px) {
  .page-shell { padding-top: 18px; padding-bottom: 12px; }
  .hero { gap: 18px; padding-block: 10px 6px; }
  h1 { font-size: clamp(40px, 4.6vw, 64px); }
  .intro { margin-top: 16px; font-size: 16px; line-height: 1.54; }
  .launch-panel { margin-top: 18px; padding: 14px 16px; }
  .capabilities { margin-top: 14px; }
  .system-visual { width: min(100%, 560px); }
  .site-footer { padding-top: 8px; }
}

@media (max-height: 740px) {
  .page-shell { padding-top: 14px; padding-bottom: 10px; }
  .hero { gap: 14px; padding-block: 8px 4px; }
  h1 { font-size: clamp(36px, 4vw, 56px); }
  .intro { font-size: 15px; margin-top: 12px; }
  .launch-panel { margin-top: 14px; padding: 12px 14px; }
  .capabilities { margin-top: 12px; font-size: 11px; }
  .system-visual { width: min(100%, 500px); }
  .module { min-height: 70px; padding: 10px 9px 8px; }
  .module strong { font-size: 11px; }
  .module small { font-size: 8px; }
  .core { width: 142px; }
  .core img { width: 38px; height: 38px; }
  .core span { font-size: 15px; }
  .site-footer { font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behaviour: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Compact-screen containment safeguards */
@media (max-width: 700px) {
  .site-header,
  .hero,
  .site-footer,
  .hero-copy {
    width: 100%;
    min-width: 0;
  }

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

  h1 {
    max-width: 100%;
    font-size: clamp(34px, 10vw, 46px);
    line-height: .98;
    text-wrap: wrap;
  }

  .intro,
  .launch-panel,
  .capabilities { max-width: 100%; }

  .launch-marker {
    flex: 0 0 auto;
    padding: 7px 8px;
    gap: 0 6px;
  }

  .launch-marker span:not(.launch-marker__dot) {
    font-size: 7px;
    letter-spacing: .1em;
    white-space: nowrap;
  }

  .launch-marker strong { font-size: 10px; }

  .system-visual {
    width: 100%;
    max-width: 400px;
    min-width: 0;
    margin-inline: auto;
    aspect-ratio: 1 / 1.08;
  }

  .module {
    width: 32%;
    min-height: 62px;
    padding: 9px 8px 8px;
  }

  .module strong { font-size: 9px; }
  .module-campaigns,
  .module-fundraising { top: 5%; }
  .module-governance,
  .module-impact { bottom: 10%; }
  .module-programmes {
    width: 40%;
    bottom: 0;
    min-height: 62px;
  }

  .core { width: 116px; }
  .core img { width: 34px; height: 34px; }
  .core span { font-size: 13px; }
  .core small { font-size: 7px; }
}

@media (max-width: 440px) {
  .brand { width: 118px; }
  .system-visual { width: 100%; margin-inline: auto; max-width: 330px; }
  .module-programmes { width: 42%; }
}

/* Single-screen fit safeguards: retain the complete launch composition without scrollbars. */
@media (max-width: 1180px) and (max-height: 900px) {
  .page-shell { padding-top: 14px; padding-bottom: 10px; }
  .hero { gap: 12px; padding-block: 8px 4px; }
  .eyebrow { margin-bottom: 10px; }
  h1 { font-size: clamp(34px, 5.2vw, 54px); }
  .intro { margin-top: 10px; font-size: 14px; line-height: 1.42; }
  .launch-panel { margin-top: 12px; padding: 11px 13px; }
  .capabilities { margin-top: 10px; }
  .system-visual { width: min(100%, 330px); }
  .site-footer { padding-top: 6px; }
}

@media (max-width: 700px) and (max-height: 760px) {
  .page-shell { padding: 10px 12px 8px; }
  .brand { width: 108px; padding-top: 2px; }
  .launch-marker { padding: 5px 7px; }
  .launch-marker__dot { width: 6px; height: 6px; }
  .launch-marker span:not(.launch-marker__dot) { font-size: 6px; }
  .launch-marker strong { font-size: 9px; }
  .hero { gap: 6px; padding-block: 6px 2px; }
  .eyebrow { margin-bottom: 7px; font-size: 8px; }
  .eyebrow span { width: 22px; }
  h1 { font-size: clamp(29px, 8.9vw, 38px); line-height: .96; }
  .intro { margin-top: 7px; font-size: 12px; line-height: 1.34; }
  .launch-panel { margin-top: 8px; padding: 8px 10px; }
  .launch-panel__label { margin-bottom: 3px; font-size: 8px; }
  .launch-panel strong { font-size: 14px; }
  .launch-panel p { display: none; }
  .capabilities { margin-top: 7px; gap: 5px 10px; font-size: 8px; }
  .system-visual { width: min(100%, 235px); }
  .module { min-height: 48px; padding: 6px 6px 5px; border-radius: 9px; }
  .module__index { margin-bottom: 3px; font-size: 7px; }
  .module strong { font-size: 7.5px; }
  .module-programmes { min-height: 48px; }
  .core { width: 86px; }
  .core img { width: 25px; height: 25px; margin-bottom: 5px; }
  .core span { font-size: 10px; }
  .core small { display: none; }
  .site-footer { display: none; }
}
