/* ============================================================
   LA TRAVERSE — Shared Styles
   Common reset, tokens, nav, footer, animations & utilities
   shared across all pages of latraverse.studio
   ============================================================ */

/* --- CSS RESET & BASE --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

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

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

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

/* --- DESIGN TOKENS --- */
:root {
  /* Colors */
  --color-bg: #fafaf8;
  --color-bg-alt: #f2f0ec;
  --color-bg-cream: #f5f0e8;
  --color-bg-dark: #0f1117;
  --color-bg-dark-alt: #181b24;
  --color-surface: #ffffff;
  --color-text: #1a1a1a;
  --color-text-secondary: #55586a;
  --color-text-tertiary: #8b8ea0;
  --color-text-inverse: #f0f0f2;
  --color-accent: #c4622a;
  --color-accent-hover: #a84e33;
  --color-accent-blue: #3b6cf5;
  --color-accent-green: #2d8a6e;
  --color-agents: #f59e0b;
  --color-agents-hover: #d97706;
  --color-border: rgba(26, 26, 26, 0.10);
  --color-border-dark: rgba(26, 26, 26, 0.20);

  /* Typography — Fontshare */
  --font-display: 'Clash Display', 'Helvetica Neue', Arial, sans-serif;
  --font-serif: 'Zodiak', Georgia, serif;
  --font-sans: 'Satoshi', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  /* Spacing */
  --space-section: clamp(80px, 12vw, 160px);
  --space-block: clamp(40px, 6vw, 80px);
  --content-max: 680px;
  --wide-max: 1100px;
  --full-max: 1240px;
  --container-pad: clamp(20px, 5vw, 80px);
}


/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.overline {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}


/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(250, 250, 248, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.4s ease, background-color 0.4s ease, transform 0.3s ease;
}

.nav.is-scrolled {
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
  background-color: rgba(250, 250, 248, 0.96);
}

.nav--hidden {
  transform: translateY(-100%);
}

/* Nav dark variant — used over dark hero sections */
.nav.nav--dark {
  background-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: rgba(255, 255, 255, 0.06);
  transition: background-color 0.5s ease, border-color 0.5s ease, box-shadow 0.4s ease;
}

.nav.nav--dark .nav__logo-name { color: #fff; }
.nav.nav--dark .nav__logo-label { color: rgba(255, 255, 255, 0.4); }
.nav.nav--dark .nav__link { color: rgba(255, 255, 255, 0.55); }
.nav.nav--dark .nav__link:hover { color: #fff; }
.nav.nav--dark .nav__burger span { background-color: #fff; }

.nav.nav--dark.is-scrolled {
  background-color: rgba(12, 15, 19, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.3);
}

/* Inner container */
.nav__inner {
  max-width: var(--full-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.nav__logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.nav__logo-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

/* Links row */
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color 0.3s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-accent);
  transition: width 0.3s ease;
}

.nav__link:hover {
  color: var(--color-text);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--active {
  color: var(--color-text);
}

.nav__link--active::after {
  width: 100%;
  background-color: var(--color-accent);
}

/* --- Dropdown --- */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--color-surface);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10), 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 100;
}

/* Invisible bridge to prevent hover gap between link and dropdown */
.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.is-open .nav__dropdown-menu,
.nav__dropdown-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-link {
  display: block;
  padding: 10px 16px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 450;
  color: var(--color-text-secondary);
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav__dropdown-link:hover {
  background-color: var(--color-bg-cream);
  color: var(--color-text);
}

.nav__dropdown-divider {
  height: 1px;
  background-color: var(--color-border);
  margin: 4px 8px;
}

.nav__dropdown-link--highlight {
  color: var(--color-agents);
  font-weight: 600;
}

.nav__dropdown-link--highlight:hover {
  background-color: rgba(245, 158, 11, 0.08);
  color: var(--color-agents-hover);
}

/* Prevent dropdown underline on parent link */
.nav__dropdown > .nav__link::after {
  display: none;
}

/* CTA button */
.nav__cta {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-text-inverse);
  background-color: var(--color-accent);
  padding: 10px 24px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.nav__cta:hover {
  background-color: var(--color-accent-hover);
}

/* Burger icon */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: var(--color-text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__burger.is-active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav__burger.is-active span:nth-child(2) {
  opacity: 0;
}

.nav__burger.is-active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}


/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 0 var(--container-pad);
  max-height: 80vh;
  overflow-y: auto;
}

/* Mobile grouped sections */
.mobile-menu__group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.mobile-menu__group-title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-text-tertiary);
  margin-bottom: 4px;
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
  transition: color 0.3s ease;
}

