/* ============================================================
   0block · design: REDLINE
   Bold offensive-editorial. Black/white with red as the weapon.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* surfaces */
  --bg:        #0d0d0d;
  --surface-1: #161616;
  --surface-2: #1d1d1d;
  --surface-3: #232323;

  /* text */
  --text:  #f4f4f4;
  --muted: #a3a3a3;
  --faint: #6e6e6e;

  /* accent — the weapon */
  --red:       #ff2b2b;
  --red-hover: #ff4646;
  --red-deep:  #b01414;

  /* lines */
  --line:      #2a2a2a;
  --line-soft: #1f1f1f;

  /* type */
  --f-display: 'Anton', 'Archivo', system-ui, sans-serif;
  --f-head:    'Archivo', system-ui, sans-serif;
  --f-body:    'Inter', system-ui, sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* spacing scale */
  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2rem;
  --s-5: 3rem;
  --s-6: 4.5rem;
  --s-7: 7rem;
  --s-8: 10rem;

  /* layout */
  --maxw: 1320px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --nav-h: 76px;

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

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--red); color: #fff; }

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

/* film-grain / scanline texture over everything */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255,255,255,0.012) 0,
    rgba(255,255,255,0.012) 1px,
    transparent 1px,
    transparent 3px
  );
  mix-blend-mode: overlay;
  opacity: 0.5;
}

/* ---------- Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(4rem, 9vw, var(--s-8)); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, var(--s-7)); }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  margin-bottom: var(--s-3);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--red);
  display: inline-block;
}
.eyebrow--muted { color: var(--muted); }
.eyebrow--muted::before { background: var(--muted); }

.section-title {
  font-family: var(--f-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.005em;
  font-size: clamp(2.4rem, 6.5vw, 5rem);
}
.section-title .red { color: var(--red); }

.lede {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  max-width: 60ch;
  line-height: 1.6;
}

/* corner brackets motif */
.brackets { position: relative; }
.brackets::before, .brackets::after {
  content: "";
  position: absolute;
  width: 22px; height: 22px;
  border: 2px solid var(--red);
  pointer-events: none;
}
.brackets::before { top: -8px; left: -8px; border-right: none; border-bottom: none; }
.brackets::after  { bottom: -8px; right: -8px; border-left: none; border-top: none; }

/* thick red rule */
.redrule {
  width: 64px;
  height: 5px;
  background: var(--red);
  border: none;
  margin: var(--s-3) 0;
}

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 0.95rem;
  --pad-x: 1.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--f-mono);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: var(--pad-y) var(--pad-x);
  border: 2px solid transparent;
  position: relative;
  transition: transform .25s var(--ease), background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary {
  background: var(--red);
  color: #fff;
}
.btn--primary:hover { background: var(--red-hover); }

.btn--ghost {
  border-color: var(--line);
  color: var(--text);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--text); }

.btn--block { display: flex; width: 100%; justify-content: center; }

/* arrow link */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--f-mono);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 2px solid var(--red);
  padding-bottom: 4px;
  transition: gap .25s var(--ease), color .2s;
}
.arrow-link:hover { gap: 1.1em; color: var(--red); }
.arrow-link svg { width: 15px; height: 15px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background .3s, border-color .3s, height .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(13,13,13,0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
  height: 64px;
}
.nav__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
}

.brand {
  font-family: var(--f-head);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.05em;
  text-transform: lowercase;
}
.brand .zero {
  color: var(--red);
  position: relative;
  display: inline-block;
}
.brand:hover .zero { animation: jitter .4s steps(2) 1; }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.4rem);
}
.nav__link {
  font-family: var(--f-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  padding: 0.4em 0;
  transition: color .2s;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--red);
  transition: width .28s var(--ease);
}
.nav__link:hover,
.nav__link[aria-current="page"] { color: var(--text); }
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { width: 100%; }

