:root {
  --bg: #02050a;
  --bg-soft: #08101a;
  --surface: rgba(13, 21, 34, 0.74);
  --surface-strong: rgba(8, 14, 24, 0.88);
  --surface-light: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(56, 189, 248, 0.25);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-strong: #cbd5e1;
  --primary: #38bdf8;
  --primary-soft: #7dd3fc;
  --violet: #6366f1;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 28px;
  --container: 90rem;
  --shared-bg: url("../images/backgrounds/new.png");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Nunito", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.page-background,
.page-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.page-background {
  z-index: -2;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 140, 255, 0.877) 0%, rgb(3, 18, 22) 90%),
    var(--shared-bg) center / cover no-repeat fixed;
  filter: saturate(0.72) brightness(0.52) hue-rotate(-10deg);
}

.page-grid {
  z-index: -1;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(56, 189, 248, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  mix-blend-mode: overlay;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.container--narrow {
  width: min(calc(100% - 2rem), 80rem);
}

/* Cały pasek */
::-webkit-scrollbar {
    width: 10px;
}

/* Tło paska */
::-webkit-scrollbar-track {
    background: rgba(32, 62, 70, 0);
}

/* Suwak */
::-webkit-scrollbar-thumb {
    background: #00baf3;
    border-radius: 10px;
}

/* Po najechaniu */
::-webkit-scrollbar-thumb:hover {
    background: #0284ac;
}

.section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.section2 {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.section--image::before,
.section--join::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section-divider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.35), transparent);
}

.section-divider--bottom {
  top: auto;
  bottom: 0;
}

.section-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section-overlay::before,
.section-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
}


.section-overlay--stats::before {
  background: linear-gradient(180deg, rgba(8, 12, 22, 1) 0%, rgba(8, 12, 22, 0.62) 40%, rgba(8, 12, 22, 0.62) 60%, rgba(8, 12, 22, 1) 100%);
}

.section-overlay--stats::after {
  opacity: 0.25;
  filter: saturate(0.55) brightness(0.7);
}

.section-overlay--features::before {
  background: linear-gradient(180deg, rgba(8, 12, 22, 0.95) 0%, rgba(8, 12, 22, 0.65) 40%, rgba(8, 12, 22, 0.65) 60%, rgba(8, 12, 22, 1) 100%);
}

.section-overlay--features::after {
  opacity: 0.14;
  filter: saturate(0.55) brightness(0.55);
}

.section-overlay--start::before {
  background: linear-gradient(180deg, rgba(8, 12, 22, 1) 0%, rgba(8, 12, 22, 0.82) 50%, rgba(8, 12, 22, 1) 100%);
}

.section-overlay--start::after {
  opacity: 0.15;
  filter: saturate(0.5) brightness(0.5);
}

.section-overlay--team::before {
  background: linear-gradient(180deg, rgba(8, 12, 22, 1) 0%, rgba(8, 12, 22, 0.72) 30%, rgba(8, 12, 22, 0.72) 70%, rgba(8, 12, 22, 1) 100%);
}

.section-overlay--team::after {
  opacity: 0.18;
  filter: saturate(0.48) brightness(0.48);
}

.section-overlay--faq::before {
  background: linear-gradient(180deg, rgba(8, 12, 22, 1) 0%, rgba(8, 12, 22, 0.82) 30%, rgba(8, 12, 22, 0.82) 70%, rgba(8, 12, 22, 1) 100%);
}

.section-overlay--faq::after {
  opacity: 0.15;
  filter: saturate(0.4) brightness(0.45);
}

.section--join::before {
  background:
    radial-gradient(circle at 25% 0%, rgba(56, 189, 248, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 75% 100%, rgba(37, 99, 235, 0.12) 0%, transparent 40%),
    linear-gradient(180deg, rgba(2, 5, 10, 0.96) 0%, rgba(6, 10, 18, 0.98) 100%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  display: flex;
  justify-content: center;
}

.site-header--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-1rem);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(calc(100% - 2rem), 62rem);
  min-height: 4.4rem;
  margin-top: 0.55rem;
  padding: 0.85rem 1.35rem;
}

