:root {
  --navy: #07192e;
  --navy-2: #0c2645;
  --ink: #101820;
  --cyan: #7ce9eb;
  --coral: #ff6c51;
  --ice: #eaf3f4;
  --paper: #f7f7f2;
  --line: rgba(255, 255, 255, 0.13);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    Arial,
    sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
.skip-link {
  position: fixed;
  top: -50px;
  left: 20px;
  z-index: 100;
  background: #fff;
  padding: 12px 18px;
  border-radius: 8px;
}
.skip-link:focus {
  top: 20px;
}
.site-header {
  height: 88px;
  padding: 0 clamp(24px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy);
  color: #fff;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img {
  width: 74px;
  height: 42px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.brand-divider {
  width: 1px;
  height: 25px;
  background: rgba(255, 255, 255, 0.25);
}
.brand-wordmark {
  font:
    500 10px/1 ui-monospace,
    SFMono-Regular,
    Consolas,
    monospace;
  letter-spacing: 0.17em;
  color: #c9d7e6;
}
.site-header nav {
  display: flex;
  gap: 38px;
  font-size: 13px;
  font-weight: 600;
  color: #c7d3df;
}
.site-header nav a {
  transition: 0.2s ease;
}
.site-header nav a:hover {
  color: var(--cyan);
}
.button,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: 0.25s ease;
}
.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 13px 20px;
}
.button-ghost:hover,
.nav-cta:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}
.arrow {
  transition: transform 0.2s ease;
  display: inline-block;
}
a:hover .arrow {
  transform: translate(3px, -2px);
}
.hero {
  min-height: 790px;
  color: #fff;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 90px clamp(24px, 7vw, 108px) 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.72fr);
  grid-template-rows: 1fr auto;
  gap: 50px 9vw;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(124, 233, 235, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 233, 235, 0.09) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, #000, transparent 64%);
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}
.orb-one {
  width: 500px;
  height: 500px;
  right: -120px;
  top: 70px;
  background: radial-gradient(
    circle at 35% 30%,
    rgba(124, 233, 235, 0.34),
    rgba(42, 104, 155, 0.06) 65%
  );
  border: 1px solid rgba(124, 233, 235, 0.1);
}
.orb-two {
  width: 310px;
  height: 310px;
  right: 23%;
  bottom: -150px;
  background: radial-gradient(
    circle at 45% 35%,
    rgba(255, 108, 81, 0.26),
    transparent 65%
  );
}
.audience-strip,
.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}
.eyebrow,
.micro,
.section-kicker {
  font:
    500 10px/1.2 ui-monospace,
    SFMono-Regular,
    Consolas,
    monospace;
  letter-spacing: 0.17em;
}
.eyebrow {
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow span {
  width: 22px;
  height: 1px;
  background: var(--cyan);
}
.hero h1 {
  margin: 25px 0 28px;
  max-width: 780px;
  font-size: clamp(55px, 6.1vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.065em;
  font-weight: 600;
}
.final-cta h2 em,
.hero h1 em,
.resources h2 em {
  color: var(--cyan);
  font-style: normal;
}
.lede {
  color: #aab9c8;
  font-size: 17px;
  line-height: 1.7;
  max-width: 570px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 38px;
}
.button {
  min-height: 51px;
  padding: 0 25px;
}
.button-primary {
  background: var(--cyan);
  color: #052038;
  box-shadow: 0 10px 35px rgba(124, 233, 235, 0.14);
}
.button-primary:hover {
  background: #fff;
  transform: translateY(-2px);
}
.button-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.23);
}
.hero-panel {
  align-self: center;
  background: rgba(14, 43, 76, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 19px;
  padding: 25px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}
.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 4px 3px 22px;
}
.panel-head h2 {
  margin: 7px 0 0;
  font-size: 21px;
}
.micro {
  color: #8fa5b8;
}
.status {
  color: #9cb0c4;
  font:
    500 8px ui-monospace,
    SFMono-Regular,
    Consolas;
  letter-spacing: 0.08em;
  display: flex;
  gap: 7px;
  align-items: center;
}
.status i {
  width: 7px;
  height: 7px;
  background: #74e0b2;
  border-radius: 50%;
  box-shadow: 0 0 10px #74e0b2;
}
.goal-card {
  min-height: 89px;
  padding: 0 19px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 10px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #bac8d5;
  transition: 0.25s ease;
}
.goal-card.active,
.goal-card:hover {
  margin: 4px 0;
  border-radius: 10px;
  background: var(--cyan);
  color: #06213a;
  border-color: transparent;
  transform: translateX(-7px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}
.goal-number {
  font:
    500 11px ui-monospace,
    SFMono-Regular,
    Consolas;
  opacity: 0.7;
}
.goal-card small,
.goal-card strong {
  display: block;
}
.goal-card strong {
  font-size: 14px;
  margin-bottom: 6px;
}
.goal-card small {
  font-size: 11px;
  opacity: 0.7;
}
.audience-strip {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  gap: 25px;
  border-top: 1px solid var(--line);
  padding-top: 27px;
  color: #dbe5ed;
  font-size: 12px;
}
.audience-strip .micro {
  margin-right: 10px;
}
.audience-strip i {
  width: 3px;
  height: 3px;
  background: var(--cyan);
  border-radius: 50%;
}
.journey {
  padding: 110px clamp(24px, 7vw, 108px);
  background: var(--paper);
}
.section-kicker {
  color: #61707b;
  margin: 0 0 20px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 62px;
}
.community h2,
.resources h2,
.section-heading h2 {
  margin: 0;
  font-size: clamp(39px, 4vw, 63px);
  letter-spacing: -0.055em;
  line-height: 1;
  font-weight: 600;
}
.section-heading > p {
  max-width: 460px;
  color: #5d6871;
  line-height: 1.65;
  font-size: 15px;
}
.journey-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 14px;
}
.journey-rail:before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 22px;
  height: 1px;
  background: #cbd2d2;
}
.journey-rail article {
  position: relative;
  padding: 0 8px;
}
.step-dot {
  display: grid;
  place-items: center;
  position: relative;
  width: 45px;
  height: 45px;
  border: 1px solid #9ca7a9;
  border-radius: 50%;
  background: var(--paper);
  color: #48535b;
  font:
    500 10px ui-monospace,
    SFMono-Regular,
    Consolas;
}
.journey-rail article:nth-child(3) .step-dot {
  background: var(--navy);
  color: var(--cyan);
  border-color: var(--navy);
  box-shadow: 0 0 0 7px rgba(7, 25, 46, 0.08);
}
.journey-rail article > p {
  margin: 38px 0 13px;
  font:
    500 9px ui-monospace,
    SFMono-Regular,
    Consolas;
  letter-spacing: 0.15em;
  color: #727f84;
}
.journey-rail h3 {
  margin: 0 0 22px;
  font-size: 25px;
}
.tag {
  font:
    500 9px ui-monospace,
    SFMono-Regular,
    Consolas;
  padding: 8px 10px;
  background: #e6ecec;
  border-radius: 4px;
  color: #647077;
}
.events-section {
  background: #0b213d;
  color: #fff;
  padding: 105px clamp(24px, 7vw, 108px) 120px;
}
.section-heading.light .section-kicker {
  color: var(--cyan);
}
.section-heading.light h2 {
  font-size: clamp(39px, 4vw, 63px);
}
.text-link {
  font-size: 12px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  padding-bottom: 8px;
}
.event-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr;
  gap: 18px;
}
.event-card {
  min-height: 510px;
  border-radius: 17px;
  padding: 25px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #163555;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s ease;
}
.event-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
}
.event-card.featured {
  background: var(--cyan);
  color: #08213a;
}
.event-card.world {
  background: #f1eee5;
  color: #10243b;
}
.event-card.community-event {
  background: #fe6b51;
  color: #1c1c1a;
}
.event-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font:
    500 8px ui-monospace,
    SFMono-Regular,
    Consolas;
  letter-spacing: 0.12em;
  opacity: 0.75;
}
.pill {
  border: 1px solid currentColor;
  border-radius: 99px;
  padding: 7px 9px;
}
.pill.cyan {
  background: #08213a;
  color: #fff;
  border: 0;
}
.pill.coral {
  background: #20283a;
  color: #fff;
  border: 0;
}
.code-window {
  position: absolute;
  right: -35px;
  top: 85px;
  width: 60%;
  min-height: 210px;
  background: #0b233e;
  color: #d8f8f6;
  border-radius: 12px;
  transform: rotate(3deg);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.code-bar {
  padding: 11px 13px;
  background: #112d4c;
  display: flex;
  gap: 5px;
}
.code-bar i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #f26c58;
}
.code-bar i:nth-child(2) {
  background: #f5bd59;
}
.code-bar i:nth-child(3) {
  background: #69d2a2;
}
.code-window pre {
  font:
    500 13px/2 ui-monospace,
    SFMono-Regular,
    Consolas;
  margin: 23px;
}
.code-window pre span {
  display: inline-block;
  color: #53748f;
  width: 34px;
}
.event-copy {
  position: relative;
  z-index: 1;
}
.event-copy p {
  font:
    500 9px ui-monospace,
    SFMono-Regular,
    Consolas;
  letter-spacing: 0.13em;
  opacity: 0.65;
}
.event-copy h3 {
  font-size: clamp(25px, 2.6vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin: 13px 0 25px;
}
.event-link {
  font-size: 11px;
  font-weight: 700;
  display: flex;
  gap: 8px;
}
.trophy-mark {
  margin: auto;
  display: flex;
  align-items: start;
  color: #d5b476;
  font-size: 120px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.1em;
}
.trophy-mark sup {
  font:
    700 15px ui-monospace,
    SFMono-Regular,
    Consolas;
  margin-top: 20px;
  letter-spacing: 0;
}
.people-motif {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 180px;
  gap: 5px;
}
.people-motif i {
  width: 40px;
  height: 110px;
  border-radius: 25px 25px 7px 7px;
  background: #26354a;
  position: relative;
}
.people-motif i:before {
  content: "";
  position: absolute;
  top: -29px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f4d8a8;
}
.people-motif i:nth-child(2),
.people-motif i:nth-child(4) {
  height: 80px;
  transform: scale(0.75);
}
.people-motif i:nth-child(3) {
  height: 130px;
  background: var(--cyan);
}
.resources {
  padding: 125px clamp(24px, 7vw, 108px);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 9vw;
  background: #f3f4ef;
}
.community-copy > p:not(.section-kicker),
.resources-intro > p:not(.section-kicker) {
  color: #5e696f;
  line-height: 1.7;
  max-width: 440px;
  font-size: 14px;
  margin: 25px 0 34px;
}
.resources h2 em {
  color: #278c94;
}
.button-dark {
  background: var(--navy);
  color: #fff;
}
.button-dark:hover {
  background: #153d64;
  transform: translateY(-2px);
}
.resource-list {
  border-top: 1px solid #c9d0ce;
}
.resource-list > a {
  display: grid;
  grid-template-columns: 30px 55px 1fr auto;
  gap: 22px;
  align-items: center;
  min-height: 123px;
  border-bottom: 1px solid #c9d0ce;
  transition: 0.22s ease;
  padding: 0 12px;
}
.resource-list > a:hover {
  background: #fff;
  padding-left: 22px;
  box-shadow: 0 14px 35px rgba(20, 35, 40, 0.06);
}
.resource-number {
  font:
    500 9px ui-monospace,
    SFMono-Regular,
    Consolas;
  color: #778186;
}
.resource-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: #dfe8e6;
  border-radius: 12px;
  color: #1a5d67;
  font:
    600 16px ui-monospace,
    SFMono-Regular,
    Consolas;
}
.resource-list small {
  font:
    500 8px ui-monospace,
    SFMono-Regular,
    Consolas;
  letter-spacing: 0.14em;
  color: #758185;
}
.resource-list strong {
  display: block;
  font-size: 20px;
  margin-top: 6px;
}
.resource-list p {
  font-size: 11px;
  color: #7c8588;
  margin: 4px 0;
}
.community {
  padding: 120px clamp(24px, 7vw, 108px);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 9vw;
  background: var(--ice);
}
.community-copy {
  align-self: center;
}
.dark-link {
  border-color: #aeb9ba;
}
.audience-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.audience-cards > a {
  min-height: 175px;
  padding: 25px;
  background: #fff;
  border-radius: 13px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr auto;
  transition: 0.25s ease;
}
.audience-cards > a:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-5px);
}
.audience-cards b {
  font-size: 40px;
  color: #b5c6c9;
  letter-spacing: -0.06em;
}
.audience-cards span {
  font-size: 17px;
  font-weight: 700;
}
.audience-cards small {
  display: block;
  font:
    500 8px ui-monospace,
    SFMono-Regular,
    Consolas;
  letter-spacing: 0.15em;
  color: #829397;
  margin-bottom: 5px;
}
.audience-cards .arrow {
  grid-column: 2;
  grid-row: 2;
}
.final-cta {
  min-height: 570px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.final-cta > p {
  font:
    500 9px ui-monospace,
    SFMono-Regular,
    Consolas;
  letter-spacing: 0.17em;
  color: #96a9bc;
}
.final-cta h2 {
  font-size: clamp(55px, 6vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.06em;
  margin: 24px 0 38px;
}
.final-cta > div:not(.cta-signal) {
  display: flex;
  gap: 12px;
}
.cta-signal {
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5vw;
  opacity: 0.16;
}
.cta-signal i {
  width: 1px;
  background: var(--cyan);
  height: 50px;
}
.cta-signal i:nth-child(2) {
  height: 95px;
}
.cta-signal i:nth-child(3) {
  height: 25px;
}
.cta-signal i:nth-child(4) {
  height: 120px;
}
.cta-signal i:nth-child(5) {
  height: 65px;
}
.cta-signal i:nth-child(6) {
  height: 100px;
}
footer {
  background: #050f1d;
  color: #b5c2cf;
  padding: 75px clamp(24px, 7vw, 108px) 30px;
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr 1fr;
  gap: 60px;
}
footer img {
  width: 90px;
  height: auto;
  aspect-ratio: 300/233;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 22px;
}
.footer-brand p {
  font-size: 12px;
  line-height: 1.7;
  color: #76899d;
}
.footer-connect,
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 11px;
}
.footer-connect > span,
.footer-links span {
  font:
    500 8px ui-monospace,
    SFMono-Regular,
    Consolas;
  letter-spacing: 0.16em;
  color: #60748a;
  margin-bottom: 9px;
}
.footer-connect a:hover,
.footer-links a:hover {
  color: var(--cyan);
}
.socials {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}
.socials a {
  width: 30px;
  height: 30px;
  border: 1px solid #26384b;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font:
    500 9px ui-monospace,
    SFMono-Regular,
    Consolas;
}
.footer-bottom {
  grid-column: 1/-1;
  border-top: 1px solid #1d2d3e;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font:
    500 8px ui-monospace,
    SFMono-Regular,
    Consolas;
  letter-spacing: 0.11em;
  color: #617285;
}
.footer-bottom a {
  color: #9db0c2;
}
@media (max-width: 1000px) {
  .site-header nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-panel {
    max-width: 620px;
  }
  .journey-rail {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  .journey-rail:before {
    display: none;
  }
  .event-grid {
    grid-template-columns: 1fr 1fr;
  }
  .event-card.featured {
    grid-column: 1/-1;
  }
  .community,
  .resources {
    grid-template-columns: 1fr;
  }
  .community-copy,
  .resources-intro {
    max-width: 620px;
  }
  footer {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
  .footer-connect {
    grid-column: 1/-1;
  }
}
@media (max-width: 650px) {
  .site-header {
    height: 74px;
  }
  .brand-divider,
  .brand-wordmark,
  .nav-cta {
    display: none;
  }
  .hero {
    padding-top: 70px;
    min-height: auto;
  }
  .hero h1 {
    font-size: 52px;
  }
  .hero-panel {
    padding: 15px;
  }
  .audience-strip {
    gap: 12px;
    flex-wrap: wrap;
  }
  .community,
  .events-section,
  .journey,
  .resources {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .section-heading {
    align-items: start;
    flex-direction: column;
    margin-bottom: 40px;
  }
  .journey-rail {
    grid-template-columns: 1fr;
  }
  .journey-rail article {
    display: grid;
    grid-template-columns: 55px 1fr;
    align-items: center;
  }
  .journey-rail .tag,
  .journey-rail article > p,
  .journey-rail h3 {
    grid-column: 2;
    margin: 4px 0;
  }
  .step-dot {
    grid-row: 1/4;
  }
  .event-grid {
    grid-template-columns: 1fr;
  }
  .event-card.featured {
    grid-column: auto;
  }
  .event-card {
    min-height: 460px;
  }
  .code-window {
    width: 66%;
  }
  .resource-list > a {
    grid-template-columns: 24px 46px 1fr;
    gap: 12px;
  }
  .resource-list > a > .arrow {
    display: none;
  }
  .audience-cards {
    grid-template-columns: 1fr;
  }
  .final-cta > div:not(.cta-signal) {
    flex-direction: column;
  }
  .final-cta h2 {
    font-size: 55px;
  }
  footer {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-bottom {
    gap: 12px;
    flex-direction: column;
  }
  .footer-connect {
    grid-column: 1/-1;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
:root {
  --cyan-bright: #a4fbf7;
  --surface: #ffffff;
  --shadow-sm: 0 14px 35px rgba(4, 22, 39, 0.08);
  --shadow-lg: 0 30px 90px rgba(0, 8, 22, 0.24);
  --ease: cubic-bezier(0.2, 0.75, 0.2, 1);
}
body {
  overflow-x: hidden;
}
::selection {
  background: var(--cyan);
  color: var(--navy);
}
.site-header {
  position: sticky;
  top: 0;
  height: 80px;
  background: rgba(7, 25, 46, 0.82);
  border-bottom-color: rgba(164, 251, 247, 0.15);
  box-shadow: 0 10px 40px rgba(0, 9, 25, 0.16);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}
.site-header:after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(124, 233, 235, 0.62),
    transparent
  );
  transform: scaleX(0.72);
}
.brand img {
  transition:
    transform 0.35s var(--ease),
    filter 0.35s ease;
}
.brand:hover img {
  transform: translateY(-2px) scale(1.035);
}
.site-header nav a {
  position: relative;
  padding: 29px 0;
}
.site-header nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 19px;
  height: 2px;
  border-radius: 2px;
  background: var(--cyan);
  transition: right 0.3s var(--ease);
}
.site-header nav a:focus-visible:after,
.site-header nav a:hover:after {
  right: 0;
}
.button,
.nav-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}
.button:before,
.nav-cta:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    115deg,
    transparent 25%,
    rgba(255, 255, 255, 0.34) 48%,
    transparent 70%
  );
  transform: translateX(-130%);
  transition: transform 0.65s var(--ease);
}
.button:hover:before,
.nav-cta:hover:before {
  transform: translateX(130%);
}
.button:hover,
.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.button-primary {
  background: linear-gradient(135deg, var(--cyan-bright), var(--cyan));
}
.button-dark {
  background: linear-gradient(135deg, #123b62, var(--navy));
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    rgba(124, 233, 235, 0.035),
    transparent 35%,
    rgba(255, 108, 81, 0.035)
  );
  mix-blend-mode: screen;
}
.orb-one {
  animation: orb-drift 12s ease-in-out infinite alternate;
}
.orb-two {
  animation: orb-drift 15s ease-in-out -4s infinite alternate-reverse;
}
.hero-copy {
  animation: hero-rise 0.8s 0.08s both var(--ease);
}
.hero-panel {
  animation:
    hero-rise 0.9s 0.2s both var(--ease),
    panel-float 8s 1.2s ease-in-out infinite;
}
.hero h1 {
  text-wrap: balance;
  text-shadow: 0 12px 50px rgba(0, 0, 0, 0.18);
}
.hero h1 em {
  filter: drop-shadow(0 0 25px rgba(124, 233, 235, 0.14));
}
.hero-panel {
  background: linear-gradient(
    145deg,
    rgba(28, 67, 104, 0.78),
    rgba(9, 31, 57, 0.72)
  );
  border-color: rgba(164, 251, 247, 0.22);
  box-shadow:
    var(--shadow-lg),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
.goal-card {
  border-radius: 12px;
}
.goal-card:not(.active):hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.goal-card.active,
.goal-card:hover {
  box-shadow:
    0 18px 45px rgba(0, 10, 25, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}
.status i {
  animation: status-pulse 2.2s ease-out infinite;
}
.journey-rail {
  gap: 18px;
}
.journey-rail:before {
  opacity: 0.7;
}
.journey-rail article {
  min-height: 245px;
  padding: 22px;
  border: 1px solid rgba(23, 54, 63, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease;
}
.journey-rail article:hover {
  z-index: 1;
  transform: translateY(-9px);
  background: #fff;
  border-color: rgba(39, 140, 148, 0.22);
  box-shadow: var(--shadow-sm);
}
.step-dot {
  box-shadow: 0 7px 20px rgba(7, 25, 46, 0.08);
}
.journey-rail article:hover .step-dot {
  background: var(--navy);
  color: var(--cyan);
  border-color: var(--navy);
  transform: rotate(-7deg) scale(1.06);
}
.event-card {
  isolation: isolate;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.event-card:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 230px;
  height: 230px;
  right: -105px;
  bottom: -115px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  transition: transform 0.55s var(--ease);
}
.event-card:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(
    130deg,
    rgba(255, 255, 255, 0.14),
    transparent 45%
  );
  transition: opacity 0.35s ease;
}
.event-card:hover {
  transform: translateY(-10px) scale(1.008);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}
.event-card:hover:before {
  transform: scale(1.38);
}
.event-card:hover:after {
  opacity: 1;
}
.code-window {
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s ease;
}
.event-card:hover .code-window {
  transform: rotate(1deg) translate(-8px, -5px);
  box-shadow: 0 30px 55px rgba(0, 0, 0, 0.32);
}
.resource-list {
  border-top: 0;
  display: grid;
  gap: 10px;
}
.resource-list > a {
  min-height: 112px;
  border: 1px solid rgba(18, 49, 58, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.52);
}
.resource-list > a:hover {
  padding-left: 22px;
  border-color: rgba(39, 140, 148, 0.22);
  box-shadow: var(--shadow-sm);
  transform: translateX(6px);
}
.resource-icon {
  transition:
    transform 0.35s var(--ease),
    background 0.35s ease,
    color 0.35s ease;
}
.resource-list > a:hover .resource-icon {
  transform: rotate(-6deg) scale(1.08);
  background: var(--navy);
  color: var(--cyan);
}
.audience-cards > a {
  border: 1px solid rgba(18, 49, 58, 0.08);
  background: linear-gradient(145deg, #fff, rgba(255, 255, 255, 0.68));
  box-shadow:
    0 10px 30px rgba(10, 34, 43, 0.045),
    inset 0 1px 0 #fff;
  overflow: hidden;
  position: relative;
}
.audience-cards > a:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  top: -72px;
  right: -65px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.18;
  transition:
    transform 0.45s var(--ease),
    opacity 0.3s ease;
}
.audience-cards > a:hover {
  transform: translateY(-7px) rotate(-0.35deg);
  box-shadow: 0 24px 50px rgba(4, 22, 39, 0.16);
}
.audience-cards > a:hover:before {
  transform: scale(1.7);
  opacity: 0.1;
}
.final-cta:before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(124, 233, 235, 0.11);
  border-radius: 50%;
  box-shadow:
    0 0 0 100px rgba(124, 233, 235, 0.025),
    0 0 0 200px rgba(124, 233, 235, 0.018);
  animation: cta-orbit 12s linear infinite;
}
.final-cta > div:not(.cta-signal),
.final-cta > h2,
.final-cta > p {
  position: relative;
  z-index: 1;
}
.socials a {
  transition:
    transform 0.25s var(--ease),
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}
.socials a:hover {
  transform: translateY(-3px);
  background: var(--cyan);
  color: var(--navy);
  border-color: var(--cyan);
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--cyan-bright);
  outline-offset: 4px;
  border-radius: 6px;
}
@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes panel-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}
@keyframes orb-drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-24px, 18px, 0) scale(1.05);
  }
}
@keyframes status-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(116, 224, 178, 0.55);
  }
  100%,
  70% {
    box-shadow: 0 0 0 8px rgba(116, 224, 178, 0);
  }
}
@keyframes cta-orbit {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 1000px) {
  .site-header {
    height: 74px;
  }
  .journey-rail article {
    min-height: 220px;
  }
}
@media (max-width: 650px) {
  .site-header {
    height: 68px;
    padding-inline: 20px;
  }
  .brand img {
    width: 70px;
  }
  .hero {
    padding-top: 58px;
  }
  .hero-panel {
    animation: hero-rise 0.8s 0.15s both var(--ease);
  }
  .journey-rail article {
    min-height: 0;
  }
  .resource-list > a:hover {
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .final-cta:before,
  .hero-copy,
  .hero-panel,
  .orb-one,
  .orb-two,
  .status i {
    animation: none !important;
  }
}
:root {
  --edge: rgba(13, 45, 65, 0.12);
  --edge-light: rgba(164, 251, 247, 0.17);
  --elevated-shadow: 0 28px 70px rgba(4, 22, 39, 0.13);
  --card-radius: 20px;
}
.community,
.events-section,
.journey,
.resources {
  position: relative;
  overflow: hidden;
}
.community:before,
.journey:before,
.resources:before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(1px);
}
.journey:before {
  right: -240px;
  top: -240px;
  border: 1px solid rgba(39, 140, 148, 0.12);
  box-shadow:
    0 0 0 80px rgba(39, 140, 148, 0.025),
    0 0 0 160px rgba(39, 140, 148, 0.018);
}
.resources:before {
  left: -300px;
  bottom: -290px;
  background: radial-gradient(
    circle,
    rgba(124, 233, 235, 0.13),
    transparent 68%
  );
}
.community:before {
  right: -280px;
  top: -240px;
  background: radial-gradient(circle, rgba(255, 108, 81, 0.1), transparent 68%);
}
.community > *,
.journey > *,
.resources > * {
  position: relative;
  z-index: 1;
}
.section-kicker {
  width: max-content;
  min-height: 30px;
  margin-bottom: 24px;
  padding: 0 12px;
  border: 1px solid rgba(25, 69, 78, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.section-heading.light .section-kicker {
  border-color: rgba(164, 251, 247, 0.2);
  background: rgba(124, 233, 235, 0.07);
}
.section-kicker:before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  opacity: 1;
}
.community h2,
.resources h2,
.section-heading h2 {
  text-wrap: balance;
}
.journey-rail article {
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--card-radius);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.38)
  );
}
.journey-rail article:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 150px;
  height: 150px;
  right: -95px;
  top: -95px;
  border-radius: 50%;
  background: linear-gradient(
    145deg,
    rgba(124, 233, 235, 0.28),
    rgba(255, 108, 81, 0.08)
  );
  transition: transform 0.5s var(--ease);
}
.journey-rail article:hover:before {
  transform: scale(1.75);
}
.journey-rail h3 {
  letter-spacing: -0.025em;
}
.tag {
  width: max-content;
  border: 1px solid rgba(24, 62, 70, 0.08);
  background: rgba(220, 234, 232, 0.74);
}
.event-grid {
  perspective: 1200px;
}
.event-card {
  border-radius: var(--card-radius);
}
.event-card .pill {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.event-card .event-top:after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 9px;
  flex: none;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.48;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.09);
}
.event-copy h3 {
  text-wrap: balance;
}
.event-link {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.event-card.featured {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.54);
}
.event-card.world {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}
.resource-list > a {
  position: relative;
  overflow: hidden;
  border-radius: var(--card-radius);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.48)
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}
.resource-list > a:before {
  content: "";
  position: absolute;
  inset: 14px auto 14px 0;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(var(--cyan), var(--coral));
  transform: scaleY(0);
  transition: transform 0.35s var(--ease);
}
.resource-list > a:hover:before {
  transform: scaleY(1);
}
.resource-list strong {
  letter-spacing: -0.02em;
}
.resource-list > a:hover {
  border-color: rgba(39, 140, 148, 0.28);
  box-shadow: var(--elevated-shadow);
}
.audience-cards > a {
  min-height: 188px;
  border-radius: var(--card-radius);
}
.audience-cards b {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(25, 69, 78, 0.09);
  border-radius: 18px;
  background: rgba(234, 243, 244, 0.72);
  font-size: 29px;
  color: #78999d;
  box-shadow: inset 0 1px 0 #fff;
  transition:
    transform 0.35s var(--ease),
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease;
}
.audience-cards > a:hover b {
  transform: rotate(-5deg) scale(1.05);
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--navy);
}
.audience-cards span {
  letter-spacing: -0.02em;
}
.final-cta {
  background:
    radial-gradient(
      circle at 50% 115%,
      rgba(124, 233, 235, 0.18),
      transparent 36%
    ),
    linear-gradient(145deg, #07192e, #081f38);
}
.final-cta h2 {
  text-wrap: balance;
  text-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}
.final-cta .button {
  min-width: 168px;
}
.footer-connect > a,
.footer-links a {
  width: max-content;
  position: relative;
  padding-bottom: 3px;
}
.footer-connect > a:after,
.footer-links a:after {
  content: "";
  position: absolute;
  inset: auto 100% 0 0;
  height: 1px;
  background: var(--cyan);
  transition: right 0.3s var(--ease);
}
.footer-connect > a:hover:after,
.footer-links a:hover:after {
  right: 0;
}
@media (hover: none) {
  .audience-cards > a:hover,
  .event-card:hover,
  .journey-rail article:hover {
    transform: none;
  }
  .audience-cards > a:active,
  .event-card:active,
  .journey-rail article:active {
    transform: scale(0.985);
  }
}
@media (max-width: 1000px) {
  .journey-rail article {
    min-height: 236px;
  }
  .event-grid {
    gap: 14px;
  }
}
@media (max-width: 650px) {
  .section-kicker {
    margin-bottom: 19px;
  }
  .journey-rail article {
    padding: 19px;
    border-radius: 17px;
  }
  .audience-cards > a,
  .event-card,
  .resource-list > a {
    border-radius: 17px;
  }
  .event-card {
    min-height: 430px;
  }
  .audience-cards > a {
    min-height: 158px;
  }
  .audience-cards b {
    width: 54px;
    height: 54px;
    font-size: 24px;
    border-radius: 15px;
  }
  .resource-list > a {
    min-height: 106px;
    padding-inline: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .footer-connect > a:after,
  .footer-links a:after,
  .journey-rail article:before,
  .resource-list > a:before {
    transition: none;
  }
}
.hero {
  --pointer-x: 72%;
  --pointer-y: 28%;
}
.hero:after {
  background:
    radial-gradient(
      circle 420px at var(--pointer-x) var(--pointer-y),
      rgba(164, 251, 247, 0.105),
      transparent 68%
    ),
    linear-gradient(
      120deg,
      rgba(124, 233, 235, 0.035),
      transparent 35%,
      rgba(255, 108, 81, 0.035)
    );
  transition: background-position 0.18s ease-out;
}
.hero-grid {
  animation: grid-drift 22s linear infinite;
  transform-origin: center;
}
.hero-panel:before {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    transparent 28%,
    transparent 70%,
    rgba(124, 233, 235, 0.06)
  );
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  padding: 1px;
}
.goal-card {
  position: relative;
  overflow: hidden;
}
.goal-card:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    transparent 15%,
    rgba(255, 255, 255, 0.22),
    transparent 65%
  );
  transform: translateX(-120%);
  transition: transform 0.6s var(--ease);
}
.goal-card:focus-visible:after,
.goal-card:hover:after {
  transform: translateX(120%);
}
.event-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --card-x: 50%;
  --card-y: 50%;
  transform-style: preserve-3d;
  will-change: transform;
}
.event-card:hover {
  transform: translateY(-10px) scale(1.008) rotateX(var(--tilt-x))
    rotateY(var(--tilt-y));
}
.event-card:after {
  opacity: 0;
  background:
    radial-gradient(
      circle 190px at var(--card-x) var(--card-y),
      rgba(255, 255, 255, 0.24),
      transparent 70%
    ),
    linear-gradient(130deg, rgba(255, 255, 255, 0.12), transparent 45%);
}
.event-card:hover:after {
  opacity: 1;
}
.event-card .code-window,
.event-card .event-copy,
.event-card .event-top,
.event-card .people-motif,
.event-card .trophy-mark {
  transform: translateZ(18px);
}
.event-card .event-link {
  transition:
    transform 0.3s var(--ease),
    background 0.3s ease,
    box-shadow 0.3s ease;
}
.event-card:hover .event-link {
  transform: translateY(-2px);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
}
.audience-cards > a > .arrow,
.resource-list > a .arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 53, 62, 0.13);
  border-radius: 50%;
  transition:
    transform 0.3s var(--ease),
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}
.audience-cards > a:hover > .arrow,
.resource-list > a:hover .arrow {
  transform: translate(3px, -3px) rotate(6deg);
  background: var(--navy);
  color: var(--cyan);
  border-color: var(--navy);
}
.audience-cards > a,
.journey-rail article,
.resource-list > a {
  -webkit-tap-highlight-color: transparent;
}
@keyframes grid-drift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(44px, 44px, 0);
  }
}
@media (max-width: 650px) {
  .hero:after {
    background:
      radial-gradient(
        circle 260px at 76% 22%,
        rgba(164, 251, 247, 0.09),
        transparent 70%
      ),
      linear-gradient(
        120deg,
        rgba(124, 233, 235, 0.03),
        transparent 40%,
        rgba(255, 108, 81, 0.03)
      );
  }
  .hero-grid {
    animation: none;
  }
  .event-card .code-window,
  .event-card .event-copy,
  .event-card .event-top,
  .event-card .people-motif,
  .event-card .trophy-mark {
    transform: none;
  }
}
@media (hover: none), (prefers-reduced-motion: reduce) {
  .hero-grid {
    animation: none;
  }
  .event-card {
    will-change: auto;
  }
  .event-card:hover {
    transform: none;
  }
  .event-card .code-window,
  .event-card .event-copy,
  .event-card .event-top,
  .event-card .people-motif,
  .event-card .trophy-mark {
    transform: none;
  }
}
.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 80;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.04);
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(
    90deg,
    var(--cyan),
    var(--cyan-bright),
    var(--coral)
  );
  box-shadow: 0 0 16px rgba(124, 233, 235, 0.58);
  will-change: transform;
}
.site-header.scrolled {
  background: rgba(5, 20, 38, 0.94);
  box-shadow: 0 16px 48px rgba(0, 8, 22, 0.28);
}
.menu-toggle,
.mobile-menu {
  display: none;
}
.site-header .mobile-menu {
  display: none;
}
.menu-toggle {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.menu-toggle span {
  width: 17px;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  transition:
    transform 0.3s var(--ease),
    opacity 0.2s ease;
}
.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}
.goal-number {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.goal-card.active .goal-number,
.goal-card:hover .goal-number {
  background: rgba(7, 25, 46, 0.09);
}
.section-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
}
.section-kicker:before {
  content: "";
  width: 26px;
  height: 1px;
  flex: none;
  background: currentColor;
  opacity: 0.55;
}
.journey-rail article:after {
  content: "";
  position: absolute;
  inset: auto 22px 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(90deg, var(--cyan), var(--coral));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.journey-rail article:hover:after {
  transform: scaleX(1);
}
.event-link {
  width: max-content;
  min-height: 34px;
  padding: 0 13px;
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  transition:
    transform 0.25s var(--ease),
    background 0.25s ease;
}
.event-card:hover .event-link {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.18);
}
.event-card.featured .event-link,
.event-card.world .event-link {
  background: rgba(7, 25, 46, 0.06);
}
.resource-list > a > .arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(18, 49, 58, 0.13);
  border-radius: 50%;
  transition:
    transform 0.3s var(--ease),
    background 0.3s ease,
    color 0.3s ease;
}
.resource-list > a:hover > .arrow {
  transform: rotate(45deg);
  background: var(--navy);
  color: var(--cyan);
}
.audience-cards > a .arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.7;
}
.audience-cards > a:hover .arrow {
  transform: rotate(45deg);
  opacity: 1;
}
.js .reveal.reveal-pending {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.js .reveal.visible,
.static .reveal {
  opacity: 1;
  transform: translateY(0);
}
.event-grid .reveal:nth-child(2),
.journey-rail .reveal:nth-child(2) {
  transition-delay: 0.08s;
}
.event-grid .reveal:nth-child(3),
.journey-rail .reveal:nth-child(3) {
  transition-delay: 0.16s;
}
.journey-rail .reveal:nth-child(4) {
  transition-delay: 0.24s;
}
@media (max-width: 1000px) {
  .desktop-nav,
  .site-header > .nav-cta {
    display: none;
  }
  .menu-toggle {
    display: flex;
    margin-left: auto;
  }
  .site-header .mobile-menu {
    display: grid;
    position: absolute;
    inset: calc(100% + 10px) 20px auto;
    padding: 12px;
    border: 1px solid rgba(164, 251, 247, 0.18);
    border-radius: 18px;
    background: rgba(7, 25, 46, 0.97);
    box-shadow: 0 28px 70px rgba(0, 8, 22, 0.36);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.985);
    transform-origin: top right;
    pointer-events: none;
    transition:
      opacity 0.25s ease,
      transform 0.3s var(--ease),
      visibility 0.25s;
  }
  .site-header .mobile-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
  .mobile-menu a {
    min-height: 48px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 11px;
    color: #d8e4ee;
    font-size: 14px;
    font-weight: 700;
  }
  .mobile-menu a:focus-visible,
  .mobile-menu a:hover {
    background: rgba(124, 233, 235, 0.1);
    color: var(--cyan);
  }
  .mobile-menu .mobile-menu-cta {
    margin-top: 6px;
    background: var(--cyan);
    color: var(--navy);
  }
}
@media (max-width: 650px) {
  .scroll-progress {
    height: 2px;
  }
  .menu-toggle {
    width: 40px;
    height: 40px;
  }
  .hero-actions {
    align-items: stretch;
  }
  .hero-actions .button {
    flex: 1;
    padding-inline: 16px;
  }
  .goal-number {
    width: 28px;
    height: 28px;
  }
  .js .reveal.reveal-pending {
    transform: translateY(18px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal {
    opacity: 1;
    transform: none;
  }
  .scroll-progress span {
    will-change: auto;
  }
}

@media (min-width: 761px) {
  .hero {
    min-height: 750px;
    padding-top: 75px;
    row-gap: 40px;
  }
  .events-section {
    padding-top: 90px;
    padding-bottom: 100px;
  }
  .resources {
    padding-top: 105px;
    padding-bottom: 105px;
  }
}
:root {
  --ui-glow: rgba(124, 233, 235, 0.22);
  --ui-glow-strong: rgba(124, 233, 235, 0.38);
  --ui-ink: #07192e;
  --ui-radius: 22px;
  --ui-spring: cubic-bezier(0.2, 0.8, 0.2, 1);
}
::selection {
  background: var(--cyan);
  color: #061b31;
}
.site-header {
  isolation: isolate;
  transition:
    height 0.35s var(--ui-spring),
    background 0.35s ease,
    box-shadow 0.35s ease;
}
.site-header:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    420px circle at var(--nav-x, 50%) -80%,
    rgba(124, 233, 235, 0.19),
    transparent 72%
  );
  opacity: 0.8;
}
.site-header.scrolled .brand img {
  transform: scale(0.94);
}
.brand img {
  transition: transform 0.35s var(--ui-spring);
}
.button,
.nav-cta {
  isolation: isolate;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.button:before,
.nav-cta:before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 255, 255, 0.42) 42%,
    transparent 62%
  );
  transform: translateX(-130%) skewX(-12deg);
  transition: transform 0.7s var(--ui-spring);
}
.button:focus-visible:before,
.button:hover:before,
.nav-cta:focus-visible:before,
.nav-cta:hover:before {
  transform: translateX(130%) skewX(-12deg);
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      360px circle at var(--pointer-x, 70%) var(--pointer-y, 35%),
      rgba(124, 233, 235, 0.09),
      transparent 70%
    ),
    linear-gradient(
      115deg,
      transparent 52%,
      rgba(255, 255, 255, 0.018) 52.2%,
      transparent 52.4%
    );
  mix-blend-mode: screen;
}
.audience-strip,
.hero-copy,
.hero-panel {
  position: relative;
  z-index: 2;
}
.hero-panel {
  --panel-rx: 0deg;
  --panel-ry: 0deg;
  transform: perspective(1100px) rotateX(var(--panel-rx))
    rotateY(var(--panel-ry)) translateZ(0);
  transform-style: preserve-3d;
  transition:
    transform 0.18s ease,
    box-shadow 0.35s var(--ui-spring),
    border-color 0.35s ease;
  background:
    linear-gradient(145deg, rgba(25, 62, 98, 0.78), rgba(8, 31, 58, 0.74)),
    radial-gradient(circle at 20% 0, rgba(124, 233, 235, 0.12), transparent 42%);
  box-shadow:
    0 38px 100px rgba(0, 7, 20, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.hero-panel:hover {
  border-color: rgba(164, 251, 247, 0.34);
  box-shadow:
    0 44px 110px rgba(0, 7, 20, 0.45),
    0 0 0 1px rgba(124, 233, 235, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
}
.hero-panel > * {
  transform: translateZ(18px);
}
.status i {
  animation: icpc-status-pulse 2.3s ease-out infinite;
}
@keyframes icpc-status-pulse {
  0%,
  45% {
    box-shadow:
      0 0 0 0 rgba(116, 224, 178, 0.4),
      0 0 10px #74e0b2;
  }
  100%,
  75% {
    box-shadow:
      0 0 0 8px rgba(116, 224, 178, 0),
      0 0 10px #74e0b2;
  }
}
.goal-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 13px;
}
.goal-card:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.14),
    transparent 46%
  );
  transition: opacity 0.3s ease;
}
.goal-card.active:before,
.goal-card:hover:before {
  opacity: 1;
}
.goal-number {
  border: 1px solid currentColor;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
}
.journey-rail {
  gap: 16px;
}
.journey-rail article {
  min-height: 232px;
  padding: 28px 24px 24px;
  border: 1px solid rgba(7, 25, 46, 0.09);
  border-radius: var(--ui-radius);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.86),
    rgba(240, 243, 238, 0.64)
  );
  box-shadow: 0 18px 45px rgba(20, 42, 48, 0.05);
  transition:
    transform 0.35s var(--ui-spring),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.journey-rail article:after {
  content: "";
  position: absolute;
  inset: auto 22px 18px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  transform: scaleX(0.18);
  transform-origin: left;
  opacity: 0.55;
  transition:
    transform 0.45s var(--ui-spring),
    opacity 0.35s;
}
.journey-rail article:hover {
  z-index: 2;
  transform: translateY(-8px);
  border-color: rgba(7, 25, 46, 0.16);
  box-shadow: 0 26px 65px rgba(18, 44, 52, 0.12);
}
.journey-rail article:hover:after {
  transform: scaleX(1);
  opacity: 1;
}
.journey-rail article > p {
  margin-top: 27px;
}
.event-card {
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition:
    transform 0.2s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.event-card:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    320px circle at var(--card-x, 50%) var(--card-y, 50%),
    rgba(255, 255, 255, 0.28),
    transparent 62%
  );
  opacity: 0;
  mix-blend-mode: soft-light;
  transition: opacity 0.3s ease;
}
.event-card:hover:after {
  opacity: 1;
}
.event-card:hover {
  transform: perspective(1000px) translateY(-8px) rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg));
}
.event-card > * {
  position: relative;
  z-index: 1;
  transform: translateZ(16px);
}
.resource-list > a {
  margin: 7px 0;
  padding: 20px 22px;
  border: 1px solid transparent;
  border-radius: 18px;
  transition:
    transform 0.32s var(--ui-spring),
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.resource-list > a:focus-visible,
.resource-list > a:hover {
  z-index: 2;
  transform: translateX(9px);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(7, 25, 46, 0.1);
  box-shadow: 0 18px 42px rgba(18, 44, 52, 0.09);
}
.resource-icon {
  transition:
    transform 0.4s var(--ui-spring),
    background 0.3s ease,
    color 0.3s ease;
}
.resource-list > a:hover .resource-icon {
  transform: rotate(-8deg) scale(1.08);
  background: var(--navy);
  color: var(--cyan);
}
.audience-cards > a {
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.34s var(--ui-spring),
    box-shadow 0.34s ease,
    border-color 0.34s ease;
}
.audience-cards > a:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
    230px circle at 0 100%,
    rgba(124, 233, 235, 0.18),
    transparent 68%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}
