/* ============================================================================
   PRAVEGH  ·  v2.0  ·  "Instrument panel for growth"
   Dark-dominant engineered aesthetic. Purple #6C22DA as sharp signal.
   Amber reserved for money metrics only. No em or en dashes anywhere.
   Type: Archivo (display), IBM Plex Mono (labels/metrics), Hanken Grotesk (body).
   ============================================================================ */

/* ----------------------------------- TOKENS ------------------------------- */
:root {
  /* brand signal (purple locked) */
  --signal: #6C22DA;
  --signal-hi: #A776F6;     /* lighter purple for text/links on dark */
  --signal-dim: rgba(108, 34, 218, 0.16);
  --signal-glow: rgba(120, 54, 224, 0.40);

  /* money accent (metrics only) */
  --amber: #E7B24C;
  --amber-dim: rgba(231, 178, 76, 0.14);

  /* surfaces (near-black violet) */
  --base: #09070F;
  --base-2: #0C0A15;
  --surface: #120E1D;
  --surface-2: #191325;
  --raised: #1E1730;

  /* lines */
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --line-3: rgba(255, 255, 255, 0.22);

  /* text */
  --text: #ECEAF3;
  --text-2: #B4AEC6;
  --muted: #7C7590;
  --white: #FFFFFF;

  /* geometry + motion */
  --maxw: 1180px;
  --gutter: 24px;
  --r: 4px;
  --r-lg: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --font-display: "Archivo", "Segoe UI", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", monospace;
  --font-body: "Hanken Grotesk", "Segoe UI", system-ui, sans-serif;
}

/* ----------------------------------- RESET -------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  /* blueprint grid + grain baked into the body background: non-fixed and mask-free,
     so it does not force a full-screen recomposite on every scroll frame */
  background-color: var(--base);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"),
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 160px 160px, 72px 72px, 72px 72px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--signal); color: #fff; }

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

/* ----------------------------------- LAYOUT ------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

.section { position: relative; padding: 118px 0; }
.section--tight { padding: 78px 0; }
.section.paper2 { background: var(--base-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section.dark { background:
    radial-gradient(90% 120% at 50% 0%, rgba(108,34,218,0.10) 0%, transparent 55%),
    var(--base); }

/* ------------------------------- SHARED TYPE ------------------------------ */
.kicker,
.eyebrow,
.trust__label,
.trust__more,
.step__meta,
.seg-cat,
.footer__col h5,
.nav__links a,
.btn,
.work-card__eyebrow,
.member span,
.marquee span,
.cat { font-family: var(--font-mono); }

body { counter-reset: kick; }

.kicker {
  counter-increment: kick;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal-hi);
  margin-bottom: 22px;
}
.kicker::before {
  content: "";
  width: 15px; height: 15px; flex: 0 0 auto;
  background: var(--signal-hi);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0 L13.8 10.2 L24 12 L13.8 13.8 L12 24 L10.2 13.8 L0 12 L10.2 10.2 Z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0 L13.8 10.2 L24 12 L13.8 13.8 L12 24 L10.2 13.8 L0 12 L10.2 10.2 Z'/%3E%3C/svg%3E") no-repeat center / contain;
}

.h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 34ch;
}
.lead {
  margin-top: 22px;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.6;
  color: var(--text-2);
  max-width: 58ch;
}

/* --------------------------------- BUTTONS -------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: var(--r);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--signal);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(167,118,246,0.35) inset, 0 10px 30px -12px var(--signal-glow);
}
.btn--primary:hover {
  background: #7a30ec;
  box-shadow: 0 0 0 1px rgba(167,118,246,0.6) inset, 0 14px 40px -12px var(--signal-glow);
}
.btn--ghost {
  background: rgba(255,255,255,0.02);
  color: var(--text);
  border-color: var(--line-2);
}
.btn--ghost:hover { border-color: var(--line-3); background: rgba(255,255,255,0.05); }
.btn--ghost-dark {
  background: rgba(255,255,255,0.02); color: var(--text); border: 1px solid var(--line-2);
  display: inline-flex; align-items: center; padding: 14px 22px; border-radius: var(--r);
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.btn--ghost-dark:hover { border-color: var(--line-3); background: rgba(255,255,255,0.05); }
.btn--nav { padding: 11px 18px; }

/* ----------------------------------- NAV ---------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(9, 7, 15, 0.78);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav__logo img { height: 36px; width: auto; }
.nav__logo .logo-dark { display: none; }   /* dark-only theme: always white wordmark */

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a {
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--signal-hi); transition: width 0.25s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__burger { display: none; background: none; border: none; color: var(--text); cursor: pointer; }