.site-header__left {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
  flex-shrink: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.brand__mark {
  width: 1.9rem;
  height: 1.9rem;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(56, 189, 248, 0.35));
}

.brand__text,
.hero__title,
.hero__title2,
.section-title,
.footer-cta h2,
.footer-wordmark,
.team-card__name,
.metric-card strong,
.stats-card__value {
  font-family: "Urbanist", sans-serif;
}

.brand__text {
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.brand__text span,
.hero__title span,
.hero__title2 span,
.section-title span,
.hero-card__caption strong span,
.footer-cta h2 span {
  color: var(--primary-soft);
}

.header-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0.62rem;
  border: 1px solid rgba(56, 189, 248, 0.16);
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.08);
  color: #dbeafe;
  font-family: "Urbanist", sans-serif;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.status-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-left: 0;
  flex: 1 1 auto;
  min-width: 0;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.9rem;
  padding: 0.75rem 1.1rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(56, 189, 248, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: #94a3b8;
  font-family: "Urbanist", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}

.site-nav a:hover {
  color: #fff;
  background: rgba(56, 189, 248, 0.09);
  border-color: rgba(56, 189, 248, 0.28);
  transform: translateY(-1px);
}

.site-nav__icon,
.header-cta__icon,
.button__icon {
  display: inline-flex;
  width: 1rem;
  height: 1rem;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.site-nav__icon {
  color: rgba(125, 211, 252, 0.82);
  font-size: 0.78rem;
}

.site-nav__icon i {
  filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.22));
}

.header-cta__icon::before,
.button__icon::before {
  content: "";
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  border: 1px solid rgba(125, 211, 252, 0.55);
  box-shadow: 0 0 8px rgba(56, 189, 248, 0.26);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.9rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid transparent;
  font-family: "Urbanist", sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.header-cta {
  color: var(--primary);
  border-color: rgba(56, 189, 248, 0.24);
  background: rgba(56, 189, 248, 0.08);
  min-height: 2.5rem;
  padding: 0.6rem 1rem;
  gap: 0.35rem;
  border-radius: 0.5rem;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  flex-shrink: 0;
  white-space: nowrap;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.button--light {
  color: #0f172a;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(241, 245, 249, 0.94) 100%);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.15);
}

.button--ghost {
  color: var(--primary-soft);
  border-color: rgba(56, 189, 248, 0.28);
  background: rgba(56, 189, 248, 0.08);
}

.hero {
  min-height: 100vh;
  padding-top: 6rem;
  padding-bottom: 3rem;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 5, 10, 0.45) 0%, rgba(2, 5, 10, 0.68) 100%),
    radial-gradient(circle at center, rgba(56, 189, 248, 0.12) 0%, rgba(2, 5, 10, 0) 42%),
    var(--shared-bg) center 18% / cover no-repeat;
  opacity: 0.42;
  filter: saturate(0.4) brightness(0.45);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: block;
}

.hero__content--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  min-height: calc(100vh - 9rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.03);
  color: var(--primary-soft);
  font-family: "Urbanist", sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  min-height: 2.8rem;
}

.eyebrow__dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 15px var(--primary);
}

.hero__title {
  margin: 2rem 0 1rem;
  font-size: clamp(3.4rem, 8vw, 10rem);
  font-style: italic;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-shadow: 0 0 30px rgba(56, 189, 248, 0.18);
}

.hero__title2 {
  margin: 0 0 1.2rem;
  font-size: clamp(1.8rem, 3vw, 5rem);
  font-style: italic;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-shadow: 0 0 30px rgba(56, 189, 248, 0.18);
}