.audience-cards > a:focus-visible,
.audience-cards > a:hover {
  z-index: 2;
  transform: translateY(-6px);
  border-color: rgba(124, 233, 235, 0.35);
  box-shadow: 0 24px 55px rgba(7, 25, 46, 0.13);
}
.audience-cards > a:focus-visible:before,
.audience-cards > a:hover:before {
  opacity: 1;
}
.audience-cards b {
  transition:
    transform 0.35s var(--ui-spring),
    color 0.3s ease;
}
.audience-cards > a:hover b {
  transform: scale(1.06);
  color: var(--cyan);
}
.final-cta {
  isolation: isolate;
}
.final-cta:after {
  content: "";
  position: absolute;
  width: min(64vw, 780px);
  aspect-ratio: 1;
  border: 1px solid rgba(124, 233, 235, 0.11);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 80px rgba(124, 233, 235, 0.025),
    0 0 0 160px rgba(124, 233, 235, 0.015);
  pointer-events: none;
  z-index: -1;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}
@media (max-width: 980px) {
  .journey-rail {
    gap: 12px;
  }
  .journey-rail article {
    min-height: 205px;
    padding: 22px 18px;
  }
}
@media (max-width: 700px) {
  .hero-panel {
    transform: none !important;
  }
  .journey-rail article {
    min-height: auto;
  }
  .resource-list > a {
    margin: 4px 0;
    padding: 17px 14px;
    border-radius: 14px;
  }
  .resource-list > a:focus-visible,
  .resource-list > a:hover {
    transform: translateX(4px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .status i {
    animation: none;
  }
  .event-card,
  .event-card:hover,
  .hero-panel {
    transform: none !important;
  }
  .button:before,
  .nav-cta:before {
    display: none;
  }
}
@media (min-width: 901px) {
  .site-header {
    transition:
      height 0.35s var(--ui-spring),
      margin 0.35s var(--ui-spring),
      border-radius 0.35s var(--ui-spring),
      background 0.35s ease,
      box-shadow 0.35s ease,
      border-color 0.35s ease;
  }
  .site-header.scrolled {
    top: 12px;
    height: 66px;
    margin-inline: 18px;
    border: 1px solid rgba(164, 251, 247, 0.19);
    border-radius: 18px;
    background: rgba(5, 20, 38, 0.88);
    box-shadow:
      0 18px 55px rgba(0, 8, 22, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }
  .site-header.scrolled:after {
    inset: auto 22px -1px;
    border-radius: 99px;
  }
  .site-header.scrolled nav a {
    padding: 22px 0;
  }
  .site-header.scrolled .nav-cta {
    padding: 11px 18px;
  }
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid #c8ff62 !important;
  outline-offset: 4px;
}
.deadline-banner {
  align-items: center;
  background: #c8ff62;
  color: #07192e;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-top: 80px;
  padding: 12px clamp(24px, 7vw, 86px);
  position: relative;
  z-index: 20;
}
.deadline-banner > div {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}
.deadline-banner strong {
  font-size: 14px;
}
.deadline-banner span {
  font-size: 12px;
}
.deadline-banner .deadline-status {
  background: #07192e;
  border-radius: 999px;
  color: #fff;
  font: 700 10px var(--mono);
  letter-spacing: 0.04em;
  padding: 7px 10px;
  text-transform: uppercase;
}
.deadline-dot {
  background: #07192e;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(7, 25, 46, 0.12);
  height: 8px;
  width: 8px;
}
.deadline-banner > a {
  background: #07192e;
  border-radius: 7px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 11px 16px;
  white-space: nowrap;
}
.deadline-banner > a:hover {
  background: #17486f;
  color: #fff;
}
.audience-cards small,
.journey-rail article > p,
.resources .resource-list small {
  color: #4e6269 !important;
  font-size: 11px !important;
}
.journey-rail .tag,
.resources .resource-list p {
  color: #4c5e64 !important;
  font-size: 13px !important;
}
.resources .resource-number {
  color: #4c5e64 !important;
  font-size: 11px !important;
}
.audience-cards b {
  color: #52737a !important;
}
.event-card .event-copy > p,
.event-card .event-top {
  font-size: 11px !important;
}
.footer-connect > a,
.footer-links a,
footer p {
  color: rgba(255, 255, 255, 0.76) !important;
}
.socials a {
  color: #fff !important;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.78);
}
.footer-legal a:hover {
  color: #c8ff62;
}
@media (max-width: 760px) {
  .deadline-banner {
    align-items: center;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    margin-top: 68px;
    padding: 10px 16px;
  }
  .deadline-banner > div {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 4px 8px;
  }
  .deadline-banner > div > span:not(.deadline-dot):not(.deadline-status) {
    display: block;
    font-size: 10px;
    grid-column: 2;
    line-height: 1.25;
  }
  .deadline-banner .deadline-status {
    grid-column: 2;
    justify-self: start;
    padding: 5px 8px;
  }
  .deadline-banner strong {
    line-height: 1.15;
  }
  .deadline-banner > a {
    padding: 10px 12px;
    text-align: center;
  }
  .footer-legal {
    justify-content: flex-start;
  }
}
.site-header {
  z-index: 40;
}
.site-header.menu-open {
  z-index: 120;
}
.site-header .mobile-menu {
  z-index: 121;
}
.deadline-banner {
  margin-top: 0;
}
body.mobile-nav-open {
  overflow: hidden;
}
@media (max-width: 760px) {
  .deadline-banner {
    margin-top: 0;
  }
}
.mobile-more-wrap,
.mobile-quick-find {
  display: none;
}
.menu-toggle {
  width: 44px;
  height: 44px;
}
.brand {
  min-height: 44px;
}
.footer-connect > span,
.footer-links span {
  font-size: 12px !important;
  color: #9db0c2 !important;
}
.footer-bottom {
  font-size: 12px !important;
  color: #9db0c2 !important;
  letter-spacing: 0.06em;
}
.footer-bottom a,
.footer-connect > a,
.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.socials a {
  width: 44px;
  height: 44px;
  font-size: 12px;
}
@media (max-width: 760px) {
  .mobile-quick-find {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    min-height: 44px;
    padding: 0 4px;
    color: #bff7f7;
    font-weight: 700;
  }
  .mobile-more-wrap {
    display: block;
    padding: 22px 27px 72px;
    background: #f7f7f2;
  }
  .mobile-content-toggle {
    display: flex;
    width: 100%;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border: 1px solid #6d7b80;
    border-radius: 999px;
    background: #fff;
    color: #07192e;
    font:
      700 14px/1.3 ui-sans-serif,
      system-ui,
      -apple-system,
      "Segoe UI",
      sans-serif;
  }
  .mobile-secondary {
    display: none !important;
  }
  body.mobile-secondary-open .mobile-secondary {
    display: grid !important;
  }
  .footer-bottom a,
  .footer-connect > a,
  .footer-links a {
    min-height: 44px;
  }
  .footer-bottom {
    line-height: 1.5;
  }
}
footer img {
  height: auto;
  aspect-ratio: 300/233;
  object-fit: contain;
}
@media (max-width: 760px) {
  .mobile-more-wrap {
    display: none !important;
  }
  .mobile-secondary {
    display: grid !important;
  }
  .brand-divider {
    display: block !important;
    height: 18px;
  }
  .brand-wordmark {
    display: block !important;
    font-size: 8px;
    letter-spacing: 0.14em;
  }
  .brand img {
    width: 56px;
  }
}
.audience-strip a {
  color: inherit;
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.audience-strip a:focus-visible,
.audience-strip a:hover {
  color: var(--cyan);
}
.journey-rail > a {
  color: inherit;
  text-decoration: none;
  min-width: 0;
}
.journey-rail > a:focus-visible {
  outline: 3px solid #167a91;
  outline-offset: 5px;
  border-radius: 18px;
}
.journey-rail > a article {
  height: 100%;
}
.step-action {
  display: block;
  margin-top: 22px;
  color: #176f89;
  font:
    750 12px/1.3 ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
}
.hero-panel {
  align-self: start;
}
.hero-panel .goal-card {
  min-height: 72px;
}
.desktop-nav {
  gap: 28px;
}
.desktop-nav a {
  font-size: 12px;
}
@media (max-width: 760px) {
  .eyebrow,
  .micro,
  .section-kicker {
    font-size: 12px !important;
    line-height: 1.35;
  }
  .brand-wordmark {
    font-size: 10px !important;
  }
  .status {
    font-size: 12px !important;
  }
  .goal-card strong {
    font-size: 15px;
  }
  .goal-card small {
    font-size: 13px !important;
    line-height: 1.35;
  }
  .audience-strip {
    font-size: 13px;
  }
  .audience-cards small,
  .event-card .event-copy > p,
  .event-card .event-top,
  .journey-rail .tag,
  .journey-rail article > p,
  .resource-list small,
  .resource-number {
    font-size: 12px !important;
  }
  .footer-brand p,
  .resource-list p {
    font-size: 13px !important;
  }
  .footer-connect,
  .footer-links {
    font-size: 14px;
  }
  .mobile-more-wrap {
    display: block !important;
    padding: 20px 22px 64px;
    background: #f7f7f2;
  }
  .mobile-content-toggle {
    display: flex !important;
  }
  .mobile-secondary {
    display: none !important;
  }
  body.mobile-secondary-open .mobile-secondary {
    display: grid !important;
  }
  .community,
  .events-section,
  .journey,
  .resources {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .event-card {
    min-height: 400px;
  }
  .final-cta {
    min-height: 460px;
  }
  .final-cta h2 {
    font-size: 50px;
  }
  footer {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px;
    padding-top: 54px;
  }
  .footer-bottom,
  .footer-brand,
  .footer-connect {
    grid-column: 1/-1 !important;
  }
  .footer-connect > a,
  .footer-links a {
    min-height: 40px;
  }
  .footer-bottom {
    font-size: 12px !important;
  }
  .hero-panel .goal-card {
    min-height: 70px;
  }
}

/* Compact homepage, global search shell, and interaction accessibility */
.search-trigger,
.global-search button,
.global-search input {
  font: inherit;
}
.search-trigger {
  min-width: 44px;
  min-height: 44px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}
.search-trigger:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}
.global-search {
  width: min(720px, calc(100% - 32px));
  max-height: min(760px, calc(100dvh - 32px));
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(124, 233, 235, 0.25);
  border-radius: 24px;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 40px 120px rgba(0, 8, 22, 0.55);
}
.global-search::backdrop {
  background: rgba(2, 12, 26, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.global-search-panel {
  max-height: inherit;
  padding: clamp(24px, 5vw, 44px);
  overflow-y: auto;
}
.global-search-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.global-search-heading .micro {
  margin: 0 0 12px;
  color: var(--cyan);
}
.global-search-heading strong {
  display: block;
  margin: 0;
  font-size: clamp(27px, 5vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.global-search-close {
  width: 44px;
  height: 44px;
  flex: none;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
}
.global-search-form {
  margin-top: 34px;
}
.global-search-form label {
  display: block;
  margin-bottom: 10px;
  color: #c7d3df;
  font-size: 13px;
  line-height: 1.45;
}
.global-search-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}
.global-search-field input {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  font-size: 16px;
}
.global-search-field input::placeholder {
  color: #a9b9c9;
}
.global-search-field button {
  min-width: 100px;
  min-height: 54px;
  padding: 0 20px;
  border: 0;
  border-radius: 12px;
  background: var(--cyan);
  color: var(--navy);
  cursor: pointer;
  font-weight: 800;
}
.global-search-output {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #c7d3df;
  font-size: 14px;
  line-height: 1.55;
}
.global-search-status {
  margin: 0;
}
.global-search-results {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.global-search-results:empty {
  display: none;
}
.global-search-results a {
  min-height: 58px;
  padding: 12px 14px;
  display: grid;
  gap: 3px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.055);
}
.global-search-results a:hover {
  border-color: rgba(124, 233, 235, 0.42);
  background: rgba(124, 233, 235, 0.1);
}
.global-search-results strong {
  color: #fff;
}
.global-search-results span {
  color: #b8c7d5;
  font-size: 13px;
}
.global-search noscript a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.resource-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
  margin-top: 20px;
}
.resource-shortcuts a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #184f62;
  font-size: 13px;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.resource-shortcuts a:hover {
  color: var(--navy);
}
.resource-description {
  display: block;
  margin-top: 5px;
  color: #4c5e64;
  font-size: 13px;
  line-height: 1.45;
}
.desktop-nav a,
.brand,
.deadline-banner > a,
.text-link,
.event-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.event-card,
.resource-list > a,
.goal-card {
  touch-action: manipulation;
}

@media (max-width: 1180px) {
  .search-trigger span:last-child {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}
@media (max-width: 1000px) {
  .search-trigger {
    margin-left: auto;
  }
  .menu-toggle {
    margin-left: 8px;
  }
}
@media (max-width: 650px) {
  .global-search {
    width: calc(100% - 20px);
    max-height: calc(100dvh - 20px);
    border-radius: 18px;
  }
  .global-search-panel {
    padding: 24px 18px;
  }
  .global-search-field {
    grid-template-columns: 1fr;
  }
  .global-search-field button {
    width: 100%;
  }
  .resource-shortcuts {
    display: grid;
    gap: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .scroll-progress span {
    will-change: auto;
  }
}


/* ICPC U 2.2: focused Learn navigation, onboarding steps, and compact mobile chrome. */
.learn-section-nav {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(7,25,46,.14);
  border-radius: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
  padding: 10px;
  position: sticky;
  top: 92px;
  z-index: 16;
}
.learn-section-nav a {
  border-radius: 999px;
  color: #17324d;
  font-size: 13px;
  font-weight: 800;
  padding: 10px 14px;
}
.learn-section-nav a:first-child,
.learn-section-nav a:hover {
  background: #07192e;
  color: #fff;
}
.onboarding-next-steps {
  background: #f2f7f7;
  border-left: 3px solid #45c9d0;
  margin: 16px 0;
  padding: 14px 18px 14px 38px;
}
.onboarding-next-steps li { margin: 6px 0; }
@media (max-width: 760px) {
  .deadline-banner {
    min-height: 62px;
    padding: 8px 12px;
  }
  .deadline-banner > div {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 2px 7px;
  }
  .deadline-banner > div > span:not(.deadline-dot):not(.deadline-status) { display: none; }
  .deadline-banner .deadline-status {
    font-size: 9px;
    padding: 4px 7px;
  }
  .deadline-banner > a {
    font-size: 12px;
    min-height: 44px;
    padding: 8px 10px;
  }
  .learn-section-nav {
    flex-wrap: nowrap;
    margin-inline: -12px;
    overflow-x: auto;
    padding: 8px 12px;
    position: static;
    scrollbar-width: thin;
  }
  .learn-section-nav a { flex: 0 0 auto; }
}
