:root {
  color-scheme: dark;
  --bg: #040b08;
  --panel: rgba(10, 24, 19, 0.58);
  --line: rgba(255, 255, 255, 0.1);
  --text-soft: rgba(255, 255, 255, 0.68);
  --glow: #5df58c;
  --glow-soft: rgba(93, 245, 140, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 10%, rgba(59, 177, 108, 0.14), transparent 25%),
    linear-gradient(180deg, #06100d 0%, #040b08 100%);
  cursor: none;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(93,245,140,0.09), transparent 18%),
    radial-gradient(circle at 50% 42%, rgba(93,245,140,0.06), transparent 34%),
    linear-gradient(180deg, rgba(4,11,8,0.985), rgba(3,8,6,0.992));
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-core {
  width: min(20rem, 72vw);
  display: grid;
  place-items: center;
  position: relative;
}

.loader-halo {
  position: absolute;
  inset: 50% auto auto 50%;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(108,255,154,0.12);
  pointer-events: none;
}

.loader-halo-one {
  width: 12rem;
  height: 12rem;
  animation: haloPulse 2.8s ease-in-out infinite;
}

.loader-halo-two {
  width: 15rem;
  height: 15rem;
  border-color: rgba(108,255,154,0.07);
  animation: haloPulse 3.6s ease-in-out infinite reverse;
}

.leaf-loader {
  width: min(11rem, 36vw);
  height: auto;
  overflow: visible;
  filter:
    drop-shadow(0 0 10px rgba(93,245,140,0.14))
    drop-shadow(0 0 26px rgba(93,245,140,0.08));
}

.leaf-stroke {
  fill: none;
  stroke: #7dffab;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: var(--path-length, 500);
  stroke-dashoffset: var(--path-length, 500);
  animation: drawLeaf 1.8s cubic-bezier(.22,.8,.2,1) forwards;
}

.leaf-outline {
  --path-length: 620;
  animation-delay: 0s;
}

.leaf-mid {
  --path-length: 260;
  animation-delay: 0.45s;
}

.leaf-vein {
  --path-length: 170;
}

.leaf-vein:nth-of-type(3) { animation-delay: 0.75s; }
.leaf-vein:nth-of-type(4) { animation-delay: 0.95s; }
.leaf-vein:nth-of-type(5) { animation-delay: 1.15s; }
.leaf-vein:nth-of-type(6) { animation-delay: 0.75s; }
.leaf-vein:nth-of-type(7) { animation-delay: 0.95s; }
.leaf-vein:nth-of-type(8) { animation-delay: 1.15s; }

@keyframes haloPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(0.96);
    opacity: 0.35;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.04);
    opacity: 0.8;
  }
}

@keyframes drawLeaf {
  0% {
    stroke-dashoffset: var(--path-length, 500);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: 3px;
  background: rgba(255,255,255,0.04);
}

.scroll-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, rgba(93,245,140,0.15), rgba(93,245,140,1));
  box-shadow: 0 0 16px rgba(93,245,140,0.45);
}

.hero-light-rays,
.hero-mist,
.hero-pollen {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-media-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-video {
  z-index: 1;
  opacity: 0.18;
  mix-blend-mode: screen;
  filter: saturate(0.8) brightness(0.55);
}

.hero-media-slide {
  position: absolute;
  inset: -4%;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.08);
  filter: saturate(0.9) brightness(0.72) contrast(1.02);
  transition: opacity 1.6s ease, filter 1.6s ease;
  will-change: transform, opacity;
}

.hero-media-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(93,245,140,0.1), transparent 34%),
    linear-gradient(180deg, rgba(4,11,8,0.18), rgba(4,11,8,0.45));
  mix-blend-mode: screen;
}

.hero-media-slide.is-active {
  opacity: 0.92;
  filter: saturate(1) brightness(0.78) contrast(1.04);
}

.hero-light-rays {
  background:
    linear-gradient(115deg, transparent 30%, rgba(182,255,210,0.08) 45%, transparent 62%),
    linear-gradient(100deg, transparent 38%, rgba(182,255,210,0.05) 50%, transparent 68%);
  mix-blend-mode: screen;
  opacity: 0.7;
}

.hero-mist {
  inset: auto -10% 8% -10%;
  height: 24rem;
  border-radius: 999px;
  filter: blur(28px);
  animation: driftMist 18s linear infinite;
}

.hero-mist-one {
  background: radial-gradient(circle, rgba(212,255,228,0.09), transparent 58%);
}

.hero-mist-two {
  inset: auto -4% 16% -4%;
  height: 18rem;
  background: radial-gradient(circle, rgba(212,255,228,0.05), transparent 60%);
  animation-duration: 24s;
  animation-direction: reverse;
}