.og-electric {
  position: relative;
  display: inline-block;
  padding-inline: 0.08em;
  color: #d9f6ff;
  text-shadow:
    0 0 8px rgba(125, 211, 252, 0.9),
    0 0 18px rgba(56, 189, 248, 0.85),
    0 0 32px rgba(14, 165, 233, 0.65);
  animation: og-electric-glow 1.6s ease-in-out infinite alternate, og-electric-jitter 4.8s steps(1, end) infinite;
}

.og-electric::before,
.og-electric::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1.2rem;
  height: 0.8rem;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.85;
  filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.9));
}

.og-electric::before {
  left: -1.05rem;
  clip-path: polygon(45% 0, 70% 0, 48% 36%, 78% 36%, 22% 100%, 38% 56%, 14% 56%);
  background: linear-gradient(180deg, #ecfeff 0%, #38bdf8 55%, #0ea5e9 100%);
  animation: og-bolt-left 1.35s linear infinite;
}

.og-electric::after {
  right: -1.1rem;
  clip-path: polygon(38% 0, 84% 0, 56% 38%, 88% 38%, 28% 100%, 44% 60%, 18% 60%);
  background: linear-gradient(180deg, #ecfeff 0%, #7dd3fc 50%, #0284c7 100%);
  animation: og-bolt-right 1.7s linear infinite;
}

@keyframes og-electric-glow {
  0% {
    color: #dff8ff;
    text-shadow:
      0 0 6px rgba(125, 211, 252, 0.75),
      0 0 14px rgba(56, 189, 248, 0.55),
      0 0 26px rgba(14, 165, 233, 0.35);
  }
  45% {
    color: #f6feff;
    text-shadow:
      0 0 10px rgba(224, 242, 254, 0.95),
      0 0 24px rgba(56, 189, 248, 0.95),
      0 0 42px rgba(14, 165, 233, 0.8);
  }
  100% {
    color: #b8ecff;
    text-shadow:
      0 0 8px rgba(125, 211, 252, 0.85),
      0 0 20px rgba(56, 189, 248, 0.88),
      0 0 36px rgba(2, 132, 199, 0.7);
  }
}

@keyframes og-electric-jitter {
  0%, 90%, 100% {
    transform: translate3d(0, 0, 0) skewX(0deg);
  }
  91% {
    transform: translate3d(-0.02em, 0.01em, 0) skewX(-2deg);
  }
  92% {
    transform: translate3d(0.03em, -0.01em, 0) skewX(2deg);
  }
  93% {
    transform: translate3d(-0.015em, 0.01em, 0) skewX(-1deg);
  }
  94% {
    transform: translate3d(0.01em, 0, 0) skewX(0deg);
  }
}

@keyframes og-bolt-left {
  0%, 18%, 100% {
    opacity: 0.18;
    transform: translateY(-50%) scale(0.92) rotate(-6deg);
  }
  19% {
    opacity: 0.95;
    transform: translateY(-50%) scale(1.12) rotate(-10deg);
  }
  24% {
    opacity: 0.28;
    transform: translateY(-50%) scale(0.96) rotate(-4deg);
  }
  58% {
    opacity: 0.16;
    transform: translateY(-50%) scale(0.9) rotate(-2deg);
  }
  60% {
    opacity: 0.85;
    transform: translateY(-50%) scale(1.08) rotate(-8deg);
  }
  64% {
    opacity: 0.24;
    transform: translateY(-50%) scale(0.94) rotate(-5deg);
  }
}

@keyframes og-bolt-right {
  0%, 28%, 100% {
    opacity: 0.14;
    transform: translateY(-50%) scale(0.9) rotate(8deg);
  }
  29% {
    opacity: 0.92;
    transform: translateY(-50%) scale(1.15) rotate(13deg);
  }
  34% {
    opacity: 0.22;
    transform: translateY(-50%) scale(0.95) rotate(6deg);
  }
  70% {
    opacity: 0.12;
    transform: translateY(-50%) scale(0.88) rotate(5deg);
  }
  72% {
    opacity: 0.88;
    transform: translateY(-50%) scale(1.06) rotate(11deg);
  }
  76% {
    opacity: 0.24;
    transform: translateY(-50%) scale(0.93) rotate(7deg);
  }
}

.hero__subtitle {
  max-width: 42rem;
  margin: 0 0 1.2rem;
  color: #8b9bb0;
  font-size: clamp(0.74rem, 1vw, 1.28rem);
}

.hero__date {
  margin: 5rem 0 1rem;
  color: var(--primary);
  font-family: "Urbanist", sans-serif;
  font-size: clamp(1.4rem, 1.4vw, 1.2rem);
  font-weight: 800;
  letter-spacing: 0.03em;
}

.countdown__caption {
  margin: 4.5rem 0 0;
  color: rgba(125, 211, 252, 0.8);
  font-family: "Urbanist", sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.6rem);
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 0 16px rgba(56, 189, 248, 0.25);
}

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 1vw, 1rem);
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}

