:root {
  --sky-top: #4eb4ff;
  --sky-mid: #7ec8ff;
  --sky-low: #c9e8ff;
  --cloud: #ffffff;
  --radish: #e11d2e;
  --radish-deep: #b40f1d;
  --ink: #121418;
  --ink-soft: #2a3140;
  --muted: #4a5568;
  --leaf: #3f8f4a;
  --glass: rgba(255, 255, 255, 0.55);
  --glass-strong: rgba(255, 255, 255, 0.78);
  --stroke: rgba(18, 20, 24, 0.12);
  --shadow: 0 18px 50px rgba(18, 58, 110, 0.18);
  --radius: 28px;
  --font-display: "Fredoka", sans-serif;
  --font-body: "Nunito", sans-serif;
  --nav-h: 76px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.55;
  background: var(--sky-mid);
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

/* ---------- Sky backdrop ---------- */
.sky {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.sky-wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, #dff3ff 0%, transparent 55%),
    linear-gradient(
      180deg,
      var(--sky-top) 0%,
      var(--sky-mid) 42%,
      var(--sky-low) 78%,
      #eaf6ff 100%
    );
}

.cloud {
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(
    circle at 30% 40%,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.55) 55%,
    rgba(255, 255, 255, 0)
  );
  filter: blur(2px);
  opacity: 0.75;
  animation: drift linear infinite;
}

.cloud-a {
  width: 420px;
  height: 140px;
  top: 12%;
  left: -10%;
  animation-duration: 48s;
}

.cloud-b {
  width: 560px;
  height: 180px;
  top: 34%;
  left: 40%;
  animation-duration: 62s;
  animation-direction: reverse;
}

.cloud-c {
  width: 380px;
  height: 120px;
  top: 58%;
  left: 10%;
  animation-duration: 54s;
}

.cloud-d {
  width: 480px;
  height: 150px;
  top: 78%;
  left: 55%;
  animation-duration: 70s;
  animation-direction: reverse;
}

@keyframes drift {
  from {
    transform: translateX(-20vw);
  }
  to {
    transform: translateX(30vw);
  }
}

#spark-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
  backdrop-filter: blur(16px) saturate(1.2);
  background: rgba(255, 255, 255, 0.42);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.nav-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(18, 58, 110, 0.22);
  transition: transform 0.4s ease;
}

.nav-brand:hover .nav-logo {
  transform: rotate(-8deg) scale(1.06);
}

.nav-links {
  display: flex;
  gap: 1.4rem;
}

.nav-links a {
  font-weight: 700;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: var(--radish);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.icon-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--glass-strong);
  border: 1px solid var(--stroke);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.icon-btn img {
  width: 18px;
  height: 18px;
}

.icon-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(18, 58, 110, 0.16);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  padding: 0 10px;
}

.nav-toggle span {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-drawer {
  position: sticky;
  top: var(--nav-h);
  z-index: 49;
  display: grid;
  gap: 0.85rem;
  padding: 1rem 1.25rem 1.4rem;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--stroke);
  backdrop-filter: blur(14px);
}

.mobile-drawer[hidden] {
  display: none !important;
}

.mobile-drawer a {
  font-weight: 800;
}

.drawer-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin-top: 0.35rem;
}

.drawer-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.7rem 0.4rem;
  border-radius: 14px;
  background: #f3f8ff;
  border: 1px solid var(--stroke);
  font-size: 0.9rem;
}