.hero-pollen::before,
.hero-pollen::after {
  content: "";
  position: absolute;
  width: 12rem;
  height: 12rem;
  background:
    radial-gradient(circle, rgba(203,255,220,0.42) 0 2px, transparent 3px),
    radial-gradient(circle, rgba(203,255,220,0.2) 0 1.5px, transparent 2.5px);
  background-size: 34px 34px, 22px 22px;
  opacity: 0.22;
  filter: blur(0.2px);
  animation: pollenRise 24s linear infinite;
}

.hero-pollen-one::before {
  left: 4%;
  bottom: 2%;
}

.hero-pollen-one::after {
  right: 10%;
  bottom: 12%;
  animation-delay: 4s;
}

.hero-pollen-two::before {
  left: 30%;
  bottom: -2%;
  animation-delay: 8s;
}

.hero-pollen-two::after {
  right: 34%;
  bottom: 4%;
  animation-delay: 11s;
}

@keyframes driftMist {
  0% { transform: translateX(-2%) translateY(0); }
  50% { transform: translateX(2%) translateY(-1.5%); }
  100% { transform: translateX(-2%) translateY(0); }
}

@keyframes pollenRise {
  0% { transform: translateY(4%) scale(0.96); opacity: 0; }
  15% { opacity: 0.22; }
  85% { opacity: 0.22; }
  100% { transform: translateY(-20%) scale(1.04); opacity: 0; }
}

@media (max-width: 1023px) {
  body {
    cursor: auto;
  }
}

a {
  text-decoration: none;
}

img,
video {
  display: block;
}

.noise-overlay {
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 5px 5px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.glass-panel {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(17, 35, 28, 0.58), rgba(8, 18, 14, 0.44));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 30px 80px rgba(0, 0, 0, 0.24);
  transition: transform 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease, background 0.45s ease;
}

.glass-panel:hover {
  border-color: rgba(93, 245, 140, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 34px 90px rgba(0, 0, 0, 0.28);
}

.nav-pill,
.cta-primary,
.cta-secondary,
.location-chip {
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.nav-pill {
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(8, 18, 14, 0.35);
  backdrop-filter: blur(18px);
}

.nav-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(93, 245, 140, 0.24);
  color: white;
}

.nav-pill.is-active {
  color: white;
  border-color: rgba(93, 245, 140, 0.24);
  background: rgba(93, 245, 140, 0.12);
  box-shadow: 0 0 0 1px rgba(93, 245, 140, 0.12), 0 10px 30px rgba(20, 92, 49, 0.22);
}

.mobile-nav {
  position: fixed;
  inset: 5.25rem 0 auto;
  z-index: 49;
  padding: 0 1rem;
}

.mobile-nav-track {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
}

.mobile-nav-track::-webkit-scrollbar {
  display: none;
}

.mobile-nav-pill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(8,18,14,0.52);
  backdrop-filter: blur(18px);
  color: rgba(255,255,255,0.74);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.section-kicker {
  margin: 0 0 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(93, 245, 140, 0.82);
}

.section-title {
  margin: 0;
  max-width: 11ch;
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4vw, 4.3rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.typing-caret {
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0.2; }
}

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.75rem;
  border-radius: 999px;
  padding: 0 1.35rem;
  font-weight: 700;
}

.cta-primary {
  background: linear-gradient(135deg, rgba(93, 245, 140, 0.24), rgba(93, 245, 140, 0.12));
  border: 1px solid rgba(93, 245, 140, 0.22);
  color: #dfffea;
  box-shadow: 0 12px 40px rgba(31, 194, 97, 0.18);
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
}

.cta-primary:hover,
.cta-secondary:hover,
.location-chip:hover {
  transform: translateY(-2px) scale(1.01);
}

.magnetic-hover {
  will-change: transform;
}

.scroll-indicator {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.scroll-pill {
  display: inline-flex;
  width: 2rem;
  height: 3.5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  justify-content: center;
  padding-top: 0.4rem;
}

.scroll-dot {
  width: 0.4rem;
  height: 0.9rem;
  border-radius: 999px;
  background: var(--glow);
  box-shadow: 0 0 16px rgba(93, 245, 140, 0.5);
  animation: scrollDot 1.8s infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(1.4rem); opacity: 0.2; }
  100% { transform: translateY(0); opacity: 1; }
}

.stat-card {
  padding: 1.5rem;
  border-radius: 1.75rem;
}

.stat-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.stat-geo {
  color: rgba(93,245,140,0.82);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.stat-live-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--glow);
  box-shadow: 0 0 12px rgba(93,245,140,0.58);
  animation: pulseDot 1.6s ease-in-out infinite;
}

.stat-label,
.stat-foot {
  margin: 0;
}

.stat-label {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.stat-value {
  margin: 1rem 0 0.6rem;
  font-family: "Syne", sans-serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
}

.stat-sparkline {
  display: flex;
  align-items: end;
  gap: 0.35rem;
  height: 2.4rem;
  margin: 0.5rem 0 0.8rem;
}

.stat-sparkline span {
  flex: 1 1 0;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(93,245,140,0.22), rgba(93,245,140,0.9));
  opacity: 0.85;
  animation: sparkMove 2.8s ease-in-out infinite;
}