.countdown__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.countdown__value {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(4.8rem, 7vw, 12rem);
  aspect-ratio: 1 / 0.9;
  border: 1px solid rgba(56, 191, 248, 0.555);
  background: rgba(10, 123, 151, 0.123);
  backdrop-filter: blur(8px);
  border-radius: 5px;
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.08), inset 0 0 15px rgba(56, 189, 248, 0.03);
  font-family: "Urbanist", sans-serif;
  font-size: clamp(2rem, 4vw, 6.4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.479);
}

.countdown__label {
  color: rgba(125, 211, 252, 0.8);
  font-family: "Urbanist", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.countdown__separator {
  align-self: center;
  margin-top: -2.5rem;
  color: rgba(56, 191, 248, 0.521);
  font-family: "Urbanist", sans-serif;
  font-size: clamp(2.2rem, 2vw, 4rem);
  font-weight: 800;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.about-collage {
  position: relative;
  min-height: 35rem;
  perspective: 1000px;
}

.about-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.about-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-card--main {
  top: 0;
  left: 0;
  width: 65%;
  height: 60%;
  border-radius: 2.5rem;
  transform: rotateZ(-4deg);
}

.about-card--main img {
  transform: scale(1.1);
  filter: grayscale(0.4);
}

.about-card--info {
  top: 10%;
  right: 10%;
  z-index: 2;
  width: 40%;
  padding: 1.25rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: blur(16px);
}

.hero-badge {
  margin-bottom: 0.4rem;
  color: var(--primary-soft);
  font-family: "Urbanist", sans-serif;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.about-card--info strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
}

.about-card--info p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.82rem;
  line-height: 1.45;
}

.about-card--secondary {
  right: 0;
  bottom: 5%;
  z-index: 3;
  width: 75%;
  height: 60%;
  border: 2px solid rgba(56, 189, 248, 0.3);
  border-radius: 2.5rem;
}

.about-card--secondary img {
  transform: scale(1.08);
  filter: saturate(1.4) contrast(1.1) brightness(0.65);
}

.hero-card__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.5rem;
  background: linear-gradient(180deg, transparent 0%, rgba(2, 6, 12, 0.85) 100%);
}

.hero-card__caption span {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--primary-soft);
  font-family: "Urbanist", sans-serif;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-card__caption strong {
  display: block;
  font-size: clamp(1.75rem, 2vw, 2.5rem);
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-orb {
  position: absolute;
  left: 5%;
  bottom: 20%;
  z-index: 4;
  width: 6rem;
  height: 6rem;
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, rgba(15, 23, 42, 0.6) 100%);
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.3);
}

.hero-orb::before,
.hero-orb::after {
  content: "";
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(56, 189, 248, 0.35);
}

.hero-orb::before {
  width: 60%;
  height: 60%;
}