.nav__cta { display: inline-flex; }
.nav__cta .btn { --pad-y: 0.7rem; --pad-x: 1.2rem; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  z-index: 1002;
}
.nav__toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--text);
  transition: transform .3s var(--ease), opacity .2s;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* mobile full-screen menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--gutter);
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  visibility: hidden;
}
.mobile-menu.open { transform: translateX(0); visibility: visible; }
.mobile-menu::before {
  content: "0BLOCK";
  position: absolute;
  bottom: 4vh; right: -2vw;
  font-family: var(--f-display);
  font-size: 28vw;
  color: var(--surface-1);
  z-index: -1;
  line-height: 0.8;
  pointer-events: none;
}
.mobile-menu a {
  font-family: var(--f-display);
  text-transform: uppercase;
  font-size: clamp(2.6rem, 11vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--text);
  padding: 0.1em 0;
  display: flex;
  align-items: baseline;
  gap: 0.5em;
  transition: color .2s, transform .3s var(--ease);
}
.mobile-menu a .idx {
  font-family: var(--f-mono);
  font-size: 0.9rem;
  color: var(--red);
  letter-spacing: 0;
}
.mobile-menu a:hover { color: var(--red); transform: translateX(10px); }
.mobile-menu .btn { margin-top: var(--s-4); align-self: flex-start; }

body.menu-open { overflow: hidden; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  opacity: 0.55;
}
.hero::before { /* vignette + red bleed */
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 80% at 85% 10%, rgba(255,43,43,0.12), transparent 55%),
    linear-gradient(180deg, transparent 40%, var(--bg) 100%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; width: 100%; }

.hero__tag {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.8em;
  margin-bottom: var(--s-4);
}
.hero__tag .dot {
  width: 9px; height: 9px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255,43,43,0.6);
  animation: pulse 2.2s infinite;
}

.hero__headline {
  font-family: var(--f-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(3.4rem, 13vw, 12rem);
  line-height: 0.84;
  letter-spacing: -0.005em;
  margin-bottom: var(--s-4);
}
.hero__headline .line { display: block; overflow: hidden; }
.hero__headline .line > span {
  display: inline-block;
  transform: translateY(110%);
  animation: rise 0.9s var(--ease) forwards;
}
.hero__headline .line:nth-child(2) > span { animation-delay: .12s; }
.hero__headline .line:nth-child(3) > span { animation-delay: .24s; }
.hero__headline .red { color: var(--red); position: relative; }

.hero__sub {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  max-width: 56ch;
  margin-bottom: var(--s-5);
  line-height: 1.55;
  opacity: 0;
  animation: fade .8s ease .5s forwards;
}
.hero__sub strong { color: var(--text); font-weight: 600; }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  opacity: 0;
  animation: fade .8s ease .65s forwards;
}

