/* ═══════════════════════════════════════════════
   IGM PROFESSIONAL — WOW REBUILD
   ═══════════════════════════════════════════════ */

:root {
  --black:   #080808;
  --white:   #f0ede8;
  --red:     #cc1122;
  --red-2:   #991018;
  --graphite:#111111;
  --g1:      #181818;
  --g2:      #242424;
  --g3:      #383838;
  --g4:      #666;
  --g5:      #999;

  --font: 'Inter', system-ui, sans-serif;
  --serif: 'Playfair Display', Georgia, serif;
  --expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Base ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { background: none; border: none; font-family: inherit; cursor: none; }
::selection { background: var(--red); color: var(--white); }
.counter-strip ::selection,
.red-band ::selection,
.stmt-v2 ::selection,
.sp-bg--8 ::selection,
.ai4-approach-band ::selection,
.web4-band ::selection,
.price-card.featured ::selection,
.pg-cta ::selection { background: #000; color: #fff; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-thumb { background: var(--g2); }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

.container { max-width: 1320px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 768px) { .container { padding: 0 24px; } }

/* ── PRELOADER ─────────────────────────────── */
#preloader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.pre-logo img {
  height: 36px;
  filter: brightness(0) invert(1);
  opacity: .4;
}
.pre-bar {
  width: 200px; height: 1px;
  background: var(--g2);
}
.pre-fill {
  height: 100%;
  width: 0;
  background: var(--red);
  transition: width .05s linear;
}
.pre-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--g4);
}

/* ── CURSOR ────────────────────────────────── */
#cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 8999;
  --cursor-ring-size: 36px;
}
.c-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--red);
  position: absolute;
  opacity: 0;
  will-change: transform, opacity;
}
.c-ring {
  width: var(--cursor-ring-size); height: var(--cursor-ring-size);
  border-radius: 50%;
  border: 1.5px solid rgba(204,17,34,.55);
  background: transparent;
  position: absolute;
  opacity: 0;
  will-change: transform, opacity;
  transition: width .28s var(--expo), height .28s var(--expo), border-color .3s, opacity .2s;
}
.c-label {
  position: absolute;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
  opacity: 0;
  transition: opacity .2s;
  will-change: transform, opacity;
}
body.c-hover #cursor { --cursor-ring-size: 64px; }
body.c-hover .c-ring { border-color: rgba(204,17,34,.8); }
body.c-hover .c-label { opacity: 1; }
body.c-on-red .c-dot { background: #000; }
body.c-on-red .c-ring { border-color: rgba(0,0,0,.8); }
body.c-on-red.c-hover .c-ring { border-color: rgba(0,0,0,.8); }

/* ── COUNTER STRIP (red kpi strip) — canonical num/label/case style ── */
.counter-strip .cs-num { font-size: clamp(28px,3.5vw,52px); font-weight: 900; line-height: 1; color: #fff; letter-spacing: -0.03em; }
.counter-strip .cs-lbl { font-size: 11px; color: rgba(255,255,255,.7); margin-top: 10px; line-height: 1.4; text-transform: uppercase; letter-spacing: .08em; }
.counter-strip .cs-case { font-size: 11px; color: rgba(255,255,255,.45); margin-top: 4px; line-height: 1.4; }

/* ── CURSOR PREVIEW (Refokus style) ───────── */
#cursorPreview {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 8998;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .3s;
}
#cursorPreview.visible { opacity: 1; }
.cp-inner {
  width: 220px; height: 140px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--g1);
}

/* ── NAV ───────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: background .4s, border-color .4s;
}
#nav.scrolled {
  background: rgba(8,8,8,.88);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 34px;
  display: block;
  filter: brightness(0) invert(1)
          drop-shadow(0 0 6px rgba(204,17,34,.35))
          drop-shadow(0 0 18px rgba(204,17,34,.18));
  animation: logoGlow 3.2s ease-in-out infinite;
  transition: filter .4s ease, transform .3s ease;
}
.nav-logo:hover img {
  filter: brightness(0) invert(1)
          drop-shadow(0 0 10px rgba(204,17,34,.7))
          drop-shadow(0 0 28px rgba(204,17,34,.4));
  transform: scale(1.03);
  animation: none;
}

@keyframes logoGlow {
  0%, 100% {
    filter: brightness(0) invert(1)
            drop-shadow(0 0 5px rgba(204,17,34,.3))
            drop-shadow(0 0 14px rgba(204,17,34,.14));
  }
  50% {
    filter: brightness(0) invert(1)
            drop-shadow(0 0 9px rgba(204,17,34,.5))
            drop-shadow(0 0 24px rgba(204,17,34,.25));
  }
}
/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--g4);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 2px;
  transition: color .2s;
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link--ask {
  color: rgba(204,17,34,.75);
  font-size: 10px;
}
.nav-link--ask:hover { color: var(--red); }

/* Services dropdown */
.nav-dropdown { position: relative; }
.nav-link--dd svg { transition: transform .25s; }
.nav-dropdown.open .nav-link--dd svg { transform: rotate(180deg); }

.nav-dd-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(14,14,14,.97);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 4px;
  padding: 8px;
  min-width: 260px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s, transform .22s;
  backdrop-filter: blur(20px);
}
.nav-dropdown.open .nav-dd-panel {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dd-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: 3px;
  text-decoration: none;
  transition: background .18s;
}
.nav-dd-item:hover { background: rgba(255,255,255,.05); }
.ndi-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--red);
  flex-shrink: 0;
  width: 18px;
}
.ndi-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: .01em;
}

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(240,237,232,.28);
  margin-right: 4px;
  pointer-events: none;
}

/* Mobile service links */
.mob-svc-group { padding: 0 0 8px; }
.mob-link--label { opacity: .4; font-size: 10px; pointer-events: none; }
.mob-svc-link {
  display: block;
  padding: 7px 0 7px 20px;
  font-size: 14px;
  font-weight: 400;
  color: var(--g5);
  text-decoration: none;
  letter-spacing: .04em;
  transition: color .2s;
}
.mob-svc-link:hover { color: var(--white); }
.nav-cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.15);
  padding: 10px 20px;
  border-radius: 2px;
  transition: border-color .2s, background .2s;
}
.nav-cta:hover { border-color: var(--red); background: var(--red); }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
}
.burger span {
  display: block;
  height: 1.5px;
  background: var(--white);
  transition: all .3s;
}
@media (max-width: 900px) { .nav-cta { display: none; } .burger { display: flex; } .nav-links { display: none; } #nav { padding: 0 24px; } }

/* Mobile menu */
.mob-menu {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 400;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  clip-path: circle(0% at 95% 4%);
  transition: clip-path .7s var(--expo);
}
.mob-menu.open { clip-path: circle(150% at 95% 4%); }
.mob-menu-inner { display: flex; flex-direction: column; gap: 8px; }
.mob-link {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--g3);
  display: flex;
  align-items: baseline;
  gap: 16px;
  transition: color .2s;
}
.mob-link::before {
  content: attr(data-n);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--g3);
}
.mob-link:hover { color: var(--white); }
.mob-menu-footer {
  position: absolute;
  bottom: 40px;
  font-size: 13px;
  color: var(--g4);
}

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Ambient bg glow */
.hero-bg-morph {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 72% 35%, rgba(204,17,34,.2) 0%, transparent 65%),
    radial-gradient(ellipse 40% 35% at 20% 80%, rgba(204,17,34,.07) 0%, transparent 70%),
    radial-gradient(circle 180px at 55% 50%, rgba(204,17,34,.05) 0%, transparent 100%);
  pointer-events: none;
}

/* CSS grid (replaces canvas) */
.hero-grid-css {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: repeat(30, 1fr);
  pointer-events: none;
  opacity: .28;
}
.hgc {
  border: 1px solid rgba(255,255,255,.07);
  transition: background .5s, border-color .5s;
}
.hgc.lit {
  background: rgba(204,17,34,.85);
  border-color: rgba(204,17,34,.7);
  transition: background .1s, border-color .1s;
}

.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 136px 72px 0;
  max-width: 1680px;
  margin: 0 auto;
  width: 100%;
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--g4);
  margin-bottom: 56px;
  opacity: 0;
}
.dot-red {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* Hero title — perspective removed (caused subpixel jitter with GSAP transforms) */
.hero-h1 {
  font-size: clamp(72px, 8.8vw, 168px);
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.055em;
  margin-bottom: 0;
  max-width: 1120px;
}
.ht-line {
  display: block;
  overflow: hidden;
  padding-bottom: .24em;
  margin-bottom: -.16em;
}
.ht-line--mix { display: flex; align-items: baseline; gap: .14em; flex-wrap: wrap; }
.ht-line--sub { padding-left: 0.42em; }
.ht-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(56px);
}
.ht-word--grey { color: var(--g3); }
.ht-word--outline {
  -webkit-text-stroke: 1.5px var(--red);
  color: transparent;
  paint-order: stroke fill;
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 100px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
}
.hs-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, transparent, var(--g3));
}
.hero-scroll span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--g4);
  writing-mode: vertical-rl;
}

/* Hero stats */
.hero-stats {
  position: relative; z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 48px 48px;
  max-width: 1680px;
  margin: 0 auto;
  width: 100%;
  opacity: 0;
  border-top: 1px solid rgba(255,255,255,.05);
  margin-top: auto;
}
.hstat { flex: 1; padding: 28px 32px 0; }
.hstat:first-child { padding-left: 0; }
.hstat-n {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.hstat-n em { font-style: normal; color: var(--red); font-size: .75em; }
.hstat-l {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--g4);
}
.hstat-sep {
  width: 1px; height: 44px;
  background: rgba(255,255,255,.07);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .hero-inner {
    padding: 112px 24px 0;
  }
  .hero-tag {
    margin-bottom: 40px;
    line-height: 1.5;
  }
  .hero-h1 {
    font-size: clamp(56px, 17vw, 86px);
    line-height: .86;
    max-width: 100%;
  }
  .ht-line--sub {
    padding-left: 0.28em;
  }
  .hero-stats { flex-wrap: wrap; gap: 0; }
  .hstat { flex: 1 1 45%; padding: 20px 12px 0; }
  .hstat-sep { display: none; }
}