.drawer-row img {
  width: 16px;
  height: 16px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.btn-sm {
  padding: 0.65rem 1rem;
  font-size: 0.92rem;
}

.btn-lg {
  padding: 0.95rem 1.45rem;
  font-size: 1.02rem;
}

.btn-primary {
  background: linear-gradient(180deg, #ff3b4d 0%, var(--radish) 55%, var(--radish-deep) 100%);
  color: #fff;
  box-shadow:
    0 10px 24px rgba(225, 29, 46, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 34px rgba(225, 29, 46, 0.42);
}

.btn-ghost {
  background: var(--glass-strong);
  border-color: var(--stroke);
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(18, 58, 110, 0.1);
}

.btn-ghost:hover {
  transform: translateY(-3px);
  background: #fff;
}

.btn-ico {
  width: 18px;
  height: 18px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3.5rem 1.25rem 5.5rem;
  overflow: hidden;
}

.hero-orbit {
  position: absolute;
  width: min(560px, 88vw);
  height: min(560px, 88vw);
  top: 46%;
  left: 50%;
  transform: translate(-50%, -54%);
  z-index: 0;
  pointer-events: none;
}

.orbit-ring {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.55);
  animation: spin 28s linear infinite;
}

.orbit-ring.delay {
  inset: 0;
  border-style: solid;
  border-color: rgba(225, 29, 46, 0.18);
  animation-duration: 40s;
  animation-direction: reverse;
}

.orbit-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 50%;
  background: var(--radish);
  box-shadow: 0 0 0 6px rgba(225, 29, 46, 0.15);
  animation: orbit 18s linear infinite;
}

.orbit-dot.d1 {
  --orbit-r: min(38vw, 240px);
}

.orbit-dot.d2 {
  --orbit-r: min(42vw, 268px);
  background: var(--leaf);
  box-shadow: 0 0 0 6px rgba(63, 143, 74, 0.18);
  animation-duration: 24s;
  animation-direction: reverse;
}

.orbit-dot.d3 {
  --orbit-r: min(34vw, 210px);
  background: #fff;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.25);
  animation-duration: 21s;
  animation-delay: -6s;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(var(--orbit-r)) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(var(--orbit-r)) rotate(-360deg);
  }
}

.hero-mark,
.hero-kicker,
.hero-title,
.hero-sub,
.hero-cta {
  position: relative;
  z-index: 1;
}

.hero-logo {
  width: min(220px, 46vw);
  height: auto;
  border-radius: 50%;
  filter: drop-shadow(0 22px 40px rgba(18, 58, 110, 0.28));
  animation: floaty 4.8s ease-in-out infinite;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-14px) rotate(2deg);
  }
}

.hero-kicker {
  margin: 1.4rem 0 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 9vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.45);
}

.hero-sub {
  margin: 1.1rem auto 0;
  max-width: 34rem;
  font-size: 1.08rem;
  color: var(--muted);
}

.hero-sub strong {
  color: var(--radish-deep);
  font-weight: 800;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 1.8rem;
}

.hero-ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.4rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.ticker-track {
  display: flex;
  gap: 2.2rem;
  width: max-content;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(18, 20, 24, 0.38);
  animation: ticker 28s linear infinite;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ---------- Sections ---------- */
.section {
  position: relative;
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}

.section-inner {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 2.6rem;
}

.section-kicker {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--radish-deep);
}

.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.section-lead,
.section-text {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-lead {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.logo-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
}

.about-logo {
  width: min(300px, 70vw);
  border-radius: 50%;
  position: relative;
  z-index: 1;
  animation: pulse-spin 10s ease-in-out infinite;
  filter: drop-shadow(0 24px 40px rgba(18, 58, 110, 0.28));
}

.logo-glow {
  position: absolute;
  width: min(340px, 78vw);
  height: min(340px, 78vw);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.85) 0%,
    rgba(126, 200, 255, 0.35) 45%,
    transparent 70%
  );
  animation: glow-breathe 4s ease-in-out infinite;
}

@keyframes pulse-spin {
  0%,
  100% {
    transform: rotate(-3deg) scale(1);
  }
  50% {
    transform: rotate(3deg) scale(1.04);
  }
}

@keyframes glow-breathe {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

.about-copy .section-text + .section-text {
  margin-top: 1rem;
}

.about-copy .section-text a {
  color: var(--radish-deep);
  font-weight: 800;
  border-bottom: 1px solid rgba(180, 15, 29, 0.35);
}

.about-copy .section-text a:hover {
  border-bottom-color: var(--radish);
}

.about-quote {
  margin: 1.5rem 0 0;
  padding: 1.2rem 1.25rem 1.25rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-left: 4px solid var(--radish);
  box-shadow: 0 12px 28px rgba(18, 58, 110, 0.1);
}

.about-quote p {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.12rem;
  line-height: 1.45;
  color: var(--ink);
}

.about-quote cite {
  display: block;
  margin-top: 0.85rem;
  font-style: normal;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--muted);
}

.about-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  font-weight: 800;
  color: var(--ink);
  padding-bottom: 0.15rem;
  border-bottom: 2px solid rgba(225, 29, 46, 0.35);
  transition: gap 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.text-link:hover {
  gap: 0.75rem;
  color: var(--radish-deep);
  border-color: var(--radish);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.stat {
  padding: 1.25rem 1.1rem;
  border-radius: 22px;
  text-align: center;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 28px rgba(18, 58, 110, 0.1);
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease;
}

.stat:hover {
  transform: translateY(-5px);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--radish-deep);
  line-height: 1.1;
}

