/* ============================== TOKENS / RESET ============================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #02030a;
  --bg-1: #05070f;
  --bg-2: #0a0d17;
  --bg-3: #111728;
  --bg-4: #181f33;
  --ink: #f7f8fa;
  --ink-2: #a9afbc;
  --ink-3: #6c7380;
  --ink-4: #4a505d;
  --rule: rgba(255,255,255,.07);
  --rule-2: rgba(255,255,255,.13);
  --rule-3: rgba(255,255,255,.2);
  --mint: #97fce4;
  --mint-2: #5eead4;
  --green: #4ade80;
  --green-2: #14b8a6;
  --teal-dk: #0f766e;
  --peach: #ff8f6b;
  --pink: #ff6ba8;
  --r: #ff3366;
  --c: #00ffe1;
  --amber: #fcd34d;
  --blue: #60a5fa;
  --mx: 50%; --my: 50%;
}

html { scroll-behavior: smooth; }
html, body {
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

#hero, #stats, #products, #services, #contact { scroll-margin-top: 88px; }

body {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16.5px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.005em;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
img { display: block; max-width: 100%; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: rgba(151,252,228,.25); color: var(--ink); }

/* Skip link for accessibility */
.skip-link { position: absolute; left: -10000px; top: 0; padding: 10px 18px; background: var(--ink); color: var(--bg); border-radius: 0 0 8px 0; z-index: 100; font-weight: 600; }
.skip-link:focus { left: 0; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 920px; margin: 0 auto; padding: 0 28px; }
@media (max-width: 600px) { .container, .container-wide, .container-narrow { padding: 0 20px; } }

.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }
.serif-it { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; }