.hero-orb::after {
  width: 85%;
  height: 85%;
  border-style: dashed;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 5rem;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transform: translateX(-50%);
  color: rgba(125, 211, 252, 0.65);
  font-family: "Urbanist", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-indicator__arrow {
  width: 0.8rem;
  height: 0.8rem;
  border-right: 2px solid rgba(125, 211, 252, 0.6);
  border-bottom: 2px solid rgba(125, 211, 252, 0.6);
  transform: rotate(45deg);
  animation: scroll-bounce 1.5s infinite ease-in-out;
}

@keyframes scroll-bounce {
  0%, 100% {
    transform: rotate(45deg) translate(0, 0);
  }
  50% {
    transform: rotate(45deg) translate(6px, 6px);
  }
}

.about,
.footer-main,
.footer-cta {
  position: relative;
  z-index: 1;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.95fr);
  gap: 4rem;
  align-items: center;
}

.section-title {
  margin: 1rem;
  font-size: clamp(2.6rem, 5vw, 4.25rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.section-title span {
  display: inline-block;
  font-style: italic;
  padding-right: 0.12em;
  padding-bottom: 0.12em;
}

.section-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 4rem;
}

.section-heading--center {
  margin-top: 5rem;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--compact {
  max-width: 48rem;
  margin-inline: auto;
}

.section-copy {
  color: var(--muted-strong);
  font-size: 1.08rem;
}

.section-copy strong {
  color: #fff;
  font-weight: 800;
}

.section-copy--accent {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  border-left: 2px solid rgba(56, 189, 248, 0.3);
}

.section-copy--accent::before {
  content: "";
  position: absolute;
  top: 0;
  left: -2px;
  width: 2px;
  height: 33%;
  background: #fff;
  box-shadow: 0 0 8px rgba(56, 189, 248, 0.6);
}

.section-lead {
  max-width: 48rem;
  margin: 0 auto;
  color: #cbd5e1;
  font-size: 1.05rem;
  margin-bottom: 6.5rem;
}

.section-lead--stats-intro {
  margin-bottom: -2.2rem;
}

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

.metric-card,
.stats-card,
.feature-card,
.step-card,
.team-card,
.faq-item,
.social-card,
.join-banner,
.start-help,
.footer-socials a {
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(18px);
}

.metric-card {
  position: relative;
  overflow: hidden;
  padding: 1.1rem 1rem;
  border-radius: 1.5rem;
}

.metric-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(56, 189, 248, 0.05);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.metric-card:hover::before {
  opacity: 1;
}

.metric-card strong {
  display: block;
  position: relative;
  z-index: 1;
  margin-bottom: 0.2rem;
  font-size: 1.8rem;
  font-weight: 900;
}

.metric-card span {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 0.95rem;
}

.about__actions {
  margin-top: 1.4rem;
}

.button--about {
  min-height: 2.8rem;
  gap: 0.35rem;
  padding-inline: 1.2rem;
  border-radius: 0.7rem;
  font-size: 0.72rem;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.12);
}

.button__icon::before {
  width: 0.36rem;
  height: 0.36rem;
  background: #0f172a;
  border-color: rgba(15, 23, 42, 0.5);
  box-shadow: none;
}

.stats-grid,
.features-grid,
.team-grid,
.social-grid {
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14.5rem), 1fr));
  gap: clamp(0.85rem, 1.5vw, 1.2rem);
  align-items: stretch;
  padding: clamp(0.85rem, 1.5vw, 1.2rem);
  border-radius: 2rem;
}

.stats-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "eyebrow eyebrow"
    "icon value"
    "label label"
    "note note";
  align-content: start;
  gap: 0.9rem 1rem;
  min-height: clamp(15rem, 20vw, 17rem);
  padding: clamp(1.3rem, 2.2vw, 1.8rem);
  border-radius: 1.4rem;
  text-align: left;
  border: 1px solid rgba(56, 191, 248, 0.555);
  background: rgba(10, 123, 151, 0.123);
  margin-bottom: 6.5rem;
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

.stats-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.9;
  pointer-events: none;
}

.stats-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.24);
}