.stat-sparkline span:nth-child(1) { height: 35%; animation-delay: 0s; }
.stat-sparkline span:nth-child(2) { height: 72%; animation-delay: 0.12s; }
.stat-sparkline span:nth-child(3) { height: 48%; animation-delay: 0.24s; }
.stat-sparkline span:nth-child(4) { height: 90%; animation-delay: 0.36s; }
.stat-sparkline span:nth-child(5) { height: 58%; animation-delay: 0.48s; }
.stat-sparkline span:nth-child(6) { height: 78%; animation-delay: 0.6s; }

@keyframes sparkMove {
  0%, 100% { transform: scaleY(0.94); opacity: 0.7; }
  50% { transform: scaleY(1.08); opacity: 1; }
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.35); opacity: 1; }
}

.stat-foot {
  color: rgba(255, 255, 255, 0.5);
}

.transform-card {
  position: relative;
  overflow: hidden;
  min-height: 17rem;
  border-radius: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  padding: 1.5rem;
}

.transform-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -40% 20%;
  height: 10rem;
  background: radial-gradient(circle, rgba(93, 245, 140, 0.18), transparent 65%);
}

.transform-phase {
  display: inline-flex;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(93, 245, 140, 0.1);
  color: rgba(201, 255, 218, 0.9);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.transform-title {
  margin: 1.1rem 0 0.75rem;
  font-family: "Syne", sans-serif;
  font-size: 1.7rem;
}

.transform-copy,
.work-card p,
.tooltip-copy,
.mini-foot {
  color: var(--text-soft);
}

.work-card {
  position: relative;
  overflow: hidden;
  min-height: 17rem;
  border-radius: 1.75rem;
  padding: 1.6rem;
}

.work-card::before {
  content: "";
  position: absolute;
  inset: -40% auto auto 60%;
  width: 10rem;
  height: 10rem;
  background: radial-gradient(circle, rgba(93,245,140,0.2), transparent 70%);
}

.work-index {
  display: inline-block;
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
  letter-spacing: 0.28em;
}

.work-card h3 {
  margin: 2.4rem 0 0.9rem;
  font-family: "Syne", sans-serif;
  font-size: 1.8rem;
}

.stories-viewport {
  overflow: hidden;
}

.stories-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  padding: 0 1.5rem;
}

.story-card {
  position: relative;
  flex: 0 0 min(32rem, 82vw);
  height: min(38rem, 72vh);
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 80px rgba(0,0,0,0.28);
}

.story-card::after,
.activity-card::after,
.team-card::after,
.ally-card::after,
.resonance-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 25%, rgba(255,255,255,0.1) 48%, transparent 72%);
  transform: translateX(-130%);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.story-card:hover::after,
.activity-card:hover::after,
.team-card:hover::after,
.ally-card:hover::after,
.resonance-card:hover::after {
  transform: translateX(130%);
}

.story-card img,
.activity-card img,
.before-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.story-card:hover img,
.activity-card:hover img {
  transform: scale(1.06);
}

.story-overlay,
.activity-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.75));
}

.story-overlay span,
.activity-overlay span {
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(93, 245, 140, 0.82);
}

.story-overlay h3 {
  margin: 0.7rem 0 0;
  max-width: 16ch;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 0.98;
}

.story-detail-trigger {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(4,11,8,0.36);
  color: white;
  padding: 0 0.95rem;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.story-detail-trigger:hover {
  transform: translateY(-2px);
  border-color: rgba(93,245,140,0.24);
  background: rgba(93,245,140,0.1);
}

.before-after {
  position: relative;
  overflow: hidden;
  min-height: 32rem;
  border-radius: 2rem;
}

.before-layer {
  position: absolute;
  inset: 0 auto 0 0;
  overflow: hidden;
  border-right: 1px solid rgba(255,255,255,0.3);
}

.before-layer img {
  width: 100%;
  min-width: 100%;
  height: 100%;
}

.slider-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.slider-handle {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.26);
  backdrop-filter: blur(16px);
  background: rgba(7, 18, 14, 0.52);
  display: grid;
  place-items: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.28);
}

.slider-handle span {
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  background: var(--glow);
  box-shadow: 0 0 18px rgba(93,245,140,0.6);
}

.compare-label {
  position: absolute;
  top: 1rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(4,11,8,0.48);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
}

.map-panel {
  position: relative;
  min-height: 42rem;
  border-radius: 2rem;
  padding: 1.5rem;
  overflow: hidden;
}

.india-map {
  width: 100%;
  height: 100%;
}

.map-shape {
  fill: rgba(12, 28, 21, 0.95);
  stroke: rgba(120,255,178,0.28);
  stroke-width: 2;
  filter: drop-shadow(0 0 35px rgba(93,245,140,0.08));
}

.map-grid path {
  fill: none;
  stroke: rgba(255,255,255,0.05);
  stroke-width: 1;
}