.stat span {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.pillars {
  margin-top: clamp(3rem, 6vw, 4.5rem);
}

.pillars-head .section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.pillars-head .section-lead a {
  color: var(--radish-deep);
  font-weight: 800;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.pillar {
  padding: 1.4rem 1.25rem 1.5rem;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.pillar:hover {
  transform: translateY(-6px);
}

.pillar h4 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
}

.pillar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.press-row {
  margin-top: clamp(2.4rem, 5vw, 3.4rem);
  padding: 1.3rem 1.2rem 1.4rem;
  border-radius: 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.press-label {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--muted);
}

.press-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 1.1rem;
}

.press-links a {
  font-weight: 800;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

.press-links a:hover {
  color: var(--radish-deep);
}

.footer-note a {
  color: var(--radish-deep);
  font-weight: 800;
}

/* ---------- How to buy ---------- */
.howtobuy {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.28) 20%,
    rgba(255, 255, 255, 0.35) 80%,
    transparent 100%
  );
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.step {
  position: relative;
  padding: 1.45rem 1.25rem 1.5rem;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.step::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% -20%;
  height: 55%;
  background: radial-gradient(circle at 50% 0%, rgba(225, 29, 46, 0.12), transparent 65%);
  pointer-events: none;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(18, 58, 110, 0.2);
}

.step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--radish);
  letter-spacing: 0.08em;
  margin-bottom: 0.7rem;
}

.step h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.step-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  font-weight: 800;
  color: var(--ink);
}

.step-link img {
  width: 18px;
  height: 18px;
}

.step-link:hover {
  color: var(--radish-deep);
}

/* ---------- Chart ---------- */
.chart-shell {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  background: var(--glass-strong);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.chart-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.2rem;
  background: linear-gradient(90deg, rgba(78, 180, 255, 0.25), rgba(255, 255, 255, 0.4));
  border-bottom: 1px solid var(--stroke);
  font-family: var(--font-display);
  font-weight: 600;
}

.chart-bar a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 800;
  font-family: var(--font-body);
}

.chart-bar img {
  width: 18px;
  height: 18px;
}

.chart-frame {
  position: relative;
  width: 100%;
  height: min(640px, 72vh);
  background: #eef7ff;
}

.chart-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Join Us ---------- */
.join-banner {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid rgba(18, 20, 24, 0.88);
  margin-bottom: 1.6rem;
  isolation: isolate;
}

.join-banner img {
  width: 100%;
  height: clamp(220px, 42vw, 420px);
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  animation: banner-pan 18s ease-in-out infinite alternate;
}

.join-banner-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(18, 40, 70, 0.18) 100%
  );
  pointer-events: none;
}

@keyframes banner-pan {
  from {
    transform: scale(1.02) translateY(0);
  }
  to {
    transform: scale(1.08) translateY(-2%);
  }
}

.join-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.join-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.05rem 1.1rem;
  border-radius: 22px;
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 30px rgba(18, 58, 110, 0.12);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.join-card img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.join-logo-sm {
  width: 34px !important;
  height: 34px !important;
  border-radius: 50%;
}

.join-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.15;
}

.join-card span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.join-card:hover {
  transform: translateY(-6px);
  background: #fff;
  box-shadow: 0 18px 36px rgba(18, 58, 110, 0.18);
}

/* ---------- Footer ---------- */
.footer {
  padding: 2.5rem 0 2.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
}

.footer-inner {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  display: grid;
  gap: 1.2rem;
  justify-items: center;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.footer-brand span {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  gap: 0.65rem;
}

.footer-links a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--glass-strong);
  border: 1px solid var(--stroke);
  transition: transform 0.25s ease;
}

.footer-links a:hover {
  transform: translateY(-3px) rotate(-6deg);
}

.footer-links img {
  width: 18px;
  height: 18px;
}

.footer-note {
  margin: 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0ms);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-actions .btn-sm {
    display: none;
  }

  .about-grid,
  .steps,
  .join-actions,
  .stat-row,
  .pillar-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .about-grid,
  .steps,
  .join-actions,
  .stat-row,
  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.4rem;
  }

  .hero-title {
    font-size: clamp(2.6rem, 14vw, 3.6rem);
  }

  .chart-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo-stage {
    min-height: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
