/* ─── Fonts ─── */
@font-face {
  font-family: "Instrument Serif";
  src: url("fonts/instrument-serif-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Serif";
  src: url("fonts/instrument-serif-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Geist Mono";
  src: url("fonts/geist-mono-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ─── Reset / base ─── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: #000; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

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

/* ─── Container ─── */
:root {
  --container-max: 2000px;
  --container-pad: 24px;
}

/* ─── Hero shell ─── */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
}

/* Background image — img at 0.8 opacity lets the body gradient bleed through */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.8;
}
/* Shooting stars — rare, randomized streaks across the hero */
.hero-stars {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}
/* Degrade / Mask — copied 1:1 from giga.ai (.framer-v2au5a) */
.hero-mask {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25%;
  flex: none;
  background: linear-gradient(#0000 0%, #000 100%);
  mix-blend-mode: multiply;
  overflow: var(--overflow-clip-fallback, clip);
  pointer-events: none;
}

/* ─── Section below hero (seamless black) ─── */
.dark-section {
  background: #000;
}

/* ─── Stats row (mirrors giga.ai .framer-1iialbr) ─── */
.stats {
  display: flex;
  flex-flow: row;
  place-content: center;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 1600px;
  height: 200px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}

/* Left text column (.framer-18qxeps) */
.stats-text {
  flex: 1 0 0;
  width: 1px; /* flex-basis surrogate to match Framer */
  height: 100%;
  display: flex;
  flex-flow: column;
  place-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  padding: 24px;
  overflow: hidden;
}
.stats-text p {
  margin: 0;
  width: 341px;
  max-width: 100%;
  color: #fff;
  font-size: 15px;
  line-height: 150%;
}

/* Right stats group (.framer-36wod2) */
.stats-numbers {
  display: flex;
  flex-flow: row;
  place-content: flex-start space-evenly;
  align-items: flex-start;
  width: 600px;
  max-width: 100%;
  height: 100%;
  padding: 24px 0;
  overflow: hidden;
}

/* Spacer between text col and first stat (.framer-ilkkjk) */
.stats-spacer {
  flex: 1 0 0;
  width: 1px;
  height: 1px;
}

/* Each stat wrapper (.framer-1hnse1k / .framer-a73nc4) */
.stat {
  flex: 1 0 0;
  width: 1px;
  height: 100%;
  display: flex;
  flex-flow: row;
  place-content: flex-start space-evenly;
  align-items: flex-start;
}

/* Vertical divider (.framer-2s987o / .framer-1op88i) */
.stat-divider {
  flex: none;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
}

/* Stat content column (.framer-1vxftj4 / .framer-13ulpc9) */
.stat-content {
  display: flex;
  flex-flow: column;
  place-content: flex-start center;
  align-items: flex-start;
  gap: 10px;
  width: min-content;
  height: min-content;
}

/* Label */
.stat-label {
  margin: 0;
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  line-height: 24px;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Big number */
.stat-value {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
  font-size: 44px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
}

/* ─── Feature block (mirrors giga.ai .framer-3hnjpx) ─── */
.feature-block {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 96px 24px;
}

/* Eyebrow row — orange dot + uppercase label */
.feature-eyebrow {
  display: inline-flex;
  flex-flow: row;
  align-items: center;
  gap: 14px;
  height: 32px;
}
.feature-eyebrow-dot {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  flex: none;
}
.feature-eyebrow-solid {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: rgb(247, 107, 21);
  border-radius: 50%;
  box-shadow: 0 0 4px 0 rgba(247, 107, 21, 0.5);
  transform: translate(-50%, -50%);
  z-index: 2;
}
.feature-eyebrow-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: rgb(247, 107, 21);
  border-radius: 50%;
  opacity: 0.5;
  transform: translate(-50%, -50%) scale(0.91);
  animation: feature-pulse 1.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  z-index: 1;
}
@keyframes feature-pulse {
  0%   { transform: translate(-50%, -50%) scale(0.91); opacity: 0.5; }
  80%  { transform: translate(-50%, -50%) scale(2.6);  opacity: 0;   }
  100% { transform: translate(-50%, -50%) scale(2.6);  opacity: 0;   }
}
.feature-eyebrow-text {
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.1px;
  line-height: 24px;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

/* Content row: headline left, feature grid right */
.feature-content {
  display: flex;
  flex-flow: row;
  place-content: flex-start space-between;
  align-items: flex-start;
  width: 100%;
  gap: 48px;
}

/* Headline */
.feature-headline {
  flex: 1 1 auto;
  margin: 0;
  font-family: "Instrument Serif", "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 130%;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 14ch;
}

/* Feature grid (3 cards with vertical dividers) */
.feature-grid {
  display: flex;
  flex-flow: row;
  flex: none;
  align-items: stretch;
}

.feature-item {
  display: flex;
  flex-flow: row;
  align-items: stretch;
  flex: none;
  width: 220px;
}

.feature-item-divider {
  flex: none;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}

.feature-item-body {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  gap: 16px;
  padding: 0 24px;
}

.feature-item-icon {
  width: 18px;
  height: 18px;
  flex: none;
  display: block;
}

.feature-item-text {
  display: flex;
  flex-flow: column;
  gap: 4px;
}

.feature-item-title {
  margin: 0;
  font-size: 14px;
  line-height: 150%;
  font-weight: 600;
  color: #fff;
}

.feature-item-desc {
  margin: 0;
  font-size: 14px;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.5);
}

/* CTA below the feature grid — left-aligned, sits inside .feature-block */
.feature-cta {
  margin-top: 24px;
  display: flex;
  align-self: flex-start;
}

/* ─── Legal pages (imprint, privacy) ─── */
.legal-body {
  background: #000;
  min-height: 100vh;
}
.legal-nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px var(--container-pad) 0;
  pointer-events: none;
}
.legal-nav-wrap > * { pointer-events: auto; }
.legal-main {
  background: #000;
  padding: 120px var(--container-pad) 96px;  /* top padding clears fixed nav */
}
.legal-article {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
}
.legal-eyebrow {
  margin: 0 0 20px;
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.1px;
  line-height: 24px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.legal-title {
  margin: 0 0 48px;
  font-family: "Instrument Serif", "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.012em;
  color: #fff;
}
.legal-article h2 {
  margin: 56px 0 16px;
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #fff;
}
.legal-article h3 {
  margin: 32px 0 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
}
.legal-article p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}
.legal-article ul {
  margin: 0 0 18px;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}
.legal-article li { margin: 0 0 8px; }
.legal-article strong { color: #fff; font-weight: 600; }
.legal-article a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 200ms ease;
}
.legal-article a:hover { text-decoration-color: #fff; }

/* ─── Footer line ─── */
.site-footer {
  background: #000;
}
.site-footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px 24px;
}
.site-footer-copy {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}
.site-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.site-footer-link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 200ms ease;
}
.site-footer-link:hover {
  color: rgba(255, 255, 255, 0.85);
}

/* ─── Logo cloud ticker (auto-scroll marquee) ─── */
/* Outer container — caps width, centers, no clipping */
.hero-logos {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: 100%;
  max-width: 1200px;
  pointer-events: none;
}

/* Inner viewport — owns the mask + clipping (matches giga's <section>) */
.hero-logos-viewport {
  display: flex;
  width: 100%;
  height: 100%;
  place-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, #000 25%, #000 75%, rgba(0,0,0,0) 100%);
          mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, #000 25%, #000 75%, rgba(0,0,0,0) 100%);
}

.hero-logos-track {
  display: flex;
  align-items: center;
  width: max-content;
  margin: 0;
  padding: 0;
  list-style: none;
  will-change: transform;
  backface-visibility: hidden;
  /* Animation driven by JS at end of <body> for sub-pixel-precise seamless loop */
}

.hero-logo {
  flex: none;
  display: flex;
  align-items: center;
  height: 88px;
  padding-right: 120px;    /* padding (not margin) — counts in track's intrinsic width → -50% lines up exactly */
  opacity: 0.75;
}
.hero-logo img {
  display: block;
  height: 100%;
  width: auto;
}

/* Reduced-motion fallback — JS reads this preference too and skips animation. */

/* ─── Navigation (sticky / fixed at top) ─── */
.nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px var(--container-pad) 0;
  pointer-events: none;        /* let scroll/click pass through the empty area */
}
.nav-wrap > * { pointer-events: auto; }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--container-max);
  margin: 0 auto;
  pointer-events: none;
}
.nav > * { pointer-events: auto; }