/* ============================== UTIL: GRADIENTS ============================== */
.g-teal { background: linear-gradient(135deg, var(--mint), var(--green)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.g-peach { background: linear-gradient(135deg, var(--peach), var(--pink)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.g-blue { background: linear-gradient(135deg, var(--blue), #2563eb); -webkit-background-clip: text; background-clip: text; color: transparent; }
.g-amber { background: linear-gradient(135deg, var(--amber), #d97706); -webkit-background-clip: text; background-clip: text; color: transparent; }
.g-hero {
  background: linear-gradient(110deg, #ffffff 0%, var(--mint) 30%, var(--green) 55%, var(--peach) 80%, var(--pink) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shift 14s ease-in-out infinite;
  display: inline-block;
  /* Extra bottom padding gives descenders (g, y, p, q, j) room below the baseline */
  padding: 0 0.08em 0.18em 0.02em;
  margin: 0 -0.04em -0.14em;
  line-height: 1.05;
}
@keyframes shift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* Descender-safe rule for gradient-clipped text inside headings.
   -webkit-background-clip: text can shear off descender tails (g, y, p, q, j);
   extra bottom padding gives the glyph box room, negative margin keeps the
   parent layout steady. Scoped to h1/h2 so small inline gradient spans
   (logo, footer) are untouched. */
h1 .g-teal, h1 .g-peach, h1 .g-blue, h1 .g-amber,
h2 .g-teal, h2 .g-peach, h2 .g-blue, h2 .g-amber,
.page-hero h1 .serif-it {
  display: inline-block;
  padding: 0 0.04em 0.14em 0.02em;
  margin: 0 -0.04em -0.12em;
  line-height: 1.05;
}

/* ============================== UTIL: PILL ============================== */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 12.5px; color: var(--ink-2); font-weight: 500;
  line-height: 1;
}
.pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.pill-blue { background: rgba(59,130,246,.1); border-color: rgba(59,130,246,.25); color: #93c5fd; }
.pill-blue .dot { background: #3b82f6; box-shadow: 0 0 8px #3b82f6; }
.pill-amber { background: rgba(245,158,11,.1); border-color: rgba(245,158,11,.25); color: var(--amber); }
.pill-amber .dot { background: #f59e0b; box-shadow: 0 0 8px #f59e0b; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

/* ============================== UTIL: BUTTONS ============================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px;
  font-weight: 600; font-size: 14.5px;
  border-radius: 12px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  cursor: pointer; border: 0;
  line-height: 1;
  white-space: nowrap;
}
.btn i { font-size: 1.05em; }
.btn-primary {
  background: linear-gradient(135deg, var(--mint) 0%, var(--green) 100%);
  color: #052925;
  box-shadow: 0 10px 30px -8px rgba(79,217,138,.5), inset 0 1px 0 rgba(255,255,255,.3);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 36px -6px rgba(79,217,138,.6), inset 0 1px 0 rgba(255,255,255,.35); }
.btn-blue {
  background: linear-gradient(135deg, var(--blue), #2563eb);
  color: #fff;
  box-shadow: 0 10px 30px -8px rgba(59,130,246,.5), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-blue:hover { transform: translateY(-1px); box-shadow: 0 14px 36px -6px rgba(59,130,246,.6); }
.btn-amber {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  box-shadow: 0 10px 30px -8px rgba(245,158,11,.5), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-amber:hover { transform: translateY(-1px); box-shadow: 0 14px 36px -6px rgba(245,158,11,.6); }
.btn-ghost {
  background: rgba(255,255,255,.05);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.22); }
.btn-sm { padding: 10px 16px; font-size: 13.5px; border-radius: 10px; }

/* ============================== HEADER ============================== */
header.site {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 14px 0;
  pointer-events: none;
}
header.site .inner {
  pointer-events: auto;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(2,3,10,.62);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  padding: 10px 18px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
header.site .brand { display: flex; align-items: center; gap: 10px; }
header.site .brand img { height: 28px; width: 28px; flex-shrink: 0; }
header.site .brand span { font-weight: 700; font-size: 17px; letter-spacing: -0.015em; }

header.site nav { display: flex; gap: 26px; }
header.site nav a { color: var(--ink-2); font-size: 14px; font-weight: 500; transition: color .15s; }
header.site nav a:hover { color: var(--ink); }

header.site .cta-area { display: flex; gap: 10px; align-items: center; }

/* ============================== HERO (combo) ============================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 90px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  cursor: crosshair;
}
.scene-211 {
  position: absolute; inset: 0; z-index: 0;
  display: flex; align-items: center; justify-content: center;
  user-select: none;
  pointer-events: none;
}
.num-stack {
  position: relative;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(280px, 64vw, 940px);
  line-height: 0.78;
  letter-spacing: -0.07em;
  color: rgba(255,255,255,.08);
}
.num-stack .gl { position: absolute; inset: 0; mix-blend-mode: screen; }
.num-stack .gl.r { color: rgba(255,51,102,.18); animation: glitch-r 5s steps(1) infinite; }
.num-stack .gl.c { color: rgba(0,255,225,.18); animation: glitch-c 5.7s steps(1) infinite; }
.num-stack .gl.g { color: rgba(74,222,128,.16); animation: glitch-g 6.3s steps(1) infinite; }
@keyframes glitch-r {
  0%, 86% { transform: translate(0,0); clip-path: none; }
  87%     { transform: translate(-4px, 1px); clip-path: inset(8% 0 75% 0); }
  89%     { transform: translate(-7px, -2px); clip-path: inset(40% 0 30% 0); }
  91%     { transform: translate(-3px, 1px); clip-path: inset(70% 0 5% 0); }
  93%     { transform: translate(-1px, 0); clip-path: none; }
  100%    { transform: translate(0,0); clip-path: none; }
}
@keyframes glitch-c {
  0%, 88% { transform: translate(0,0); clip-path: none; }
  89%     { transform: translate(5px, -2px); clip-path: inset(20% 0 60% 0); }
  91%     { transform: translate(8px, 2px); clip-path: inset(55% 0 20% 0); }
  93%     { transform: translate(2px, -1px); clip-path: inset(85% 0 0 0); }
  100%    { transform: translate(0,0); clip-path: none; }
}
@keyframes glitch-g {
  0%, 90% { transform: translate(0,0); clip-path: none; opacity: .6; }
  91%     { transform: translate(-1px, 0); clip-path: inset(35% 0 45% 0); opacity: 1; }
  93%     { transform: translate(2px, 0); clip-path: inset(60% 0 25% 0); opacity: .8; }
  100%    { transform: translate(0,0); clip-path: none; opacity: .6; }
}

.torch {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(circle 320px at var(--mx) var(--my),
      rgba(151,252,228,.5) 0%,
      rgba(79,217,138,.25) 28%,
      rgba(0,0,0,0) 60%,
      rgba(0,0,0,.6) 80%,
      rgba(0,0,0,.88) 100%);
  transition: background 80ms linear;
}
.vignette {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 50%, rgba(0,0,0,.45) 100%);
}
.scanlines {
  position: absolute; inset: 0; z-index: 4; pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,0) 0, rgba(255,255,255,0) 2px, rgba(255,255,255,.025) 2px, rgba(255,255,255,.025) 3px);
}
.grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 5; opacity: .045;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.hero > .container-wide { position: relative; z-index: 6; text-align: center; }

.label-line {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 24px;
}

.scramble-h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 11vw, 184px);
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,.92);
  position: relative;
  display: inline-block;
}
.scramble-h1 .word {
  background: linear-gradient(110deg, #ffffff 0%, var(--mint) 30%, var(--green) 55%, var(--peach) 80%, var(--pink) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shift 14s ease-in-out infinite;
  display: inline-block;
  padding: 0 0.06em 0.04em 0.02em; margin: 0 -0.04em;
  min-width: 11ch;
  position: relative;
  text-align: center;
}
.scramble-h1 .word::before,
.scramble-h1 .word::after {
  content: attr(data-text);
  position: absolute; left: 0; top: 0;
  width: 100%; padding: 0 0.06em 0.04em 0.02em;
  -webkit-text-fill-color: initial;
  background: none;
  mix-blend-mode: screen;
  pointer-events: none;
  text-align: center;
}
.scramble-h1 .word::before { color: var(--r); animation: word-r 4.3s steps(1) infinite; }
.scramble-h1 .word::after  { color: var(--c); animation: word-c 5.1s steps(1) infinite; }
@keyframes word-r {
  0%, 90% { transform: translate(0,0); opacity: 0; }
  91%     { transform: translate(-3px, 1px); opacity: .55; clip-path: inset(15% 0 65% 0); }
  93%     { transform: translate(-5px, -2px); opacity: .65; clip-path: inset(55% 0 20% 0); }
  95%     { transform: translate(-2px, 0); opacity: .45; clip-path: inset(75% 0 5% 0); }
  100%    { transform: translate(0,0); opacity: 0; }
}
@keyframes word-c {
  0%, 92% { transform: translate(0,0); opacity: 0; }
  93%     { transform: translate(4px, -1px); opacity: .55; clip-path: inset(20% 0 55% 0); }
  95%     { transform: translate(6px, 2px); opacity: .65; clip-path: inset(50% 0 25% 0); }
  100%    { transform: translate(0,0); opacity: 0; }
}

.underline {
  margin: 36px auto 0;
  height: 2px; width: 60px;
  background: linear-gradient(90deg, var(--mint), var(--green));
  border-radius: 2px;
}

.hero-sub {
  margin: 30px auto 0;
  font-size: clamp(15.5px, 1.4vw, 18px);
  line-height: 1.55;
  color: rgba(255,255,255,.72);
  max-width: 56ch;
}

.hero-cta {
  margin-top: 32px;
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* ============================== LOGO STRIP ============================== */
.strip {
  padding: 30px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: rgba(255,255,255,.02);
}
.strip-grid {
  display: grid;
  grid-template-columns: auto repeat(4, 1fr);
  gap: 28px;
  align-items: center;
}
.strip-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-3);
  line-height: 1.4;
  border-right: 1px solid var(--rule);
  padding-right: 28px;
  max-width: 28ch;
}
.strip-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink-2);
  font-weight: 600; font-size: 15px; letter-spacing: -0.01em;
  transition: color .2s, transform .2s;
}
.strip-item:hover { color: var(--ink); transform: translateY(-2px); }
.strip-item img { width: 22px; height: 22px; border-radius: 5px; flex-shrink: 0; }

/* ============================== STATS ============================== */
.stats {
  padding: 80px 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(900px 400px at 50% 50%, rgba(151,252,228,.08), transparent 60%);
  pointer-events: none;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 30px; text-align: center;
  position: relative; z-index: 2;
}
.stat .value {
  font-family: 'Inter', sans-serif;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--mint), var(--green));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-variant-numeric: tabular-nums;
}
.stat .value.peach {
  background: linear-gradient(135deg, var(--peach), var(--pink));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 12px;
}

/* Stat that's also a link to /history/ — subtle hover affordance */
.stat-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease;
  cursor: pointer;
}
.stat-link:hover { transform: translateY(-3px); }
.stat-link:hover .label { color: var(--mint); }
.stat-link .stat-link-arrow {
  display: inline-block;
  font-size: 11px;
  margin-left: 4px;
  opacity: 0;
  transform: translate(-4px, 0);
  transition: opacity .2s ease, transform .2s ease;
  color: var(--mint);
  vertical-align: -1px;
}
.stat-link:hover .stat-link-arrow { opacity: 1; transform: translate(0,0); }

/* ============================== PRODUCT BLOCKS ============================== */
.product-block {
  padding: 120px 0;
  border-bottom: 1px solid var(--rule);
  position: relative; overflow: hidden;
}
.product-block::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .7;
}
.product-block.seo::before    { background: radial-gradient(900px 600px at 80% 40%, rgba(45,212,191,.14), transparent 60%); }
.product-block.car::before    { background: radial-gradient(900px 600px at 20% 60%, rgba(59,130,246,.14), transparent 60%); }
.product-block.social::before { background: radial-gradient(900px 600px at 80% 40%, rgba(245,158,11,.13), transparent 60%); }
.product-block.hl::before     { background: radial-gradient(900px 600px at 20% 60%, rgba(151,252,228,.14), transparent 60%); }

.product-layout {
  display: grid; grid-template-columns: 5fr 7fr;
  gap: 64px; align-items: center;
  position: relative; z-index: 2;
}
.product-layout.reverse { grid-template-columns: 7fr 5fr; }
.product-layout.reverse .p-copy { order: 2; }
.product-layout.reverse .p-shot { order: 1; }

.p-copy .brand { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; flex-wrap: wrap; }
.p-copy .brand-favicon {
  width: 42px; height: 42px;
  border-radius: 11px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  padding: 6px;
  box-shadow: 0 8px 18px -6px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.06);
  flex-shrink: 0;
  object-fit: contain;
}
.p-copy .brand-name { font-weight: 700; font-size: 20px; letter-spacing: -0.015em; }
.p-copy .brand .pill { margin-left: auto; }

.p-title {
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 800;
}

.p-desc {
  margin-top: 18px;
  color: var(--ink-2);
  font-size: clamp(15.5px, 1.4vw, 17.5px);
  line-height: 1.6;
}

.feature-list {
  list-style: none; padding: 0; margin-top: 22px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}
.feature-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 4px 0;
  color: var(--ink-2); font-size: 14.5px; line-height: 1.5;
}
.feature-list li i { color: var(--mint); font-size: 16px; margin-top: 2px; flex-shrink: 0; }

.p-cta { margin-top: 30px; display: flex; gap: 10px; flex-wrap: wrap; }

.p-shot { position: relative; perspective: 1800px; }
.p-shot-tilt {
  --rx: 2deg; --ry: -4deg;
  border-radius: 20px; overflow: hidden;
  transform-style: preserve-3d;
  transform: rotateX(var(--rx)) rotateY(var(--ry));
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08),
    0 60px 120px -20px rgba(0,0,0,.6);
  transition: transform .25s ease-out, box-shadow .4s ease;
}
.p-shot-tilt img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover; object-position: top;
  display: block;
}

