/* =========================================================
   New Wave Performance — Design Tokens
   (Layout patterned closely on the Padelo/Racketon reference
   site, restyled entirely in NWP's own brand colors.)
   ========================================================= */
:root {
  /* Brand colors, sampled directly from the NWP logo files */
  --navy-950: #0b0d1a;
  --navy-900: #111429;
  --navy-800: #171b38;
  --navy-700: #212648;
  --navy-600: #2c3358;
  --blue-400: #6fc0ea;
  --blue-500: #3d9fd8;
  --blue-600: #2b84ba;
  --accent-400: #6fc0ea;
  --accent-500: #3d9fd8;
  --accent-600: #2b84ba;

  --ink: #eef1fa;
  --ink-muted: #b7bdd6;
  --ink-faint: #8991b8;
  --surface: #ffffff;
  --surface-muted: #f7f8fb;
  --card-muted: #eef0f6;
  --border-on-dark: rgba(255, 255, 255, 0.12);
  --border-on-light: rgba(17, 20, 41, 0.1);

  --text-on-light: #12152a;
  --text-on-light-muted: #565c7d;
  --text-on-light-faint: #8288a6;

  --danger: #d0362c;
  --danger-on-dark: #ff6b6b;
  --success: #1c7a41;

  /* Type scale */
  --font-display: "Barlow Condensed", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-manrope: "Manrope", "Inter", system-ui, sans-serif;

  --fs-xs: 0.8125rem;
  --fs-sm: 0.9375rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.375rem;
  --fs-xl: 1.75rem;
  --fs-2xl: 2.25rem;
  --fs-3xl: 3rem;
  --fs-4xl: 4rem;

  /* Spacing scale (8px rhythm) */
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 6rem;
  --space-9: 8rem;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-card: 0 20px 45px -25px rgba(11, 13, 26, 0.35);
  --shadow-pop: 0 25px 60px -20px rgba(11, 13, 26, 0.75);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 150ms;
  --dur-base: 250ms;
  --dur-slow: 450ms;
  --dur-marquee: 8s;

  --container-max: 1240px;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --dur-fast: 0ms;
    --dur-base: 0ms;
    --dur-slow: 0ms;
  }
}

/* =========================================================
   Reset
   ========================================================= */
*,
*::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;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--navy-900);
  -webkit-font-smoothing: antialiased;
}

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

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

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

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

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

input,
textarea,
select {
  font: inherit;
}

svg {
  flex-shrink: 0;
}

/* Focus states — visible everywhere, never removed */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--blue-400);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent-500);
  color: var(--navy-900);
  font-weight: 700;
  padding: var(--space-2) var(--space-4);
  z-index: 1000;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  left: 0;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

@media (min-width: 768px) {
  .container {
    padding-inline: var(--space-6);
  }
}

section {
  position: relative;
}

.section-pad {
  padding-block: var(--space-8);
}

@media (max-width: 767px) {
  .section-pad {
    padding-block: var(--space-7);
  }
}

.section--light {
  background: var(--surface);
  color: var(--text-on-light);
}

.section--muted {
  background: var(--surface-muted);
  color: var(--text-on-light);
}

.section--light h1,
.section--light h2,
.section--light h3,
.section--light p,
.section--muted h1,
.section--muted h2,
.section--muted h3,
.section--muted p {
  color: var(--text-on-light);
}

.section--light .lede,
.section--muted .lede {
  color: var(--text-on-light-muted);
}

.section-head {
  max-width: 620px;
  margin-bottom: var(--space-6);
}

.section-head--center {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.section-head--split {
  max-width: none;
  display: grid;
  gap: var(--space-4);
  align-items: start;
}

@media (min-width: 860px) {
  .section-head--split {
    grid-template-columns: 0.85fr 1.6fr;
  }
}

.section-head--split h2 {
  font-family: var(--font-manrope);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -1.36px;
  text-transform: none;
}

#services .section-head h2,
#pricing .section-head h2,
#why-us .section-head h2,
#team .section-head h2,
#process .section-head h2,
#faq .section-head h2,
#contact .section-head h2 {
  font-family: var(--font-manrope);
  font-size: 44px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.8px;
  text-transform: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  width: fit-content;
  text-align: center;
  gap: var(--space-2);
  font-family: var(--font-manrope);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.28px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: var(--card-muted);
  color: rgb(125, 125, 125);
  margin-bottom: var(--space-3);
}