.stats-card__eyebrow,
.stats-card__icon,
.stats-card__value,
.stats-card__label,
.stats-card__note {
  position: relative;
  z-index: 1;
}

.stats-card__icon {
  grid-area: icon;
  display: grid;
  place-items: center;
  width: clamp(3.25rem, 4vw, 3.8rem);
  height: clamp(3.25rem, 4vw, 3.8rem);
  margin: 0;
  align-self: center;
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.14), rgba(99, 102, 241, 0.08));
  color: var(--primary-soft);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 22px rgba(56, 189, 248, 0.12);
}

.stats-card__icon svg,
.feature-card__icon svg,
.social-card__icon svg {
  width: 1.7rem;
  height: 1.7rem;
}

.stats-card__value {
  grid-area: value;
  display: flex;
  align-items: center;
  margin: 0;
  font-size: clamp(2.6rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.479);
}

.stats-card__label {
  grid-area: label;
  margin: 0;
  color: #dbeafe;
  font-family: "Urbanist", sans-serif;
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stats-card__note {
  grid-area: note;
  margin: 0;
  color: rgba(203, 213, 225, 0.82);
  font-size: clamp(0.88rem, 1.1vw, 0.98rem);
  line-height: 1.55;
}

.admin-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13.25rem), 1fr));
}

.admin-card {
  grid-template-columns: 1fr;
  grid-template-areas: none;
  justify-items: center;
  align-content: center;
  gap: 0.9rem;
  min-height: 0;
  text-align: center;
}

.admin-card__avatar,
.admin-card__name,
.admin-card__role {
  position: relative;
  z-index: 1;
}

.admin-card__avatar {
  display: grid;
  place-items: center;
  width: clamp(5.25rem, 7vw, 6.4rem);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.15rem;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--admin-accent) 28%, rgba(56, 189, 248, 0.16)) 0%, rgba(9, 16, 28, 0.9) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 22px color-mix(in srgb, var(--admin-accent) 28%, transparent);
}

