/* KiduLeap marketing — brand palette from logo */
:root {
  --kidu-blue: #007aff;
  --kidu-green: #34c759;
  --kidu-amber: #ffb800;
  --kidu-pink: #ff2d55;
  --kidu-sky: #5ac8fa;
  --ink: #0a1628;
  --ink-soft: #3d4f66;
  --surface: #fafcff;
  --surface-2: #f0f5ff;
  --surface-dark: #0c1220;
  --white: #ffffff;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 4px 20px rgba(0, 122, 255, 0.08);
  --shadow-md: 0 12px 40px rgba(0, 122, 255, 0.12);
  --shadow-glow: 0 0 80px rgba(90, 200, 250, 0.25);
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  /* Fits 72px-tall header logo with vertical breathing room */
  --header-h: 96px;
}

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

html {
  scroll-behavior: smooth;
}

@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;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  padding: 0.75rem 1.25rem;
  background: var(--kidu-blue);
  color: var(--white);
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: top 0.2s var(--ease-out);
}

.skip-link:focus {
  top: 1rem;
}

a {
  color: var(--kidu-blue);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

a:hover {
  color: #0060d0;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.container--narrow {
  width: min(720px, 100% - 2.5rem);
}

/* —— Header —— */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
    backdrop-filter 0.35s var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(250, 252, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}

.site-header__inner {
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand img {
  display: block;
  height: 72px;
  width: auto;
  object-fit: contain;
}

.site-nav__toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: var(--radius-sm);
  background: rgba(0, 122, 255, 0.08);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.site-nav__burger,
.site-nav__burger::before,
.site-nav__burger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
  transition: transform 0.25s var(--ease-out), opacity 0.2s;
}

.site-nav__burger::before,
.site-nav__burger::after {
  content: "";
  position: absolute;
  left: 0;
}

.site-nav__burger::before {
  top: -7px;
}

.site-nav__burger::after {
  top: 7px;
}

.site-nav.is-open .site-nav__burger {
  background: transparent;
}

.site-nav.is-open .site-nav__burger::before {
  transform: translateY(7px) rotate(45deg);
}

.site-nav.is-open .site-nav__burger::after {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__list a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  text-decoration: none;
}

.site-nav__list a:hover {
  color: var(--kidu-blue);
}

.site-nav__cta {
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--kidu-blue), #0066e8);
  color: var(--white) !important;
  box-shadow: 0 6px 24px rgba(0, 122, 255, 0.35);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
}

.site-nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 122, 255, 0.4);
  color: var(--white) !important;
}

@media (max-width: 860px) {
  .site-nav__toggle {
    display: flex;
  }

  .site-nav__list {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.5rem;
    background: rgba(250, 252, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 122, 255, 0.1);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease-out), opacity 0.25s;
  }

  .site-nav.is-open .site-nav__list {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav__list a {
    padding: 0.65rem 0;
  }

  .site-nav__cta {
    text-align: center;
    margin-top: 0.5rem;
  }
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(92vh, 880px);
  padding: calc(var(--header-h) + 3rem) 0 6rem;
  overflow: hidden;
}

.hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(0, 122, 255, 0.18), transparent 50%),
    radial-gradient(ellipse 70% 50% at 90% 10%, rgba(90, 200, 250, 0.2), transparent 45%),
    radial-gradient(ellipse 60% 50% at 70% 80%, rgba(52, 199, 89, 0.15), transparent 50%),
    linear-gradient(180deg, #eef5ff 0%, var(--surface) 55%, #fff8f0 100%);
  animation: mesh-shift 18s ease-in-out infinite alternate;
}

@keyframes mesh-shift {
  0% {
    filter: hue-rotate(0deg) saturate(1);
    transform: scale(1);
  }
  100% {
    filter: hue-rotate(-8deg) saturate(1.05);
    transform: scale(1.03);
  }
}

.hero__blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.5px);
  animation: float 7s ease-in-out infinite;
}

.blob--1 {
  width: 180px;
  height: 180px;
  top: 18%;
  right: 8%;
  background: linear-gradient(145deg, var(--kidu-sky), var(--kidu-blue));
  opacity: 0.35;
  animation-delay: -1s;
}

.blob--2 {
  width: 120px;
  height: 120px;
  bottom: 28%;
  left: 6%;
  background: linear-gradient(145deg, var(--kidu-green), var(--kidu-sky));
  opacity: 0.3;
  animation-delay: -3s;
}

.blob--3 {
  width: 72px;
  height: 72px;
  top: 40%;
  left: 18%;
  background: var(--kidu-amber);
  opacity: 0.45;
  animation-delay: -2s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(12px, -18px) scale(1.05);
  }
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__content {
    grid-template-columns: minmax(0, 1fr) 375px;
    gap: clamp(1.5rem, 4vw, 3.5rem);
  }
}