.location-marker {
  cursor: pointer;
}

.location-marker circle:first-child {
  fill: var(--glow);
}

.location-marker .pulse {
  fill: transparent;
  stroke: rgba(93,245,140,0.42);
  stroke-width: 2;
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0% { transform-box: fill-box; transform-origin: center; transform: scale(0.7); opacity: 1; }
  100% { transform-box: fill-box; transform-origin: center; transform: scale(1.6); opacity: 0; }
}

.map-tooltip {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  max-width: 18rem;
  border-radius: 1.4rem;
  padding: 1rem;
}

.tooltip-label {
  margin: 0 0 0.55rem;
  font-weight: 700;
}

.location-chip {
  display: inline-flex;
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.72);
  padding: 0.95rem 1rem;
}

.location-chip.is-active {
  border-color: rgba(93,245,140,0.28);
  background: rgba(93,245,140,0.1);
  color: white;
}

.team-panel {
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(8, 19, 15, 0.94), rgba(5, 10, 9, 0.8)),
    radial-gradient(circle at top left, rgba(93,245,140,0.1), transparent 35%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 30px 90px rgba(0,0,0,0.28);
}

.team-beam {
  position: absolute;
  border-radius: 999px;
  filter: blur(24px);
  opacity: 0.9;
}

.team-beam-one {
  top: -2rem;
  left: 8%;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(93,245,140,0.18), transparent 68%);
}

.team-beam-two {
  right: -4rem;
  bottom: -2rem;
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle, rgba(93,245,140,0.1), transparent 72%);
}

.team-mini {
  margin: 0 0 1rem;
  color: rgba(255,255,255,0.38);
  font-size: 0.82rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.team-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.team-card-inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  grid-template-columns: 13rem 1fr;
}

.team-card {
  position: relative;
  overflow: hidden;
  min-height: 13rem;
  border-radius: 1.6rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  padding: 1.3rem;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.team-card::before {
  content: "";
  position: absolute;
  inset: auto -18% -45% auto;
  width: 10rem;
  height: 10rem;
  background: radial-gradient(circle, rgba(93,245,140,0.16), transparent 68%);
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(93,245,140,0.22);
  box-shadow: 0 18px 50px rgba(0,0,0,0.24);
}

.team-card-featured {
  min-height: 17rem;
  grid-column: span 2;
  background:
    linear-gradient(180deg, rgba(93,245,140,0.12), rgba(255,255,255,0.03)),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
}

.team-avatar-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 1rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}

.team-avatar-wrap::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(4,11,8,0.55));
}

.team-avatar-featured {
  margin-bottom: 0;
  aspect-ratio: 0.9 / 1;
}

.team-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
  transition: transform 0.55s ease;
}

.team-card:hover .team-avatar {
  transform: scale(1.05);
}

.team-orbit {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 5.8rem;
  height: 5.8rem;
  border-radius: 999px;
  border: 1px solid rgba(93,245,140,0.2);
}

.team-orbit::before,
.team-orbit::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.team-orbit::before {
  inset: 0.8rem;
  border: 1px solid rgba(255,255,255,0.08);
}

.team-orbit::after {
  top: 50%;
  left: -0.2rem;
  width: 0.7rem;
  height: 0.7rem;
  background: var(--glow);
  box-shadow: 0 0 16px rgba(93,245,140,0.55);
  transform: translateY(-50%);
  animation: orbitPulse 3s linear infinite;
}

@keyframes orbitPulse {
  0% { transform: translateY(-50%) rotate(0deg) translateX(2.9rem) rotate(0deg); }
  100% { transform: translateY(-50%) rotate(360deg) translateX(2.9rem) rotate(-360deg); }
}

.team-role {
  margin: 0;
  color: rgba(93,245,140,0.86);
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.team-name {
  margin: 1rem 0 0;
  max-width: 12ch;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.35rem, 2vw, 2.3rem);
  line-height: 1;
}

.team-copy {
  margin: 1rem 0 0;
  max-width: 28ch;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
}

.dashboard-panel,
.mini-dashboard {
  border-radius: 2rem;
  padding: 1.6rem;
}

.dashboard-head,
.fund-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.fund-meta {
  margin-bottom: 0.6rem;
  color: rgba(255,255,255,0.78);
}

.fund-bar {
  height: 0.9rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}

.fund-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(93,245,140,0.28), rgba(93,245,140,0.95));
  box-shadow: 0 0 25px rgba(93,245,140,0.22);
}

.mini-label {
  margin: 0;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.mini-value {
  margin: 1rem 0 0.65rem;
  font-family: "Syne", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 0.95;
}

.mini-ring {
  margin-top: 1rem;
  width: 6rem;
  height: 6rem;
  border-radius: 999px;
  padding: 0.45rem;
  background: conic-gradient(var(--glow) 0 329deg, rgba(255,255,255,0.08) 329deg 360deg);
}

.mini-ring span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: rgba(4,11,8,0.92);
}