.hero__meta {
  position: absolute;
  bottom: clamp(1.5rem, 4vh, 3rem);
  left: var(--gutter);
  right: var(--gutter);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--s-3);
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  border-top: 1px solid var(--line);
  padding-top: var(--s-2);
  opacity: 0;
  animation: fade .8s ease .9s forwards;
}
.hero__meta span { display: inline-flex; align-items: center; gap: 0.6em; }
.hero__meta .hl { color: var(--text); }
.scrollcue { display: flex; align-items: center; gap: 0.6em; }
.scrollcue svg { width: 14px; animation: nudge 1.8s var(--ease) infinite; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--red);
  color: #fff;
  overflow: hidden;
  border-block: 2px solid #000;
  padding-block: 0.85rem;
  position: relative;
}
.marquee--dark { background: #000; color: var(--text); border-color: var(--line); }
.marquee__track {
  display: flex;
  width: max-content;
  animation: scroll-x 32s linear infinite;
}
.marquee--rev .marquee__track { animation-direction: reverse; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 2.2vw, 1.8rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding-inline: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  white-space: nowrap;
}
.marquee__track span::after {
  content: "";
  width: 8px; height: 8px;
  background: currentColor;
  transform: rotate(45deg);
  display: inline-block;
}
.marquee--dark .marquee__track span { color: var(--text); }
.marquee--dark .marquee__track .red { color: var(--red); }

/* ============================================================
   TRUST BAR (client wordmarks)
   ============================================================ */
.trust { border-bottom: 1px solid var(--line); background: var(--surface-1); }
.trust__head {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  text-align: center;
  margin-bottom: var(--s-4);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.wordmark {
  background: var(--surface-1);
  padding: 1.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(0.95rem, 1.4vw, 1.25rem);
  letter-spacing: -0.01em;
  color: var(--faint);
  transition: color .25s, background .25s;
  text-align: center;
}
.wordmark:hover { color: var(--text); background: var(--surface-2); }
.wordmark .acc { color: var(--red); }

/* ============================================================
   STATS
   ============================================================ */
.stats { background: var(--bg); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}
.stat {
  background: var(--bg);
  padding: clamp(1.5rem, 3vw, 2.6rem);
  position: relative;
  transition: background .3s;
}
.stat:hover { background: var(--surface-1); }
.stat:hover::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 28px; height: 28px;
  border-top: 2px solid var(--red);
  border-left: 2px solid var(--red);
}
.stat__num {
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--text);
  display: flex;
  align-items: baseline;
}
.stat__num .suffix { color: var(--red); font-size: 0.55em; margin-left: 0.05em; }
.stat__num.glitch:hover { animation: glitch .3s steps(2) 2; }
.stat__label {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: var(--s-2);
  line-height: 1.4;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.svc-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--s-5);
  align-items: end;
  margin-bottom: var(--s-6);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.svc-card {
  background: var(--surface-1);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  min-height: 320px;
  position: relative;
  transition: background .3s;
  overflow: hidden;
}
.svc-card::after { /* red sweep on hover */
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.svc-card:hover { background: var(--surface-2); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-card__idx {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--red);
}
.svc-card__icon {
  width: 46px; height: 46px;
  color: var(--text);
  margin-bottom: var(--s-1);
}
.svc-card__icon svg { width: 100%; height: 100%; }
.svc-card:hover .svc-card__icon { color: var(--red); }
.svc-card h3 {
  font-family: var(--f-head);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.35rem;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.svc-card p { color: var(--muted); font-size: 0.95rem; flex: 1; }
.svc-card .arrow-link { margin-top: auto; }

/* ============================================================
   METHODOLOGY
   ============================================================ */
.method { background: var(--surface-1); border-block: 1px solid var(--line); }
.method__list { counter-reset: phase; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.phase {
  background: var(--bg);
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: var(--s-4);
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.4rem) clamp(1.5rem, 3vw, 2.6rem);
  transition: background .3s, padding-left .3s var(--ease);
}
.phase:hover { background: var(--surface-1); padding-left: clamp(2rem, 4vw, 3.4rem); }
.phase__no {
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  line-height: 1;
  color: var(--surface-3);
  transition: color .3s;
}
.phase:hover .phase__no { color: var(--red); }
.phase__body h3 {
  font-family: var(--f-head);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: -0.005em;
  margin-bottom: 0.3em;
}
.phase__body p { color: var(--muted); font-size: 0.96rem; max-width: 70ch; }
.phase__tag {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  white-space: nowrap;
}
.method__std {
  margin-top: var(--s-4);
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-align: center;
}
.method__std b { color: var(--text); }

/* ============================================================
   FEATURED CASE STUDY
   ============================================================ */
.feature {
  position: relative;
  background:
    linear-gradient(120deg, var(--surface-2), var(--surface-1));
  border: 1px solid var(--line);
  overflow: hidden;
}
.feature__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
}
.feature__main {
  padding: clamp(2rem, 5vw, 4.5rem);
  position: relative;
  border-right: 1px solid var(--line);
}
.feature__kicker {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--s-3);
  display: flex; gap: 0.8em; align-items: center;
}
.feature__kicker .crit {
  background: var(--red);
  color: #fff;
  padding: 0.2em 0.7em;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.feature__title {
  font-family: var(--f-display);
  text-transform: uppercase;
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  line-height: 0.95;
  margin-bottom: var(--s-3);
}
.feature__title .red { color: var(--red); }
.feature__text { color: var(--muted); max-width: 60ch; margin-bottom: var(--s-3); }
.feature__text strong { color: var(--text); }
.feature__side {
  padding: clamp(1.6rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--s-3);
  background: rgba(0,0,0,0.25);
}
.feature__stat { border-left: 3px solid var(--red); padding-left: var(--s-2); }
.feature__stat .v {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 0.95;
}
.feature__stat .k {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quotes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.quote {
  background: var(--surface-1);
  padding: clamp(1.8rem, 3.5vw, 3rem);
  position: relative;
  transition: background .3s;
}
.quote:hover { background: var(--surface-2); }
.quote__mark {
  font-family: var(--f-display);
  font-size: 4rem;
  line-height: 0.5;
  color: var(--red);
  height: 0.5em;
  display: block;
  margin-bottom: var(--s-3);
}
.quote p {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.5;
  color: var(--text);
  margin-bottom: var(--s-3);
}
.quote cite {
  font-family: var(--f-mono);
  font-style: normal;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}

/* ============================================================
   ACCREDITATIONS STRIP
   ============================================================ */
.accred { background: var(--surface-1); border-block: 1px solid var(--line); }
.accred__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--s-3) var(--s-5); }
.accred__item {
  font-family: var(--f-mono);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  transition: color .2s;
}
.accred__item::before { content: "▸"; color: var(--red); }
.accred__item:hover { color: var(--text); }