/* ----------------------------------- HERO --------------------------------- */
.hero { position: relative; padding: 112px 0 0; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__grid { display: none; }  /* grid now comes from the body background */
.hero__glow {
  position: absolute; top: -10%; right: 2%; width: 620px; height: 620px;
  background: radial-gradient(circle, var(--signal-glow) 0%, transparent 62%);
  filter: blur(30px); opacity: 0.55;
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr; gap: 0; align-items: start;
  min-height: 58vh;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 11px;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-2);
  padding: 8px 14px;
  border: 1px solid var(--line-2);
  border-radius: 100px;
  background: rgba(255,255,255,0.02);
}
.eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--signal-hi); box-shadow: 0 0 0 0 var(--signal-glow);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(167,118,246,0.5); }
  70% { box-shadow: 0 0 0 9px rgba(167,118,246,0); }
  100% { box-shadow: 0 0 0 0 rgba(167,118,246,0); }
}

.hero__copy h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5.2vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 22px 0 0;
  max-width: 1000px;
  color: var(--text);
}
.hero__copy h1 .accent { color: var(--signal-hi); }
.hero__sub, .hero__body {
  margin-top: 22px; font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.55; color: var(--text-2); max-width: 46ch;
}
.hero__sub { max-width: 62ch; }
.hero__ctas { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }

/* hero staggered load */
.hero__copy > * { opacity: 0; transform: translateY(18px); animation: fadeUp 0.8s var(--ease-out) forwards; }
.hero__copy .eyebrow { animation-delay: 0.05s; }
.hero__copy h1 { animation-delay: 0.16s; }
.hero__sub, .hero__body { animation-delay: 0.30s; }
.hero__ctas { animation-delay: 0.42s; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

/* hero spark visual */
.hero__visual { position: relative; display: flex; justify-content: center; align-items: center; }
.spark-art { width: min(340px, 78%); height: auto; overflow: visible; filter: drop-shadow(0 0 40px var(--signal-glow)); }
.spark-art .arc {
  stroke-dasharray: 420; stroke-dashoffset: 420;
  animation: drawArc 1.5s var(--ease-out) forwards;
}
.spark-art .arc:nth-of-type(1) { animation-delay: 0.55s; }
.spark-art .arc:nth-of-type(2) { animation-delay: 0.68s; }
.spark-art .arc:nth-of-type(3) { animation-delay: 0.81s; }
.spark-art .arc:nth-of-type(4) { animation-delay: 0.94s; }
.spark-art .core { opacity: 0; transform-origin: 200px 110px; animation: corePop 0.9s var(--ease-out) 0.35s forwards; }
@keyframes drawArc { to { stroke-dashoffset: 0; } }
@keyframes corePop { 0% { opacity: 0; transform: scale(0.4) rotate(-12deg); } 100% { opacity: 1; transform: none; } }

/* instrument rings behind the spark */
.spark-rings { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; z-index: -1; }
.spark-rings span { position: absolute; border: 1px solid var(--line); border-radius: 50%; }
.spark-rings span:nth-child(1) { width: 300px; height: 300px; }
.spark-rings span:nth-child(2) { width: 440px; height: 440px; opacity: 0.6; }
.spark-rings span:nth-child(3) { width: 580px; height: 580px; opacity: 0.35; }

/* --------------------------------- MARQUEE -------------------------------- */
.marquee {
  position: relative; z-index: 1; margin-top: 74px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden; padding: 16px 0; background: rgba(255,255,255,0.012);
}
.marquee__track { display: flex; gap: 0; width: max-content; animation: scroll 42s linear infinite; }
.marquee span {
  font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
  padding: 0 26px; position: relative; white-space: nowrap;
}
.marquee span::after { content: "/"; position: absolute; right: -3px; color: var(--line-3); }
@keyframes scroll { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ---------------------------------- TRUST --------------------------------- */
.trust { border-bottom: 1px solid var(--line); background: var(--base-2); }
.trust__inner { display: flex; align-items: center; gap: 26px; padding: 26px 0; flex-wrap: wrap; }
.trust__label { font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.trust__names { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.trust__names span { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--text); letter-spacing: -0.01em; }
.trust__names i { color: var(--signal-hi); font-style: normal; }
.trust__more { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-left: auto; }

/* --------------------------------- COMPARE -------------------------------- */
.compare { margin-top: 54px; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--surface); }
.compare__head { display: grid; grid-template-columns: 1fr 1fr; }
.compare__head > div { padding: 18px 26px; font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; }
.h-old { color: var(--muted); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.h-new {
  color: var(--text); border-bottom: 1px solid var(--line); background: var(--signal-dim);
  display: flex; align-items: center; gap: 10px;
}
.h-new svg { color: var(--signal-hi); }
.compare__row { display: grid; grid-template-columns: 1fr 1fr; }
.compare__row:not(:last-child) > div { border-bottom: 1px solid var(--line); }
.c-old, .c-new { padding: 20px 26px; font-size: 15.5px; line-height: 1.45; }
.c-old { color: var(--muted); border-right: 1px solid var(--line); }
.c-new { color: var(--text); display: flex; align-items: flex-start; gap: 12px; background: rgba(108,34,218,0.05); }
.c-new svg { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 3px; color: var(--signal-hi); }

/* ---------------------------------- STEPS --------------------------------- */
.steps { margin-top: 54px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step {
  position: relative; display: flex; flex-direction: column;
  padding: 30px 26px 26px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.step:hover { transform: translateY(-4px); border-color: var(--line-2); }
.step__badge { display: none; }  /* numbers removed; icon carries the step */
.step h3 { font-family: var(--font-display); font-weight: 700; font-size: 21px; letter-spacing: -0.01em; margin: 4px 0 12px; color: var(--text); }
.step p { color: var(--text-2); font-size: 15.5px; line-height: 1.55; flex: 1 0 auto; }
.step__meta { margin-top: 18px; font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); padding-top: 16px; border-top: 1px solid var(--line); }
.after-steps { margin-top: 34px; font-size: 17px; color: var(--text-2); max-width: 62ch; }
.after-steps b { color: var(--text); font-weight: 600; }

/* ---------------------------------- STATS --------------------------------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.stat { padding: 40px 30px; border-right: 1px solid var(--line); background: var(--surface); }
.stat:last-child { border-right: none; }
.stat__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(38px, 5vw, 58px); letter-spacing: -0.03em; line-height: 1; color: var(--text); font-variant-numeric: tabular-nums; }
.stat__num.is-money { color: var(--amber); }
.stat__label { margin-top: 16px; font-size: 14px; line-height: 1.5; color: var(--text-2); max-width: 30ch; }

/* -------------------------------- SERVICES -------------------------------- */
.svc-list { margin-top: 50px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-lg); overflow: hidden; }
.svc {
  display: flex; align-items: center; gap: 14px; padding: 20px 22px;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  font-size: 16px; color: var(--text); transition: background 0.2s var(--ease);
}
.svc:hover { background: rgba(255,255,255,0.025); }
.svc .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--signal-hi); flex: 0 0 auto; box-shadow: 0 0 8px var(--signal-glow); }

/* ---------------------------------- TEAM ---------------------------------- */
.team { margin-top: 50px; display: flex; gap: 18px; flex-wrap: wrap; }
.member {
  display: flex; align-items: center; gap: 18px; padding: 22px 26px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); min-width: 280px; flex: 1;
}
.member__mark {
  width: 52px; height: 52px; border-radius: var(--r); flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 24px; color: #fff;
  background: linear-gradient(150deg, var(--signal-hi), var(--signal));
}
.member h4 { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--text); letter-spacing: -0.01em; }
.member span { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.capacity {
  margin-top: 30px; padding: 24px 28px; border: 1px solid var(--line); border-left: 3px solid var(--signal);
  border-radius: var(--r); background: rgba(108,34,218,0.05); color: var(--text-2); font-size: 16px; max-width: 74ch;
}
.capacity b { color: var(--text); font-weight: 600; }

/* -------------------------------- WORK CARDS ------------------------------ */
.work-grid { margin-top: 54px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.work-card {
  position: relative; padding: 34px 32px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  transition: transform 0.28s var(--ease), border-color 0.28s var(--ease);
}
.work-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--signal), transparent 70%); opacity: 0.7; }
.work-card:hover { transform: translateY(-5px); border-color: var(--line-2); }
.work-card__eyebrow { font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.work-card__name { font-family: var(--font-display); font-weight: 800; font-size: 30px; letter-spacing: -0.02em; color: var(--text); margin: 12px 0 22px; }
.work-card__name .unnamed { color: var(--text-2); font-weight: 700; font-size: 24px; }
.work-card__metric { display: flex; align-items: baseline; gap: 16px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.work-card__big { font-family: var(--font-display); font-weight: 800; font-size: clamp(38px, 5vw, 52px); letter-spacing: -0.03em; line-height: 1; color: var(--text); font-variant-numeric: tabular-nums; white-space: nowrap; }
.work-card__big.is-money { color: var(--amber); }
.work-card__unit { font-size: 13.5px; line-height: 1.4; color: var(--muted); }
.work-card__story { margin-top: 22px; font-size: 15.5px; line-height: 1.62; color: var(--text-2); }

.work-disclaimer { margin-top: 26px; font-family: var(--font-mono); font-size: 12px; line-height: 1.7; color: var(--muted); max-width: 90ch; }

/* ------------------------------- INDUSTRIES ------------------------------- */
.seg { margin-top: 50px; border-top: 1px solid var(--line); }
.seg-row {
  display: grid; grid-template-columns: 0.9fr 1fr 1.6fr; gap: 24px; align-items: center;
  padding: 22px 6px; border-bottom: 1px solid var(--line);
  transition: background 0.2s var(--ease), padding-left 0.2s var(--ease);
}
.seg-row:hover { background: rgba(255,255,255,0.02); padding-left: 16px; }
.seg-cat { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--signal-hi); }
.seg-client { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--text); letter-spacing: -0.01em; }
.seg-client .unnamed { color: var(--text-2); font-weight: 500; font-size: 16px; font-family: var(--font-body); }
.seg-desc { font-size: 15px; color: var(--text-2); line-height: 1.5; }

