body { background: #04060a; }

html.reveal-instant .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }

.starbg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  width: 100vw; height: 100vh;
  mask-image: radial-gradient(135% 100% at 50% 0%, #000 55%, transparent 96%);
  -webkit-mask-image: radial-gradient(135% 100% at 50% 0%, #000 55%, transparent 96%);
}
main, #footMount { position: relative; z-index: 1; }

.hdr nav a { font-size: 15px; }
.hdr nav a.is-active { color: var(--teal); background: rgba(94,201,215,.1); }
.hdr .cta-pill {
  border: 1px solid var(--teal); color: var(--teal);
  padding: 10px 22px; border-radius: 6px; font-weight: 600; font-size: 15px;
  transition: background .25s ease, color .25s ease;
}
.hdr .cta-pill:hover { background: var(--teal); color: #04121a; }

.mono-label {
  font-family: "Space Grotesk", ui-monospace, monospace;
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--teal); display: inline-flex; align-items: center; gap: 10px;
}
.mono-label::before { content: ""; width: 26px; height: 1px; background: var(--teal); }

.impact-hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: clamp(560px, 78vh, 760px);
  display: flex; align-items: flex-end;
  padding: calc(var(--header-h) + 82px) var(--gutter) clamp(72px, 9vh, 110px);
  background:
    radial-gradient(72% 72% at 70% 16%, rgba(94,214,230,.14), transparent 66%),
    radial-gradient(54% 58% at 82% 52%, rgba(168,123,224,.16), transparent 72%),
    linear-gradient(180deg, rgba(4,6,10,.22) 0%, #04060a 100%);
}
.impact-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2; pointer-events: none;
  background-image:
    linear-gradient(rgba(94,201,215,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94,201,215,.08) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(90% 70% at 68% 34%, #000 0%, transparent 76%);
  -webkit-mask-image: radial-gradient(90% 70% at 68% 34%, #000 0%, transparent 76%);
  opacity: .32;
}
.impact-hero__glow {
  position: absolute; inset: 0; z-index: -3; pointer-events: none;
  background:
    radial-gradient(38% 40% at 74% 32%, rgba(94,201,215,.24), transparent 72%),
    radial-gradient(32% 36% at 62% 58%, rgba(110,139,232,.2), transparent 72%),
    radial-gradient(28% 30% at 88% 62%, rgba(168,123,224,.18), transparent 76%);
  filter: blur(10px);
  animation: pageGlow 26s ease-in-out infinite alternate;
}
@keyframes pageGlow {
  0% { transform: translate3d(0,0,0) scale(1); opacity: .85; }
  100% { transform: translate3d(-2%, 1.5%, 0) scale(1.05); opacity: 1; }
}
.impact-hero__inner { max-width: var(--maxw); width: 100%; margin: 0 auto; }
.impact-hero__title {
  max-width: 950px;
  font-weight: 700; font-size: clamp(48px, 6.4vw, 104px); line-height: .95;
  letter-spacing: -.02em; margin: 22px 0 30px; color: #fff;
}
.impact-hero__copy {
  font-size: 20px; line-height: 1.45; color: rgba(255,255,255,.66);
  max-width: 680px; margin: 0;
}
.impact-hero__readout {
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  margin-top: clamp(46px, 8vh, 82px); padding-top: 14px;
  border-top: 1px solid rgba(94,201,215,.16);
  font-family: "Space Grotesk", monospace; font-size: 11.5px; letter-spacing: .12em;
  color: rgba(94,201,215,.56); text-transform: uppercase;
}

.sec { padding: clamp(90px, 12vh, 140px) var(--gutter); max-width: var(--maxw); margin: 0 auto; }
.sec__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 64px; flex-wrap: wrap; }
.sec__title { font-weight: 700; font-size: clamp(40px, 5vw, 80px); line-height: 1; letter-spacing: -.02em; margin: 18px 0 0; color: #fff; }
.sec__lead { font-size: 19px; line-height: 1.5; color: rgba(255,255,255,.6); max-width: 460px; margin: 0; }

.impact { padding-top: clamp(70px, 9vh, 112px); }
.impact-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: clamp(16px, 1.5vw, 22px); align-items: stretch;
  max-width: 1120px;
  margin: 0 auto;
}
.impact-card {
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; flex-direction: column; height: 100%; min-height: 385px;
  border: 1px solid rgba(255,255,255,.1); border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012)), #04060a;
  transition: transform .55s cubic-bezier(.2,.7,.2,1), border-color .45s ease, box-shadow .55s ease, background .45s ease;
  color: inherit; text-decoration: none;
}
.impact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(94,201,215,.45);
  background: linear-gradient(180deg, rgba(94,201,215,.065), rgba(255,255,255,.012)), #04060a;
  box-shadow: 0 28px 64px -34px rgba(0,0,0,.88), 0 18px 48px -34px rgba(94,201,215,.46);
}
.impact-card__edge {
  position: absolute; top: 0; left: 0; right: 0; height: 2px; z-index: 2;
  background: linear-gradient(90deg, var(--teal), color-mix(in srgb, var(--teal) 8%, transparent));
  transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .65s cubic-bezier(.2,.7,.2,1);
}
.impact-card:hover .impact-card__edge { transform: scaleX(1); }
.impact-card__media {
  position: relative; aspect-ratio: 16 / 8.6; overflow: hidden; flex: 0 0 auto;
  background:
    radial-gradient(48% 56% at 70% 36%, rgba(94,201,215,.24), transparent 70%),
    radial-gradient(32% 36% at 34% 70%, rgba(168,123,224,.18), transparent 72%),
    linear-gradient(135deg, rgba(255,255,255,.045), rgba(255,255,255,.01)),
    #070c11;
}
.impact-card__media::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(94,201,215,.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94,201,215,.15) 1px, transparent 1px);
  background-size: 44px 44px;
  transform: perspective(500px) rotateX(56deg) translateY(54px) scale(1.35);
  transform-origin: 50% 100%;
  opacity: .35;
}
.impact-card__media::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 58%; z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(4,6,10,.86));
}
.impact-card__media.has-image {
  background:
    radial-gradient(44% 52% at 50% 44%, rgba(94,201,215,.16), transparent 72%),
    linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.01)),
    #06080c;
}
.impact-card__media.has-image::before { opacity: .16; }
.impact-card__image {
  position: absolute; inset: 50px 56px 70px; z-index: 1;
  width: calc(100% - 112px); height: calc(100% - 120px);
  object-fit: contain; object-position: center;
  filter: drop-shadow(0 18px 44px rgba(0,0,0,.45));
}
.impact-card__media.has-image.has-cover::before { opacity: 0; }
.impact-card__image.impact-card__image--cover {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: none;
}
.impact-card__media.has-image.impact-card__media--glue-cover {
  background:
    radial-gradient(56% 48% at 66% 34%, rgba(0,220,255,.32), transparent 70%),
    radial-gradient(42% 38% at 24% 76%, rgba(168,123,224,.2), transparent 72%),
    linear-gradient(135deg, #020713 0%, #071119 48%, #042433 100%);
}
.impact-card__image.impact-card__image--glue-cover {
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 12% 8% 17%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 22px 34px rgba(0,220,255,.28));
}
.impact-card__image--trophy {
  inset: 18px 24px 48px;
  width: calc(100% - 48px); height: calc(100% - 66px);
  transform: scale(1.7);
}
.impact-card__image--web3innovation {
  inset: 76px 118px 102px;
  width: calc(100% - 236px); height: calc(100% - 178px);
}
.impact-card__mark {
  position: absolute; inset: 0; z-index: 2;
  display: grid; place-items: center;
  font-family: "Space Grotesk", monospace; font-weight: 700;
  font-size: clamp(42px, 4.2vw, 70px); letter-spacing: .04em;
  color: rgba(206,249,255,.82);
  text-shadow: 0 18px 50px rgba(0,0,0,.34), 0 0 34px rgba(94,201,215,.3);
}
.impact-card__num {
  position: absolute; top: 16px; left: 18px; z-index: 2;
  font-family: "Space Grotesk", monospace; font-weight: 600; font-size: 11px; letter-spacing: .16em;
  color: var(--teal); display: inline-flex; align-items: center; gap: 10px;
}
.impact-card__num::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 12px var(--teal); }
.impact-card__sig {
  position: absolute; left: 18px; right: 18px; bottom: 17px; z-index: 2;
  font-family: "Space Grotesk", monospace; font-size: 10px; letter-spacing: .13em; text-transform: uppercase;
  color: rgba(206,249,255,.72);
}
.impact-card__body { padding: clamp(20px, 2vw, 28px); display: flex; flex-direction: column; flex: 1; }
.impact-card__kicker {
  font-family: "Space Grotesk", monospace; font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 10px;
}
.impact-card__title {
  font-weight: 700; font-size: clamp(22px, 1.8vw, 31px); line-height: 1.04;
  color: #fff; margin: 0 0 12px;
}
.impact-card__desc {
  font-size: 14.5px; line-height: 1.5; color: rgba(255,255,255,.62);
  margin: 0; max-width: 64ch;
}
.impact-card__role {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 20px; margin-top: auto;
}
.impact-card__role span {
  display: block; margin-bottom: 10px;
  font-family: "Space Grotesk", monospace; font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.42);
}
.impact-card__role p { margin: 0; font-size: 15px; line-height: 1.55; color: rgba(255,255,255,.66); }
.impact-card__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.impact-card__chip {
  font-family: "Space Grotesk", monospace; font-size: 11px; letter-spacing: .04em;
  padding: 6px 10px; border-radius: 5px;
  background: rgba(94,201,215,.08); border: 1px solid rgba(94,201,215,.2); color: var(--teal);
}
.impact-card__more {
  margin-top: auto; padding-top: 18px;
  font-family: "Space Grotesk", monospace; font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal);
}
.impact-card__more::after { content: " ->"; }