/* ═══════════════════════════════════
   MARQUEE
═══════════════════════════════════ */
.marquee-outer {
  overflow: hidden;
  background: var(--g1);
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
  padding: 16px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  animation: marqueeScroll 30s linear infinite;
  will-change: transform;
}
.marquee-outer:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-track span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--g4);
}
.marquee-track b {
  font-size: 8px;
  color: var(--red);
  font-weight: 400;
}

/* ═══════════════════════════════════
   ABOUT — scroll story
═══════════════════════════════════ */
.about-section {
  height: 400vh;
}
.about-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.about-sticky {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 100vh;
}
.about-text-col {
  padding: 80px 64px 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: var(--graphite);
  position: relative;
}
.about-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--g4);
  margin-bottom: 56px;
}
.about-slides {
  position: relative;
  min-height: 480px;
}
.aslide {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  pointer-events: none;
  /* transition handled by JS for scroll-tied feel */
}
.aslide.active {
  pointer-events: auto;
}
.aslide h2 {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.05;
  margin-bottom: 28px;
}
.aslide h2 em {
  font-style: italic;
  font-family: var(--serif);
  font-weight: 700;
  color: var(--red);
}
.aslide p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--g5);
  max-width: 420px;
  margin-bottom: 12px;
}

.about-visual-col {
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-visual { width: 100%; height: 100%; position: relative; }
.av-item {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .6s;
}
.av-item.active { opacity: 1; }

/* Geometric shapes for about visuals */
.av-geo {
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(204,17,34,.15);
  position: relative;
}
.av-geo::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(204,17,34,.08);
}
.av-geo::after {
  content: '';
  position: absolute;
  inset: 50px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204,17,34,.1) 0%, transparent 70%);
}
.av-geo--1 { border-style: dashed; }
.av-geo--3 {
  width: 200px; height: 200px;
  border-radius: 0;
  transform: rotate(45deg);
  border-color: rgba(204,17,34,.2);
}
.av-geo--3::before { border-radius: 0; }

.av-num {
  font-size: 96px;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--white);
}
.av-num span { color: var(--red); font-size: .6em; }

/* Progress bar */
.about-progress {
  position: absolute;
  left: 0; top: 0;
  width: 3px;
  height: 100%;
  background: var(--g2);
}
.ap-fill {
  width: 100%;
  height: 0%;
  background: var(--red);
  transition: height .1s;
}

@media (max-width: 900px) {
  .about-sticky { grid-template-columns: 1fr; }
  .about-visual-col { display: none; }
  .about-text-col { padding: 80px 24px; }
}

/* ═══════════════════════════════════
   SERVICES — horizontal pin scroll
═══════════════════════════════════ */
.services-section {
  height: 500vh;
  background: var(--black);
}
.svc-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.svc-track {
  display: flex;
  width: 500vw;
  height: 100vh;
  will-change: transform;
}
.svc-panel {
  width: 100vw;
  height: 100vh;
  display: grid;
  grid-template-columns: 45fr 55fr;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.sp-bg--1 { background: var(--black); }
.sp-bg--2 { background: var(--graphite); }
.sp-bg--3 { background: var(--g1); }
.sp-bg--4 { background: var(--black); }
.sp-bg--5 { background: var(--graphite); }
.sp-bg--6 { background: var(--g1); }
.sp-bg--7 { background: var(--black); }
.sp-bg--8 { background: var(--red); }

/* ── Left ── */
.sp-left {
  padding: 148px 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  border-right: 1px solid rgba(255,255,255,.05);
}
.sp-eyebrow {
  position: absolute;
  top: 80px; left: 64px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--g4);
}
.sp-bg--8 .sp-eyebrow { color: rgba(255,255,255,.4); }

.sp-idx {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--red);
  margin-bottom: 20px;
}
.sp-bg--8 .sp-idx { color: rgba(255,255,255,.45); }

.sp-name {
  font-size: clamp(32px, 4.5vw, 72px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: .95;
  margin-bottom: 24px;
  color: var(--white);
}
.sp-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--g5);
  max-width: 380px;
  margin-bottom: 28px;
}
.sp-bg--8 .sp-desc { color: rgba(255,255,255,.65); }

/* ── Service panel: case study links ── */
.sp-cases-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--g4);
  margin-bottom: 10px;
}
.sp-bg--8 .sp-cases-label { color: rgba(255,255,255,.45); }
.sp-cases {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 4px;
}
.sp-case {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 16px;
  border: 1px solid rgba(255,255,255,.07);
  font-size: 13px;
  color: rgba(240,237,232,.48);
  text-decoration: none;
  transition: color .2s, border-color .2s, background .2s;
  line-height: 1.4;
  border-radius: 2px;
}
.sp-case::before {
  content: '→';
  color: var(--red);
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}
.sp-case:hover {
  color: var(--white);
  border-color: rgba(204,17,34,.3);
  background: rgba(204,17,34,.05);
}
.sp-bg--8 .sp-case { border-color: rgba(255,255,255,.15); color: rgba(255,255,255,.55); }
.sp-bg--8 .sp-case:hover { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.08); color: #fff; }

/* ── Service panel: Подробнее button in sp-right ── */
.sp-btn {
  position: absolute;
  bottom: 36px;
  right: 36px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 14px 26px;
  transition: background .2s, transform .25s;
}
.sp-btn:hover { background: #a50e1d; transform: translate(-3px, -3px); }
.sp-btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.sp-bg--8 .sp-btn { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.35); }
.sp-bg--8 .sp-btn:hover { background: rgba(255,255,255,.28); }

.sp-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.sp-price {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--white);
}
.sp-price em {
  font-style: normal;
  font-size: .7em;
  font-weight: 400;
  color: var(--g4);
}
.sp-bg--8 .sp-price em { color: rgba(255,255,255,.5); }
.sp-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.1);
  padding: 5px 12px;
  border-radius: 2px;
  color: var(--g4);
}
.sp-bg--8 .sp-badge { border-color: rgba(255,255,255,.3); color: rgba(255,255,255,.7); }

/* ── Right ── */
.sp-right {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spv-ghost {
  position: absolute;
  font-size: clamp(220px, 30vw, 420px);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(255,255,255,.045);
  color: transparent;
  user-select: none;
  right: -.05em;
  bottom: -.1em;
  pointer-events: none;
}
.sp-bg--8 .spv-ghost { -webkit-text-stroke-color: rgba(255,255,255,.1); }

/* SVG animated graphics — fills full right panel */
.svc-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  overflow: visible;
}
.svc-svg path,
.svc-svg circle,
.svc-svg line,
.svc-svg polyline {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Service text starts hidden — animated in per panel */
.sp-idx,
.sp-name,
.sp-desc { opacity: 0; }
.sp-eyebrow { opacity: 0; }

.spv-word {
  position: relative;
  z-index: 3;
  font-size: clamp(72px, 13vw, 180px);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: 1;
}
/* Stacked multi-line word (AEO/SEO/MAP) */
.spv-stack {
  display: flex;
  flex-direction: column;
  line-height: .9;
  font-size: clamp(56px, 9.5vw, 130px);
}
.spv-stack span { display: block; }
.spv-w--outline {
  -webkit-text-stroke: 2px var(--red);
  color: transparent;
}
.spv-w--red { color: var(--red); }
.spv-w--arrow {
  font-size: clamp(100px, 18vw, 240px);
  color: var(--red);
}
.spv-w--white-outline {
  -webkit-text-stroke: 2px rgba(255,255,255,.5);
  color: transparent;
}

/* ── Counter ── */
.svc-counter {
  position: absolute;
  bottom: 44px; left: 64px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  z-index: 10;
  pointer-events: none;
}
#svcCur {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--white);
  line-height: 1;
}
.sc-sep { font-size: 13px; color: var(--g3); }
.sc-tot { font-size: 13px; font-weight: 600; letter-spacing: .1em; color: var(--g4); }

/* ── Progress bar ── */
.svc-progbar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,.05);
  z-index: 10;
}
.svc-progbar-fill {
  height: 100%;
  width: 0;
  background: var(--red);
  transition: width .08s linear;
}

/* ── Hint ── */
.svc-hint {
  position: absolute;
  bottom: 40px; right: 64px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--g4);
  z-index: 10;
  pointer-events: none;
}
.svc-hint svg { width: 16px; height: 16px; }

@media (max-width: 900px) {
  .services-section { height: auto; }
  .svc-pin { position: relative; height: auto; }
  .svc-track { flex-direction: column; width: 100%; }
  .svc-panel { grid-template-columns: 1fr; height: auto; min-height: 60vh; }
  .sp-right { display: none; }
  .sp-left { padding: 80px 24px 60px; }
  .svc-counter, .svc-hint, .svc-progbar { display: none; }
}

/* Section labels + titles (shared) */
.sec-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--g4);
  margin-bottom: 28px;
}
.sec-h2 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1;
  margin-bottom: 40px;
}
.sec-h2 em {
  font-style: italic;
  font-family: var(--serif);
  font-weight: 700;
  color: var(--red);
}

/* ═══════════════════════════════════
   NUMBERS — reveal grid
═══════════════════════════════════ */
.numbers-section {
  padding: 140px 0 160px;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,.04);
}
.num-header { margin-bottom: 72px; }

.num-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.ng-item {
  background: var(--g1);
  padding: 56px 60px 56px;
  position: relative;
  overflow: hidden;
  --d: 0s;
  opacity: 0;
  transform: translateY(40px);
  cursor: default;
  transition: background .35s;
}
.ng-item--large { background: var(--graphite); }
.ng-item:hover { background: var(--g2); }
.ng-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(204,17,34,.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.ng-item:hover::after { opacity: 1; }

/* Red top accent line */
.ng-accent {
  position: absolute;
  top: 0; left: 60px;
  width: 1px; height: 52px;
  background: var(--red);
}

.ng-num {
  font-size: clamp(72px, 9vw, 132px);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: .88;
  color: var(--white);
  margin-bottom: 28px;
}
.ng-outline {
  -webkit-text-stroke: 3px var(--white);
  color: transparent;
}
.ng-red { color: var(--red); }

.ng-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--g4);
  margin-bottom: 10px;
}
.ng-sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--g5);
}