.p-shot-tilt.glow-seo    { box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 60px 120px -20px rgba(0,0,0,.6), 0 0 200px -20px rgba(45,212,191,.4); }
.p-shot-tilt.glow-car    { box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 60px 120px -20px rgba(0,0,0,.6), 0 0 200px -20px rgba(59,130,246,.4); }
.p-shot-tilt.glow-social { box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 60px 120px -20px rgba(0,0,0,.6), 0 0 200px -20px rgba(245,158,11,.4); }
.p-shot-tilt.glow-hl     { box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 60px 120px -20px rgba(0,0,0,.6), 0 0 200px -20px rgba(151,252,228,.4); }

/* ============================== SERVICES ============================== */
.services-wrap {
  padding: 130px 0;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.services-wrap::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(900px 500px at 50% 20%, rgba(151,252,228,.08), transparent 60%);
}
.services-wrap > .container { position: relative; z-index: 2; }

.services-head { text-align: center; }
.services-head h2 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 800;
  max-width: 22ch; margin: 14px auto 0;
}
.services-head p {
  margin-top: 18px;
  color: var(--ink-2); font-size: 17px; max-width: 60ch; margin-left: auto; margin-right: auto;
}

.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px; margin-top: 56px;
  perspective: 1400px;
}
.service-card {
  padding: 32px 26px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0));
  border: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
  /* Live variables driven by mousemove — cursor-aware tilt + glow */
  --rx: 0deg;
  --ry: 0deg;
  --mx: 50%;
  --my: 0%;
  transform-style: preserve-3d;
  transform: perspective(1400px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(0) translateZ(0);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), border-color .25s ease, box-shadow .35s ease, background .3s;
  will-change: transform;
}
/* Cursor-following glow */
.service-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(
    360px 220px at var(--mx) var(--my),
    rgba(151,252,228,.22),
    rgba(79,217,138,.08) 40%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
  z-index: 0;
}
/* Faint diagonal shimmer that only shows on hover */
.service-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(151,252,228,.12) 48%, transparent 66%);
  opacity: 0;
  transform: translateX(-30%);
  transition: opacity .35s ease, transform .7s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
  z-index: 0;
}
.service-card > * { position: relative; z-index: 1; }