.community-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 11rem;
}

.activity-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.7rem;
  border: 1px solid rgba(255,255,255,0.08);
  grid-column: span 4;
}

.activity-card.tall {
  grid-column: span 5;
  grid-row: span 2;
}

.activity-card.wide {
  grid-column: span 7;
}

.allies-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(8, 18, 14, 0.88), rgba(5, 10, 9, 0.76)),
    radial-gradient(circle at top right, rgba(93,245,140,0.08), transparent 35%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 30px 80px rgba(0,0,0,0.24);
}

.allies-showcase {
  position: relative;
  overflow: hidden;
}

.allies-glow-ring {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(42rem, 80vw);
  height: min(42rem, 80vw);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(93,245,140,0.12), transparent 62%);
  filter: blur(14px);
  pointer-events: none;
}

.allies-swiper {
  width: 100%;
  padding: 1rem 0 1.5rem;
}

.allies-swiper .swiper-slide {
  width: min(16rem, 70vw);
  display: flex;
  justify-content: center;
}

.ally-card {
  position: relative;
  width: min(16rem, 70vw);
  min-height: 10rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)),
    radial-gradient(circle at bottom left, rgba(93,245,140,0.08), transparent 45%);
  padding: 1rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.swiper-slide-active .ally-card {
  transform: translateY(-6px) scale(1.03);
  border-color: rgba(93,245,140,0.22);
  box-shadow: 0 24px 55px rgba(0,0,0,0.24);
}

.ally-card:hover {
  transform: translateY(-3px);
  border-color: rgba(93,245,140,0.2);
  box-shadow: 0 18px 40px rgba(0,0,0,0.2);
}

.ally-logo-wrap {
  display: grid;
  height: 100%;
  place-items: center;
  border-radius: 1.15rem;
  background: rgba(255,255,255,0.96);
  padding: 0.8rem;
}

.ally-logo-wrap img {
  max-width: 72%;
  max-height: 3.8rem;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  filter: saturate(0.95) contrast(1.02);
}

.allies-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.allies-nav {
  min-width: 5.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.76);
  padding: 0.8rem 1rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.7rem;
  transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.allies-nav:hover {
  transform: translateY(-2px);
  border-color: rgba(93,245,140,0.2);
  color: white;
}

.allies-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.allies-pagination .swiper-pagination-bullet {
  width: 0.45rem;
  height: 0.45rem;
  margin: 0 !important;
  background: rgba(255,255,255,0.2);
  opacity: 1;
}

.allies-pagination .swiper-pagination-bullet-active {
  background: var(--glow);
  box-shadow: 0 0 16px rgba(93,245,140,0.5);
}

.resonance-panel {
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(6, 15, 12, 0.95), rgba(5, 10, 9, 0.82)),
    radial-gradient(circle at top left, rgba(93,245,140,0.08), transparent 36%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 30px 80px rgba(0,0,0,0.24);
}

.resonance-field {
  position: absolute;
  inset: 8% auto auto 12%;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(93,245,140,0.12), transparent 68%);
  filter: blur(24px);
}

.resonance-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.1fr 1fr 1fr;
  grid-auto-rows: minmax(15rem, auto);
}

.resonance-card,
.resonance-core {
  position: relative;
  overflow: hidden;
  border-radius: 1.8rem;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    radial-gradient(circle at bottom right, rgba(93,245,140,0.08), transparent 44%);
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}

.resonance-card {
  padding: 1.35rem;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.resonance-card:hover {
  transform: translateY(-4px);
  border-color: rgba(93,245,140,0.2);
}

.resonance-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: "Syne", sans-serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(255,255,255,0.08);
}

.resonance-card-tall {
  grid-row: span 2;
}

.resonance-card-wide {
  grid-column: span 2;
}

.resonance-tag {
  display: inline-flex;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(93,245,140,0.16);
  background: rgba(93,245,140,0.08);
  color: rgba(93,245,140,0.9);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
}

.resonance-quote {
  margin: 1.2rem 0 0;
  max-width: 28ch;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.92);
}