.contact { border-top: 0; background: transparent; --aurora-pink: #A87BE0; }
.field input.err, .field textarea.err, .field select.err {
  border-color: #A87BE0 !important; background: rgba(168,123,224,.07) !important;
}

.vfoot {
  position: relative; isolation: isolate; overflow: hidden;
  background: transparent;
  min-height: clamp(420px, 36vw, 560px);
  padding-top: clamp(70px, 9vw, 150px);
  display: flex; align-items: flex-end;
}
.vfoot__veil {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: url("../footer-bg-clean.png") no-repeat center bottom / cover;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.32) 13%, rgba(0,0,0,.78) 26%, #000 38%);
          mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.32) 13%, rgba(0,0,0,.78) 26%, #000 38%);
}
.vfoot::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(4,6,10,0) 66%, rgba(4,6,10,.22) 100%);
}
.vfoot__inner {
  position: relative; z-index: 1; width: 100%;
  max-width: var(--maxw, 1400px); margin: 0 auto;
  padding: 0 var(--gutter) clamp(34px, 4vw, 56px);
}
.vfoot__rule { height: 1px; width: 100%; margin-bottom: clamp(46px, 7vw, 96px);
  background: linear-gradient(90deg, rgba(120,210,225,.05), rgba(150,225,240,.5) 50%, rgba(120,210,225,.05)); }