.mobile-menu__link:hover {
  color: var(--color-accent);
}

.mobile-menu__link--sub {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.mobile-menu__link--sub:hover {
  color: var(--color-accent);
}

.mobile-menu__cta {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-inverse);
  background-color: var(--color-accent);
  padding: 14px 32px;
  border-radius: 8px;
  margin-top: 16px;
  transition: background-color 0.3s ease;
}

.mobile-menu__cta:hover {
  background-color: var(--color-accent-hover);
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: var(--color-bg-dark);
  color: var(--color-text-inverse);
  padding: 0;
}

.footer__inner {
  max-width: var(--full-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* Top area: brand + columns */
.footer__top {
  display: flex;
  gap: 60px;
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand {
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.footer__logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--color-text-inverse);
}

.footer__logo-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
}

.footer__tagline {
  font-size: 14px;
  color: var(--color-text-tertiary);
  line-height: 1.5;
}

/* Link columns */
.footer__columns {
  display: flex;
  flex: 1;
  gap: 40px;
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 140px;
}

.footer__column-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-inverse);
  margin-bottom: 8px;
}

.footer__link {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-tertiary);
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: #fff;
}

.footer__link--static {
  cursor: default;
}

.footer__link--static:hover {
  color: var(--color-text-tertiary);
}

.footer__socials {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: var(--color-text-tertiary);
  background: rgba(255, 255, 255, 0.04);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.footer__social:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* Bottom bar */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.footer__copyright {
  font-size: 13px;
  color: var(--color-text-tertiary);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal-link {
  font-size: 13px;
  color: var(--color-text-tertiary);
  transition: color 0.2s ease;
}

.footer__legal-link:hover {
  color: #fff;
}


/* ============================================================
   VIEW TRANSITIONS API (MPA native page transitions)
   ============================================================ */
@view-transition {
  navigation: auto;
}

::view-transition-old(root) {
  animation: vt-fade-out 0.2s ease-in;
}

::view-transition-new(root) {
  animation: vt-fade-in 0.25s ease-out;
}

@keyframes vt-fade-out {
  from { opacity: 1; }
  to   { opacity: 0; }
}

@keyframes vt-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Logo persists across page transitions */
.nav__logo {
  view-transition-name: main-logo;
}

::view-transition-old(main-logo),
::view-transition-new(main-logo) {
  animation: none;
}


/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-accent);
  transform-origin: left;
  z-index: 1001;
  animation: scroll-progress-grow linear;
  animation-timeline: scroll();
}

@keyframes scroll-progress-grow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}


/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */

/* Default: visible (no-motion-first approach) */
.reveal-section .section__header,
.reveal-section .section__inner,
.reveal-item {
  opacity: 1;
  transform: none;
}

/* Animations only if user accepts motion */
@media (prefers-reduced-motion: no-preference) {
  .reveal-section .section__header,
  .reveal-section .section__inner {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1),
                transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
  }

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

  .reveal-item {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
                transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  }

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

  /* Scroll-driven reveal for modern browsers */
  @supports (animation-timeline: view()) {
    [data-reveal] {
      opacity: 0;
      transform: translateY(40px);
      animation: reveal-up linear both;
      animation-timeline: view();
      animation-range: entry 5% entry 75%;
    }

    [data-reveal="blur"] {
      filter: blur(4px);
      animation-name: reveal-blur;
    }

    @keyframes reveal-up {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes reveal-blur {
      to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
      }
    }
  }
}


