/* ============================================================
   Metodia · Talent Graph
   ============================================================ */

:root {
  --ink:      #08110F;
  --ink-2:    #0B1614;
  --panel:    #0E1B18;
  --line:     #1C2E2A;
  --teal:     #2DC6BC;
  --teal-dim: #1E8F88;
  --glow:     #5CE6DB;
  --sand:     #EAE6DB;
  --muted:    #8DA39D;
  --muted-2:  #5F726D;
  --amber:    #E9A23B;

  --accent-rgb: 45,198,188;
  --amber-rgb:  233,162,59;
  --on-accent:  #05100E;
  --nav-bg:     rgba(8,17,15,.72);
  --hero-veil:
    radial-gradient(120% 90% at 78% 45%, transparent 0%, rgba(8,17,15,.35) 55%, var(--ink) 100%),
    linear-gradient(90deg, var(--ink) 0%, rgba(8,17,15,.86) 34%, rgba(8,17,15,.2) 62%, transparent 82%);

  --font-display: "Sora", system-ui, sans-serif;
  --font-body:    "Instrument Sans", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  --wrap: 1220px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 18px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--sand);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.02; margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

::selection { background: var(--teal); color: var(--ink); }

.skip-link {
  position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  background: var(--teal); color: var(--ink); padding: .6rem 1rem; border-radius: 0 0 10px 10px;
  font-family: var(--font-mono); font-size: .8rem; z-index: 200; transition: top .2s;
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 2px solid var(--glow);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- shared type utilities ---------- */
.eyebrow, .kicker, .marquee, .footer__h, .step__meta, .card__tag, .hero__scroll span {
  font-family: var(--font-mono);
}

.eyebrow {
  display: flex; flex-wrap: wrap; align-items: center; gap: .35rem .5rem;
  font-size: .78rem; letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 clamp(1.4rem, 3vw, 2rem);
}
.eyebrow__sep { color: var(--teal-dim); }
.eyebrow__pip {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal); box-shadow: 0 0 0 4px rgba(var(--accent-rgb),.16);
  animation: pulse 2.6s var(--ease) infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(var(--accent-rgb),.16); }
  50%     { box-shadow: 0 0 0 7px rgba(var(--accent-rgb),.04); }
}

.kicker {
  display: flex; align-items: baseline; gap: .7rem;
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 1.1rem;
}
.kicker__num {
  color: var(--teal); font-weight: 700;
  border: 1px solid var(--line); border-radius: 6px; padding: .15rem .45rem;
}

/* ---------- buttons ---------- */
.btn {
  --btn-bg: transparent;
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-body); font-weight: 600; font-size: .95rem;
  padding: .85rem 1.4rem; border-radius: 999px;
  border: 1px solid var(--line); background: var(--btn-bg);
  color: var(--sand); cursor: pointer;
  transition: transform .35s var(--ease), background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
  will-change: transform;
}
.btn--sm { padding: .6rem 1.05rem; font-size: .875rem; }
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.02rem; }

.btn--primary {
  --btn-bg: var(--teal);
  color: var(--on-accent); border-color: var(--teal);
}
.btn--primary:hover { background: var(--glow); border-color: var(--glow); transform: translateY(-2px); }

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

.btn__dot {
  width: 7px; height: 7px; border-radius: 50%; background: currentColor;
  transition: transform .35s var(--ease);
}
.btn:hover .btn__dot { transform: translateX(3px) scale(1.15); }

.nav__cta { border-color: var(--line); }
.nav__cta:hover { border-color: var(--teal); color: var(--glow); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: var(--nav-bg);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.brand { display: inline-flex; align-items: center; gap: .5rem; color: var(--sand); }
.brand__mark { width: 40px; height: 40px; display: grid; place-items: center; }
.brand__mark img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 0 10px rgba(var(--accent-rgb),.35)); }
.brand__word { font-family: var(--font-display); font-weight: 700; font-size: 1.28rem; letter-spacing: -0.02em; }

.nav__links { display: flex; gap: clamp(1.2rem, 2.5vw, 2.2rem); }
.nav__links a {
  font-size: .93rem; color: var(--muted); position: relative; padding: .3rem 0;
  transition: color .25s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--teal); transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--sand); }
.nav__links a:hover::after { width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: 74px;
  overflow: hidden;
}
.hero__canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 0; opacity: 0; transition: opacity 1.2s var(--ease);
}
.hero__canvas.is-ready { opacity: 1; }
.hero__veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: var(--hero-veil);
}
.hero__inner { position: relative; z-index: 2; padding-block: 6vh 12vh; }