@media (max-width: 768px) {
  .num-grid { grid-template-columns: 1fr; }
  .ng-item { padding: 44px 28px; }
  .ng-accent { left: 28px; }
}

/* ═══════════════════════════════════
   STATEMENT
═══════════════════════════════════ */
.statement-section {
  background: var(--black);
}
.stmt-words {
  display: flex;
  flex-wrap: wrap;
  gap: .15em 0;
  font-size: clamp(52px, 8.5vw, 128px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: .97;
}
.stmt-words span,
#stmtWords span {
  display: inline;
  margin-right: .27em;
  color: rgba(255,255,255,.18);
  transition: color .6s;
}
.stmt-words span.lit,
#stmtWords span.lit { color: var(--white); }
#stmtWords span.sw-red { color: rgba(204,17,34,.2); }
#stmtWords span.sw-red.lit { color: var(--red); }

/* ═══════════════════════════════════
   TEAM
═══════════════════════════════════ */
.team-section { padding: 120px 0; background: var(--black); }
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin: 64px 0 2px;
}
.tm-card {
  background: var(--g1);
  display: flex;
  gap: 0;
  overflow: hidden;
  --d: 0s;
  opacity: 0;
  transform: translateY(40px);
}
.tm-avatar {
  width: 180px;
  flex-shrink: 0;
  background: var(--g2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  color: var(--red);
  letter-spacing: .05em;
  min-height: 260px;
  border: 2px solid var(--red);
  border-style: none none none solid;
  border-color: transparent;
  transition: border-color .3s;
}
.tm-card:hover .tm-avatar { border-color: var(--red); }
.tm-info { padding: 36px 32px; }
.tm-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.tm-info h3 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.tm-info p {
  font-size: 14px;
  color: var(--g5);
  line-height: 1.7;
  margin-bottom: 20px;
}
.tm-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tm-tags span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid var(--g2);
  padding: 4px 10px;
  border-radius: 2px;
  color: var(--g4);
  transition: border-color .2s, color .2s;
}
.tm-card:hover .tm-tags span { border-color: rgba(204,17,34,.3); color: var(--red); }

.tm-extra {
  background: var(--red);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  gap: 40px;
  opacity: 0;
  transform: translateY(40px);
}
.tme-num {
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  letter-spacing: -.04em;
  flex-shrink: 0;
}
.tme-num span { font-size: .5em; }
.tm-extra p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(240,237,232,.75);
}

/* Reveal classes */
.reveal { opacity: 0; transform: translateY(20px); }
.reveal-h { opacity: 0; }
.reveal-h .line { overflow: hidden; display: block; }
.reveal-h .line span { display: block; transform: translateY(110%); }
.reveal-up { opacity: 0; transform: translateY(40px); }

@media (max-width: 900px) {
  .team-grid { grid-template-columns: 1fr; }
  .tm-card { flex-direction: column; }
  .tm-avatar { width: 100%; min-height: 120px; }
  .tm-extra { flex-direction: column; gap: 16px; padding: 36px 24px; }
}

/* ═══════════════════════════════════
   CONTACT
═══════════════════════════════════ */
.contact-section { padding: 120px 0; background: var(--graphite); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
}
.contact-lead {
  font-size: 16px;
  font-weight: 300;
  color: var(--g5);
  line-height: 1.7;
  margin-bottom: 48px;
}
.contact-links { display: flex; flex-direction: column; margin-bottom: 40px; }
.clink {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: padding-left .3s var(--expo);
}
.clink:first-child { border-top: 1px solid rgba(255,255,255,.05); }
.clink:hover { padding-left: 14px; }
.cl-type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
}
.cl-val {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  transition: color .2s;
}
.clink:hover .cl-val { color: var(--red); }

/* Form */
.cform {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cf-field input,
.cf-field textarea,
.cf-field select {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  padding: 16px 18px;
  border-radius: 2px;
  outline: none;
  transition: border-color .2s;
  appearance: none;
}
.cf-field input::placeholder,
.cf-field textarea::placeholder { color: var(--g4); }
.cf-field input:focus,
.cf-field textarea:focus,
.cf-field select:focus { border-color: var(--red); }
.cf-field textarea { resize: none; min-height: 110px; }
.cf-field select option { background: var(--g1); color: var(--white); }

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 20px;
  cursor: pointer;
  user-select: none;
}
.form-consent input[type="checkbox"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  flex-shrink: 0;
  margin-top: 1px;
  padding: 0 !important;
  border: 1px solid rgba(240,237,232,.25) !important;
  border-radius: 3px !important;
  background: transparent !important;
  background-image: none !important;
  cursor: pointer;
  position: relative;
  transition: border-color .2s, background .2s;
}
.form-consent input[type="checkbox"]:hover { border-color: rgba(240,237,232,.5) !important; }
.form-consent input[type="checkbox"]:checked {
  background: var(--red) !important;
  border-color: var(--red) !important;
}
.form-consent input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px; top: 1px;
  width: 5px; height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-consent input[type="checkbox"]:invalid { border-color: rgba(240,237,232,.25); }
.form-consent span {
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(240,237,232,.45);
}

.cf-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 18px 28px;
  border-radius: 2px;
  border: none;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}
.cf-btn svg { width: 16px; height: 16px; transition: transform .3s var(--expo); }
.cf-btn:hover svg { transform: translate(4px,-4px); }
.cf-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--red-2);
  transform: translateY(100%);
  transition: transform .3s var(--expo);
}
.cf-btn span { position: relative; z-index: 1; }
.cf-btn:hover::before { transform: translateY(0); }

@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; gap: 64px; }
  .cf-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════
   CASES — Refokus row style
═══════════════════════════════════ */
.cases-section {
  padding: 140px 0 0;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,.04);
}
.cases-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(240px, 24vw, 320px);
  align-items: center;
  column-gap: clamp(40px, 6vw, 96px);
  padding: 0 48px;
  max-width: 1320px;
  margin: 0 auto 72px;
}
.cases-copy {
  min-width: 0;
}
.cases-header .sec-h2 {
  margin-bottom: 24px;
}
.cases-subtext {
  font-size: 15px; font-weight: 300; color: var(--g5);
  line-height: 1.65; max-width: 480px; text-align: left;
}
.cases-sticker {
  display: block;
  width: 100%;
  height: auto;
  justify-self: end;
  object-fit: contain;
}

/* ── Row list ── */
.cases-list { border-top: 1px solid rgba(255,255,255,.06); }

.case-row {
  display: grid;
  grid-template-columns: 52px 1fr 160px 40px;
  align-items: center;
  gap: 48px;
  padding: 38px 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
  cursor: default;
  opacity: 0;
  transform: translateY(20px);
  transition: padding-top .45s var(--expo), padding-bottom .45s var(--expo);
}
.case-row:nth-child(even) { background: rgba(255,255,255,.012); }

/* Colour sweep: red gradient from left */
.case-row::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(204,17,34,.14) 0%,
    rgba(204,17,34,.06) 55%,
    transparent 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--expo);
  pointer-events: none;
  z-index: 0;
}
.case-row:is(:hover, .is-pointer-over)::after { transform: scaleX(1); }

/* Left red bar */
.case-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .4s var(--expo);
  z-index: 1;
}
.case-row:is(:hover, .is-pointer-over)::before { transform: scaleY(1); }
.case-row:is(:hover, .is-pointer-over) {
  padding-top: 54px;
  padding-bottom: 54px;
}

/* All children above sweep */
.cr-num, .cr-body, .cr-kpi, .cr-arr { position: relative; z-index: 1; }

/* Number — grows on hover */
.cr-num {
  font-size: 11px; font-weight: 700; letter-spacing: .18em;
  color: var(--g3); align-self: flex-start; padding-top: 2px;
  transition: color .3s, font-size .4s var(--expo), letter-spacing .4s var(--expo);
}
.case-row:is(:hover, .is-pointer-over) .cr-num {
  color: var(--red);
  font-size: 24px;
  letter-spacing: -.02em;
}

/* Body */
.cr-body { min-width: 0; }
.cr-meta {
  display: flex; align-items: center; gap: 14px; margin-bottom: 10px;
}
.cr-tag {
  font-size: 10px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.1);
  padding: 4px 10px; border-radius: 2px; color: var(--g4);
  transition: border-color .3s, color .3s, background .3s;
}
.case-row:is(:hover, .is-pointer-over) .cr-tag {
  border-color: var(--red);
  background: rgba(204,17,34,.15);
  color: var(--white);
}
.cr-cat { font-size: 12px; font-weight: 400; color: var(--g4); }

.cr-title {
  font-size: clamp(17px, 2vw, 28px);
  font-weight: 800; letter-spacing: -.025em; line-height: 1.2;
  color: var(--white);
  transition: transform .4s var(--expo), color .3s;
}
.case-row:is(:hover, .is-pointer-over) .cr-title { transform: translateX(8px); }

.cr-desc {
  font-size: 14px; font-weight: 300; color: var(--g5); line-height: 1.65;
  margin-top: 12px;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .5s var(--expo), opacity .4s;
}
.case-row:is(:hover, .is-pointer-over) .cr-desc { max-height: 120px; opacity: 1; }

/* KPI */
.cr-kpi { text-align: right; }
.cr-kpi-num {
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 900; letter-spacing: -.04em;
  color: var(--g3); line-height: 1;
  transition: color .3s, transform .35s var(--expo);
}
.case-row:is(:hover, .is-pointer-over) .cr-kpi-num {
  color: var(--red);
  transform: scale(1.08);
  transform-origin: right center;
}
.cr-kpi-lbl {
  font-size: 10px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--g4); margin-top: 4px;
  transition: color .3s;
}
.case-row:is(:hover, .is-pointer-over) .cr-kpi-lbl { color: var(--g5); }