/* Left wrapper — currently no styling (transparent layout container). */
.nav-glass {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

/* ── Optional: glass-pill look. Re-enable by uncommenting this block.
   Two variants: (a) always-on glass; (b) glass appears on scroll
   (also requires uncommenting the script in index.html / legal/*.html).

.nav-glass {
  padding: 8px 16px;
  background-color: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(40px) saturate(140%);
  -webkit-backdrop-filter: blur(40px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  transition:
    background-color 280ms ease,
    backdrop-filter 280ms ease,
    -webkit-backdrop-filter 280ms ease,
    border-color 280ms ease;
}

.nav-wrap.is-scrolled .nav-glass,
.legal-nav-wrap.is-scrolled .nav-glass {
  background-color: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(40px) saturate(140%);
  -webkit-backdrop-filter: blur(40px) saturate(140%);
  border-color: rgba(255, 255, 255, 0.06);
}
*/

.brand {
  display: inline-flex;
  align-items: center;
  color: #fff;
  flex-shrink: 0;
}
.brand-logo {
  display: block;
  height: 20px;
  width: auto;
  color: #fff;
}

.nav-links {
  /* Hidden by default — re-enable later by switching to flex */
  display: none;
  align-items: center;
  gap: 2px;
  margin-left: 6px;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  border-radius: 999px;
  transition: background 160ms ease, color 160ms ease;
}
.nav-link:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ─── Pill button ─── */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  background: #fff;
  color: #0a0a0a;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.5);
  transition:
    background-color 360ms ease,
    color 360ms ease,
    border-color 360ms ease,
    box-shadow 360ms ease,
    transform 360ms ease;
  white-space: nowrap;
}
.btn-pill:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}
.btn-pill-lg {
  padding: 12px 26px;
  font-size: 15px;
}