.hero__copy {
  min-width: 0;
}

/* —— Hero orbit: letters, numbers & shapes on a slow circle —— */
.hero__orbit-wrap {
  --orbit-size: 375px;
  --orbit-chip: 68px;
  --orbit-r: calc(var(--orbit-size) * 0.38);
  position: relative;
  width: var(--orbit-size);
  height: var(--orbit-size);
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0 1rem;
}

@media (max-width: 420px) {
  .hero__orbit-wrap {
    --orbit-size: min(375px, 92vw);
    --orbit-chip: 60px;
  }
}

@media (min-width: 1024px) {
  .hero__orbit-wrap {
    justify-content: flex-end;
    padding: 0;
    margin-inline: 0 0;
    margin-left: auto;
  }
}

.hero__orbit-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(var(--orbit-r) * 2 + var(--orbit-chip) + 8px);
  height: calc(var(--orbit-r) * 2 + var(--orbit-chip) + 8px);
  translate: -50% -50%;
  border-radius: 50%;
  border: 2px dashed rgba(0, 122, 255, 0.22);
  box-shadow:
    inset 0 0 48px rgba(90, 200, 250, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.5);
  pointer-events: none;
  z-index: 0;
}

.hero__orbit {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  animation: hero-orbit-spin 52s linear infinite;
}

.hero__orbit-planet {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  z-index: 1;
  transform: rotate(var(--angle));
}

.hero__orbit-chip {
  display: grid;
  place-items: center;
  width: var(--orbit-chip);
  height: var(--orbit-chip);
  margin: calc(-0.5 * var(--orbit-chip)) 0 0 calc(-0.5 * var(--orbit-chip));
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--white);
  box-shadow:
    0 8px 24px rgba(0, 40, 100, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.35);
  user-select: none;
  animation: hero-orbit-chip-counter 52s linear infinite;
}

.hero__orbit-chip--shape {
  font-size: 2rem;
  line-height: 0.85;
}