.service-card:hover {
  border-color: rgba(151,252,228,.35);
  box-shadow: 0 22px 44px -22px rgba(0,0,0,.55), 0 0 70px -22px rgba(151,252,228,.3);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { opacity: 1; transform: translateX(30%); }

.service-ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(151,252,228,.18), rgba(79,217,138,.1));
  border: 1px solid rgba(151,252,228,.18);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: var(--mint); font-size: 22px;
  transition: transform .28s cubic-bezier(.2,.8,.2,1),
              background .28s ease,
              border-color .28s ease,
              box-shadow .28s ease,
              color .28s ease;
}
.service-card:hover .service-ico {
  transform: translateY(-3px) scale(1.08) rotate(-3deg);
  background: linear-gradient(135deg, rgba(151,252,228,.32), rgba(79,217,138,.18));
  border-color: rgba(151,252,228,.45);
  box-shadow: 0 0 28px -6px rgba(151,252,228,.45);
  color: #d4fff0;
}

/* Staggered 3D flip-up entry, triggered when the grid enters the viewport.
   Tighter perspective + bigger rotateX so the dimensional flip is unmistakable. */
@keyframes service-enter {
  from {
    opacity: 0;
    transform: perspective(900px) rotateX(-55deg) translateY(60px);
    filter: blur(6px);
  }
  60% {
    filter: blur(0);
    opacity: 1;
  }
  to {
    opacity: 1;
    transform: perspective(900px) rotateX(0) translateY(0);
    filter: blur(0);
  }
}
.services-grid:not(.in) .service-card { opacity: 0; }
.services-grid.in .service-card {
  animation: service-enter 1.05s cubic-bezier(.2,.9,.3,1.2) both;
  transform-origin: 50% 100%;
}
.services-grid.in .service-card:nth-child(1) { animation-delay: 0ms; }
.services-grid.in .service-card:nth-child(2) { animation-delay: 130ms; }
.services-grid.in .service-card:nth-child(3) { animation-delay: 260ms; }
.services-grid.in .service-card:nth-child(4) { animation-delay: 390ms; }
/* After the entry animation completes, the normal transition owns the transform. */
.services-grid.in .service-card { animation-fill-mode: forwards; }