h1,
h2,
h3,
.font-display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h2 {
  font-size: var(--fs-2xl);
}

@media (min-width: 768px) {
  h2 {
    font-size: var(--fs-3xl);
  }
}

h3 {
  font-size: var(--fs-lg);
}

.lede {
  font-size: var(--fs-md);
  color: var(--ink-muted);
  max-width: 55ch;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 48px;
  padding: 0 var(--space-5);
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out),
    background var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
  touch-action: manipulation;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--accent-500);
  color: var(--navy-900);
}

.btn-primary:hover {
  background: var(--accent-400);
  box-shadow: 0 12px 30px -12px rgba(61, 159, 216, 0.55);
}

.btn-dark {
  background: var(--navy-900);
  color: var(--ink);
}

.btn-dark:hover {
  background: var(--navy-800);
}

.btn-outline {
  background: transparent;
  border-color: var(--border-on-dark);
  color: var(--ink);
}

.btn-outline:hover {
  border-color: var(--blue-400);
  color: var(--blue-400);
}

.section--light .btn-outline,
.section--muted .btn-outline {
  border-color: var(--border-on-light);
  color: var(--text-on-light);
}

.section--light .btn-outline:hover,
.section--muted .btn-outline:hover {
  border-color: var(--blue-600);
  color: var(--blue-600);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  min-height: 40px;
  padding: 0 var(--space-4);
  font-size: var(--fs-xs);
}