/* Arrow */
.cr-arr {
  font-size: 20px; color: var(--g3); justify-self: end;
  transition: color .25s, transform .35s var(--expo);
}
.case-row:is(:hover, .is-pointer-over) .cr-arr { color: var(--red); transform: translate(4px,-4px); }

/* follower removed */

@media (max-width: 900px) {
  .cases-section { padding: 100px 0 0; }
  .cases-header {
    grid-template-columns: 1fr;
    align-items: flex-start;
    row-gap: 40px;
    padding: 0 24px;
  }
  .cases-subtext { text-align: left; }
  .cases-sticker {
    width: clamp(210px, 58vw, 300px);
    justify-self: center;
  }
  .case-row { grid-template-columns: 36px 1fr; gap: 16px; padding: 28px 24px; }
  .cr-kpi, .cr-arr { display: none; }
  .cr-desc { max-height: 200px; opacity: 1; }
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 44px 0;
}
.ft-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  margin-bottom: 28px;
}
.ft-logo {
  height: 38px;
  filter: brightness(0) invert(1);
  opacity: .5;
}
.ft-nav { display: flex; gap: 28px; }
.ft-nav a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--g3);
  transition: color .2s;
}
.ft-nav a:hover { color: var(--red); }
.ft-bottom {
  display: flex;
  justify-content: space-between;
}
.ft-bottom span {
  font-size: 12px;
  color: var(--g3);
}
.ft-tagline { font-style: italic; }

@media (max-width: 680px) {
  .ft-top { flex-direction: column; gap: 20px; align-items: flex-start; }
  .ft-bottom { flex-direction: column; gap: 6px; }
}

/* ═══════════════════════════════════════════════
   INNER PAGES — shared styles
   ═══════════════════════════════════════════════ */

.page-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 64px 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 65% 40%, rgba(204,17,34,.1) 0%, transparent 70%);
  pointer-events: none;
}
.ph-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp .6s .1s ease forwards;
}
.ph-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--red);
}
.ph-title {
  font-size: clamp(48px, 8vw, 130px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: .92;
  margin-bottom: 40px;
  overflow: hidden;
}
.ph-word { display: inline-block; opacity: 0; }
.ph-word--red { color: var(--red); }
.ph-word--outline {
  -webkit-text-stroke: 1.5px var(--white);
  color: transparent;
  paint-order: stroke fill;
}
.ph-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--g5);
  max-width: 560px;
  opacity: 0;
}
.ph-meta {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.06);
  opacity: 0;
  animation: fadeUp .6s .95s ease forwards;
}
.ph-stat-num {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--white);
}
.ph-stat-lbl {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--g4);
  margin-top: 4px;
}
.ph-hero-num {
  position: absolute !important;
  right: 64px;
  bottom: 72px;
  font-size: clamp(120px, 20vw, 280px);
  font-weight: 900;
  letter-spacing: -.06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.04);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pg-section {
  padding: 120px 64px;
  position: relative;
}
.pg-section + .pg-section {
  border-top: 1px solid rgba(255,255,255,.04);
}
.pg-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.pg-h2 {
  font-size: clamp(40px, 5.8vw, 88px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: .93;
  margin-bottom: 24px;
}
.pg-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--g5);
  max-width: 600px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 64px;
}
.bento-cell {
  background: var(--g1);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 4px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s;
  opacity: 0;
}
.bento-cell:hover { border-color: rgba(204,17,34,.3); }
.bento-tilt { transform-style: preserve-3d; will-change: transform; }
.bento-cell.col-4  { grid-column: span 4; }
.bento-cell.col-6  { grid-column: span 6; }
.bento-cell.col-8  { grid-column: span 8; }
.bento-cell.col-12 { grid-column: span 12; }
.bento-cell.col-3  { grid-column: span 3; }
.bc-num {
  font-size: 11px; font-weight: 700; letter-spacing: .16em;
  color: var(--red); margin-bottom: 16px;
}
.bc-title {
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 800; letter-spacing: -.03em;
  margin-bottom: 12px; color: var(--white);
}
.bc-desc { font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--g5); }
.bc-accent {
  position: absolute; bottom: 0; right: 0;
  width: 80px; height: 80px;
  background: var(--red); opacity: .05;
  border-radius: 50%; transform: translate(30%, 30%);
}

.process-steps { margin-top: 64px; }
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,.05);
  align-items: start;
  opacity: 0;
}
.process-step:last-child { border-bottom: 1px solid rgba(255,255,255,.05); }
.ps-num { font-size: 13px; font-weight: 700; letter-spacing: .14em; color: var(--red); }
.ps-title {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800; letter-spacing: -.03em;
  margin-bottom: 12px; color: var(--white);
}
.ps-desc { font-size: 15px; font-weight: 300; line-height: 1.75; color: var(--g5); }

.cases-mini {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2px;
}
.cm-item {
  background: var(--g1); padding: 48px 40px;
  position: relative; overflow: hidden;
  opacity: 0; transition: background .3s;
}
.cm-item:hover { background: var(--graphite); }
.cm-tag { font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--red); margin-bottom: 20px; }
.cm-title { font-size: clamp(18px, 1.6vw, 22px); font-weight: 800; letter-spacing: -.03em; line-height: 1.2; margin-bottom: 16px; color: var(--white); }
.cm-desc { font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--g5); margin-bottom: 32px; }
.cm-kpi { display: flex; gap: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.06); }
.cm-kpi-num { font-size: 24px; font-weight: 900; letter-spacing: -.04em; color: var(--white); }
.cm-kpi-lbl { font-size: 11px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--g4); margin-top: 4px; }

.pg-cta {
  background: var(--red);
  padding: 100px 64px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px;
}
.pg-cta h2 { font-size: clamp(28px, 3.5vw, 52px); font-weight: 900; letter-spacing: -.04em; line-height: 1; max-width: 560px; }
.pg-cta-btn {
  flex-shrink: 0; font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  background: var(--white); color: var(--black); padding: 18px 40px; border-radius: 2px;
  text-decoration: none; transition: opacity .2s; white-space: nowrap;
}
.pg-cta-btn:hover { opacity: .85; }

/* Inline mid-page CTA divider — used between content sections site-wide */
.inline-cta {
  display: flex; align-items: center; justify-content: center; gap: 28px;
  flex-wrap: wrap; text-align: center;
  padding: clamp(40px,6vh,64px) clamp(24px,5vw,80px);
  border-top: 1px solid rgba(240,237,232,.07);
  border-bottom: 1px solid rgba(240,237,232,.07);
  background: rgba(240,237,232,.015);
}
.inline-cta-text {
  font-size: clamp(15px,1.4vw,18px); font-weight: 600;
  color: rgba(240,237,232,.7); letter-spacing: -.01em;
}
.inline-cta-btn {
  display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0;
  background: var(--red); color: #fff; text-decoration: none;
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 15px 30px; border-radius: 2px; transition: background .2s, transform .2s;
  white-space: nowrap;
}
.inline-cta-btn:hover { background: #a50e1d; }
.inline-cta-btn svg { width: 13px; height: 13px; flex-shrink: 0; }
.inline-cta--inset { margin-top: clamp(48px,7vh,72px); border-bottom: none; background: transparent; }

/* ── Pain-block accent equation title (shared across service pages) ── */
.pain-eq-title { font-size: clamp(34px,4.6vw,72px) !important; font-weight: 900 !important; letter-spacing: -0.03em !important; line-height: .96 !important; color: var(--white) !important; text-transform: none !important; }
.pain-eq-op { color: var(--red); }
@media (max-width: 700px) {
  .inline-cta { flex-direction: column; gap: 18px; padding: 40px 24px; }
}

/* Bottom-right CTA inside pinned/sticky sections — persists across slide changes */
.about-pin-cta {
  position: absolute; right: 40px; bottom: 40px; z-index: 5;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: #fff; text-decoration: none;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 14px 26px; border-radius: 2px; transition: background .2s;
}
.about-pin-cta:hover { background: #a50e1d; }
.about-pin-cta svg { width: 13px; height: 13px; flex-shrink: 0; }
@media (max-width: 900px) {
  .about-pin-cta { right: 24px; bottom: 24px; padding: 12px 20px; }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px; margin-top: 64px;
}
.price-card {
  background: var(--g1); padding: 48px 40px;
  border: 1px solid rgba(255,255,255,.04);
  position: relative; overflow: hidden;
  opacity: 0; transition: border-color .3s, background .3s;
}
.price-card:hover { background: var(--graphite); border-color: rgba(204,17,34,.25); }
.price-card.featured { background: var(--red); border-color: var(--red); }
.price-card.featured .pc-price,
.price-card.featured .pc-title,
.price-card.featured .pc-desc,
.price-card.featured .pc-feature { color: rgba(255,255,255,.9); }
.price-card.featured .pc-feature::before { background: rgba(255,255,255,.4); }
.pc-tag { font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--red); margin-bottom: 24px; }
.price-card.featured .pc-tag { color: rgba(255,255,255,.6); }
.pc-title { font-size: 22px; font-weight: 900; letter-spacing: -.03em; color: var(--white); margin-bottom: 8px; }
.pc-price { font-size: 36px; font-weight: 900; letter-spacing: -.05em; color: var(--white); margin-bottom: 4px; }
.pc-price span { font-size: 16px; font-weight: 400; color: var(--g5); }
.pc-desc { font-size: 13px; color: var(--g5); line-height: 1.6; margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.06); }
.pc-feature { font-size: 13px; color: var(--g5); padding: 8px 0; display: flex; align-items: center; gap: 10px; }
.pc-feature::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px; margin-top: 64px;
}
.team-card { background: var(--g1); padding: 48px 40px; opacity: 0; transition: background .3s; }
.team-card:hover { background: var(--graphite); }
.tc-role { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }
.tc-name { font-size: clamp(22px, 2.2vw, 30px); font-weight: 900; letter-spacing: -.03em; color: var(--white); margin-bottom: 12px; }
.tc-exp { font-size: 13px; color: var(--g5); margin-bottom: 20px; }
.tc-bio { font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--g4); }