@media (prefers-reduced-motion: reduce) {
  .services-grid:not(.in) .service-card,
  .services-grid.in .service-card {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
  }
  .service-card,
  .service-card:hover { transition: border-color .2s, box-shadow .2s; transform: none; }
  .service-card::after { display: none; }
}
.service-card h3 { font-size: 19px; letter-spacing: -0.015em; font-weight: 700; }
.service-card p { color: var(--ink-2); font-size: 14.5px; margin-top: 10px; line-height: 1.55; }

/* ============================== CTA ============================== */
.cta-band {
  padding: 130px 0;
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, #04060c 100%);
  border-bottom: 1px solid var(--rule);
}
.cta-band::before {
  content: ""; position: absolute; bottom: -25%; right: -15%; width: 70%; height: 90%;
  background: radial-gradient(circle at center, rgba(151,252,228,.18), transparent 65%);
  filter: blur(60px); pointer-events: none;
}
.cta-band::after {
  content: ""; position: absolute; top: -10%; left: -10%; width: 50%; height: 70%;
  background: radial-gradient(circle at center, rgba(255,143,107,.1), transparent 65%);
  filter: blur(50px); pointer-events: none;
}

.cta-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 2;
}

.cta-copy h2 {
  font-size: clamp(40px, 6.2vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 800;
  margin-top: 22px;
}
.cta-copy p {
  margin-top: 22px;
  color: var(--ink-2); font-size: 18px; line-height: 1.55;
  max-width: 52ch;
}
.cta-stats {
  margin-top: 36px; padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex; gap: 32px; flex-wrap: wrap;
}
.cta-stats > div .l { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 4px; }
.cta-stats > div .v { font-size: 17px; font-weight: 600; color: var(--ink); }
.cta-stats > div .v.green { background: linear-gradient(135deg, var(--mint), var(--green)); -webkit-background-clip: text; background-clip: text; color: transparent; }

.cta-form {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border: 1px solid var(--rule-2);
  border-radius: 22px;
  padding: 32px;
  display: flex; flex-direction: column; gap: 18px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.06);
  position: relative;
  z-index: 2;
}
.cta-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.cta-form label {
  display: flex; flex-direction: column; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3);
}
.cta-form .field { position: relative; }
.cta-form .field i {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--ink-3); font-size: 16px; pointer-events: none;
  transition: color .15s;
}
.cta-form .field input,
.cta-form .field select,
.cta-form textarea {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--rule-2);
  border-radius: 12px;
  padding: 13px 16px 13px 40px;
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
  text-transform: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  outline: none;
  width: 100%;
}
.cta-form textarea {
  padding: 13px 16px;
  resize: vertical; min-height: 110px;
}
.cta-form .field input::placeholder,
.cta-form textarea::placeholder { color: var(--ink-3); font-weight: 400; }
.cta-form .field input:focus,
.cta-form .field select:focus,
.cta-form textarea:focus {
  border-color: rgba(151,252,228,.55);
  background: rgba(151,252,228,.04);
  box-shadow: 0 0 0 4px rgba(151,252,228,.08);
}
.cta-form .field input:focus ~ i,
.cta-form .field select:focus ~ i { color: var(--mint); }
.cta-form .field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236c7380' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.cta-form .field select option { background: #0d1018; color: var(--ink); }