.hero__title {
  font-size: clamp(2.6rem, 7.2vw, 5.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.06;
  max-width: 15ch;
  margin-bottom: 1.6rem;
}
/* clip-reveal without cutting descenders: pad the line and pull it back up */
.hero__title .line { display: block; overflow: hidden; padding-bottom: 0.12em; margin-bottom: -0.12em; }
.hero__title em {
  font-style: normal; color: var(--teal);
  position: relative; white-space: nowrap;
}
.hero__title em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0.06em; height: .09em;
  background: var(--teal); opacity: .5;
}

.hero__lede {
  max-width: 46ch; color: var(--muted);
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.28rem);
  line-height: 1.55; margin-bottom: 2.3rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: clamp(2.6rem, 6vw, 4rem); }

.hero__stats {
  display: flex; flex-wrap: wrap; gap: clamp(1.6rem, 5vw, 3.4rem);
  margin: 0; padding-top: 1.8rem;
  border-top: 1px solid var(--line);
  max-width: 640px;
}
.hero__stat dt { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.6rem, 4vw, 2.3rem); color: var(--sand); letter-spacing: -0.03em; }
.hero__stat dd { margin: .15rem 0 0; color: var(--muted); font-size: .9rem; }

.hero__scroll {
  position: absolute; left: var(--gutter); bottom: 2rem; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  color: var(--muted-2); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
}
.hero__scroll-line { width: 1px; height: 46px; background: linear-gradient(var(--teal), transparent); }
.hero__scroll-line::before {
  content: ""; display: block; width: 1px; height: 14px; background: var(--glow);
  animation: scrolldot 2s var(--ease) infinite;
}
@keyframes scrolldot { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(40px); opacity: 0; } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--ink-2);
  padding: 1.1rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track { display: inline-flex; will-change: transform; animation: marquee 34s linear infinite; }
.marquee__group {
  display: inline-flex; align-items: center; gap: 2.2rem; margin: 0; padding: 0 1.1rem; list-style: none;
}
.marquee__group li {
  font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted);
}
.marquee__group li[aria-hidden="true"], .marquee__group li:not(:first-child):nth-child(even) { color: var(--teal-dim); }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section { padding-block: clamp(4.5rem, 11vw, 9rem); position: relative; }
.section__head { max-width: 720px; margin-bottom: clamp(2.6rem, 6vw, 4rem); }
.section__title {
  font-size: clamp(1.9rem, 4.4vw, 3.3rem); font-weight: 700; letter-spacing: -0.03em;
  margin-bottom: 1.1rem; max-width: 20ch;
}
.section__intro { color: var(--muted); font-size: clamp(1.02rem, 1rem + 0.3vw, 1.2rem); max-width: 56ch; }

/* ---------- git-graph spine ---------- */
.services, .ai, .process, .why {
  border-top: 1px solid var(--line);
}
.services::before, .process::before, .why::before {
  content: ""; position: absolute; left: max(calc((100vw - var(--wrap))/2 + 0px), var(--gutter)); top: 0; bottom: 0;
  width: 1px; background: linear-gradient(var(--line), transparent 30%);
  opacity: .0;
}

/* ============================================================
   SERVICES
   ============================================================ */
.cards {
  display: grid; gap: clamp(1rem, 2vw, 1.4rem);
  grid-template-columns: repeat(2, 1fr);
}
.card {
  position: relative;
  padding: clamp(1.6rem, 3vw, 2.3rem);
  background: linear-gradient(180deg, var(--panel), var(--ink-2));
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
  transition: transform .5s var(--ease), border-color .4s var(--ease);
}
.card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0;
  background: radial-gradient(80% 80% at 12% 0%, rgba(var(--accent-rgb),.10), transparent 60%);
  transition: opacity .5s var(--ease);
}
.card:hover { transform: translateY(-5px); border-color: var(--teal-dim); }
.card:hover::after { opacity: 1; }
.card__node {
  position: absolute; top: 1.5rem; right: 1.5rem; width: 10px; height: 10px; border-radius: 50%;
  border: 1px solid var(--teal-dim); background: var(--ink);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb),.06);
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
}
.card:hover .card__node { background: var(--teal); box-shadow: 0 0 12px 2px rgba(var(--accent-rgb),.5); }
.card--accent { border-color: rgba(var(--amber-rgb),.28); }
.card--accent:hover { border-color: var(--amber); }
.card--accent::after { background: radial-gradient(80% 80% at 12% 0%, rgba(var(--amber-rgb),.12), transparent 60%); }
.card--accent .card__node { border-color: var(--amber); }
.card--accent:hover .card__node { background: var(--amber); box-shadow: 0 0 12px 2px rgba(var(--amber-rgb),.5); }