/* =========================================================
   Header / Nav — transparent over hero, solid once scrolled
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-block: var(--space-4);
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: background var(--dur-base) var(--ease-out), padding var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(11, 13, 26, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-block: var(--space-2);
  box-shadow: 0 12px 30px -20px rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid var(--border-on-dark);
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.brand img {
  height: 34px;
  width: auto;
  border-radius: 6px;
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-md);
  color: var(--ink);
  display: none;
}

@media (min-width: 480px) and (max-width: 699px), (min-width: 900px) {
  .brand-text {
    display: block;
  }
}

.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-4);
}

@media (min-width: 700px) {
  .nav-links {
    display: flex;
    margin-left: auto;
  }
}

@media (max-width: 699px) {
  .nav-actions {
    margin-left: auto;
  }
}

.nav-links a {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink);
  opacity: 0.85;
  transition: opacity var(--dur-fast) var(--ease-out);
  padding: var(--space-1) 0;
}

.site-header:not(.is-scrolled) .nav-links a,
.site-header:not(.is-scrolled) .brand-text {
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.nav-links a:hover {
  opacity: 1;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.nav-cta {
  display: none;
}

@media (min-width: 700px) {
  .nav-cta {
    display: inline-flex;
    min-height: 42px;
    padding: 0 var(--space-4);
    background: var(--surface);
    color: var(--navy-900);
  }

  .nav-cta:hover {
    background: var(--surface-muted);
  }
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-on-dark);
  color: var(--ink);
}

@media (min-width: 700px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
}

.icon-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

.mobile-menu {
  display: none;
  margin-top: var(--space-3);
  background: rgba(11, 13, 26, 0.97);
  border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-md);
  padding: var(--space-3);
}

.mobile-menu.is-open {
  display: block;
}

@media (min-width: 700px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu a {
  display: block;
  padding: var(--space-3);
  font-size: var(--fs-md);
  font-weight: 500;
  color: var(--ink);
  border-radius: var(--radius-sm);
}

.mobile-menu a:hover {
  background: var(--navy-800);
}

.mobile-menu .btn {
  margin-top: var(--space-2);
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: var(--space-9);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      180deg,
      rgba(61, 159, 216, 0.52) 0%,
      rgba(61, 159, 216, 0.2) 30%,
      rgba(61, 159, 216, 0) 55%
    ),
    linear-gradient(
      180deg,
      rgba(11, 13, 26, 0.2) 0%,
      rgba(11, 13, 26, 0.35) 55%,
      rgba(11, 13, 26, 0.85) 100%
    ),
    linear-gradient(100deg, rgba(11, 13, 26, 0.7) 0%, rgba(11, 13, 26, 0) 58%),
    url("../img/hero-action-mobile.jpg");
  background-size: cover;
  background-position: center 22%;
  z-index: -1;
}

@media (min-width: 768px) {
  .hero::before {
    background-image: linear-gradient(
        180deg,
        rgba(61, 159, 216, 0.4) 0%,
        rgba(61, 159, 216, 0.12) 30%,
        rgba(61, 159, 216, 0) 55%
      ),
      linear-gradient(
        180deg,
        rgba(11, 13, 26, 0.15) 0%,
        rgba(11, 13, 26, 0.3) 55%,
        rgba(11, 13, 26, 0.85) 100%
      ),
      linear-gradient(100deg, rgba(11, 13, 26, 0.65) 0%, rgba(11, 13, 26, 0) 58%),
      url("../img/hero-action.jpg");
    background-position: center 22%;
  }
}

.hero-inner {
  padding-bottom: var(--space-6);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-manrope);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.28px;
  color: rgb(255, 255, 255);
  margin-bottom: 18px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-500);
  box-shadow: 0 0 0 4px rgba(61, 159, 216, 0.2);
}

.hero h1 {
  font-family: var(--font-manrope);
  font-size: clamp(2.25rem, 5.5vw, 52px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -1px;
  max-width: 23ch;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero h1 .hero-word {
  display: inline-block;
  white-space: nowrap;
}

.hero h1 .hero-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  animation: hero-letter-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--i) * 28ms + 150ms);
}

@keyframes hero-letter-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero .lede {
  margin-top: 10px;
  font-family: var(--font-manrope);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.04px;
  max-width: 48ch;
  color: rgb(240, 240, 240);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.6);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: 22px;
}

.hero-actions .btn {
  font-family: var(--font-manrope);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.15px;
  padding: 12px 18px;
}

.hero-footer {
  margin-top: 36px;
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: rgb(240, 240, 240);
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 18px;
  text-transform: none;
  letter-spacing: -0.04px;
  transition: color var(--dur-fast) var(--ease-out);
}

.scroll-cue:hover {
  color: var(--blue-400);
}

.scroll-cue svg {
  width: 16px;
  height: 16px;
  animation: bounce 2.4s var(--ease-out) infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  padding: var(--space-2) var(--space-4) var(--space-2) var(--space-2);
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-manrope);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.15px;
  color: rgb(255, 255, 255);
}

.hero-rating svg {
  width: 16px;
  height: 16px;
  color: #f4c430;
}

.hero-avatars {
  display: flex;
  align-items: center;
}

.hero-avatars .avatar-chip {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy-700);
  margin-left: -9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-400);
  overflow: hidden;
}

.hero-avatars .avatar-chip:first-child {
  margin-left: 0;
}

.hero-avatars .avatar-chip svg {
  width: 16px;
  height: 16px;
}

.hero-avatars .avatar-chip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stats-label {
  font-family: var(--font-manrope);
  font-size: 14px;
  color: rgb(255, 255, 255);
  font-weight: 400;
  letter-spacing: -0.28px;
  margin-left: var(--space-1);
}

/* =========================================================
   About — split intro + feature row + impact stats
   ========================================================= */
.feature-row {
  margin-top: var(--space-6);
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
}

@media (min-width: 860px) {
  .feature-row {
    grid-template-columns: 1.15fr 1.1fr 1fr;
  }
}

.feature-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 355px;
  display: flex;
  flex-direction: column;
}

.feature-card--dark {
  background: var(--navy-900);
  color: var(--ink);
  padding: var(--space-5);
  justify-content: space-between;
}

.feature-card--dark .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--navy-700);
  color: var(--accent-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}

.feature-card--dark .icon-wrap svg {
  width: 24px;
  height: 24px;
}

.feature-card--dark h3 {
  color: var(--accent-500);
  font-family: var(--font-manrope);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.44px;
  text-transform: none;
  margin-bottom: 10px;
}

.feature-card--dark p {
  font-family: var(--font-manrope);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.16px;
  color: var(--ink-muted);
}

.feature-tag {
  align-self: flex-start;
  margin-top: 21px;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--navy-800);
  border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-family: var(--font-manrope);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.16px;
}

.feature-tag svg {
  width: 22px;
  height: 22px;
  color: var(--accent-500);
}

.feature-card--photo {
  background-size: cover;
  background-position: center;
  justify-content: center;
  align-items: center;
  padding: var(--space-4);
}