.cta-form .submit {
  margin-top: 4px;
  padding: 16px 22px;
  background: linear-gradient(135deg, var(--mint), var(--green));
  color: #052925;
  font-weight: 700; font-size: 15.5px;
  border-radius: 12px; border: 0; cursor: pointer;
  box-shadow: 0 12px 30px -8px rgba(79,217,138,.5), inset 0 1px 0 rgba(255,255,255,.3);
  transition: transform .15s ease, box-shadow .15s ease, opacity .2s;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
}
.cta-form .submit:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -8px rgba(79,217,138,.6); }
.cta-form .submit:disabled { opacity: .8; cursor: default; transform: none; }
.cta-form .submit i { font-size: 16px; }
.cta-form .submit.error { background: linear-gradient(135deg, #ef4444, #b91c1c); color: #fff; }

/* Honeypot — never visible */
.cta-form .hp { position: absolute; left: -9999px; top: -9999px; opacity: 0; pointer-events: none; }

/* Inline field validation errors */
.cta-form label.invalid > .field input,
.cta-form label.invalid > .field select,
.cta-form label.invalid > textarea {
  border-color: rgba(255, 95, 95, .55);
  background: rgba(255, 95, 95, .05);
  box-shadow: 0 0 0 4px rgba(255, 95, 95, .08);
}
.cta-form label.invalid > .field i { color: #ff8a8a; }
.cta-form .field-error {
  display: flex; align-items: center; gap: 6px;
  font-family: 'Inter', sans-serif;
  text-transform: none; letter-spacing: 0;
  font-size: 12.5px; color: #ff9090;
  margin-top: 6px;
  font-weight: 500;
}
.cta-form .field-error i { font-size: 14px; flex-shrink: 0; }

.cta-form .form-foot {
  text-align: center; margin-top: 4px;
  font-family: 'Inter', sans-serif; font-size: 13.5px; color: var(--ink-3);
  text-transform: none; letter-spacing: 0;
  display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap;
}
.cta-form .form-foot a {
  color: var(--mint); font-weight: 600;
  border-bottom: 1px solid rgba(151,252,228,.35);
  padding-bottom: 1px;
  transition: border-color .15s, color .15s;
  display: inline-flex; align-items: center; gap: 6px;
}
.cta-form .form-foot a:hover { color: #b6ffec; border-bottom-color: var(--mint); }
.cta-form .form-foot a i { font-size: 16px; }

/* ============================== FOOTER ============================== */
footer.site {
  padding: 60px 0 36px;
  background: var(--bg-1);
}
footer.site .grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
footer.site .col-brand img { height: 28px; width: 28px; }
footer.site .col-brand .name { font-weight: 700; font-size: 18px; letter-spacing: -0.015em; }
footer.site .col-brand p {
  color: var(--ink-3); font-size: 14px; margin-top: 14px; max-width: 40ch; line-height: 1.55;
}

footer.site h4 { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px; font-weight: 500; }
footer.site ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
footer.site ul a {
  color: var(--ink-2); font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color .15s;
}
footer.site ul a:hover { color: var(--mint); }
footer.site ul a i { font-size: 15px; color: var(--ink-3); transition: color .15s; }
footer.site ul a:hover i { color: var(--mint); }

footer.site .legal {
  margin-top: 50px; padding-top: 22px;
  border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
footer.site .legal-link {
  color: var(--ink-3);
  border-bottom: 1px dashed rgba(151,252,228,.2);
  padding-bottom: 1px;
  transition: color .15s, border-color .15s;
  display: inline-flex; align-items: center; gap: 4px;
}
footer.site .legal-link:hover { color: var(--mint); border-bottom-color: var(--mint); }
footer.site .legal-link i { font-size: 11px; }

/* ============================== HISTORY PAGE ============================== */
.history-timeline {
  padding: 30px 0 80px;
}
.timeline {
  list-style: none; padding: 0; margin: 0;
  position: relative;
}
.timeline::before {
  content: ""; position: absolute;
  left: 70px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, rgba(151,252,228,.3) 0%, rgba(151,252,228,.05) 100%);
}
.t-item {
  position: relative;
  padding: 18px 0 18px 110px;
  display: block;
}
.t-item::before {
  content: ""; position: absolute;
  left: 64px; top: 24px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--mint);
  box-shadow: 0 0 0 4px rgba(151,252,228,.1);
  z-index: 2;
}
.t-item.t-item-stripe::before {
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(151,252,228,.18), 0 0 16px rgba(151,252,228,.4);
}
.t-item.t-item-feature::before {
  background: var(--peach);
  border-color: var(--peach);
  box-shadow: 0 0 0 4px rgba(255,143,107,.18);
}
.t-year {
  position: absolute;
  left: 0; top: 22px;
  width: 56px;
  text-align: right;
  color: var(--ink-3);
  font-size: 11px;
}
.t-item.t-item-stripe .t-year {
  color: var(--mint);
  white-space: nowrap;
  width: auto;
}
.t-item.t-item-stripe {
  background: linear-gradient(90deg, rgba(151,252,228,.04), rgba(151,252,228,0) 60%);
  border-radius: 0 12px 12px 0;
  padding-top: 22px; padding-bottom: 22px;
}
/* Stripe year: escape the narrow left column so "1999 → today" has room and
   doesn't collide with the timeline dot. Flow it inline above the heading. */
.t-item.t-item-stripe .t-year {
  position: static;
  width: auto; max-width: none;
  text-align: left;
  margin-bottom: 6px;
  color: var(--mint);
  white-space: nowrap;
}
.t-body h3 {
  font-size: 19px; letter-spacing: -0.015em; font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.t-body p {
  color: var(--ink-2);
  font-size: 15px; line-height: 1.55;
}
.t-body p a {
  color: var(--mint);
  border-bottom: 1px solid rgba(151,252,228,.3);
  transition: border-color .15s;
}
.t-body p a:hover { border-bottom-color: var(--mint); }

/* History feature card — BBoyVideo */
.history-feature { padding: 60px 0 90px; }
.hf-card {
  background: linear-gradient(180deg, rgba(255,143,107,.06), rgba(255,143,107,.01));
  border: 1px solid rgba(255,143,107,.18);
  border-radius: 22px;
  padding: 42px;
  position: relative;
  overflow: hidden;
}
.hf-card::before {
  content: ""; position: absolute;
  top: -50%; right: -20%; width: 60%; height: 80%;
  background: radial-gradient(circle at center, rgba(255,143,107,.18), transparent 65%);
  filter: blur(50px);
  pointer-events: none;
}
.hf-head { position: relative; z-index: 2; }
.hf-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05; letter-spacing: -0.025em; font-weight: 800;
  margin-top: 18px;
}
.hf-body {
  margin-top: 26px;
  position: relative; z-index: 2;
  color: var(--ink-2);
  font-size: 16px; line-height: 1.65;
  max-width: 60ch;
}
.hf-body p + p { margin-top: 12px; }
.hf-body strong { color: var(--ink); font-weight: 700; }

.hf-grid {
  margin: 36px 0 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: relative; z-index: 2;
}
.hf-shot {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  background: var(--bg-3);
  display: block;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,.5);
}
.hf-shot:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 0 0 1px rgba(255,143,107,.3), 0 30px 60px -20px rgba(0,0,0,.6), 0 0 80px -20px rgba(255,143,107,.3);
}
.hf-shot img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; object-position: top;
  display: block;
}
.hf-shot figcaption {
  position: absolute; bottom: 8px; left: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,.92);
  background: rgba(0,0,0,.55);
  padding: 3px 8px; border-radius: 5px;
  backdrop-filter: blur(8px);
}