.resonance-meta {
  margin-top: 1.6rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.resonance-meta h3 {
  margin: 0;
  font-size: 1rem;
  color: white;
}

.resonance-meta p {
  margin: 0.4rem 0 0;
  color: rgba(255,255,255,0.44);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.resonance-core {
  display: grid;
  place-items: center;
  min-height: 100%;
  grid-row: span 2;
  background:
    radial-gradient(circle at center, rgba(93,245,140,0.18), rgba(255,255,255,0.03) 48%, rgba(255,255,255,0.01) 70%);
}

.resonance-core-center {
  position: relative;
  z-index: 2;
  max-width: 18rem;
  text-align: center;
}

.resonance-core-label {
  display: inline-flex;
  color: rgba(93,245,140,0.9);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
}

.resonance-core-value {
  margin: 1rem 0 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.resonance-core-copy {
  margin: 1rem auto 0;
  max-width: 25ch;
  color: rgba(255,255,255,0.58);
  line-height: 1.7;
}

.resonance-core-ring {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(93,245,140,0.14);
}

.resonance-core-ring-one {
  width: 68%;
  height: 68%;
  animation: slowPulse 7s linear infinite;
}

.resonance-core-ring-two {
  width: 88%;
  height: 88%;
  animation: slowPulse 9s linear infinite reverse;
}

@keyframes slowPulse {
  0% { transform: scale(0.96); opacity: 0.55; }
  50% { transform: scale(1.02); opacity: 0.85; }
  100% { transform: scale(0.96); opacity: 0.55; }
}

.contact-panel {
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(7, 16, 13, 0.96), rgba(5, 10, 9, 0.84)),
    radial-gradient(circle at top left, rgba(93,245,140,0.08), transparent 36%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 30px 80px rgba(0,0,0,0.24);
}

.contact-aura {
  position: absolute;
  border-radius: 999px;
  filter: blur(28px);
}

.contact-aura-one {
  top: -3rem;
  left: -4rem;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(93,245,140,0.14), transparent 70%);
}

.contact-aura-two {
  right: -4rem;
  bottom: -4rem;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(93,245,140,0.08), transparent 72%);
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.contact-points {
  display: grid;
  gap: 1rem;
}

.contact-point {
  padding: 1rem 1.1rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.contact-point-label {
  display: inline-flex;
  color: rgba(93,245,140,0.88);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.contact-point p {
  margin: 0.65rem 0 0;
  color: rgba(255,255,255,0.82);
}

.contact-form-wrap {
  position: relative;
  border-radius: 1.8rem;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    radial-gradient(circle at bottom right, rgba(93,245,140,0.08), transparent 46%);
  padding: 1.2rem;
}

.contact-form {
  display: grid;
  gap: 1.15rem;
}

.contact-form-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0 0.7rem;
}

.contact-head-label {
  margin: 0;
  color: rgba(93,245,140,0.88);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.contact-head-title {
  margin: 0.65rem 0 0;
  max-width: 18ch;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1;
}

.contact-trust {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.68);
  font-size: 0.82rem;
  white-space: nowrap;
}

.contact-trust-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--glow);
  box-shadow: 0 0 14px rgba(93,245,140,0.55);
}

.contact-form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-field {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.contact-input-shell {
  position: relative;
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(14,28,22,0.96), rgba(8,18,14,0.88)),
    radial-gradient(circle at top left, rgba(93,245,140,0.08), transparent 30%);
  padding: 0.12rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  background: rgba(8,18,14,0.92);
  color: white;
  padding: 1rem 1rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.contact-field textarea {
  resize: vertical;
  min-height: 10rem;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(255,255,255,0.32);
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: rgba(93,245,140,0.3);
  box-shadow: inset 0 0 0 1px rgba(93,245,140,0.18);
}

.contact-field:focus-within .contact-input-shell {
  transform: translateY(-1px);
  box-shadow: 0 0 0 4px rgba(93,245,140,0.08);
}

.contact-field.has-error input,
.contact-field.has-error select,
.contact-field.has-error textarea {
  border-color: rgba(255,108,108,0.55);
  box-shadow: inset 0 0 0 1px rgba(255,108,108,0.2);
}

.contact-field.has-error .contact-input-shell {
  box-shadow: 0 0 0 4px rgba(255,108,108,0.08);
}

.contact-error {
  display: block;
  min-height: 1rem;
  padding-left: 0.1rem;
  color: #ff8e8e;
  font-size: 0.8rem;
  line-height: 1.35;
}

.contact-textarea-shell {
  padding-bottom: 0;
}

.contact-message-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1rem 0.95rem;
  color: rgba(255,255,255,0.36);
  font-size: 0.78rem;
}

.contact-actions {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem 1.25rem;
  padding-top: 0.35rem;
}

.contact-submit {
  min-width: 12rem;
}

.contact-status {
  margin: 0;
  min-height: 1.25rem;
  color: rgba(255,255,255,0.62);
  text-align: left;
  line-height: 1.4;
}

.contact-status.is-success {
  color: rgba(93,245,140,0.92);
}

.contact-status.is-error {
  color: #ff9b9b;
}

.contact-qr-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.25rem;
}

.contact-qr-card {
  display: grid;
  gap: 1rem;
  grid-template-columns: auto 1fr;
  align-items: center;
  border-radius: 1.4rem;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)),
    radial-gradient(circle at bottom right, rgba(93,245,140,0.08), transparent 46%);
  padding: 0.95rem;
}

.contact-qr-frame {
  display: grid;
  place-items: center;
  width: 7.2rem;
  height: 7.2rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.98);
  padding: 0.55rem;
  box-shadow: 0 16px 36px rgba(0,0,0,0.18);
}