/* ============================================================
   MICRO-INTERACTIONS
   ============================================================ */

/* CTA buttons — tactile hover/press feedback */
.nav__cta,
.hero__cta,
.cta-final__btn--primary,
.mobile-menu__cta {
  position: relative;
  overflow: hidden;
}

@media (prefers-reduced-motion: no-preference) {
  .nav__cta,
  .hero__cta,
  .cta-final__btn--primary,
  .mobile-menu__cta {
    transition: transform 0.25s ease-out,
                box-shadow 0.25s ease-out,
                background-color 0.3s ease;
  }

  .nav__cta:hover,
  .hero__cta:hover,
  .cta-final__btn--primary:hover,
  .mobile-menu__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 98, 42, 0.25);
  }

  .nav__cta:active,
  .hero__cta:active,
  .cta-final__btn--primary:active,
  .mobile-menu__cta:active {
    transform: translateY(0) scale(0.98);
    transition-duration: 0.1s;
  }
}

/* Card hover lift (opt-in via data attribute) */
@media (prefers-reduced-motion: no-preference) {
  [data-hover="lift"] {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s ease;
  }

  [data-hover="lift"]:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  }
}

/* Footer social icons hover */
@media (prefers-reduced-motion: no-preference) {
  .footer__social {
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
  }

  .footer__social:hover {
    transform: translateY(-2px);
  }
}

/* Focus-visible for keyboard a11y */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}


/* ============================================================
   GLASSMORPHISM CARD UTILITY
   ============================================================ */
.card-glass {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}
.card-glass--dark {
  background: rgba(15, 17, 23, 0.7);
  border-color: rgba(255, 255, 255, 0.08);
}


/* ============================================================
   GRADIENT TEXT UTILITY
   ============================================================ */
.text-gradient {
  background: linear-gradient(135deg, var(--color-accent) 0%, #e8a04e 50%, var(--color-accent) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease-in-out infinite;
}
.text-gradient--blue {
  background: linear-gradient(135deg, var(--color-accent-blue) 0%, #6b8cff 50%, var(--color-accent-blue) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease-in-out infinite;
}
@keyframes gradient-shift {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}


/* ============================================================
   GLOW BUTTON VARIANT
   ============================================================ */
.btn--glow {
  position: relative;
  overflow: hidden;
}
.btn--glow::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--color-accent), #e8a04e, var(--color-accent));
  background-size: 200% auto;
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  animation: gradient-shift 3s ease-in-out infinite;
  transition: opacity 0.3s ease;
  filter: blur(8px);
}
.btn--glow:hover::after {
  opacity: 1;
}


/* ============================================================
   MARQUEE / LOGO TICKER
   ============================================================ */
.marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.marquee::before, .marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg), transparent);
}
.marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg), transparent);
}
.marquee--dark::before {
  background: linear-gradient(to right, var(--color-bg-dark), transparent);
}
.marquee--dark::after {
  background: linear-gradient(to left, var(--color-bg-dark), transparent);
}
.marquee__track {
  display: flex;
  gap: 48px;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}
.marquee__track:hover {
  animation-play-state: paused;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee__item {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-tertiary);
  white-space: nowrap;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.marquee__item:hover {
  opacity: 1;
}
.marquee__separator {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-text-tertiary);
  opacity: 0.3;
}


/* ============================================================
   ANIMATED COUNTER
   ============================================================ */
.counter-value {
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
  display: inline-block;
}


/* ============================================================
   STAGGERED REVEAL
   ============================================================ */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.1s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.2s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.3s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.3s; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 0.4s; }
.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   TESTIMONIAL CARD
   ============================================================ */