.hf-foot {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,143,107,.18);
  position: relative; z-index: 2;
}
.hf-foot .mono { color: var(--peach); }

/* History closing */
.history-close { padding: 30px 0 120px; text-align: center; }
.hc-copy {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--ink-2);
  line-height: 1.45;
  max-width: 50ch;
  margin: 0 auto 28px;
}
.hc-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 760px) {
  .timeline::before { left: 48px; }
  .t-item { padding-left: 80px; }
  .t-item::before { left: 42px; }
  .t-year { width: 36px; font-size: 10.5px; top: 22px; }
  /* Stripe year stays static (inline-flow above heading) on mobile too */
  .t-item.t-item-stripe .t-year { max-width: none; }

  .hf-card { padding: 26px; }
  .hf-grid { grid-template-columns: 1fr; }

  .lightbox { padding: 20px; }
  .lightbox-close { top: 12px; right: 12px; }
}

/* ============================== LIGHTBOX ============================== */
.lightbox {
  position: fixed; inset: 0;
  z-index: 100;
  background: rgba(2, 3, 10, .86);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  cursor: zoom-out;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-figure {
  max-width: 90vw; max-height: 88vh;
  display: flex; flex-direction: column; gap: 14px; align-items: center;
  transform: scale(.94);
  opacity: 0;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), opacity .3s ease;
  cursor: auto;
}
.lightbox.is-open .lightbox-figure { transform: scale(1); opacity: 1; }
.lightbox-img {
  max-width: 100%;
  max-height: calc(88vh - 40px);
  width: auto; height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.06);
  display: block;
}
.lightbox-caption {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-2); text-align: center;
}
.lightbox-close {
  position: absolute; top: 20px; right: 20px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--ink); font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, transform .15s, border-color .15s;
  cursor: pointer;
  z-index: 2;
}
.lightbox-close:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.25); transform: scale(1.06); }