.feature-card--photo .pill-label {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: none;
  border-radius: 40px;
  padding: 16px 20px;
  font-family: var(--font-manrope);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.16px;
  color: var(--navy-900);
  text-align: center;
}

.feature-card--placeholder {
  background: var(--card-muted);
  border: 1.5px dashed var(--border-on-light);
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-on-light-faint);
  gap: var(--space-2);
  padding: var(--space-4);
}

.feature-card--placeholder svg {
  width: 32px;
  height: 32px;
}

.feature-card--placeholder span {
  font-size: var(--fs-sm);
  font-weight: 600;
}

/* Carousel card — slideshow effect on the third About Us card */
.feature-card--carousel {
  padding: 0;
  height: 355px;
}

.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  position: relative;
  height: 100%;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.carousel-slide:nth-child(2) img,
.carousel-slide:nth-child(3) img {
  object-position: center 18%;
}

.carousel-slide--placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  text-align: center;
  height: 100%;
  background: var(--card-muted);
  border: 1.5px dashed var(--border-on-light);
  color: var(--text-on-light-faint);
  padding: var(--space-4);
}

.carousel-slide--placeholder svg {
  width: 32px;
  height: 32px;
}

.carousel-slide--placeholder span {
  font-size: var(--fs-sm);
  font-weight: 600;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: var(--radius-pill);
  padding: 8px 10px;
  z-index: 1;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.5;
  padding: 0;
  transition: opacity var(--dur-fast) var(--ease-out);
}

.carousel-dot.is-active {
  opacity: 1;
}

.impact-block {
  margin-top: var(--space-8);
  text-align: center;
}

.impact-block h3 {
  font-family: var(--font-manrope);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -1.28px;
  text-transform: none;
  margin-bottom: var(--space-6);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}

@media (min-width: 768px) {
  .impact-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.impact-value {
  font-family: var(--font-manrope);
  font-size: 50px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 640px) {
  .impact-value {
    font-size: var(--fs-3xl);
  }
}

.impact-label {
  margin-top: 4px;
  font-size: var(--fs-sm);
  color: var(--text-on-light-muted);
}

/* =========================================================
   Services — dark full-bleed tab list + image + marquee
   ========================================================= */
.services-grid {
  margin-top: var(--space-6);
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 860px) {
  .services-grid {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
  }
}

.service-tabs {
  display: grid;
  gap: var(--space-4);
}

.service-tab {
  text-align: left;
  padding: var(--space-2) 0;
}

.service-tab h3 {
  font-family: var(--font-manrope);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -1.36px;
  text-transform: none;
  color: var(--ink-faint);
  transition: color var(--dur-base) var(--ease-out);
}

.service-tab[aria-selected="true"] h3 {
  color: var(--ink);
}

.service-tab-desc {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-base) var(--ease-out);
}

.service-tab[aria-selected="true"] .service-tab-desc {
  grid-template-rows: 1fr;
  margin-top: var(--space-2);
}

.service-tab-desc-inner {
  overflow: hidden;
}

.service-tab-desc p {
  font-family: var(--font-manrope);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.16px;
  color: rgba(240, 240, 240, 0.8);
  max-width: 42ch;
}

.service-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
}

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

#services.section-pad {
  padding-bottom: 0;
}

.marquee {
  margin-top: var(--space-8);
  background: var(--accent-500);
  color: var(--navy-900);
  overflow: hidden;
  white-space: nowrap;
  padding-block: 4px;
}

.marquee-track {
  display: inline-flex;
  gap: 56px;
  padding-inline-start: 56px;
  animation: marquee var(--dur-marquee) linear infinite;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.14px;
}

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

/* =========================================================
   Why Us — press logo ticker
   ========================================================= */
.press-ticker {
  margin-top: var(--space-5);
  overflow: hidden;
  text-align: center;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.press-ticker-label {
  font-family: var(--font-manrope);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-on-light-faint);
  text-align: center;
  margin-bottom: var(--space-3);
}

.press-ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 56px;
  padding-inline-start: 56px;
  animation: press-ticker 14s linear infinite;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .press-ticker-track {
    animation: none;
  }
}

.press-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.press-logo img {
  height: 28px;
  width: auto;
  display: block;
}

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