.values-list {
  margin-top: 64px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px;
}
.val-item { padding: 48px; border: 1px solid rgba(255,255,255,.04); opacity: 0; transition: border-color .3s; }
.val-item:hover { border-color: rgba(204,17,34,.2); }
.val-icon { width: 40px; height: 40px; border: 1px solid rgba(204,17,34,.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--red); font-size: 18px; }
.val-title { font-size: 20px; font-weight: 800; letter-spacing: -.02em; color: var(--white); margin-bottom: 10px; }
.val-desc { font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--g4); }

.pg-form { max-width: 680px; margin: 0 auto; }
.pf-field { margin-bottom: 20px; }
.pf-field input, .pf-field textarea, .pf-field select {
  width: 100%; background: var(--g1); border: 1px solid rgba(255,255,255,.08);
  border-radius: 2px; padding: 18px 20px; font-size: 15px; color: var(--white);
  font-family: var(--font); transition: border-color .2s; resize: none;
}
.pf-field input:focus, .pf-field textarea:focus, .pf-field select:focus { outline: none; border-color: rgba(204,17,34,.5); }
.pf-field input::placeholder, .pf-field textarea::placeholder { color: var(--g4); }
.pf-field select option { background: var(--g1); }
.pf-submit {
  width: 100%; background: var(--red); color: var(--white); border: none;
  padding: 20px; font-size: 13px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; border-radius: 2px; cursor: none; transition: opacity .2s; margin-top: 8px;
}
.pf-submit:hover { opacity: .85; }

.stat-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.ss-item { padding: 40px; border-right: 1px solid rgba(255,255,255,.04); opacity: 0; }
.ss-item:last-child { border-right: none; }
.ss-num { font-size: clamp(28px, 3.5vw, 48px); font-weight: 900; letter-spacing: -.05em; color: var(--white); margin-bottom: 6px; }
.ss-lbl { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--g4); }

/* Founders page */
.founders-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 64px; }
.founder-card { background: var(--g1); padding: 64px 48px; position: relative; overflow: hidden; transition: background .3s; }
.founder-card:hover { background: var(--graphite); }
.fc-initial {
  position: absolute; top: 40px; right: 48px;
  font-size: 120px; font-weight: 900; letter-spacing: -.06em;
  color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.06);
  line-height: 1; pointer-events: none;
}
.fc-role { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--red); margin-bottom: 20px; }
.fc-name { font-size: clamp(28px, 3vw, 44px); font-weight: 900; letter-spacing: -.04em; color: var(--white); margin-bottom: 8px; }
.fc-years { font-size: 13px; color: var(--g5); margin-bottom: 28px; }
.fc-bio { font-size: 15px; font-weight: 300; line-height: 1.75; color: var(--g4); max-width: 440px; }

/* Career page */
.jobs-list { border-top: 1px solid rgba(255,255,255,.05); }
.job-item {
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 40px;
  padding: 32px 64px; border-top: 1px solid rgba(255,255,255,.05);
  opacity: 0; cursor: pointer; transition: color .2s, background .2s;
  text-decoration: none; color: inherit;
}
.job-item:hover { background: rgba(255,255,255,.02); }
@media (max-width: 700px) { .job-item { padding: 28px 24px; gap: 20px; } }
.job-item:last-child { border-bottom: 1px solid rgba(255,255,255,.05); }
.job-item:hover .ji-title { color: var(--red); }
.ji-dept { font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--g4); margin-bottom: 8px; }
.ji-title { font-size: clamp(18px, 2vw, 26px); font-weight: 800; letter-spacing: -.03em; color: var(--white); transition: color .2s; }
.ji-tags { display: flex; gap: 8px; margin-top: 10px; }
.ji-tag { font-size: 11px; padding: 4px 10px; border: 1px solid rgba(255,255,255,.08); border-radius: 2px; color: var(--g5); }
.ji-arr { font-size: 24px; color: var(--g4); transition: color .2s, transform .2s; }
.job-item:hover .ji-arr { color: var(--red); transform: translateX(4px); }

.perks-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 64px;
}
.perk-item { padding: 40px; border: 1px solid rgba(255,255,255,.04); opacity: 0; }
.perk-icon { font-size: 28px; margin-bottom: 16px; }
.perk-title { font-size: 18px; font-weight: 800; letter-spacing: -.02em; color: var(--white); margin-bottom: 8px; }
.perk-desc { font-size: 13px; font-weight: 300; line-height: 1.7; color: var(--g5); }

@media (max-width: 900px) {
  .page-hero { padding: 0 24px 60px; }
  .pg-section { padding: 80px 24px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-cell.col-4, .bento-cell.col-6, .bento-cell.col-8, .bento-cell.col-12, .bento-cell.col-3 { grid-column: span 1; }
  .process-step { grid-template-columns: 40px 1fr; gap: 20px; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .ss-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.04); }
  .values-list, .founders-grid, .perks-grid { grid-template-columns: 1fr; }
  .pg-cta { flex-direction: column; text-align: center; padding: 60px 24px; }
  .ph-meta { flex-wrap: wrap; gap: 24px; }
  .ph-hero-num { display: none; }
}

/* ═══════════════════════════════════════════════
   VISUAL ENHANCEMENTS v2
   ═══════════════════════════════════════════════ */

/* ── Hero grid background overlay ── */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}
.page-hero > * { position: relative; z-index: 1; }

/* ── Scroll cue ── */
.scroll-cue {
  position: absolute;
  bottom: 36px; left: 64px;
  display: flex; align-items: center; gap: 12px;
  font-size: 10px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--g3);
  opacity: 0;
  animation: fadeUp .6s 1.3s ease forwards;
  z-index: 2;
}
.sc-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scLineDrop 2.2s ease-in-out infinite;
}
@keyframes scLineDrop {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  40%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  60%  { opacity: 1; transform: scaleY(1); transform-origin: bottom; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}
@media (max-width: 900px) { .scroll-cue { display: none; } }

/* ── Marquee strip ── */
.marquee-strip {
  overflow: hidden;
  background: var(--red);
  position: relative;
}
.marquee-strip--dark {
  background: var(--g1);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.marquee-inner {
  display: flex;
  width: max-content;
  padding: 14px 0;
  animation: marqueeRoll 28s linear infinite;
  will-change: transform;
}
.marquee-strip--dark .marquee-inner { animation-direction: reverse; animation-duration: 32s; }
.marquee-strip:hover .marquee-inner { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center;
  padding: 0 32px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.82);
  white-space: nowrap; flex-shrink: 0;
}
.marquee-item::after {
  content: '·';
  margin-left: 32px;
  opacity: .45;
  font-size: 18px;
  line-height: 0;
}
.marquee-strip--dark .marquee-item { color: var(--g4); }
@keyframes marqueeRoll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Red statement band ── */
.red-band {
  background: var(--red);
  padding: 100px 64px;
  overflow: hidden;
  position: relative;
}
.rb-text {
  font-size: clamp(38px, 5.5vw, 82px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: .94;
  color: var(--white);
  max-width: 880px;
  position: relative; z-index: 1;
}
.rb-text em { font-style: normal; color: rgba(255,255,255,.35); }
.rb-sub {
  font-size: 16px; font-weight: 300;
  color: rgba(255,255,255,.62);
  margin-top: 32px; max-width: 460px;
  line-height: 1.7; position: relative; z-index: 1;
}
.rb-ghost {
  position: absolute;
  right: 48px; top: 50%;
  transform: translateY(-50%);
  font-size: clamp(160px, 22vw, 340px);
  font-weight: 900; letter-spacing: -.06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.09);
  pointer-events: none; user-select: none; line-height: 1;
}
@media (max-width: 900px) {
  .red-band { padding: 64px 24px; }
  .rb-ghost { display: none; }
}

/* ── Case dramatic (big number left + text right) ── */
.cases-dramatic { margin-top: 64px; }
.case-dramatic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,.06);
  opacity: 0;
  transform: translateY(40px);
}
.case-dramatic:last-child { border-bottom: 1px solid rgba(255,255,255,.06); }
.cd-visual {
  background: var(--g1);
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
  position: relative; overflow: hidden;
  border-right: 1px solid rgba(255,255,255,.06);
  min-height: 420px;
}
.case-dramatic:nth-child(even) .cd-visual {
  background: var(--graphite);
  order: 2;
  border-right: none;
  border-left: 1px solid rgba(255,255,255,.06);
}
.case-dramatic:nth-child(even) .cd-content { order: 1; }
.cd-big-num {
  font-size: clamp(72px, 12vw, 168px);
  font-weight: 900;
  letter-spacing: -.055em; line-height: .85;
  color: var(--white); margin-bottom: 16px;
}
.cd-big-num span { color: var(--red); }
.cd-big-lbl {
  font-size: 11px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--g4);
}
.cd-ghost {
  position: absolute;
  bottom: -.05em; right: -.08em;
  font-size: clamp(160px, 22vw, 340px);
  font-weight: 900; letter-spacing: -.06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.04);
  pointer-events: none; user-select: none; line-height: 1;
}
.cd-content {
  padding: 80px 64px;
  display: flex; flex-direction: column; justify-content: center;
}
.cd-tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--red); margin-bottom: 24px;
}
.cd-title {
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 900; letter-spacing: -.04em;
  line-height: 1.1; color: var(--white); margin-bottom: 20px;
}
.cd-desc {
  font-size: 15px; font-weight: 300;
  line-height: 1.75; color: var(--g5); margin-bottom: 40px;
}
.cd-metrics {
  display: flex; gap: 40px; flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.cd-m-num {
  font-size: 24px; font-weight: 900;
  letter-spacing: -.04em; color: var(--white); line-height: 1;
}
.cd-m-lbl {
  font-size: 10px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--g4); margin-top: 6px;
}
@media (max-width: 900px) {
  .case-dramatic { grid-template-columns: 1fr; }
  .case-dramatic:nth-child(even) .cd-visual,
  .case-dramatic:nth-child(even) .cd-content { order: unset; }
  .cd-visual { border-right: none !important; border-left: none !important; border-bottom: 1px solid rgba(255,255,255,.06); min-height: 300px; padding: 48px 24px; }
  .cd-content { padding: 48px 24px; }
  .cd-ghost { display: none; }
}