/* ============================== ARTICLES PAGE ============================== */
.page-hero {
  padding: 160px 0 60px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: -10%;
  background: radial-gradient(900px 500px at 50% 0%, rgba(151,252,228,.18), transparent 60%);
  filter: blur(40px); z-index: 0;
}
.page-hero > .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(48px, 7vw, 88px); line-height: 1; letter-spacing: -0.045em; font-weight: 900; }
.page-hero .lede { color: var(--ink-2); font-size: 18px; line-height: 1.55; margin-top: 18px; max-width: 56ch; }

.articles-list { padding: 60px 0 140px; }
.empty-state {
  border: 1px dashed var(--rule-2); border-radius: 18px;
  padding: 60px 40px; text-align: center;
}
.empty-state h3 { font-size: 24px; letter-spacing: -0.02em; }
.empty-state p { color: var(--ink-2); margin-top: 10px; max-width: 50ch; margin-left: auto; margin-right: auto; }
.empty-state .pill { margin-top: 20px; }

.article-row {
  display: grid; grid-template-columns: 160px 1fr auto;
  gap: 30px; padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
  transition: padding .2s ease;
}
.article-row:hover { padding-left: 8px; }
.article-row .date { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }
.article-row h2 { font-size: 24px; letter-spacing: -0.02em; font-weight: 700; }
.article-row p { color: var(--ink-2); font-size: 15px; margin-top: 6px; }
.article-row .arrow { color: var(--mint); font-size: 22px; }

/* ============================== REVEAL ============================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================== MOBILE RESPONSIVE ============================== */
@media (max-width: 1000px) {
  .product-layout, .product-layout.reverse { grid-template-columns: 1fr; gap: 50px; }
  .product-layout.reverse .p-copy, .product-layout.reverse .p-shot { order: initial; }
  .cta-grid { grid-template-columns: 1fr; gap: 50px; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .strip-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .strip-label { grid-column: 1 / -1; border-right: 0; padding-right: 0; padding-bottom: 8px; border-bottom: 1px solid var(--rule); max-width: 100%; text-align: center; }
}

@media (max-width: 760px) {
  header.site nav { display: none; }
  header.site .cta-area .pill { display: none; }
  header.site .cta-area .btn { padding: 9px 14px; font-size: 13px; }

  .hero { padding: 110px 0 70px; }
  .scramble-h1 { font-size: clamp(48px, 13vw, 88px); }
  .scramble-h1 .word { min-width: 9ch; }
  .label-line { font-size: 11px; letter-spacing: 0.16em; }
  .num-stack { font-size: clamp(220px, 90vw, 460px); }

  .stats { padding: 60px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
  .stat .value { font-size: clamp(40px, 11vw, 60px); }

  .product-block { padding: 80px 0; }
  .feature-list { grid-template-columns: 1fr; gap: 4px; }
  .p-copy .brand .pill { margin-left: 0; }

  .services-wrap { padding: 90px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .services-head h2 { font-size: clamp(32px, 8vw, 48px); }

  .cta-band { padding: 90px 0; }
  .cta-form { padding: 24px; }
  .cta-form .form-row { grid-template-columns: 1fr; gap: 16px; }
  .cta-stats { gap: 22px; }

  footer.site .grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  footer.site .col-brand { grid-column: 1 / -1; }

  .article-row { grid-template-columns: 1fr; gap: 6px; }
  .article-row .arrow { display: none; }
}

@media (max-width: 460px) {
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .strip-grid { grid-template-columns: 1fr; }
  footer.site .grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-stats { gap: 16px; }
}