.testimonial {
  position: relative;
  padding: 32px;
  border-radius: 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  left: 20px;
  font-family: var(--font-serif);
  font-size: 64px;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.3;
}
.testimonial__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 20px;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--color-accent);
}
.testimonial__name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text);
}
.testimonial__role {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-tertiary);
}
.testimonial--dark {
  background: var(--color-bg-dark-alt);
  border-color: rgba(255, 255, 255, 0.06);
}
.testimonial--dark .testimonial__text { color: var(--color-text-inverse); }
.testimonial--dark .testimonial__name { color: var(--color-text-inverse); }


/* ============================================================
   FLOATING DECORATIVE DOTS
   ============================================================ */
.deco-dots {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.deco-dots--grid {
  display: grid;
  grid-template-columns: repeat(5, 6px);
  gap: 12px;
}
.deco-dots--grid span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.15;
}
.deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--color-accent);
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}


/* ============================================================
   SECTION CURVE DIVIDER
   ============================================================ */
.section-curve {
  position: relative;
}
.section-curve::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background: inherit;
  clip-path: ellipse(55% 100% at 50% 0%);
}
.section-curve--top::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background: inherit;
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 1;
}


/* ============================================================
   STAT / METRIC BADGE
   ============================================================ */
.stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(196, 98, 42, 0.08);
  border: 1px solid rgba(196, 98, 42, 0.15);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-accent);
}
.stat-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}


/* ============================================================
   PREFERS-REDUCED-MOTION — Global override
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .scroll-progress {
    display: none;
  }

  /* Disable marquee scrolling */
  .marquee__track {
    animation: none !important;
  }

  /* Disable gradient text animation */
  .text-gradient,
  .text-gradient--blue {
    animation: none !important;
  }

  /* Disable glow button animation */
  .btn--glow::after {
    animation: none !important;
  }

  /* Disable stat badge pulse */
  .stat-badge__dot {
    animation: none !important;
  }

  /* Show staggered items immediately */
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Show counter values immediately (no animation) */
  .counter-value {
    transition: none !important;
  }
}


/* ============================================================
   SHARED SECTION LAYOUT
   ============================================================ */
.section {
  padding: var(--space-section) 0;
}

.section__container {
  max-width: var(--full-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section__header {
  margin-bottom: var(--space-block);
  max-width: var(--content-max);
}

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--color-text);
  margin-bottom: 16px;
}

.section__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 520px;
}


/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
  max-width: var(--full-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.container--narrow {
  max-width: var(--content-max);
}

.container--wide {
  max-width: var(--wide-max);
}


/* ============================================================
   RESPONSIVE — Tablet (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .footer__top {
    flex-direction: column;
    gap: 40px;
  }

  .footer__brand {
    flex: none;
  }

  .footer__columns {
    flex-wrap: wrap;
    gap: 32px;
  }
}


/* ============================================================
   RESPONSIVE — Mobile (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Nav: hide desktop links, show burger */
  .nav__links {
    display: none;
  }

  .nav__cta {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  /* Footer */
  .footer__top {
    padding: 48px 0 32px;
  }

  .footer__columns {
    flex-direction: column;
    gap: 24px;
  }

  .footer__column {
    min-width: unset;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer__legal {
    flex-wrap: wrap;
    gap: 16px;
  }

  /* Sections */
  .section__title {
    font-size: clamp(28px, 7vw, 40px);
  }
}


/* ============================================================
   RESPONSIVE — Small mobile (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
  :root {
    --container-pad: 20px;
  }

  .mobile-menu__link {
    font-size: 24px;
  }
}


/* ============================================================
   NOTE: Shared JS
   ============================================================

   The file public/js/shared.js handles interactive behaviors
   for components styled in this file:

   - Burger toggle:  #navBurger click toggles .is-active on
     the burger and .is-open on #mobileMenu
   - Scroll state:   Adds .is-scrolled to .nav on scroll > 40px
   - Dropdown hover: Handled via CSS :hover (no JS needed)
   - Reveal observer: IntersectionObserver adds .is-visible to
     .reveal-section and .reveal-item elements

   ============================================================ */