/* ============================================================
   CTA BAND
   ============================================================ */
.ctaband {
  position: relative;
  background: var(--red);
  color: #fff;
  overflow: hidden;
  text-align: center;
}
.ctaband::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(0,0,0,0.06) 0 18px, transparent 18px 36px);
  pointer-events: none;
}
.ctaband__inner { position: relative; z-index: 1; padding-block: clamp(3rem, 8vw, 6rem); }
.ctaband h2 {
  font-family: var(--f-display);
  text-transform: uppercase;
  font-size: clamp(2.4rem, 7vw, 6rem);
  line-height: 0.9;
  margin-bottom: var(--s-3);
}
.ctaband p {
  font-size: 1.1rem;
  max-width: 50ch;
  margin: 0 auto var(--s-4);
  opacity: 0.92;
}
.ctaband .btn--primary { background: #000; }
.ctaband .btn--primary:hover { background: #161616; }
.ctaband .btn--ghost { border-color: rgba(255,255,255,0.45); color: #fff; }
.ctaband .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.ctaband__cta { display: flex; gap: var(--s-2); justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #0a0a0a; border-top: 1px solid var(--line); padding-top: clamp(3rem, 6vw, 5rem); }
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: var(--s-5) var(--s-4);
  padding-bottom: var(--s-6);
  border-bottom: 1px solid var(--line);
}
.footer__brand .brand { font-size: 2rem; }
.footer__brand p { color: var(--muted); font-size: 0.92rem; max-width: 38ch; margin-top: var(--s-2); }
.footer__pgp {
  margin-top: var(--s-3);
  font-family: var(--f-mono);
  font-size: 0.66rem;
  color: var(--faint);
  letter-spacing: 0.04em;
  border: 1px solid var(--line);
  padding: 0.7rem 0.9rem;
  max-width: 34ch;
  line-height: 1.6;
  word-break: break-word;
}
.footer__pgp b { color: var(--red); display: block; letter-spacing: 0.1em; }
.footer__col h4 {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: var(--s-3);
}
.footer__col ul { display: grid; gap: 0.7rem; }
.footer__col a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color .2s, padding-left .2s;
  display: inline-flex; align-items: center; gap: 0.5em;
}
.footer__col a:hover { color: var(--red); padding-left: 4px; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-2);
  padding-block: var(--s-4);
  font-family: var(--f-mono);
  font-size: 0.7rem;
  color: var(--faint);
  letter-spacing: 0.04em;
}
.footer__bottom .legal { max-width: 70ch; line-height: 1.6; }
.footer__bottom .legal b { color: var(--muted); }
.footer__social { display: flex; gap: var(--s-2); }
.footer__social a {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--muted);
  transition: color .2s, border-color .2s, background .2s;
}
.footer__social a:hover { color: #fff; border-color: var(--red); background: var(--red); }
.footer__social svg { width: 16px; height: 16px; }
.footer__fineprint {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  color: var(--faint);
  letter-spacing: 0.04em;
  padding-bottom: var(--s-4);
  font-style: italic;
}

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.pagehead {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(2.5rem, 7vw, 6rem));
  padding-bottom: clamp(2.5rem, 6vw, 5rem);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background:
    radial-gradient(80% 120% at 90% 0%, rgba(255,43,43,0.08), transparent 60%),
    var(--bg);
}
.pagehead::before { /* giant ghost word */
  content: attr(data-ghost);
  position: absolute;
  bottom: -3vw; right: -1vw;
  font-family: var(--f-display);
  font-size: clamp(8rem, 26vw, 24rem);
  line-height: 0.7;
  color: var(--surface-1);
  z-index: 0;
  pointer-events: none;
  letter-spacing: -0.01em;
}
.pagehead__inner { position: relative; z-index: 1; }
.pagehead h1 {
  font-family: var(--f-display);
  text-transform: uppercase;
  font-size: clamp(2.8rem, 9vw, 7rem);
  line-height: 0.88;
  letter-spacing: 0.003em;
}
.pagehead h1 .red { color: var(--red); }
.pagehead .lede { margin-top: var(--s-3); }
.breadcrumb {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: var(--s-3);
  display: flex; gap: 0.6em; align-items: center;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { color: var(--red); }

/* ============================================================
   SERVICES PAGE — detail pillars
   ============================================================ */
.pillar {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--line);
  align-items: start;
  scroll-margin-top: 90px;
}
.pillar:nth-child(even) .pillar__media { order: 2; }
.pillar__media {
  position: sticky;
  top: 100px;
}
.pillar__no {
  font-family: var(--f-display);
  font-size: clamp(5rem, 12vw, 11rem);
  line-height: 0.8;
  color: var(--surface-2);
  -webkit-text-stroke: 1px var(--line);
}
.pillar__icon {
  width: 64px; height: 64px;
  color: var(--red);
  margin: var(--s-3) 0;
}
.pillar__media h2 {
  font-family: var(--f-head);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.01em;
}
.pillar__body > p { color: var(--muted); font-size: 1.05rem; margin-bottom: var(--s-3); }
.pillar__body strong { color: var(--text); }
.pillar__meta {
  border: 1px solid var(--line);
  background: var(--surface-1);
  padding: var(--s-3);
  margin-top: var(--s-3);
}
.pillar__meta dt {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.4em;
}
.pillar__meta dd { color: var(--muted); font-size: 0.92rem; margin-bottom: var(--s-3); }
.pillar__meta dd:last-child { margin-bottom: 0; }
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: var(--s-2); }
.chip {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 0.4em 0.8em;
  background: var(--bg);
  transition: color .2s, border-color .2s;
}
.chip:hover { color: var(--red); border-color: var(--red); }