.hero__orbit-chip--blue {
  background: linear-gradient(145deg, #2a8fff, var(--kidu-blue));
}

.hero__orbit-chip--green {
  background: linear-gradient(145deg, #4ad888, var(--kidu-green));
}

.hero__orbit-chip--amber {
  background: linear-gradient(145deg, #ffd04a, var(--kidu-amber));
  color: #3a2800;
  border-color: rgba(255, 255, 255, 0.5);
}

.hero__orbit-chip--sky {
  background: linear-gradient(145deg, #7ad4ff, var(--kidu-sky));
  color: #042a3d;
}

.hero__orbit-chip--pink {
  background: linear-gradient(145deg, #ff5a7a, var(--kidu-pink));
}

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

@keyframes hero-orbit-chip-counter {
  from {
    transform: translateY(calc(-1 * var(--orbit-r))) rotate(0deg);
  }
  to {
    transform: translateY(calc(-1 * var(--orbit-r))) rotate(-360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__orbit {
    animation: none !important;
    transform: rotate(18deg);
  }

  .hero__orbit-chip {
    animation: none !important;
    transform: translateY(calc(-1 * var(--orbit-r))) rotate(calc(-1 * var(--angle) - 18deg));
  }
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--kidu-blue);
  margin: 0 0 1rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 122, 255, 0.1);
  border: 1px solid rgba(0, 122, 255, 0.15);
}

.hero__title {
  font-size: clamp(2.75rem, 7vw, 4.25rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 0.35rem;
  background: linear-gradient(135deg, var(--kidu-blue), var(--kidu-green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__tagline {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  color: var(--ink);
}

.hero__dot {
  color: var(--kidu-amber);
}

.hero__lead {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: var(--ink-soft);
  max-width: 36rem;
  margin: 0 0 2rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
}

.btn--primary {
  background: linear-gradient(135deg, var(--kidu-blue), #0058d0);
  color: var(--white);
  box-shadow: 0 8px 32px rgba(0, 122, 255, 0.35);
}

.btn--primary:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0, 122, 255, 0.42);
}

.btn--ghost {
  background: var(--white);
  color: var(--ink);
  border: 2px solid rgba(0, 122, 255, 0.2);
  box-shadow: var(--shadow-sm);
}

.btn--ghost:hover {
  border-color: var(--kidu-blue);
  color: var(--kidu-blue);
  transform: translateY(-2px);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 520px;
  margin: 0;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 122, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
}

.hero__stats dt {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin: 0;
}

.hero__stats dd {
  margin: 0.25rem 0 0;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--ink);
}

@media (max-width: 540px) {
  .hero__stats {
    grid-template-columns: 1fr;
  }
}

/* —— Sections —— */
.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section--tint {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
}

.section--dark {
  background: linear-gradient(165deg, #0a1628 0%, #121f36 50%, #0c1830 100%);
  color: #e8eef8;
  position: relative;
  overflow: hidden;
}

.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(0, 122, 255, 0.15), transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(255, 184, 0, 0.08), transparent 40%);
  pointer-events: none;
}

.section--dark .section__title {
  color: var(--white);
}

.section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.section__subtitle {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.section__subtitle--on-dark {
  color: rgba(232, 238, 248, 0.85);
}

/* —— Bento —— */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.bento__card {
  grid-column: span 4;
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 122, 255, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.bento__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.bento__card--wide {
  grid-column: span 8;
}

.bento__card--accent {
  background: linear-gradient(145deg, rgba(0, 122, 255, 0.06), rgba(52, 199, 89, 0.08));
  border-color: rgba(52, 199, 89, 0.25);
}

.bento__title {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  color: var(--ink);
}

.bento__card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

@media (max-width: 900px) {
  .bento__card,
  .bento__card--wide {
    grid-column: span 12;
  }
}

/* —— Pills —— */
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pill {
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--white);
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, border-color 0.2s;
  animation: pill-in 0.6s var(--ease-out) backwards;
}

.pill:nth-child(1) {
  animation-delay: 0.05s;
}
.pill:nth-child(2) {
  animation-delay: 0.1s;
}
.pill:nth-child(3) {
  animation-delay: 0.15s;
}
.pill:nth-child(4) {
  animation-delay: 0.2s;
}
.pill:nth-child(5) {
  animation-delay: 0.25s;
}

@keyframes pill-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
}

.pill:hover {
  transform: scale(1.04);
  border-color: var(--kidu-blue);
}

/* —— Steps —— */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 720px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.steps__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.steps__item:last-child {
  border-bottom: none;
}

.steps__num {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--kidu-blue), var(--kidu-green));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 122, 255, 0.35);
}

.steps__title {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  font-weight: 800;
}

.steps__item p {
  margin: 0;
  color: rgba(232, 238, 248, 0.88);
}

/* —— CTA —— */
.cta-panel {
  display: grid;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(0, 122, 255, 0.08), rgba(255, 184, 0, 0.1));
  border: 1px solid rgba(0, 122, 255, 0.15);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.cta-panel__lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin: 0;
}

.cta-panel__stores {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.store-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  min-width: 200px;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 800;
  text-decoration: none;
  color: var(--ink);
  background: var(--white);
  border: 2px solid rgba(0, 122, 255, 0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}

.store-badge span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--kidu-green);
}

.store-badge--soon {
  pointer-events: none;
  opacity: 0.85;
}

.store-badge:not(.store-badge--soon):hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.cta-panel__note {
  margin: 0;
  font-size: 0.875rem;
  color: var(--ink-soft);
}

/* —— Legal —— */
.legal__updated {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: -0.25rem 0 1rem;
}

.legal__body h2 {
  font-size: 1.2rem;
  margin: 2.25rem 0 0.5rem;
}

.legal__body h2:first-child {
  margin-top: 0;
}

.legal__body h3 {
  font-size: 1.1rem;
  margin: 2rem 0 0.5rem;
}

.legal__body h3:first-child {
  margin-top: 0;
}

/* —— Legal subpages —— */
.subpage-hero {
  padding: calc(var(--header-h) + 2rem) 0 1.75rem;
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
  border-bottom: 1px solid rgba(0, 122, 255, 0.1);
}

.subpage-hero__inner {
  width: min(720px, 100% - 2.5rem);
  margin-inline: auto;
}

.breadcrumb {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.breadcrumb a {
  color: var(--kidu-blue);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb [aria-current="page"] {
  color: var(--ink-soft);
}

.subpage-hero h1 {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.subpage-hero .legal__updated {
  margin: 0.5rem 0 0;
}

.legal-page-intro {
  width: min(720px, 100% - 2.5rem);
  margin: 0 auto;
  padding: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.legal-page-main {
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(4rem, 8vw, 5rem);
}

.legal__body p,
.legal__body ul {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.legal__body ul {
  padding-left: 1.25rem;
}

/* —— Reveal on scroll —— */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* —— Footer —— */
.site-footer {
  padding: 3rem 0 2rem;
  background: var(--surface-dark);
  color: rgba(255, 255, 255, 0.85);
}

.site-footer a {
  color: var(--kidu-sky);
  text-decoration: none;
  font-weight: 600;
}

.site-footer a:hover {
  color: var(--white);
  text-decoration: underline;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 700px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer__links {
    justify-content: center;
  }
}

.site-footer__tagline {
  font-weight: 700;
  color: var(--kidu-amber);
  margin: 0.75rem 0 0;
}

.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__nav li {
  margin-bottom: 0.5rem;
}

.site-footer__copy {
  text-align: center;
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
}