.contact-qr-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-qr-copy h3 {
  margin: 0.55rem 0 0;
  font-family: "Syne", sans-serif;
  font-size: 1.05rem;
  line-height: 1.1;
}

.contact-qr-copy p {
  margin: 0.55rem 0 0;
  color: rgba(255,255,255,0.58);
  line-height: 1.55;
  font-size: 0.88rem;
}

.contact-qr-tag {
  display: inline-flex;
  color: rgba(93,245,140,0.88);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
}

.project-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.project-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.project-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4,11,8,0.72);
  backdrop-filter: blur(12px);
}

.project-modal-panel {
  position: relative;
  z-index: 1;
  width: min(72rem, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  overflow: auto;
  border-radius: 2rem;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(9,20,16,0.96), rgba(6,12,10,0.9)),
    radial-gradient(circle at top left, rgba(93,245,140,0.08), transparent 34%);
  box-shadow: 0 40px 100px rgba(0,0,0,0.35);
}

.project-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  background: rgba(4,11,8,0.4);
  color: white;
  min-height: 2.8rem;
  padding: 0 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
}

.project-modal-media {
  min-height: 22rem;
}

.project-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-modal-content {
  padding: 1.5rem;
}

.project-modal-title {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.96;
}

.project-modal-copy {
  margin: 1rem 0 0;
  max-width: 58ch;
  color: rgba(255,255,255,0.64);
  line-height: 1.75;
}

.project-modal-metrics {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.4rem;
}

.project-modal-metrics div {
  padding: 1rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.project-modal-metrics span {
  display: block;
  color: rgba(93,245,140,0.86);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
}

.project-modal-metrics strong {
  display: block;
  margin-top: 0.65rem;
  font-family: "Syne", sans-serif;
  font-size: 1.1rem;
  line-height: 1.2;
}

.iti {
  width: 100%;
}

.iti__selected-country {
  border-radius: 0.8rem;
}

.iti--allow-dropdown input {
  padding-left: 4.7rem !important;
}

.just-validate-error-label {
  display: none !important;
}

.just-validate-error-field,
.just-validate-success-field {
  background: transparent !important;
}

.cta-panel {
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at top left, rgba(93,245,140,0.18), transparent 30%),
    linear-gradient(180deg, rgba(8,18,14,0.88), rgba(8,18,14,0.68));
}

.cta-beam {
  position: absolute;
  inset: -20% auto auto 10%;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(93,245,140,0.2), transparent 65%);
  filter: blur(18px);
}

.footer-panel {
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(10, 22, 18, 0.92), rgba(5, 12, 10, 0.74)),
    radial-gradient(circle at top left, rgba(93,245,140,0.08), transparent 35%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 30px 80px rgba(0,0,0,0.2);
}

.footer-panel > .grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2.8rem 1.8rem 1.35rem;
  text-align: center;
}

.footer-panel > .grid > div:first-child {
  display: grid;
  justify-items: center;
  gap: 0.95rem;
}

.footer-panel > .grid > div:first-child > .flex {
  justify-content: center;
}

.footer-panel > .grid > div:first-child p.mt-4,
.footer-panel > .grid > div:nth-child(2),
.footer-panel > .grid > div:nth-child(3) > .footer-title,
.footer-panel > .grid > div:nth-child(3) > .mt-3,
.footer-panel > .grid > div:nth-child(3) > .mt-4 {
  display: none !important;
}

.footer-panel > .grid > div:nth-child(3) {
  display: grid;
  justify-items: center;
}

.footer-panel > .grid > div:first-child .flex > div {
  display: grid;
  gap: 0.45rem;
}

.footer-panel > .grid > div:first-child .flex > div p:first-child {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  letter-spacing: 0.22em;
}

.footer-panel > .grid > div:first-child .flex > div p:last-child {
  color: rgba(255,255,255,0.6);
}

.footer-title {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(93,245,140,0.82);
}