/* =========================================================
   Why Us — bento grid
   ========================================================= */
.bento-grid {
  margin-top: var(--space-6);
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
}

@media (min-width: 860px) {
  .bento-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .bento-card {
    grid-column: span 1;
  }
  .bento-card--wide {
    grid-column: span 2;
  }
}

.bento-card {
  background: var(--card-muted);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-card .icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--surface);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.bento-card .icon-wrap svg {
  width: 22px;
  height: 22px;
}

.bento-card h3 {
  font-family: var(--font-manrope);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.44px;
  margin-bottom: var(--space-2);
}

.bento-card p {
  font-family: var(--font-manrope);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.16px;
  color: var(--text-on-light-muted);
}

.bento-card--wide {
  background: var(--navy-900);
  color: var(--ink);
}

.bento-card--wide .bento-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-3);
}

.bento-card--wide .avatar-stack {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  padding: 4px;
}

.bento-card--wide .avatar-stack .avatar-chip {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy-700);
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-400);
  overflow: hidden;
  animation: avatar-float 3.6s ease-in-out infinite;
}

.bento-card--wide .avatar-stack .avatar-chip:first-child {
  margin-left: 0;
  animation-delay: 0s;
}

.bento-card--wide .avatar-stack .avatar-chip:nth-child(2) {
  animation-delay: 0.5s;
  animation-duration: 4.2s;
}

.bento-card--wide .avatar-stack .avatar-chip:nth-child(3) {
  animation-delay: 1s;
  animation-duration: 3.1s;
}

@keyframes avatar-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-5px) rotate(-4deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bento-card--wide .avatar-stack .avatar-chip {
    animation: none;
  }
}

.bento-card--wide .avatar-stack svg {
  width: 18px;
  height: 18px;
}

.bento-card--wide .avatar-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-card--wide .bento-stat {
  font-family: var(--font-manrope);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.8px;
  color: var(--accent-500);
}

.bento-card--wide h3 {
  color: var(--ink);
  margin-top: var(--space-4);
}

.bento-card--wide p {
  color: var(--ink-muted);
}

/* =========================================================
   Process — numbered 3-step
   ========================================================= */
.process-grid {
  margin-top: var(--space-6);
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
}

@media (min-width: 860px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-card {
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: var(--space-2);
  position: relative;
}

.process-number {
  position: absolute;
  top: var(--space-5);
  left: var(--space-5);
  font-family: var(--font-manrope);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
}

.process-card--dark {
  background: var(--navy-900);
  color: var(--ink);
}

.process-card--dark h3,
.process-card--dark p {
  color: var(--ink);
}

.process-card--dark .process-number {
  color: var(--accent-500);
}

.process-card--muted {
  background: var(--card-muted);
  color: var(--text-on-light);
}

.process-card--muted h3,
.process-card--muted p,
.process-card--muted .process-number {
  color: var(--text-on-light);
}

.process-card--accent h3,
.process-card--accent p {
  color: var(--navy-900);
}

.process-card--accent {
  background: var(--accent-500);
  color: var(--navy-900);
}

.process-card h3 {
  font-family: var(--font-manrope);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.44px;
}

.process-card p {
  font-family: var(--font-manrope);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.16px;
}

.process-card--dark p {
  color: var(--ink-muted);
}

.process-card--accent .btn {
  margin-top: var(--space-2);
  align-self: flex-start;
}

/* =========================================================
   Testimonials — static quote grid
   ========================================================= */
.testimonial-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial-card {
  background: var(--card-muted);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}

.testimonial-quote {
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.4px;
  color: var(--text-on-light);
}

.testimonial-caption {
  margin-top: var(--space-4);
  font-family: var(--font-manrope);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.16px;
  color: var(--blue-600);
}

.testimonial-caption strong {
  color: var(--blue-600);
  font-weight: 600;
}

/* =========================================================
   Team — coach photo cards (click to expand for full bio)
   ========================================================= */
.team-grid {
  margin-top: var(--space-6);
  max-width: 620px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .team-grid {
    flex-direction: row;
    align-items: flex-start;
  }
}

.team-grid .team-card {
  appearance: none;
  border: none;
  margin: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  flex: 0 1 auto;
  width: 100%;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, var(--navy-700), var(--navy-900));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-4);
  transition: flex-basis var(--dur-slow) var(--ease-out), opacity var(--dur-slow) var(--ease-out),
    transform var(--dur-slow) var(--ease-out);
}