/* ── Super stat row ── */
.super-stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  background: var(--black);
}
.super-stat-row--3 { grid-template-columns: repeat(3, 1fr); }
.sstat {
  padding: 60px 48px;
  border-right: 1px solid rgba(255,255,255,.05);
  position: relative; overflow: hidden;
  transition: background .35s;
  opacity: 0; transform: translateY(20px);
}
.sstat:last-child { border-right: none; }
.sstat:hover { background: var(--g1); }
.sstat::before {
  content: '';
  position: absolute; top: 0; left: 48px;
  width: 1px; height: 44px; background: var(--red);
}
.sstat-num {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900; letter-spacing: -.055em;
  line-height: .9; color: var(--white); margin-bottom: 18px;
}
.sstat-num sup { font-size: .55em; color: var(--red); vertical-align: super; }
.sstat-lbl {
  font-size: 11px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--g4); line-height: 1.6;
}
@media (max-width: 900px) {
  .super-stat-row,
  .super-stat-row--3 { grid-template-columns: repeat(2, 1fr); }
  .sstat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.05); padding: 44px 24px; }
  .sstat::before { left: 24px; }
}

/* ── Pull quote ── */
.pull-quote {
  padding: 72px 64px;
  border-left: 3px solid var(--red);
  margin: 0;
  background: rgba(255,255,255,.02);
  border-top: 1px solid rgba(255,255,255,.04);
}
.pq-text {
  font-size: clamp(20px, 2.5vw, 34px);
  font-weight: 300; line-height: 1.5;
  color: var(--g5); font-style: italic; margin-bottom: 24px;
  max-width: 820px;
}
.pq-source {
  font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--red);
}
@media (max-width: 900px) { .pull-quote { padding: 44px 24px; } }

/* ═══════════════════════════════════════════════
   WOW TECHNIQUES from award-winning repos
   ═══════════════════════════════════════════════ */

/* ── 1. Film grain overlay (Pixanaive style) ── */
.site-grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.68' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  animation: grainShift .18s steps(2) infinite;
}
@keyframes grainShift {
  0%   { transform: translate(0,0); }
  25%  { transform: translate(-2px,-1px); }
  50%  { transform: translate(1px, 2px); }
  75%  { transform: translate(-1px,1px); }
  100% { transform: translate(2px,-2px); }
}

/* ── 2. Mouse-tracking spotlight on cards (Award-winning style) ── */
.bento-tilt,
.ng-item,
.tm-card,
.price-card,
.founder-card,
.perk-item,
.sstat {
  --mx: 50%;
  --my: 50%;
}
.ng-item::before,
.tm-card::before,
.founder-card::before,
.perk-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(240px circle at var(--mx) var(--my), rgba(204,17,34,.07), transparent 70%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
  z-index: 0;
}
.ng-item:hover::before,
.tm-card:hover::before,
.founder-card:hover::before,
.perk-item:hover::before { opacity: 1; }
.ng-item > *,
.tm-card > *,
.founder-card > *,
.perk-item > * { position: relative; z-index: 1; }

.bento-tilt {
  --mx: 50%;
  --my: 50%;
}
.bento-tilt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(240px circle at var(--mx) var(--my), rgba(204,17,34,.09), transparent 70%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}
.bento-tilt:hover::before { opacity: 1; }
.bento-tilt > * { position: relative; z-index: 1; }

.cd-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(300px circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.04), transparent 70%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
  z-index: 0;
}
.cd-visual:hover::before { opacity: 1; }
.cd-visual > * { position: relative; z-index: 1; }

/* ── 3. Clip-path wipe class (Award-winning style) ── */
.clip-wipe {
  clip-path: inset(0 100% 0 0);
}
.clip-wipe.revealed {
  clip-path: inset(0 0% 0 0);
  transition: clip-path 1.4s var(--expo);
}

/* ── 4. 3D word reveal (Award-winning AnimatedTitle) ── */
.word-3d {
  display: inline-block;
  opacity: 0;
  transform: translate3d(8px, 48px, -40px) rotateY(20deg) rotateX(-30deg);
  transform-origin: 50% 50% -80px;
  transition: opacity .8s, transform .8s var(--expo);
}
.word-3d.revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotateY(0) rotateX(0);
}

/* ── 5. Stagger fade-up for metric rows ── */
.sstat,
.ph-stat {
  --d: 0s;
}

/* ── Section: dark marquee runs reverse (variety) ── */
.marquee-strip.marquee-strip--dark .marquee-inner {
  animation-direction: reverse;
}

/* ── Ghost section number (injected by JS) ── */
.pg-sec-ghost {
  position: absolute;
  top: -0.15em;
  right: 48px;
  font-size: clamp(160px, 24vw, 360px);
  font-weight: 900;
  letter-spacing: -.08em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.032);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 0;
}
.pg-section > :not(.pg-sec-ghost) { position: relative; z-index: 1; }

/* ── pg-section left accent bar ── */
.pg-section::before {
  content: '';
  position: absolute;
  top: 120px; left: 0;
  width: 3px; height: 44px;
  background: var(--red);
  opacity: .5;
}

/* ── Case dramatic: hover brightness on visual ── */
.cd-visual {
  transition: background .4s;
}
.case-dramatic:hover .cd-visual {
  background: rgba(24,24,24,1);
}
.case-dramatic:hover .cd-big-num {
  color: var(--white);
}

/* ── Bento cell: bigger bc-num ghost ── */
.bento-cell {
  transition: border-color .3s, background .3s;
}
.bento-cell:hover {
  background: #1a1a1a;
}

/* ── Red band: subtle vignette left edge ── */
.red-band::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: rgba(0,0,0,.25);
  z-index: 2;
}

/* ── Bento cell accent: bottom-right gradient ── */
.bento-cell::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 60%; height: 60%;
  background: radial-gradient(ellipse at 100% 100%, rgba(204,17,34,.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Process steps: hover shift ── */
.process-step {
  transition: padding-left .35s var(--expo);
}
.process-step:hover { padding-left: 16px; }
.process-step:hover .ps-num { color: var(--white); }

/* ── Pull quote: hover lift ── */
.pull-quote {
  transition: border-color .3s, background .3s;
}
.pull-quote:hover {
  background: rgba(255,255,255,.035);
  border-color: var(--red-2);
}

/* ── Pricing card: hover glow ── */
.price-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(204,17,34,.08), transparent 60%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.price-card:hover::before { opacity: 1; }

/* ── Feature split (text left + big typographic right) ── */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,.05);
}
.fs-text {
  padding: 80px 64px;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid rgba(255,255,255,.05);
}
.fs-visual {
  display: flex; align-items: center; justify-content: center;
  padding: 80px 48px;
  background: var(--graphite);
  position: relative; overflow: hidden;
}
.fs-big {
  font-size: clamp(80px, 14vw, 200px);
  font-weight: 900; letter-spacing: -.06em; line-height: .88;
  -webkit-text-stroke: 2px rgba(255,255,255,.14);
  color: transparent; text-align: center;
  position: relative; z-index: 1;
}
.fs-big span { color: var(--red); -webkit-text-stroke: none; display: block; }
@media (max-width: 900px) {
  .feature-split { grid-template-columns: 1fr; }
  .fs-visual { display: none; }
  .fs-text { padding: 60px 24px; border-right: none; }
}

/* ═══════════════════════════════════════════════
   INTERACTIVE FEAT-TABS (replaces boring feat-list)
   ═══════════════════════════════════════════════ */
.feat-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,.012);
}
.ft-icon {
  width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0;
  background: rgba(255,255,255,.03); color: var(--g3);
  display: flex; align-items: center; justify-content: center;
  transition: color .25s, background .25s;
}
.ft-icon svg { width: 17px; height: 17px; }
.ft-tab.active .ft-icon, .ft-tab:hover .ft-icon { color: var(--red); background: rgba(204,17,34,.12); }
.ft-list-wrap { border-right: 1px solid rgba(255,255,255,.06); }
.ft-hint-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: rgba(204,17,34,.7);
  padding: 0 48px 14px;
}
.ft-hint-row svg { animation: ftArrowBounce 1.4s ease-in-out infinite; flex-shrink: 0; }
@keyframes ftArrowBounce { 0%,100%{transform:translateX(0)} 50%{transform:translateX(5px)} }
.ft-tab {
  padding: 22px 48px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  display: flex; align-items: center; gap: 24px;
  cursor: pointer; transition: background .25s;
  position: relative;
}
.ft-tab::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 0; background: var(--red); transition: width .3s var(--expo);
}
.ft-tab.active::before { width: 3px; }
.ft-tab.active { background: rgba(255,255,255,.028); }
.ft-tab:hover { background: rgba(255,255,255,.015); }
.ft-tab:hover::before { width: 2px; }
.ft-num { font-size: 11px; font-weight: 700; letter-spacing: .2em; color: var(--g3); transition: color .25s; flex-shrink: 0; }
.ft-tab.active .ft-num { color: var(--red); }
.ft-title { font-size: clamp(14px, 1.5vw, 18px); font-weight: 700; letter-spacing: -.02em; color: var(--g5); transition: color .25s; line-height: 1.3; flex: 1; }
.ft-tab.active .ft-title, .ft-tab:hover .ft-title { color: var(--white); }
.ft-arrow { width: 14px; height: 14px; flex-shrink: 0; color: rgba(255,255,255,.18); margin-left: auto; transition: color .25s, transform .25s; }
.ft-tab:hover .ft-arrow { color: rgba(255,255,255,.4); transform: translateX(3px); }
.ft-tab.active .ft-arrow { color: var(--red); transform: translateX(3px); }