/* ─── Hero content ─── */
.hero-inner {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px var(--container-pad) 80px;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}

/* Eyebrow pill — matches giga.ai .framer-1fargiu exact properties */
.hero-eyebrow {
  display: inline-flex;
  flex-flow: row;
  flex: none;
  place-content: center;
  align-items: center;
  gap: 10px;
  width: min-content;
  height: 28px;
  padding: 0 14px;
  background-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  margin-bottom: 24px;
  color: #fff;
  position: relative;
  overflow: visible;
}

/* Pulser container (matches .framer-1roqrdf-container: width 8px) */
.hero-eyebrow-dot {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  flex: none;
}
.hero-eyebrow-solid {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 4px 0 rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  z-index: 2;
}
.hero-eyebrow-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.5;
  transform: translate(-50%, -50%) scale(0.74);
  animation: hero-pulse 1.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  z-index: 1;
}
@keyframes hero-pulse {
  0%   { transform: translate(-50%, -50%) scale(0.74); opacity: 0.5; }
  80%  { transform: translate(-50%, -50%) scale(2.6);  opacity: 0;   }
  100% { transform: translate(-50%, -50%) scale(2.6);  opacity: 0;   }
}

.hero-eyebrow-text {
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.1px;
  line-height: 24px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  white-space: nowrap;
}

/* Headline */
.hero-title {
  font-family: "Instrument Serif", "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(36px, 5.4vw, 80px);
  line-height: 1.06;
  letter-spacing: -0.012em;
  margin: 0 0 20px;
  color: #fff;
  text-shadow: 0 2px 32px rgba(0,0,0,0.18);
  max-width: 24ch;
}

/* Subtitle */
.hero-sub {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255,255,255,0.88);
  letter-spacing: -0.003em;
  margin: 0 0 32px;
  max-width: 60ch;
}

/* CTA */
.hero-cta {
  display: flex;
  justify-content: center;
}

/* ──────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────── */