/* engagement tiers */
.tiers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.tier {
  background: var(--surface-1);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  position: relative;
  transition: background .3s, transform .3s var(--ease);
}
.tier:hover { background: var(--surface-2); }
.tier--featured { background: var(--surface-2); }
.tier--featured::before {
  content: "POPULAR";
  position: absolute; top: 0; right: 0;
  background: var(--red);
  color: #fff;
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  padding: 0.35em 0.7em;
}
.tier h3 {
  font-family: var(--f-head);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
}
.tier__price {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}
.tier p { color: var(--muted); font-size: 0.93rem; flex: 1; }
.tier .btn { margin-top: var(--s-2); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.story__lead {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.story__lead .red { color: var(--red); }
.story__body p { color: var(--muted); margin-bottom: var(--s-3); }
.story__body p strong { color: var(--text); }

.bigstat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.bigstat {
  background: var(--bg);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  text-align: center;
}
.bigstat .v {
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 0.9;
}
.bigstat .v .suffix { color: var(--red); }
.bigstat .k {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: var(--s-2);
}

/* values */
.values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.value {
  background: var(--surface-1);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  transition: background .3s;
}
.value:hover { background: var(--surface-2); }
.value__no { font-family: var(--f-mono); font-size: 0.78rem; color: var(--red); letter-spacing: 0.12em; }
.value h3 {
  font-family: var(--f-head);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.3rem;
  margin: 0.5em 0 0.3em;
}
.value p { color: var(--muted); font-size: 0.95rem; }

/* team */
.team__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.member {
  background: var(--surface-1);
  padding: clamp(1.4rem, 2.5vw, 2rem);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background .3s;
  overflow: hidden;
}
.member:hover { background: var(--surface-2); }
.member__avatar {
  width: 56px; height: 56px;
  border: 2px solid var(--red);
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-size: 1.6rem;
  color: var(--red);
  margin-bottom: var(--s-3);
}
.member__handle {
  font-family: var(--f-mono);
  font-size: 1.05rem;
  color: var(--text);
  letter-spacing: 0.02em;
}
.member__handle::before { content: "@"; color: var(--red); }
.member__role {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0.4em 0 0.8em;
}
.member__bio { color: var(--muted); font-size: 0.85rem; flex: 1; }
.member__certs {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  color: var(--faint);
  margin-top: var(--s-2);
  padding-top: var(--s-2);
  border-top: 1px solid var(--line);
}

.creds-bar {
  font-family: var(--f-mono);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-align: center;
  margin-top: var(--s-4);
  line-height: 1.9;
}
.creds-bar .c { color: var(--text); margin-inline: 0.3em; }

.compliance__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.comp {
  background: var(--surface-1);
  padding: var(--s-3);
  text-align: center;
  font-family: var(--f-mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s, background .2s;
}
.comp:hover { color: var(--red); background: var(--surface-2); }

/* ============================================================
   RESEARCH PAGE
   ============================================================ */
.cs-list { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.cs {
  background: var(--surface-1);
  padding: clamp(1.8rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 0.4fr 1.6fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  transition: background .3s;
  position: relative;
}
.cs:hover { background: var(--surface-2); }
.cs__aside { border-left: 3px solid var(--red); padding-left: var(--s-3); }
.cs__id {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.9;
}
.cs__cat {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: var(--s-2);
}
.cs__sev {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  background: var(--red);
  color: #fff;
  padding: 0.3em 0.7em;
  margin-top: var(--s-3);
  font-weight: 700;
}
.cs__body h3 {
  font-family: var(--f-head);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: var(--s-3);
}
.cs__row { margin-bottom: var(--s-2); }
.cs__row dt {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.3em;
}
.cs__row dd { color: var(--muted); font-size: 0.98rem; }
.cs__row dd strong { color: var(--text); }
.cs__outcome {
  border-top: 1px solid var(--line);
  margin-top: var(--s-3);
  padding-top: var(--s-3);
}
.cs__outcome dd { color: var(--text); }

/* research posts */
.posts__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.post {
  background: var(--surface-1);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  transition: background .3s;
  position: relative;
  min-height: 230px;
}
.post:hover { background: var(--surface-2); }
.post::before {
  content: "";
  position: absolute; left: 0; top: 0;
  width: 3px; height: 0;
  background: var(--red);
  transition: height .35s var(--ease);
}
.post:hover::before { height: 100%; }
.post__cat {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex; align-items: center; gap: 0.5em;
}
.post__no { color: var(--faint); }
.post h3 {
  font-family: var(--f-head);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.3rem;
  line-height: 1.05;
  letter-spacing: -0.005em;
}
.post p { color: var(--muted); font-size: 0.93rem; flex: 1; }
.post__read {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
}
.post:hover .post__read { color: var(--red); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.form { border: 1px solid var(--line); background: var(--surface-1); padding: clamp(1.6rem, 4vw, 3rem); position: relative; }
.field { margin-bottom: var(--s-3); }
.field label {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6em;
}
.field label .req { color: var(--red); }
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 1rem;
  padding: 0.9rem 1rem;
  transition: border-color .2s, background .2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: var(--surface-2);
}
.field textarea { resize: vertical; min-height: 140px; }
.field select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ff2b2b' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.field-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }
.form__note {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  color: var(--faint);
  margin-top: var(--s-3);
  display: flex; align-items: center; gap: 0.5em;
}
.form__note svg { width: 14px; color: var(--red); }

.form__success {
  display: none;
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem) var(--s-3);
}
.form__success.show { display: block; animation: fade .5s ease; }
.form__success .ic {
  width: 64px; height: 64px;
  border: 2px solid var(--red);
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto var(--s-3);
  color: var(--red);
}
.form__success .ic svg { width: 32px; height: 32px; }
.form__success h3 {
  font-family: var(--f-head);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.6rem;
  margin-bottom: var(--s-2);
}
.form__success p { color: var(--muted); max-width: 42ch; margin: 0 auto; }

.contact-info { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.info-block {
  background: var(--surface-1);
  padding: clamp(1.4rem, 3vw, 2rem);
}
.info-block h3 {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--s-2);
}
.info-block a, .info-block p { color: var(--text); font-size: 1rem; }
.info-block a:hover { color: var(--red); }
.info-block .sub { color: var(--muted); font-size: 0.88rem; margin-top: 0.3em; }
.info-block .pgp {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  color: var(--muted);
  word-break: break-word;
  line-height: 1.7;
  margin-top: var(--s-1);
}
.offices { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--s-2); margin-top: var(--s-1); }
.office .city { font-family: var(--f-head); font-weight: 800; text-transform: uppercase; font-size: 1.1rem; }
.office .cc { font-family: var(--f-mono); font-size: 0.68rem; color: var(--red); letter-spacing: 0.1em; }

/* generic 2-col info / industries */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.tag-cloud .chip { font-size: 0.78rem; padding: 0.55em 1em; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .40s; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes rise { to { transform: translateY(0); } }
@keyframes fade { to { opacity: 1; } }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,43,43,0.6); }
  70% { box-shadow: 0 0 0 12px rgba(255,43,43,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,43,43,0); }
}
@keyframes nudge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }
@keyframes jitter {
  0% { transform: translate(0,0); }
  25% { transform: translate(-2px,1px); }
  50% { transform: translate(2px,-1px); }
  75% { transform: translate(-1px,-1px); }
  100% { transform: translate(0,0); }
}
@keyframes glitch {
  0% { text-shadow: 2px 0 var(--red), -2px 0 #00e5ff; transform: translate(0); }
  25% { text-shadow: -2px 0 var(--red), 2px 0 #00e5ff; transform: translate(1px,-1px); }
  50% { text-shadow: 2px 0 var(--red), -2px 0 #00e5ff; transform: translate(-1px,1px); }
  100% { text-shadow: none; transform: translate(0); }
}

/* glitch hover for links/titles */
.glitch-hover { position: relative; }
.glitch-hover:hover { animation: glitch .3s steps(2) 2; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .team__grid { grid-template-columns: repeat(3, 1fr); }
  .tiers__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  body { font-size: 16px; }
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .svc-head { grid-template-columns: 1fr; gap: var(--s-3); }
  .feature__grid { grid-template-columns: 1fr; }
  .feature__main { border-right: none; border-bottom: 1px solid var(--line); }
  .quotes__grid { grid-template-columns: 1fr; }
  .phase { grid-template-columns: 70px 1fr; }
  .phase__tag { grid-column: 2; }

  .pillar { grid-template-columns: 1fr; }
  .pillar:nth-child(even) .pillar__media { order: 0; }
  .pillar__media { position: static; }
  .story { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cs { grid-template-columns: 1fr; }
  .cs__aside { border-left: none; border-top: 3px solid var(--red); padding-left: 0; padding-top: var(--s-2); display: flex; align-items: baseline; gap: var(--s-3); flex-wrap: wrap; }
  .posts__grid { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr; }
  .bigstat-row { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  :root { --nav-h: 64px; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .tiers__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .field-2 { grid-template-columns: 1fr; }
  .offices { grid-template-columns: 1fr; }
  .hero__meta { flex-direction: column; align-items: flex-start; gap: 0.5em; }
  .hero__meta .scrollcue { display: none; }
}

@media (max-width: 420px) {
  .stats__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr; }
}