/* --------------------------------- PILLARS -------------------------------- */
.pillars { margin-top: 50px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.pillar { padding: 34px 32px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); }
.pillar h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -0.01em; color: var(--text); margin-bottom: 14px; }
.pillar p { color: var(--text-2); font-size: 15.5px; line-height: 1.6; }

/* --------------------------------- TEASER --------------------------------- */
.teaser {
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  padding: 40px 40px; border: 1px solid var(--line); border-radius: var(--r-lg);
  background: linear-gradient(120deg, var(--surface), var(--base-2));
}
.teaser h3 { font-family: var(--font-display); font-weight: 800; font-size: clamp(24px, 3vw, 34px); letter-spacing: -0.02em; color: var(--text); }
.teaser p { margin-top: 10px; color: var(--text-2); font-size: 16px; max-width: 52ch; }

/* -------------------------------- CTA BAND -------------------------------- */
.cta-band { position: relative; overflow: hidden; text-align: center; background: var(--base-2); border-top: 1px solid var(--line); }
.cta-band .hero__bg { z-index: 0; }
.cta-band .wrap { position: relative; z-index: 1; max-width: 780px; }
.cta-band h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(34px, 5vw, 60px); letter-spacing: -0.03em; line-height: 1.02; color: var(--text); }
.cta-band p { margin: 22px auto 34px; color: var(--text-2); font-size: 18px; line-height: 1.55; max-width: 60ch; }