@media (min-width: 640px) {
  .team-grid .team-card {
    flex: 1 1 calc(50% - var(--space-2));
    width: auto;
  }
}

.team-grid.has-expanded .team-card:not(.is-expanded) {
  flex: 0 0 0%;
  opacity: 0;
  pointer-events: none;
  padding-inline: 0;
}

.team-grid.has-expanded .team-card.is-expanded {
  flex: 1 1 100%;
  aspect-ratio: auto;
  min-height: 460px;
}

.team-card-icon {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-on-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  align-self: flex-start;
}

.team-card-icon svg {
  width: 18px;
  height: 18px;
}

.team-card-icon .icon-close {
  display: none;
}

.team-card.is-expanded .team-card-icon .icon-expand {
  display: none;
}

.team-card.is-expanded .team-card-icon .icon-close {
  display: block;
}

.team-grid .team-card--photo {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.team-grid .team-card.is-expanded.team-card--photo {
  background-size: cover;
  background-position: center 15%;
}

.team-card--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 13, 26, 0) 45%, rgba(11, 13, 26, 0.9) 100%);
  z-index: 0;
  border-radius: inherit;
  transition: background 0.4s ease;
}

.team-card.is-expanded.team-card--photo::after {
  background: linear-gradient(180deg, rgba(11, 13, 26, 0.15) 0%, rgba(11, 13, 26, 0.95) 55%);
}

.team-card-info {
  position: relative;
  z-index: 1;
}

.team-card-info h3 {
  font-family: var(--font-manrope);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.44px;
  color: var(--ink);
}

.team-card-info .role {
  font-family: var(--font-manrope);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.16px;
  color: var(--blue-400);
  margin-top: 2px;
}

.team-card-detail {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.35s ease;
}

.team-card.is-expanded .team-card-detail {
  max-height: 800px;
  opacity: 1;
  margin-top: var(--space-3);
  transition: max-height 0.5s ease, opacity 0.4s ease 0.15s;
}

.team-card-detail p {
  font-family: var(--font-manrope);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.15px;
  color: var(--ink-muted);
  max-width: 64ch;
}

.team-card-credentials {
  margin-top: var(--space-3);
  display: grid;
  gap: 6px;
}

.team-card-credentials li {
  position: relative;
  padding-left: 18px;
  font-family: var(--font-manrope);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.14px;
  color: var(--ink);
}

.team-card-credentials li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-400);
}

/* =========================================================
   Pricing — light cards, dark popular card
   ========================================================= */
.card-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .card-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  background: var(--card-muted);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card--popular {
  background: var(--navy-900);
  color: var(--ink);
}

.pricing-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-2);
}

.pricing-name {
  font-family: var(--font-manrope);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.44px;
}

.pricing-star {
  color: var(--text-on-light-faint);
}

.pricing-card--popular .pricing-star {
  color: var(--accent-500);
}

.pricing-star svg {
  width: 20px;
  height: 20px;
}

.pricing-desc {
  font-family: var(--font-manrope);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.04px;
  color: rgb(61, 61, 61);
  margin-top: var(--space-1);
}

.pricing-card--popular .pricing-desc {
  color: var(--ink-muted);
}

.pricing-card .btn {
  margin-top: var(--space-6);
}

.pricing-includes {
  margin-top: var(--space-5);
  font-family: var(--font-manrope);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  text-transform: none;
  letter-spacing: -0.04px;
  color: var(--text-on-light);
}

.pricing-card--popular .pricing-includes {
  color: var(--ink-faint);
}

.pricing-features {
  margin-top: var(--space-3);
  display: grid;
  gap: var(--space-2);
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-family: var(--font-manrope);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.16px;
  color: rgb(61, 61, 61);
}

.pricing-features .check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card--popular .pricing-features li {
  color: var(--ink-muted);
}

.pricing-card--popular .pricing-features .check {
  background: var(--accent-500);
  color: var(--navy-900);
}

.pricing-features .check svg {
  width: 12px;
  height: 12px;
}

/* =========================================================
   FAQ — light accordion
   ========================================================= */
.faq-list {
  margin-top: var(--space-6);
  display: grid;
  gap: var(--space-3);
  max-width: 820px;
}