.vfoot__row {
  display: grid; align-items: center;
  grid-template-columns: auto auto 1fr auto;
  gap: clamp(28px, 4vw, 72px);
}
.vfoot__brand { text-decoration: none; display: inline-flex; align-items: center; }
.vfoot__logo { width: clamp(160px, 14vw, 240px); height: auto; }
.vfoot__col { display: flex; flex-direction: column; gap: 7px; white-space: nowrap;
  font-size: clamp(14px, 1.15vw, 18px); line-height: 1.5; color: #7fb6c4; }
.vfoot__col a { color: #7fb6c4; text-decoration: none; transition: color .25s ease; }
.vfoot__col a:hover { color: var(--teal-pale, #cef9ff); }
.vfoot__mail { align-self: start; }
.vfoot__socials { display: flex; align-items: center; gap: clamp(16px, 1.6vw, 26px); justify-self: end; }
.vfoot__socials a {
  width: 30px; height: 30px; display: grid; place-items: center; color: var(--teal);
  transition: transform .25s ease, color .25s ease; opacity: .85;
}
.vfoot__socials a:hover { transform: translateY(-3px); color: var(--teal-pale, #cef9ff); opacity: 1; }
.vfoot__socials svg { width: 24px; height: 24px; fill: currentColor; }
.vfoot__copy {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  margin-top: clamp(28px, 3.5vw, 46px);
  font-size: 13px; color: rgba(160,200,212,.5);
}
.vfoot__copy .mono { font-family: "Space Grotesk", monospace; letter-spacing: .08em; }

/* Light negative theme for Impact */
html,
body {
  background: #f4f8fa;
}

body {
  color: #071119;
  background:
    radial-gradient(78% 54% at 76% 8%, rgba(94,201,215,.2), transparent 68%),
    linear-gradient(180deg, #fff 0%, #edf4f7 48%, #f7fafb 100%);
}

.starbg {
  opacity: .22;
  filter: invert(1) saturate(.7);
  mix-blend-mode: multiply;
}

.wordmark__img,
.vfoot__logo {
  filter: invert(1);
}

.hdr {
  background-image: linear-gradient(180deg, rgba(255,255,255,.86) 0%, rgba(255,255,255,0) 100%);
}

.hdr.is-scrolled {
  background: rgba(247,250,251,.82);
  border-bottom: 1px solid rgba(7,17,25,.08);
  box-shadow: 0 18px 50px rgba(7,17,25,.06);
}

.hdr nav a {
  color: rgba(7,17,25,.78);
}

.hdr nav a:hover {
  background: rgba(7,17,25,.06);
  color: #071119;
}

.hdr nav a.is-active {
  color: #006b78;
  background: rgba(0,176,191,.1);
}

.hdr .cta-pill {
  color: #006b78;
  border-color: rgba(0,176,191,.42);
  background: rgba(255,255,255,.55);
}

.hdr .cta-pill:hover {
  background: #071119;
  border-color: #071119;
  color: #fff;
}

.mono-label {
  color: #007a87;
}

.mono-label::before {
  background: #007a87;
}

.impact-hero {
  background:
    radial-gradient(70% 60% at 72% 18%, rgba(94,201,215,.24), transparent 66%),
    radial-gradient(44% 50% at 88% 54%, rgba(168,123,224,.12), transparent 72%),
    linear-gradient(180deg, rgba(255,255,255,.72) 0%, #f4f8fa 100%);
}

.impact-hero::before {
  background-image:
    linear-gradient(rgba(0,120,135,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,120,135,.09) 1px, transparent 1px);
  opacity: .52;
}

.impact-hero__glow {
  background:
    radial-gradient(38% 40% at 74% 32%, rgba(0,176,191,.2), transparent 72%),
    radial-gradient(32% 36% at 62% 58%, rgba(6,76,193,.12), transparent 72%),
    radial-gradient(28% 30% at 88% 62%, rgba(168,123,224,.14), transparent 76%);
  filter: blur(16px);
}

.impact-hero__title,
.sec__title {
  color: #071119;
}

.impact-hero__copy,
.sec__lead {
  color: rgba(7,17,25,.66);
}

.impact-hero__readout {
  border-top-color: rgba(0,120,135,.18);
  color: rgba(0,102,116,.64);
}

.impact-card {
  border-color: rgba(7,17,25,.1);
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(250,253,254,.78)),
    #fff;
  box-shadow: 0 28px 80px -58px rgba(7,17,25,.44);
}

.impact-card:hover {
  border-color: rgba(0,176,191,.5);
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(238,249,251,.82)),
    #fff;
  box-shadow: 0 30px 74px -54px rgba(7,17,25,.4), 0 20px 56px -46px rgba(0,176,191,.34);
}

.impact-card__edge {
  background: linear-gradient(90deg, #007a87, rgba(0,176,191,0));
}

.impact-card__media {
  background:
    radial-gradient(48% 56% at 70% 36%, rgba(0,176,191,.16), transparent 70%),
    radial-gradient(32% 36% at 34% 70%, rgba(168,123,224,.1), transparent 72%),
    linear-gradient(135deg, rgba(255,255,255,.95), rgba(228,239,244,.76)),
    #eef5f7;
  border-bottom: 1px solid rgba(7,17,25,.07);
}

.impact-card__media::before {
  background-image:
    linear-gradient(rgba(0,120,135,.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,120,135,.13) 1px, transparent 1px);
  opacity: .45;
}

.impact-card__media::after {
  background: linear-gradient(180deg, transparent, rgba(247,250,251,.82));
}

.impact-card__media.has-image {
  background:
    radial-gradient(46% 54% at 50% 44%, rgba(0,176,191,.12), transparent 72%),
    linear-gradient(135deg, #fff, #eef5f7),
    #fff;
}

.impact-card__media.has-image::before {
  opacity: .12;
}

.impact-card__image {
  filter: drop-shadow(0 18px 36px rgba(7,17,25,.16));
}

.impact-card__mark {
  color: rgba(0,102,116,.62);
  text-shadow: 0 18px 42px rgba(7,17,25,.12), 0 0 34px rgba(0,176,191,.2);
}

.impact-card__num {
  color: #007a87;
}

.impact-card__num::before {
  background: #007a87;
  box-shadow: 0 0 12px rgba(0,120,135,.42);
}

.impact-card__sig {
  color: rgba(7,17,25,.58);
}

.impact-card__kicker {
  color: #007a87;
}

.impact-card__title {
  color: #071119;
}

.impact-card__desc,
.impact-card__role p {
  color: rgba(7,17,25,.66);
}

.impact-card__role {
  border-top-color: rgba(7,17,25,.1);
}

.impact-card__role span {
  color: rgba(7,17,25,.44);
}

.impact-card__chip {
  background: rgba(0,176,191,.08);
  border-color: rgba(0,120,135,.2);
  color: #006b78;
}

.impact-card__more {
  color: #006b78;
}

.contact {
  background:
    linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(235,244,247,.68) 100%);
  color: #071119;
  --aurora-pink: #8a4bc4;
}

.contact__kicker {
  color: #007a87;
}

.contact__title {
  color: #071119;
}

.contact__sub,
.contact__meta {
  color: rgba(7,17,25,.62);
}

.contact__meta a:hover {
  color: #007a87;
}

.field label {
  color: rgba(7,17,25,.48);
}

.field input,
.field textarea,
.field select {
  color: #071119;
  background: rgba(255,255,255,.72);
  border-color: rgba(7,17,25,.14);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: #007a87;
  background: #fff;
}

.field input.err,
.field textarea.err,
.field select.err {
  border-color: #8a4bc4 !important;
  background: rgba(138,75,196,.06) !important;
}

.form__submit {
  background: #071119;
  color: #fff;
}

.form__submit:hover {
  box-shadow: 0 14px 40px rgba(7,17,25,.18);
}

.form__ok {
  color: #007a87;
}

.vfoot {
  background: linear-gradient(180deg, rgba(239,247,249,0), #dfecef);
}

.vfoot__veil {
  background:
    radial-gradient(58% 44% at 50% 100%, rgba(0,176,191,.12), transparent 70%),
    linear-gradient(rgba(0,120,135,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,120,135,.08) 1px, transparent 1px);
  background-size: auto, 70px 70px, 70px 70px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.2) 18%, #000 48%);
          mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.2) 18%, #000 48%);
}

.vfoot::after {
  background: linear-gradient(180deg, rgba(255,255,255,0) 66%, rgba(255,255,255,.26) 100%);
}

.vfoot__rule {
  background: linear-gradient(90deg, rgba(0,120,135,.04), rgba(0,120,135,.32) 50%, rgba(0,120,135,.04));
}

.vfoot__col,
.vfoot__col a {
  color: rgba(7,17,25,.62);
}

.vfoot__col a:hover {
  color: #071119;
}

.vfoot__socials a {
  color: #007a87;
}

.vfoot__socials a:hover {
  color: #071119;
}

.vfoot__copy {
  color: rgba(7,17,25,.46);
}

@media (max-width: 1100px) {
  .impact-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .impact-card { min-height: 0; }
  .impact-hero { min-height: 620px; }
}
@media (max-width: 1000px) {
  .vfoot { min-height: 0; padding-top: 90px; }
  .vfoot__row { grid-template-columns: auto auto auto; gap: clamp(24px, 4vw, 48px); row-gap: 30px; }
  .vfoot__brand { grid-column: 1 / -1; }
  .vfoot__socials { grid-column: 1 / -1; justify-self: start; }
  .vfoot__copy { flex-direction: column; }
}
@media (max-width: 760px) {
  .hdr nav a.n-build, .hdr nav a.n-how { display: none; }
  .impact-hero { min-height: 560px; padding-bottom: 64px; }
}
@media (max-width: 560px) {
  .vfoot__row { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .impact-hero__glow { animation: none; }
  .impact-card, .impact-card__edge { transition: none; }
}