/* --------------------------------- FOOTER --------------------------------- */
.footer { background: var(--base-2); border-top: 1px solid var(--line); padding: 74px 0 40px; }
.footer__top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 46px; border-bottom: 1px solid var(--line); }
.footer__brand img { height: 26px; margin-bottom: 18px; }
.footer__brand p { color: var(--muted); font-size: 15px; line-height: 1.6; max-width: 34ch; }
.footer__col h5 { font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer__col a { display: block; color: var(--text-2); font-size: 15px; padding: 5px 0; transition: color 0.2s var(--ease); }
.footer__col a:hover { color: var(--signal-hi); }
.footer__col a svg { width: 15px; height: 15px; flex: 0 0 auto; }
.footer__col a.with-ic { display: inline-flex; align-items: center; gap: 9px; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 26px; flex-wrap: wrap; }
.cat { font-size: 11.5px; letter-spacing: 0.03em; color: var(--muted); line-height: 1.6; }
.footer__legal { display: flex; gap: 22px; }
.footer__legal a { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.footer__legal a:hover { color: var(--text-2); }

/* ------------------------------ SECTION CTA ------------------------------- */
.section-cta { margin-top: 42px; }

/* --------------------------- PLACEHOLDER BADGE ---------------------------- */
.placeholder-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px dashed var(--line-3);
  border-radius: 3px;
  padding: 3px 8px;
  margin-bottom: 18px;
}

/* ------------------------------ TESTIMONIALS ------------------------------ */
.quotes { margin-top: 52px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.quote {
  position: relative; display: flex; flex-direction: column;
  padding: 30px 28px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r-lg);
}
.quote blockquote {
  font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: var(--text);
  margin: 0 0 22px;
}
.quote blockquote::before { content: "\201C"; font-family: var(--font-display); font-size: 40px; line-height: 0; color: var(--signal-hi); margin-right: 2px; vertical-align: -0.35em; }
.quote figcaption { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 3px; }
.quote__name { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--text); }
.quote__role { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }

/* -------------------------------- RESOURCES ------------------------------- */
.res-grid { margin-top: 52px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.res-card {
  display: block; padding: 30px 28px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.res-card:hover { transform: translateY(-4px); border-color: var(--line-2); }
.res-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -0.01em; color: var(--text); margin-bottom: 12px; }
.res-card p { color: var(--text-2); font-size: 15px; line-height: 1.55; }

/* ------------------------------ VANTA HERO -------------------------------- */
.vanta-hero { position: absolute; inset: 0; z-index: 0; pointer-events: auto; }
/* soft scrim so the birds never wash out the headline/subhead on the left */
.hero > .hero__bg::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(105deg, var(--base) 14%, rgba(9,7,15,0.58) 42%, transparent 74%);
}
/* let a hover pass through the hero content down to the birds, but keep the buttons clickable */
.hero__inner, .marquee { position: relative; z-index: 2; }
.hero__inner { pointer-events: none; }
.hero__inner a, .hero__inner button { pointer-events: auto; }

/* --------------------------------- ICONS ---------------------------------- */
.svgi {
  display: inline-block; background: currentColor;
  -webkit-mask: var(--i) no-repeat center / contain;
  mask: var(--i) no-repeat center / contain;
}
.step__icon { display: block; width: 32px; height: 32px; color: var(--signal-hi); margin-bottom: 20px; }
.sd-icon { display: block; width: 36px; height: 36px; color: var(--signal-hi); margin-bottom: 18px; }
.seg-icon { width: 20px; height: 20px; color: var(--signal-hi); flex: 0 0 auto; }
.seg-cat { display: flex; align-items: center; gap: 10px; }

/* ---------------------------------- FAQ ----------------------------------- */
.faq { margin-top: 50px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 24px 2px;
  font-family: var(--font-display); font-weight: 600; font-size: clamp(17px, 2vw, 21px);
  letter-spacing: -0.01em; color: var(--text);
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--font-mono); font-size: 24px; line-height: 1;
  color: var(--signal-hi); flex: 0 0 auto; transition: transform 0.25s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--text-2); font-size: 16px; line-height: 1.65; padding: 0 2px 26px; max-width: 82ch; }

/* ------------------------------- PAGE HERO -------------------------------- */
.page-hero { position: relative; overflow: hidden; padding: 170px 0 74px; border-bottom: 1px solid var(--line); }
.page-hero .hero__bg { z-index: 0; }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(38px, 6vw, 72px); line-height: 1.0; letter-spacing: -0.03em; color: var(--text); margin: 22px 0 0; max-width: 18ch; }
.page-hero h1 .accent { color: var(--signal-hi); }
.page-hero .lead { max-width: 56ch; }
.crumb { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.crumb a { color: var(--signal-hi); }

/* prose blocks for content pages */
.prose { max-width: 68ch; }
.prose p { color: var(--text-2); font-size: 16.5px; line-height: 1.7; margin-bottom: 18px; }
.prose p b { color: var(--text); font-weight: 600; }

/* service detail rows */
.svc-detail { margin-top: 54px; display: grid; gap: 18px; }
.svc-detail-card { padding: 34px 32px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 30px; align-items: start; }
.svc-detail-card .sd-head h3 { font-family: var(--font-display); font-weight: 800; font-size: 24px; letter-spacing: -0.02em; color: var(--text); }
.svc-detail-card .sd-head .sd-tag { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--signal-hi); display: block; margin-bottom: 12px; }
.svc-detail-card .sd-body p { color: var(--text-2); font-size: 15.5px; line-height: 1.6; margin-bottom: 14px; }
.svc-detail-card .sd-body ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.svc-detail-card .sd-body li { font-family: var(--font-mono); font-size: 12px; color: var(--text-2); border: 1px solid var(--line-2); border-radius: 3px; padding: 5px 10px; }