.faq-item {
  background: var(--card-muted);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-4);
  text-align: left;
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.04px;
  color: var(--text-on-light);
}

.faq-question .plus {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
}

.faq-question .plus svg {
  width: 14px;
  height: 14px;
}

.faq-item[data-open="true"] .faq-question .plus {
  transform: rotate(45deg);
  background: var(--accent-500);
  color: var(--navy-900);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-slow) var(--ease-out);
}

.faq-item[data-open="true"] .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer p {
  padding: 0 var(--space-4) var(--space-4);
  font-family: var(--font-manrope);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.16px;
  color: var(--text-on-light-muted);
  max-width: 65ch;
}

/* =========================================================
   Contact
   ========================================================= */
.contact-grid {
  margin-top: var(--space-6);
  display: grid;
  gap: var(--space-4);
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.contact-info-card {
  background: var(--card-muted);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}

.contact-info-card h3 {
  font-family: var(--font-manrope);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.44px;
}

.contact-info-list {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.contact-info-item {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}

.contact-info-item .icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--surface);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item .icon-wrap svg {
  width: 20px;
  height: 20px;
}

.contact-info-item strong {
  display: block;
  font-family: var(--font-manrope);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.16px;
  color: var(--text-on-light);
}

.contact-info-item span,
.contact-info-item a {
  font-family: var(--font-manrope);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.16px;
  color: var(--text-on-light-muted);
}

.social-row {
  display: flex;
  gap: var(--space-2);
  margin-top: var(--space-5);
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-on-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-light-muted);
  transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}

.social-icon:hover {
  color: var(--blue-600);
  border-color: var(--blue-500);
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.contact-form-card {
  background: var(--navy-900);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.contact-form-card h3 {
  font-family: var(--font-manrope);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.44px;
  color: var(--ink);
}

.form-grid {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

@media (min-width: 560px) {
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  font-family: var(--font-manrope);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.16px;
  color: var(--ink);
}

.field .required {
  color: var(--danger-on-dark);
}

.field input,
.field select,
.field textarea {
  min-height: 48px;
  padding: 0 var(--space-3);
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--navy-600);
  background: var(--navy-800);
  color: var(--ink);
  font-family: var(--font-manrope);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.16px;
  transition: border-color var(--dur-fast) var(--ease-out);
}

.field select option {
  color: var(--navy-900);
}

.field textarea {
  padding: var(--space-3);
  min-height: 120px;
  resize: vertical;
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  border-color: var(--blue-500);
  outline: 2px solid var(--blue-500);
  outline-offset: 1px;
}

.field-error {
  font-size: var(--fs-xs);
  color: var(--danger-on-dark);
  min-height: 1em;
}

.form-status {
  margin-top: var(--space-3);
  padding: var(--space-3);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-weight: 600;
  display: none;
}

.form-status[data-state="success"] {
  display: block;
  background: rgba(74, 222, 128, 0.15);
  color: #7de3a1;
}

.form-status[data-state="error"] {
  display: block;
  background: rgba(255, 107, 107, 0.15);
  color: #ff9d9d;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--navy-950);
  padding-block: var(--space-8) var(--space-5);
}

.footer-grid {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
  }
}

.footer-brand img {
  height: 32px;
  width: auto;
  margin-bottom: var(--space-3);
}

.footer-brand p {
  font-family: var(--font-manrope);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.04px;
  color: var(--ink-faint);
  max-width: 34ch;
}

.footer-heading {
  font-family: var(--font-manrope);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.04px;
  color: var(--ink);
  margin-bottom: var(--space-3);
}

.footer-links {
  display: grid;
  gap: var(--space-2);
}

.footer-links a {
  font-family: var(--font-manrope);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.15px;
  color: var(--ink-faint);
  transition: color var(--dur-fast) var(--ease-out);
}

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

.footer-bottom {
  margin-top: var(--space-7);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-on-dark);
  font-size: var(--fs-xs);
  color: var(--ink-faint);
}

/* =========================================================
   Reveal-on-scroll (respects reduced motion via JS class)
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}

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

.no-js .reveal {
  opacity: 1;
  transform: none;
}

/* =========================================================
   Utilities
   ========================================================= */
.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;
}

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

.mx-auto {
  margin-inline: auto;
}