.footer-link {
  display: inline-flex;
  color: rgba(255,255,255,0.68);
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-link:hover {
  color: white;
  transform: translateX(4px);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.85rem;
}

.footer-panel .social-links {
  justify-content: center;
  margin-top: 0.2rem;
  gap: 0.8rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 2.65rem;
  padding: 0 0.85rem 0 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)),
    radial-gradient(circle at left center, rgba(93,245,140,0.08), transparent 45%);
  color: rgba(255,255,255,0.72);
  font-size: 0.85rem;
  box-shadow: 0 12px 28px rgba(0,0,0,0.14);
  transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.footer-panel .social-link {
  width: 3.4rem;
  min-width: 3.4rem;
  height: 3.4rem;
  min-height: 3.4rem;
  padding: 0;
  gap: 0;
  border-radius: 999px;
  border-color: rgba(93,245,140,0.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    radial-gradient(circle at center, rgba(93,245,140,0.1), transparent 60%);
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(93,245,140,0.22);
  color: white;
  background:
    linear-gradient(180deg, rgba(93,245,140,0.12), rgba(255,255,255,0.03)),
    radial-gradient(circle at left center, rgba(93,245,140,0.14), transparent 45%);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.social-icon {
  display: inline-grid;
  place-items: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(207,255,223,0.95);
}

.social-icon svg {
  width: 0.92rem;
  height: 0.92rem;
}

.footer-panel .social-link span:last-child {
  display: none;
}

.footer-panel .social-icon {
  width: 100%;
  height: 100%;
  background: transparent;
}

.footer-panel .social-icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

.footer-base {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.2rem 1.8rem 1.35rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  text-align: center;
}

.hero-float {
  will-change: transform;
}

.back-to-top {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-width: 3.8rem;
  height: 3.8rem;
  padding: 0 1rem 0 0.8rem;
  border: 1px solid rgba(93,245,140,0.18);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(11,25,19,0.92), rgba(8,18,14,0.84)),
    radial-gradient(circle at left center, rgba(93,245,140,0.14), transparent 44%);
  color: rgba(232,255,240,0.9);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  border-color: rgba(93,245,140,0.35);
  box-shadow: 0 22px 46px rgba(0,0,0,0.28), 0 0 0 1px rgba(93,245,140,0.12);
}

.back-to-top-ring {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(93,245,140,0.1), transparent 35%, transparent 65%, rgba(93,245,140,0.1));
  opacity: 0.75;
}

.back-to-top-icon,
.back-to-top-label {
  position: relative;
  z-index: 1;
}

.back-to-top-icon {
  display: inline-grid;
  place-items: center;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}

.back-to-top-icon svg {
  width: 1rem;
  height: 1rem;
}

.back-to-top-label {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  pointer-events: none;
  mix-blend-mode: screen;
}

.cursor-dot {
  width: 0.75rem;
  height: 0.75rem;
  margin: -0.375rem 0 0 -0.375rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(155,255,190,1) 0%, rgba(93,245,140,1) 60%, rgba(93,245,140,0) 75%);
  box-shadow: 0 0 20px rgba(93,245,140,0.65);
}

.cursor-ring {
  width: 2.8rem;
  height: 2.8rem;
  margin: -1.4rem 0 0 -1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(93,245,140,0.35);
}

.seed-burst {
  position: fixed;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: radial-gradient(circle, #bdfdd0 0%, #5df58c 70%, rgba(93,245,140,0) 80%);
  pointer-events: none;
  z-index: 90;
}

.seed-stem {
  position: fixed;
  width: 2px;
  height: 0;
  background: linear-gradient(180deg, rgba(93,245,140,0.95), rgba(93,245,140,0.2));
  transform-origin: bottom center;
  pointer-events: none;
  z-index: 89;
}

.seed-leaf {
  position: fixed;
  width: 0.85rem;
  height: 0.45rem;
  background: linear-gradient(135deg, rgba(147,255,186,0.95), rgba(59,206,110,0.35));
  border-radius: 100% 0 100% 0;
  pointer-events: none;
  z-index: 89;
}

@media (max-width: 1023px) {
  .community-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 12rem;
  }

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

  .resonance-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-head {
    flex-direction: column;
  }

  .contact-qr-grid {
    grid-template-columns: 1fr;
  }

  .contact-qr-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .project-modal-metrics {
    grid-template-columns: 1fr;
  }

  .resonance-core,
  .resonance-card-tall,
  .resonance-card-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card-inner {
    grid-template-columns: 1fr;
  }

  .team-card-featured {
    grid-column: span 1;
  }

  .activity-card,
  .activity-card.tall,
  .activity-card.wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 767px) {
  main#home {
    padding-top: 2.4rem;
  }

  .section-title {
    max-width: none;
  }

  header .glass-panel {
    padding-inline: 0.95rem;
  }

  header .glass-panel span:last-child {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
  }

  #home > section:first-child .max-w-5xl {
    max-width: 100%;
  }

  .scroll-indicator span:first-child {
    display: none;
  }

  .allies-grid {
    grid-template-columns: 1fr;
  }

  .resonance-grid {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .contact-submit {
    width: 100%;
  }

  .stories-track {
    padding: 0 1rem;
  }

  .story-card {
    flex-basis: 88vw;
    height: 26rem;
  }

  .story-overlay {
    padding: 1.1rem;
  }

  .story-detail-trigger {
    width: 100%;
  }

  .before-after {
    min-height: 24rem;
  }

  .map-panel {
    min-height: 30rem;
  }

  .project-modal-panel {
    width: calc(100vw - 1rem);
    max-height: calc(100vh - 1rem);
  }

  .project-modal-content {
    padding: 1.15rem;
  }

  .footer-panel > .grid {
    padding: 2.2rem 1.1rem 1rem;
  }

  .footer-base {
    flex-direction: column;
  }

  .back-to-top {
    right: 0.8rem;
    bottom: 0.8rem;
    min-width: 3.2rem;
    height: 3.2rem;
    padding: 0 0.7rem;
  }

  .back-to-top-label {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