/* ------------------------------ 80/20 SPECIFIC ---------------------------- */
.eighty-hero .hero__inner { min-height: 52vh; }
.eighty-hero h1 { font-size: clamp(34px, 5.4vw, 62px); max-width: 18ch; }
.big-stat { font-family: var(--font-display); font-weight: 800; font-size: clamp(64px, 12vw, 150px); line-height: 0.8; letter-spacing: -0.05em; color: var(--signal-hi); opacity: 0.9; }
.split { margin-top: 54px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.col-card { padding: 34px 32px; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); }
.col-card.bad { opacity: 0.94; }
.col-card.good { border-color: rgba(167,118,246,0.3); background: rgba(108,34,218,0.05); }
.col-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -0.01em; color: var(--text); margin-bottom: 22px; }
.checklist { list-style: none; display: flex; flex-direction: column; gap: 15px; }
.checklist li { display: flex; align-items: flex-start; gap: 13px; font-size: 15.5px; line-height: 1.45; color: var(--text-2); }
.checklist li svg { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 3px; }
.col-card.bad .checklist li svg { color: var(--muted); }
.col-card.good .checklist li { color: var(--text); }
.col-card.good .checklist li svg { color: var(--signal-hi); }

/* --------------------------------- LEGAL ---------------------------------- */
.legal { padding: 150px 0 100px; }
.legal h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(32px, 5vw, 48px); letter-spacing: -0.02em; color: var(--text); margin-bottom: 10px; }
.legal .updated { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 30px; }
.legal p { color: var(--text-2); font-size: 16px; line-height: 1.7; max-width: 70ch; margin-bottom: 18px; }
.legal a { color: var(--signal-hi); }

/* -------------------------------- REVEAL ---------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }

/* -------------------------------- RESPONSIVE ------------------------------ */
@media (max-width: 980px) {
  .section { padding: 88px 0; }
  .hero__inner { grid-template-columns: 1fr; min-height: auto; gap: 20px; }
  .hero__visual { order: -1; margin-bottom: 10px; }
  .spark-art { width: 210px; }
  .spark-rings span:nth-child(3) { display: none; }
  .steps { grid-template-columns: 1fr; }
  .svc-list { grid-template-columns: 1fr 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .pillars, .split { grid-template-columns: 1fr; }
  .quotes, .res-grid { grid-template-columns: 1fr; }
  .svc-detail-card { grid-template-columns: 1fr; gap: 16px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .seg-row { grid-template-columns: 1fr; gap: 6px; padding: 18px 6px; }
  .seg-client { font-size: 17px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav__links {
    position: fixed; top: 68px; left: 0; right: 0;
    background: rgba(9,7,15,0.97); backdrop-filter: blur(16px);
    flex-direction: column; align-items: flex-start; gap: 0;
    padding: 8px 24px 20px; border-bottom: 1px solid var(--line);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  }
  .nav__links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a { width: 100%; padding: 13px 0; border-bottom: 1px solid var(--line); }
  .nav__burger { display: inline-flex; }
  .btn--nav { display: none; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: none; }
  .compare__head > div, .c-old, .c-new { padding: 15px 18px; font-size: 14px; }
  .svc-list { grid-template-columns: 1fr; }
  .work-card, .pillar, .col-card, .step { padding: 26px 22px; }
  .teaser { padding: 30px 26px; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .marquee { margin-top: 50px; }
  .trust__more { margin-left: 0; }
  .trust__inner { gap: 14px; }
}

/* --------------------------- REDUCED MOTION ------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .hero__copy > * { opacity: 1; transform: none; }
  .spark-art .arc { stroke-dashoffset: 0; }
  .spark-art .core { opacity: 1; transform: none; }
  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
}