.admin-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-card__fallback {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: #f8fafc;
  font-family: "Urbanist", sans-serif;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.admin-card__name {
  margin: 0;
  color: #f8fafc;
  font-family: "Urbanist", sans-serif;
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.admin-card__role {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.1rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid color-mix(in srgb, var(--admin-accent) 50%, rgba(125, 211, 252, 0.24));
  border-radius: 999px;
  background: color-mix(in srgb, var(--admin-accent) 12%, rgba(56, 189, 248, 0.08));
  color: #e2e8f0;
  font-family: "Urbanist", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 18rem;
  padding: 1.6rem;
  border-radius: 2rem;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.feature-card:hover,
.team-card:hover,
.social-card:hover,
.step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(56, 189, 248, 0.32);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.feature-card__number {
  color: rgba(255, 255, 255, 0.3);
  font-family: "Urbanist", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
}

.feature-card__icon {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 1.4rem;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.18), rgba(56, 189, 248, 0.05));
  color: var(--primary-soft);
}

.feature-card h3,
.step-card h3,
.social-card h3 {
  margin: 0;
  font-family: "Urbanist", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
}

.feature-card p,
.step-card p,
.social-card p {
  margin: 0;
  color: var(--muted);
}

.feature-card__link,
.step-card__link {
  margin-top: auto;
  color: var(--primary-soft);
  font-family: "Urbanist", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.steps-list {
  display: grid;
  gap: 1rem;
}

.step-card {
  display: grid;
  grid-template-columns: 6.5rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.4rem 1.5rem;
  border-radius: 2rem;
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.step-card__number {
  color: rgba(255, 255, 255, 0.6);
  font-family: "Urbanist", sans-serif;
  font-size: 2rem;
  font-weight: 900;
}

.start-help {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 2rem auto 0;
  padding: 1rem 1.35rem;
  border-radius: 999px;
  color: var(--muted-strong);
}

.start-help a {
  color: var(--primary-soft);
  font-weight: 800;
}

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

.team-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 2rem;
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.team-card__avatar {
  display: grid;
  place-items: center;
  width: 5.75rem;
  height: 5.75rem;
  margin-bottom: 1.1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(99, 102, 241, 0.12));
}

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

.team-card__fallback {
  font-family: "Urbanist", sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
}

.team-card__name {
  margin: 0 0 0.6rem;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.team-card__role {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid currentColor;
  font-family: "Urbanist", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.team-card__glow {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  opacity: 0.85;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border-radius: 1.5rem;
  overflow: hidden;
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.4rem;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.faq-item__trigger span:first-child {
  text-align: left;
  font-family: "Urbanist", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
}

.faq-item__icon {
  position: relative;
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 1rem;
  height: 2px;
  background: var(--primary-soft);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(180deg);
  opacity: 0;
}

.faq-item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item__content p {
  margin: 0;
  padding: 0 1.4rem 1.35rem;
  color: var(--muted-strong);
}

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

.social-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  min-height: 16.5rem;
  padding: 1.6rem;
  border-radius: 2rem;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

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

.social-card__icon,
.social-card__arrow {
  display: grid;
  place-items: center;
  border-radius: 1.1rem;
}

.social-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.04);
}

.social-card__arrow {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
}

.social-card__arrow::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.social-card__body {
  margin-top: auto;
}

.social-card__eyebrow {
  display: block;
  margin-bottom: 0.35rem;
  color: currentColor;
  font-family: "Urbanist", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.join-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
  padding: 2rem;
  border-radius: 2rem;
}

.join-banner__label {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: var(--primary-soft);
  font-family: "Urbanist", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.join-banner h3 {
  margin: 0 0 0.7rem;
  font-family: "Urbanist", sans-serif;
  font-size: 2rem;
  font-weight: 900;
}

.join-banner p {
  max-width: 40rem;
  margin: 0;
  color: var(--muted-strong);
}

.site-footer {
  position: relative;
  padding: 4.5rem 0 1.5rem;
  overflow: hidden;
  border-top: 1px solid rgba(56, 189, 248, 0.18);
  background: linear-gradient(180deg, rgba(2, 5, 10, 0.98) 0%, rgba(2, 5, 10, 1) 100%);
}

.site-footer__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 5, 10, 0.4) 0%, rgba(2, 5, 10, 1) 100%),
    var(--shared-bg) center / cover no-repeat;
  opacity: 0.05;
  filter: grayscale(1);
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(56, 189, 248, 0.18);
}

.footer-cta h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.footer-cta p {
  max-width: 38rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-branding p {
  margin: 1.25rem 0 0;
  color: var(--muted-strong);
  font-family: "Urbanist", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.footer-links h3 {
  margin: 0 0 1rem;
  color: var(--primary-soft);
  font-family: "Urbanist", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-socials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.footer-socials a {
  padding: 0.8rem 0.9rem;
  border-radius: 0.9rem;
  text-align: center;
  font-family: "Urbanist", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
}

.footer-contact span {
  display: block;
  margin-bottom: 0.45rem;
  color: #64748b;
  font-family: "Urbanist", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-contact a {
  color: var(--primary-soft);
  font-family: "Urbanist", sans-serif;
  font-weight: 800;
}

.footer-wordmark {
  position: relative;
  margin: 0 0 1rem;
  text-align: center;
  font-size: clamp(4.5rem, 15vw, 12rem);
  font-style: italic;
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(56, 189, 248, 0.12);
  text-shadow: 0 0 24px rgba(56, 189, 248, 0.05);
  user-select: none;
  pointer-events: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(56, 189, 248, 0.08);
  color: #64748b;
  font-size: 0.78rem;
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

@media (max-width: 1200px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

@media (max-width: 1024px) {
  .site-header__inner {
    width: min(calc(100% - 1.25rem), 52rem);
    min-height: auto;
    padding: 0.85rem 1rem;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .site-header__left {
    gap: 0.7rem;
  }

  .site-nav {
    order: 3;
    flex: 1 0 100%;
    width: 100%;
    justify-content: center;
    gap: 0.5rem;
    padding-top: 0.25rem;
  }

  .site-nav a {
    flex: 0 1 auto;
  }

  .hero__grid,
  .about,
  .footer-main,
  .footer-cta,
  .join-banner {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .about-collage {
    min-height: 38rem;
  }

  .stats-grid,
  .team-grid,
  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-card {
    min-height: 14rem;
  }

  .step-card {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

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

  .join-banner {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 6rem 0;
  }

  .section-heading {
    margin-bottom: 2.75rem;
  }

  .section-heading--center {
    margin-top: 3.5rem;
  }

  .section-title {
    margin: 1rem 0;
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .section-lead {
    font-size: 0.98rem;
  }

  .section-lead--stats-intro {
    margin-bottom: 1.5rem;
  }

  .site-header {
    top: 0;
    padding-top: 0;
  }

  .site-header__inner {
    width: min(calc(100% - 1rem), 100%);
    margin-top: 0.55rem;
    padding: 0.85rem 0.9rem;
    gap: 0.75rem;
  }

  .site-header__left {
    width: 100%;
    justify-content: space-between;
  }

  .brand__mark {
    width: 1.7rem;
    height: 1.7rem;
  }

  .brand__text {
    font-size: 0.82rem;
  }

  .header-status {
    font-size: 0.52rem;
  }

  .site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
  }

  .site-nav a {
    min-height: 2.7rem;
    padding: 0.7rem 0.9rem;
    font-size: 0.62rem;
  }

  .header-cta {
    align-self: center;
  }

  .hero {
    padding-top: 7rem;
    padding-bottom: 5rem;
  }

  .hero__content--center {
    min-height: calc(100vh - 8rem);
  }

  .about-collage {
    min-height: 31rem;
  }

  .about-card--main {
    width: 68%;
    height: 48%;
  }

  .about-card--info {
    right: 0;
    width: 48%;
  }

  .about-card--secondary {
    width: 82%;
    height: 48%;
  }

  .countdown {
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }

  .countdown__separator {
    margin-top: 1rem;
  }

  .features-grid,
  .team-grid,
  .social-grid,
  .footer-links,
  .footer-socials {
    grid-template-columns: 1fr;
  }

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

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

  .stats-card,
  .step-card,
  .feature-card,
  .social-card {
    padding: 1.35rem;
  }

  .stats-card {
    min-height: 13.5rem;
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "icon"
      "value"
      "label"
      "note";
    gap: 0.8rem;
    text-align: center;
  }

  .stats-card__eyebrow {
    justify-self: center;
  }

  .stats-card__icon,
  .stats-card__value {
    justify-self: center;
  }

  .admin-card {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .hero__actions,
  .footer-cta__actions,
  .join-banner .button {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .site-header__inner {
    padding: 0.7rem;
  }

  .site-header__left {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
  }

  .site-nav {
    gap: 0.45rem;
  }

  .site-nav a {
    flex: 1 1 calc(50% - 0.35rem);
    min-width: 8.5rem;
    min-height: 2.8rem;
  }

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

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

  .stats-card {
    min-height: auto;
    padding: 1.2rem;
  }

  .stats-card__value {
    font-size: clamp(2.3rem, 10vw, 3rem);
  }

  .stats-card__note {
    font-size: 0.9rem;
  }

  .header-cta {
    width: auto;
    min-width: 8.5rem;
  }

  .hero__visual {
    min-height: auto;
  }

  .about-collage {
    min-height: 26rem;
  }

  .about-card--info {
    width: 52%;
    padding: 0.9rem;
  }

  .hero-card__caption strong {
    font-size: 1.55rem;
  }

  .start-help {
    border-radius: 1.5rem;
    text-align: center;
  }
}