.card__tag {
  display: inline-block; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal); border: 1px solid var(--line); border-radius: 999px; padding: .28rem .7rem;
  margin-bottom: 1rem;
}
.card__tag--amber { color: var(--amber); border-color: rgba(var(--amber-rgb),.3); }
.card__title { font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin-bottom: .7rem; }
.card__body { color: var(--muted); margin-bottom: 1.2rem; }
.card__list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.card__list li {
  font-family: var(--font-mono); font-size: .78rem; color: var(--muted);
  padding: .65rem 0 .65rem 1.3rem; position: relative; border-bottom: 1px solid var(--line);
}
.card__list li:last-child { border-bottom: 0; }
.card__list li::before { content: "→"; position: absolute; left: 0; color: var(--teal-dim); }
.card--accent .card__list li::before { color: var(--amber); }

/* ============================================================
   AI-NATIVE TOOLKIT BAND
   ============================================================ */
.toolkit {
  border-top: 1px solid var(--line);
  background: radial-gradient(120% 130% at 50% -10%, rgba(var(--accent-rgb),.08), transparent 55%);
  text-align: center;
}
.toolkit__inner { max-width: 900px; margin-inline: auto; }
.toolkit__kicker { justify-content: center; color: var(--teal); }
.toolkit__title { margin-inline: auto; max-width: 24ch; }
.toolkit__intro { margin-inline: auto; }
.chips {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem;
  list-style: none; padding: 0; margin: 2.2rem 0 0;
}
.chips li {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-mono); font-size: .8rem; letter-spacing: .01em;
  color: var(--sand); background: var(--panel);
  border: 1px solid var(--line); border-radius: 999px; padding: .6rem 1.1rem;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.chips li:hover { border-color: var(--teal-dim); transform: translateY(-2px); }
.chips__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 8px var(--teal); }

/* ============================================================
   THE EDGE — TIMEZONE OVERLAP
   ============================================================ */
.ai { background: linear-gradient(180deg, var(--ink), var(--ink-2)); }
.ai__head {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; margin-bottom: clamp(2rem, 4vw, 3rem);
}
.ai__head .kicker { margin: 0; }

/* timezone / Argentina map (overlap view) */
.tz { display: grid; grid-template-columns: minmax(250px, .95fr) 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.tz__map { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.tz__ar { width: 100%; max-width: 380px; height: auto; overflow: visible; }
.tz__outline { fill: rgba(var(--accent-rgb), .05); stroke: var(--teal-dim); stroke-width: 1.6; stroke-linejoin: round; stroke-linecap: round; }
.tz__us { fill: none; stroke: var(--teal); stroke-width: 1.5; stroke-dasharray: 4 5; opacity: .7; animation: tzflow 5s linear infinite; }
.tz__usnode { fill: var(--ink); stroke: var(--teal); stroke-width: 2; }
.tz__uslabel { fill: var(--muted); font-family: var(--font-mono); font-size: 12px; letter-spacing: .03em; }
.tz__links line { stroke: var(--teal); stroke-width: 1.5; stroke-dasharray: 4 5; opacity: .6; animation: tzflow 5s linear infinite; }
@keyframes tzflow { to { stroke-dashoffset: -45; } }
.tz__cities circle { fill: var(--teal); filter: drop-shadow(0 0 6px rgba(var(--accent-rgb), .85)); }
.tz__cities text { fill: var(--sand); font-family: var(--font-mono); font-size: 13px; letter-spacing: .01em; }
.tz__flag { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-mono); font-size: .86rem; letter-spacing: .06em; color: var(--muted); }
.tz__flagdot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 8px var(--teal); }

.tz__title { font-size: clamp(1.8rem, 3.6vw, 2.8rem); line-height: 1.06; margin-bottom: 1.1rem; }
.tz__lede { color: var(--muted); font-size: clamp(1.05rem, 1rem + .45vw, 1.24rem); line-height: 1.6; margin-bottom: 2.3rem; max-width: 52ch; }
.tz__rows { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.4rem; }
.tz__row { display: grid; grid-template-columns: 172px 1fr 100px; align-items: center; gap: clamp(1rem, 2vw, 1.6rem); }
.tz__meta b { display: block; font-weight: 600; font-size: 1.1rem; }
.tz__meta span { display: block; margin-top: .2rem; font-family: var(--font-mono); font-size: .78rem; color: var(--muted-2); }
.tz__bar { height: 10px; border-radius: 999px; background: var(--line); overflow: hidden; }
.tz__bar span { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--teal-dim), var(--teal)); box-shadow: 0 0 12px rgba(var(--accent-rgb), .5); }
.tz__ov { font-family: var(--font-mono); font-size: .9rem; color: var(--teal); white-space: nowrap; text-align: right; }
.tz__foot { margin-top: 1.7rem; font-family: var(--font-mono); font-size: .76rem; color: var(--muted-2); }