.ft-content { }
.ft-panel {
  display: none;
  padding: 64px 56px;
  flex-direction: column; justify-content: flex-start;
}
.ft-panel.active {
  display: flex;
  animation: ftIn .38s ease;
}
@keyframes ftIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
.ftp-num {
  font-size: clamp(80px, 11vw, 140px); font-weight: 900; letter-spacing: -.06em; line-height: .85;
  color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.08);
  margin-bottom: 28px;
}
.ftp-title {
  font-size: clamp(24px, 3vw, 44px); font-weight: 900; letter-spacing: -.045em;
  color: var(--white); margin-bottom: 20px; line-height: 1.05;
}
.ftp-desc { font-size: 15px; font-weight: 300; line-height: 1.8; color: var(--g5); max-width: 480px; }
.ftp-desc p { margin: 0 0 16px; }
.ftp-desc p:last-child { margin-bottom: 0; }
.ftp-desc .ftp-em { color: var(--white); font-weight: 600; }
@media (max-width: 900px) {
  .feat-tabs { grid-template-columns: 1fr; }
  .ft-list { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .ft-tab { padding: 22px 24px; }
  .ft-panel { padding: 36px 24px; }
}

/* ═══════════════════════════════════════════════
   NON-STANDARD BLOCK PATTERNS v3
   ═══════════════════════════════════════════════ */

/* ── Oversized intro mega ── */
.intro-mega {
  padding: 100px 64px 0;
  position: relative; overflow: hidden;
  background: var(--black);
}
.intro-mega-label {
  font-size: 10px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase;
  color: var(--red); margin-bottom: 40px;
  display: flex; align-items: center; gap: 14px;
}
.intro-mega-label::before { content: ''; width: 32px; height: 1px; background: var(--red); }
.intro-mega-h {
  font-size: clamp(52px, 8vw, 120px);
  font-weight: 900; letter-spacing: -.05em; line-height: .9;
  color: var(--white);
}
.intro-mega-h em { font-style: italic; font-family: var(--serif); color: var(--red); font-weight: 700; }
/* ── Redesigned intro: heading left + text/callout right ── */
.intro-mega-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 56px 0 80px;
  border-top: 1px solid rgba(255,255,255,.05);
  margin-top: 48px;
  align-items: start;
}
.ime-left { /* heading column */ }
.ime-right {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-top: 4px;
}
.intro-lede {
  font-size: 17px; font-weight: 300; line-height: 1.85; color: var(--g5);
}
/* Callout card — right column insert */
.intro-callout {
  background: rgba(255,255,255,.022);
  border: 1px solid rgba(255,255,255,.06);
  padding: 32px 36px;
  position: relative;
  overflow: hidden;
}
.ic-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
}
.ic-text {
  font-size: 14px; font-weight: 300; line-height: 1.85;
  color: var(--g4); font-style: italic;
}
@media (max-width: 900px) {
  .intro-mega { padding: 64px 24px 0; }
  .intro-mega-editorial { grid-template-columns: 1fr; gap: 32px; padding: 40px 0 64px; }
}

/* Kept for backwards compat (leads.html hand-written) */
.intro-mega-cols {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px;
  padding: 48px 0 80px;
  border-top: 1px solid rgba(255,255,255,.05);
  margin-top: 48px;
}
.intro-body { font-size: 17px; font-weight: 300; line-height: 1.85; color: var(--g5); }
.intro-aside { position: relative; padding-left: 24px; border-left: 2px solid rgba(204,17,34,.3); }
.intro-aside-text { font-size: 14px; font-weight: 300; line-height: 1.85; color: var(--g4); font-style: italic; }

/* ═══════════════════════════════════
   PROCESS PINNED SCROLL (inner pages)
   Mirror of about-section from main
═══════════════════════════════════ */
.process-pin-section { height: 500vh; }
.process-pin-section[data-steps="4"] { height: 400vh; }
.process-pin-section[data-steps="3"] { height: 300vh; }
.process-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.process-sticky {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100vh;
}
.process-text-col {
  padding: 100px 64px 80px 72px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--graphite);
  border-right: 1px solid rgba(255,255,255,.05);
  position: relative;
}
.process-slides {
  position: relative;
  min-height: 340px;
  margin-top: 40px;
}
.pstep {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  pointer-events: none;
}
.pstep.active { pointer-events: auto; }
.pstep-num {
  font-size: 11px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--red); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.pstep-num::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--red);
}
.pstep-title {
  font-size: clamp(22px, 2.8vw, 40px);
  font-weight: 900; letter-spacing: -.04em;
  line-height: 1.08; color: var(--white);
  margin-bottom: 20px;
}
.pstep-desc {
  font-size: 17px; font-weight: 300;
  line-height: 1.75; color: var(--g5);
  max-width: 420px;
}
/* Progress dots */
.process-dots {
  display: flex; gap: 6px;
  position: absolute; bottom: 0; left: 0;
}
.pd-dot {
  width: 18px; height: 2px;
  background: var(--g3);
  transition: background .4s, width .4s var(--expo);
}
.pd-dot.active {
  background: var(--red);
  width: 28px;
}
.process-vis-col {
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.pstep-vis {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .5s ease;
}
.pstep-vis.active { opacity: 1; }
.psv-num {
  font-size: clamp(200px, 32vw, 380px);
  font-weight: 900; letter-spacing: -.08em; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.05);
  user-select: none; pointer-events: none;
  transition: -webkit-text-stroke-color .5s;
}
.pstep-vis.active .psv-num {
  -webkit-text-stroke-color: rgba(204,17,34,.2);
}
/* Vertical progress bar */
.process-progress {
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 100%;
  background: var(--g2);
  z-index: 2;
}
.pp-fill {
  width: 100%; height: 0%;
  background: var(--red);
  transition: height .08s linear;
}
@media (max-width: 900px) {
  .process-pin-section,
  .process-pin-section[data-steps="4"],
  .process-pin-section[data-steps="3"] { height: 400vh; }
  .process-sticky { grid-template-columns: 1fr; }
  .process-vis-col { display: none; }
  .process-text-col { padding: 80px 24px; }
}

/* ── KPI bar (full-width stats row) ── */
.kpi-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  background: var(--g1);
}
.kpi-bar--3 { grid-template-columns: repeat(3, 1fr); }
.kpi-cell {
  padding: 44px 48px; border-right: 1px solid rgba(255,255,255,.05);
  position: relative; overflow: hidden;
  transition: background .3s;
}
.kpi-cell:last-child { border-right: none; }
.kpi-cell:hover { background: rgba(255,255,255,.025); }
.kpi-cell::before {
  content: ''; position: absolute; top: 0; left: 48px;
  width: 1px; height: 32px; background: var(--red); opacity: .7;
}
.kpi-num {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900; letter-spacing: -.055em; line-height: .88;
  color: var(--white); margin-bottom: 14px;
}
.kpi-num .red { color: var(--red); }
.kpi-lbl { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--g4); line-height: 1.55; }
@media (max-width: 900px) {
  .kpi-bar, .kpi-bar--3 { grid-template-columns: repeat(2, 1fr); }
  .kpi-cell { padding: 32px 24px; }
  .kpi-cell::before { left: 24px; }
}

/* ── Editorial feature list (replaces bento) ── */
.feat-list { border-top: 1px solid rgba(255,255,255,.05); }
.feat-item {
  display: grid; grid-template-columns: 80px 1fr 1.4fr;
  gap: 0; padding: 44px 64px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  align-items: start; transition: background .25s;
  cursor: default; position: relative;
}
.feat-item::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 0; background: var(--red); transition: width .35s var(--expo);
}
.feat-item:hover::before { width: 3px; }
.feat-item:hover { background: rgba(255,255,255,.02); }
.fi-num {
  font-size: 11px; font-weight: 700; letter-spacing: .2em; color: var(--red);
  padding-top: 5px;
}
.fi-title {
  font-size: clamp(17px, 1.9vw, 24px); font-weight: 800; letter-spacing: -.03em;
  line-height: 1.25; color: var(--white); transition: color .25s;
  padding-right: 40px;
}
.feat-item:hover .fi-title { color: var(--red); }
.fi-desc {
  font-size: 14px; font-weight: 300; line-height: 1.75; color: var(--g5);
  border-left: 1px solid rgba(255,255,255,.06); padding-left: 40px;
}
.feat-item--accent {
  background: var(--red); border-bottom-color: transparent;
}
.feat-item--accent:hover { background: var(--red-2); }
.feat-item--accent::before { display: none; }
.feat-item--accent .fi-num { color: rgba(255,255,255,.45); }
.feat-item--accent .fi-title { color: var(--white); font-size: clamp(20px, 2.5vw, 32px); }
.feat-item--accent:hover .fi-title { color: var(--white); }
.feat-item--accent .fi-desc { color: rgba(255,255,255,.72); border-left-color: rgba(255,255,255,.18); }
@media (max-width: 900px) {
  .feat-item { grid-template-columns: 48px 1fr; padding: 32px 24px; }
  .fi-desc { grid-column: span 2; border-left: none; padding-left: 0; margin-top: 12px; }
}