/* Tablet & below (≤900px) */
@media (max-width: 900px) {
  /* Nav on mobile — full-row layout with glass that fades in on scroll */
  .nav-wrap { padding: 14px var(--container-pad) 0; }
  .nav {
    gap: 12px;
    padding: 8px 12px 8px 16px;
    border-radius: 14px;
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid transparent;
    transition:
      background-color 280ms ease,
      backdrop-filter 280ms ease,
      -webkit-backdrop-filter 280ms ease,
      border-color 280ms ease;
  }
  .nav-wrap.is-scrolled .nav {
    background-color: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(40px) saturate(140%);
    -webkit-backdrop-filter: blur(40px) saturate(140%);
    border-color: rgba(255, 255, 255, 0.06);
  }
  .nav-links { display: none; }
  .nav-glass { gap: 10px; }
  .brand-logo { height: 18px; }

  /* Hero — slightly shorter so logo marquee + CTA fit comfortably */
  .hero { min-height: 98vh; }
  .hero-inner {
    padding: 56px var(--container-pad) 160px;
    justify-content: center;
  }
  .hero-title { font-size: clamp(40px, 8.4vw, 64px); max-width: 22ch; }
  .hero-sub { font-size: 14px; margin-bottom: 26px; max-width: 50ch; }
  .hero-eyebrow { margin-bottom: 20px; }

  /* Logo marquee — bigger logos, tighter gap on tablet */
  .hero-logos { bottom: 40px; max-width: 100%; }
  .hero-logos-viewport {
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, #000 12%, #000 88%, rgba(0,0,0,0) 100%);
            mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, #000 12%, #000 88%, rgba(0,0,0,0) 100%);
  }
  /* Marquee speed handled by JS via data-duration on .hero-logos-track */
  .hero-logo { height: 80px; padding-right: 56px; }

  /* Stats — stack, 2 stats side-by-side at tablet */
  .stats {
    flex-flow: column;
    height: auto;
    align-items: stretch;
    padding: 56px 24px 32px;
    gap: 32px;
  }
  .stats-text { flex: none; width: 100%; padding: 0; }
  .stats-text p { width: 100%; font-size: 16px; }
  .stats-numbers { width: 100%; padding: 0; gap: 24px; }
  .stats-spacer { display: none; }
  .stat {
    flex: 1 1 0;
    width: auto;
    flex-flow: row;
    place-content: flex-start;
    align-items: stretch;
  }
  .stat-divider { width: 1px; height: auto; align-self: stretch; }
  .stat-content { gap: 6px; padding-left: 18px; }
  .stat-value { font-size: 36px; }

  /* Feature block — stack vertically, horizontal separators */
  .feature-block { padding: 64px 24px; gap: 24px; }
  .feature-eyebrow { padding-left: 0; }
  .feature-content { flex-flow: column; padding-left: 0; gap: 28px; align-items: stretch; }
  .feature-headline { font-size: 36px; max-width: 100%; }
  .feature-grid { flex-flow: column; gap: 0; }
  .feature-item {
    flex-flow: column;
    width: 100%;
    align-items: stretch;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .feature-item:first-child { border-top: 0; padding-top: 0; }
  .feature-item-divider { display: none; }
  .feature-item-body { padding: 0; gap: 12px; flex-flow: row; align-items: flex-start; }
  .feature-item-icon { margin-top: 2px; }
  .feature-item-text { gap: 4px; }

  /* Legal pages */
  .legal-nav-wrap { padding: 14px var(--container-pad) 0; }
  .legal-main { padding: 96px var(--container-pad) 64px; }
  .legal-title { margin-bottom: 36px; }
  .legal-article h2 { margin: 40px 0 14px; font-size: 24px; }
  .legal-article h3 { margin: 24px 0 10px; font-size: 15px; }
  .legal-article p, .legal-article ul { font-size: 14.5px; }
}

/* Phone (≤640px) */
@media (max-width: 640px) {
  /* Hero CTA + buttons tighter */
  .btn-pill { padding: 8px 14px; font-size: 13px; }
  .btn-pill-lg { padding: 11px 22px; font-size: 14px; }

  /* Hero mask shifts up */
  .hero-mask { height: 36%; }

  /* Logo marquee — bigger logos, smaller gap on phone */
  .hero-logos { bottom: 32px; }
  .hero-logo { height: 80px; padding-right: 36px; opacity: 0.75; }
  .hero-inner { padding-bottom: 150px; }

  /* Hero text scaled (bigger headline on mobile) */
  .hero-title { font-size: clamp(36px, 11vw, 56px); max-width: 16ch; }
  .hero-sub { font-size: 13.5px; }

  /* Stats — fully stacked single column with horizontal separators */
  .stats { gap: 28px; padding: 48px 20px 24px; }
  .stats-numbers { flex-flow: column; gap: 0; }
  .stats-text p { font-size: 15px; }
  .stat {
    width: 100%;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .stat:first-of-type { border-top: 0; padding-top: 0; }
  .stat-divider { display: none; }
  .stat-content { padding-left: 0; }
  .stat-value { font-size: 32px; }

  /* Feature block headline smaller */
  .feature-headline { font-size: 30px; line-height: 1.2; }
  .feature-block { padding: 56px 20px; }

  /* Footer wraps tighter */
  .site-footer-inner { padding: 18px 20px; gap: 12px; }
  .site-footer-nav { gap: 16px; }
  .site-footer-copy, .site-footer-link { font-size: 12.5px; }

  /* Legal */
  .legal-title { font-size: clamp(32px, 8vw, 44px); }
}

/* Tiny phones (≤380px) */
@media (max-width: 380px) {
  .brand-logo { height: 16px; }
  .hero-eyebrow { padding: 0 12px; height: 26px; }
  .hero-eyebrow-text { font-size: 10.5px; line-height: 22px; }
  .hero-title { font-size: clamp(32px, 12vw, 48px); }
  .hero-logo { height: 60px; padding-right: 28px; }
  .stat-value { font-size: 28px; }
  .feature-headline { font-size: 26px; }
}