@media (max-width: 760px) {
  .tz { grid-template-columns: 1fr; gap: 2.4rem; }
  .tz__ar { max-width: 320px; }
  .tz__row { grid-template-columns: 150px 1fr auto; }
}

/* ============================================================
   PROCESS
   ============================================================ */
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative;
}
.step {
  position: relative; padding: 2rem clamp(1rem, 2vw, 1.6rem) 0;
  border-top: 1px solid var(--line);
}
.step::before {
  content: ""; position: absolute; top: -6px; left: clamp(1rem, 2vw, 1.6rem); width: 11px; height: 11px;
  border-radius: 50%; background: var(--ink); border: 1px solid var(--teal);
  box-shadow: 0 0 0 4px var(--ink), 0 0 14px rgba(var(--accent-rgb),.4);
}
.step__num { font-family: var(--font-mono); font-size: .85rem; color: var(--teal); font-weight: 700; }
.step__title { font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin: .8rem 0 .7rem; }
.step__body p { color: var(--muted); }
.step__meta {
  margin-top: 1.1rem !important; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted-2);
}

/* ============================================================
   WHY / FACTS
   ============================================================ */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.4rem); }
.fact {
  padding: clamp(1.4rem, 3vw, 2rem) clamp(1.2rem, 2.5vw, 1.7rem);
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel), transparent);
  transition: transform .5s var(--ease), border-color .4s var(--ease);
}
.fact:hover { transform: translateY(-4px); border-color: var(--teal-dim); }
.fact__num {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -0.03em;
  font-size: clamp(2rem, 4vw, 2.9rem); color: var(--teal); margin-bottom: .3rem; line-height: 1;
}
.fact__label { font-weight: 600; margin-bottom: .7rem; }
.fact__body { color: var(--muted); font-size: .92rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { text-align: center; border-top: 1px solid var(--line); overflow: hidden; }
.contact__inner { position: relative; max-width: 760px; }
.contact__mark {
  width: 76px; height: 76px; margin: 0 auto 1.6rem;
  display: grid; place-items: center;
}
.contact__mark img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 0 24px rgba(var(--accent-rgb),.45)); }
.contact__title { font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 800; letter-spacing: -0.035em; margin-bottom: 1.2rem; }
.contact__lede { color: var(--muted); font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem); max-width: 52ch; margin: 0 auto 2.4rem; }
.contact__actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); background: var(--ink-2); padding-top: clamp(3rem, 7vw, 5rem); }
.footer__inner {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer__tag { color: var(--muted); font-size: .92rem; margin-top: 1.1rem; max-width: 34ch; }
.footer__h { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 1.1rem; }
.footer__col { display: flex; flex-direction: column; gap: .7rem; }
.footer__col a { color: var(--muted); font-size: .95rem; width: fit-content; transition: color .25s var(--ease); }
.footer__col a:hover { color: var(--teal); }
.footer__base {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  border-top: 1px solid var(--line); padding-block: 1.6rem;
  font-family: var(--font-mono); font-size: .78rem; color: var(--muted-2);
}
.footer__loc { display: inline-flex; align-items: center; gap: .55rem; }
.footer__pip { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 8px var(--teal); }

/* ============================================================
   REVEAL (GSAP sets is-in; CSS is the fallback baseline)
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(22px); }
.reveal-ready [data-reveal] { transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }

/* If JS never runs, show everything */
.no-js [data-reveal] { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 940px) {
  .nav__links { display: none; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step { border-top: 1px solid var(--line); padding-bottom: 2.6rem; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
  .eyebrow { font-size: .7rem; gap: .3rem .4rem; }
  .hero__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem .7rem; }
  .hero__stat dt { font-size: clamp(1.35rem, 6.5vw, 1.8rem); }
  .hero__stat dd { font-size: .8rem; }
  .hero__scroll { display: none; }
  .footer__inner { grid-template-columns: 1fr; }
  .nav__inner { height: 64px; }
  .hero { padding-top: 64px; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track, .eyebrow__pip, .hero__scroll-line::before { animation: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .btn, .card, .fact { transition: none !important; }
}