/* ── K72-style niche rows: big typography + red wipe hover ── */
.niche-rows { border-top: 1px solid rgba(255,255,255,.05); }
.niche-row {
  display: flex; align-items: center; gap: 0;
  padding: 0 64px; min-height: 100px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  position: relative; overflow: hidden; cursor: pointer;
  transition: padding-left .45s var(--expo);
}
/* Red wipe slides in from left */
.niche-row::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 0; background: rgba(204,17,34,.07);
  transition: width .55s var(--expo); z-index: 0;
}
.niche-row:hover::before { width: 100%; }
.niche-row:hover { padding-left: 80px; }
.nr-idx {
  font-size: 10px; font-weight: 700; letter-spacing: .2em;
  color: var(--g3); min-width: 52px; flex-shrink: 0;
  transition: color .25s, transform .35s var(--expo);
  position: relative; z-index: 1;
}
.niche-row:hover .nr-idx { color: var(--red); transform: translateX(4px); }
.nr-name {
  font-size: clamp(20px, 3vw, 48px);
  font-weight: 900; letter-spacing: -.045em; line-height: 1;
  color: var(--white); flex: 1; padding-right: 40px;
  position: relative; z-index: 1;
}
.nr-desc {
  font-size: 13px; font-weight: 300; color: var(--g4); line-height: 1.6;
  max-width: 260px; margin-right: 40px;
  opacity: 0; transform: translateY(4px);
  transition: opacity .3s .05s, transform .3s var(--expo);
  position: relative; z-index: 1;
}
.niche-row:hover .nr-desc { opacity: 1; transform: translateY(0); }
.nr-tag {
  font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--g3); white-space: nowrap;
  transition: color .25s; position: relative; z-index: 1;
}
.niche-row:hover .nr-tag { color: var(--red); }
.nr-arr {
  display: inline-block; font-size: 20px; letter-spacing: 0;
  transform: translateX(-12px); opacity: 0;
  transition: transform .35s var(--expo), opacity .25s;
  margin-left: 14px; position: relative; z-index: 1;
}
.niche-row:hover .nr-arr { transform: translateX(0); opacity: 1; }
@media (max-width: 900px) {
  .niche-row { padding: 0 24px; min-height: 72px; }
  .nr-name { font-size: clamp(18px, 5vw, 28px); }
  .nr-desc, .nr-tag, .nr-arr { display: none; }
  .niche-row:hover { padding-left: 32px; }
}

/* ── Numbered steps list (editorial) ── */
.steps-list { border-top: 1px solid rgba(255,255,255,.05); }
.step-row {
  display: grid; grid-template-columns: 110px 1fr 1.2fr;
  gap: 0; padding: 56px 64px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: background .25s; cursor: default;
}
.step-row:hover { background: rgba(255,255,255,.02); }
.sr-num {
  font-size: clamp(52px, 7vw, 96px); font-weight: 900; letter-spacing: -.06em; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.12);
  transition: color .4s, -webkit-text-stroke-color .4s;
  align-self: start;
}
.step-row:hover .sr-num { color: var(--red); -webkit-text-stroke-color: transparent; }
.sr-title {
  font-size: clamp(18px, 2vw, 26px); font-weight: 800; letter-spacing: -.04em;
  line-height: 1.2; color: var(--white); padding-right: 48px; padding-top: 6px;
}
.sr-desc { font-size: 14px; font-weight: 300; line-height: 1.8; color: var(--g5); padding-top: 8px; }
@media (max-width: 900px) {
  .step-row { grid-template-columns: 64px 1fr; padding: 40px 24px; }
  .sr-desc { grid-column: span 2; margin-top: 16px; }
}

/* ── Split stat (one giant number + story) ── */
.split-stat {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,.05);
}
.split-stat + .split-stat { border-top: none; }
.ss-l {
  padding: 80px 64px; border-right: 1px solid rgba(255,255,255,.05);
  display: flex; flex-direction: column; justify-content: center;
  background: var(--g1); position: relative; overflow: hidden;
}
.ss-big {
  font-size: clamp(68px, 10vw, 148px); font-weight: 900;
  letter-spacing: -.055em; line-height: .85; color: var(--white);
}
.ss-big .red { color: var(--red); }
.ss-sub { font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--g4); margin-top: 18px; }
.ss-r { padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; }
.ss-r-h { font-size: clamp(20px, 2.2vw, 30px); font-weight: 900; letter-spacing: -.04em; color: var(--white); margin-bottom: 20px; line-height: 1.15; }
.ss-r-body { font-size: 15px; font-weight: 300; line-height: 1.8; color: var(--g5); }
.ss-metrics { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.07); }
.ss-m-num { font-size: 24px; font-weight: 900; letter-spacing: -.04em; color: var(--white); line-height: 1; }
.ss-m-lbl { font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--g4); margin-top: 5px; }
@media (max-width: 900px) {
  .split-stat { grid-template-columns: 1fr; }
  .ss-l { padding: 56px 24px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .ss-r { padding: 56px 24px; }
}

/* ── Manifesto / big statement ── */
.manifesto {
  padding: 100px 64px; position: relative; overflow: hidden;
  background: var(--black);
}
.manifesto-text {
  font-size: clamp(30px, 4.5vw, 68px);
  font-weight: 900; letter-spacing: -.045em; line-height: .97;
  color: var(--white); max-width: 1040px;
}
.manifesto-text .ghost { -webkit-text-stroke: 2px rgba(255,255,255,.18); color: transparent; }
.manifesto-text .red { color: var(--red); }
.manifesto-attr {
  margin-top: 40px; font-size: 11px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--g4);
  display: flex; align-items: center; gap: 16px;
}
.manifesto-attr::before { content: ''; width: 40px; height: 1px; background: var(--red); }
@media (max-width: 900px) { .manifesto { padding: 64px 24px; } }

/* ── Team / person editorial row ── */
.team-rows { border-top: 1px solid rgba(255,255,255,.05); }
.team-row {
  display: grid; grid-template-columns: 120px 1fr 1.6fr;
  gap: 0; padding: 56px 64px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  align-items: start; transition: background .25s;
}
.team-row:hover { background: rgba(255,255,255,.02); }
.tr-initial {
  font-size: clamp(44px, 5vw, 72px); font-weight: 900; letter-spacing: -.05em;
  color: transparent; -webkit-text-stroke: 1.5px rgba(204,17,34,.4); line-height: 1;
  transition: color .35s, -webkit-text-stroke-color .35s;
}
.team-row:hover .tr-initial { color: var(--red); -webkit-text-stroke-color: transparent; }
.tr-meta { padding-right: 40px; }
.tr-name { font-size: clamp(20px, 2.2vw, 28px); font-weight: 900; letter-spacing: -.04em; color: var(--white); margin-bottom: 6px; }
.tr-role { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }
.tr-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tr-tag { font-size: 11px; padding: 3px 10px; border: 1px solid rgba(255,255,255,.08); border-radius: 2px; color: var(--g5); }
.tr-bio { font-size: 14px; font-weight: 300; line-height: 1.75; color: var(--g4); }
@media (max-width: 900px) {
  .team-row { grid-template-columns: 64px 1fr; padding: 40px 24px; }
  .tr-bio { grid-column: span 2; margin-top: 16px; }
}

/* ── Page section header (minimal, no card) ── */
.sec-header {
  padding: 80px 64px 48px;
}
@media (max-width: 900px) { .sec-header { padding: 56px 24px 32px; } }

/* ── Perk rows (replaces perk cards grid) ── */
.perk-rows { border-top: 1px solid rgba(255,255,255,.05); }
.perk-row {
  display: grid; grid-template-columns: 64px 1fr 1.4fr;
  gap: 0; padding: 36px 64px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  align-items: center; transition: background .25s;
}
.perk-row:hover { background: rgba(255,255,255,.02); }
.perk-ico { color: var(--red); }
.perk-ico svg { width: 24px; height: 24px; }
.perk-t { font-size: clamp(16px,1.7vw,22px); font-weight: 800; letter-spacing:-.03em; color:var(--white); padding-right:40px; }
.perk-d { font-size:14px; font-weight:300; line-height:1.7; color:var(--g5); border-left:1px solid rgba(255,255,255,.06); padding-left:40px; }
@media(max-width:900px){ .perk-row{grid-template-columns:44px 1fr;padding:28px 24px} .perk-d{display:none} }

/* ═══════════════════════════════════════════════
   WOW v3 — Award-winning techniques from repos
   ═══════════════════════════════════════════════ */

/* ── Giant ghost marquee section divider (Pixanaive) ── */
.ghost-marquee {
  overflow: hidden;
  background: var(--black);
  line-height: 0;
  user-select: none;
  pointer-events: none;
}
.ghost-marquee--g1 { background: var(--g1); }
.ghost-marquee--graphite { background: var(--graphite); }
.gmq-inner {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 12px 0;
  animation: marqueeRoll 34s linear infinite;
  will-change: transform;
}
.ghost-marquee--rev .gmq-inner { animation-direction: reverse; }
.gmq-inner span {
  font-size: clamp(100px, 16vw, 220px);
  font-weight: 900;
  letter-spacing: -.07em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.055);
  padding: 0 48px;
  white-space: nowrap;
  line-height: 1;
  font-style: italic;
  font-family: var(--serif);
  display: inline-block;
}
.gmq-sep {
  color: rgba(204,17,34,.35) !important;
  -webkit-text-stroke: 0 !important;
  font-style: normal !important;
  font-family: var(--font) !important;
  font-size: 40px !important;
  padding: 0 16px !important;
  letter-spacing: 0 !important;
}

/* ── Nav scroll-hide (will-change for GSAP yPercent) ── */
#nav { will-change: transform; }

/* ── Hero scroll-exit (scale + opacity) ── */
.page-hero { will-change: transform, opacity; transform-origin: center bottom; }

/* ── Split-stat: invisible until revealed by GSAP ── */
.split-stat .ss-l,
.split-stat .ss-r { opacity: 0; }

/* ── Intro-mega bigger left column typography ── */
.intro-body { font-size: 18px; }

/* ── Section heading clip-path wipe (GSAP-Awwwards #10) ── */
.pg-h2 {
  clip-path: inset(0 0 0 0);
}

/* ── Step rows hover: number becomes solid red ── */
.step-row:hover .sr-num {
  color: var(--red) !important;
  -webkit-text-stroke-color: transparent !important;
}

/* ── Glow orb behind KPI numbers (Pixanaive #28 adapted) ── */
.kpi-cell {
  position: relative; overflow: hidden;
  transition: background .3s;
}
.kpi-cell:hover { background: rgba(204,17,34,.04); }
.kpi-cell::after {
  content: '';
  position: absolute;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204,17,34,.12) 0%, transparent 70%);
  top: var(--my, 50%); left: var(--mx, 50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
}
.kpi-cell:hover::after { opacity: 1; }
