/* ============================================================
   THE TRIBE — v2
   Built for attention. Designed for interaction. Activated for impact.
   Dark cinematic system. Anton (compressed display) + Hanken Grotesk (body).
   The lime dot is the signature: a live signal that appears in every section.
   ============================================================ */

/* ---- Tokens ---- */
:root {
  /* Color (brief, exact) */
  --ink:        #060616;  /* canvas, blue-black */
  --ink-2:      #0b0b1d;  /* raised panels on canvas */
  --ink-3:      #101027;  /* hero field glow base */
  --surface:    #383845;  /* cards */
  --surface-2:  #43434f;  /* card hover */
  --white:      #ffffff;
  --muted:      #999999;
  --lime:       #c1fd3a;  /* primary signal */
  --lime-2:     #bbee49;  /* secondary */
  --lime-deep:  #a6e617;  /* press/hover on lime fills */
  --coral:      #e85c41;  /* rare highlight */
  --line:       rgba(255,255,255,0.10);
  --line-2:     rgba(255,255,255,0.16);
  --line-dark:  rgba(6,6,22,0.16);   /* hairline on lime */

  /* Type */
  --f-display: "Anton", "Arial Narrow", system-ui, sans-serif;
  --f-body:    "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  /* Radius */
  --r-card: 52px;
  --r-card-sm: 32px;
  --r-pill: 999px;

  /* Layout */
  --shell-max: 1320px;
  --gutter: clamp(20px, 5vw, 80px);
  --section-pad: clamp(80px, 12vw, 200px);

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-snap: cubic-bezier(0.34, 1.4, 0.4, 1);
  --dur: 700ms;
}

/* ---- Reset + base ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

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

body {
  background: var(--ink);
  color: var(--white);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

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

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

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

.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 9999;
  background: var(--lime); color: var(--ink);
  padding: 10px 18px; border-radius: var(--r-pill);
  font-weight: 700; transform: translateY(-160%);
  transition: transform var(--dur) var(--ease);
}
.skip-link:focus { transform: translateY(0); }

/* ---- Layout shell ---- */
.shell {
  width: 100%;
  max-width: var(--shell-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ============================================================
   Type utilities
   ============================================================ */
.display, .display-md, .display-sm {
  font-family: var(--f-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.86;
  letter-spacing: -0.01em;
}
.display    { font-size: clamp(58px, 12.5vw, 196px); line-height: 0.94; }
.display-md { font-size: clamp(40px, 7.5vw, 116px); line-height: 0.9; }
.display-sm { font-size: clamp(30px, 5.2vw, 76px);  line-height: 0.92; }

.h-lg {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: clamp(23px, 3.1vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.body-lg {
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.55;
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
}
.eyebrow--dark { color: var(--ink); }
/* Eyebrows hidden site-wide except in the proof section */
.eyebrow { display: none; }
.proof .eyebrow { display: inline-flex; }

/* ---- Dot system (the signature) ---- */
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--lime); display: inline-block; flex: none;
}
.dot--dark { background: var(--ink); }
.dot--pulse { position: relative; }
.dot--pulse::after {
  content: ""; position: absolute; inset: -4px;
  border-radius: 50%; border: 1.5px solid var(--lime);
  animation: pulse 2400ms var(--ease) infinite;
}
@keyframes pulse {
  0%   { transform: scale(0.6); opacity: 0.9; }
  70%  { transform: scale(2.0); opacity: 0; }
  100% { transform: scale(2.0); opacity: 0; }
}
.title-dot {
  width: 0.13em; height: 0.13em; border-radius: 50%;
  background: var(--lime); display: inline-block;
  vertical-align: baseline; margin-left: 0.12em;
}
.livedot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lime); display: inline-block; flex: none;
  box-shadow: 0 0 0 0 rgba(193,253,58,0.6);
  animation: blip 1800ms ease-out infinite;
}
.livedot--sm { width: 6px; height: 6px; }
@keyframes blip {
  0% { box-shadow: 0 0 0 0 rgba(193,253,58,0.5); }
  70%, 100% { box-shadow: 0 0 0 7px rgba(193,253,58,0); }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
  will-change: transform;
}
.btn--lg { padding: 20px 34px; font-size: 17px; }
.btn--primary { background: var(--lime); color: var(--ink); }
.btn--primary:hover { background: var(--lime-2); transform: translateY(-2px); }
.btn--primary:active { background: var(--lime-deep); transform: translateY(0); }
.btn--ghost { border: 1.5px solid var(--line-2); color: var(--white); }
.btn--ghost:hover { border-color: var(--lime); color: var(--lime); transform: translateY(-2px); }
.btn--invert { background: var(--ink); color: var(--white); }
.btn--invert:hover { background: #15152e; transform: translateY(-2px); }
.btn__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ink); flex: none; }
.btn__dot--light { background: var(--lime); }

/* ---- Pills / tags ---- */
.pill {
  display: inline-flex; align-items: center;
  padding: 7px 13px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-2);
  font-size: 12px; font-weight: 500; color: var(--muted);
  letter-spacing: 0.01em;
}

/* ============================================================
   LOADER
   ============================================================ */
.loader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--ink);
  display: grid; place-items: center;
  overflow: hidden;
}
.loader.is-done {
  transform: translateY(-100%);
  transition: transform 900ms var(--ease);
}
.loader__inner { text-align: center; padding-inline: 24px; }
/* Logo wordmark, revealed by a lime "signal" scan sweeping left to right */
.loader__logo { position: relative; width: clamp(240px, 56vw, 660px); margin: 0 auto; }
.loader__svg {
  width: 100%; height: auto; display: block;
  clip-path: inset(0 100% 0 0);
  animation: scanReveal 1300ms cubic-bezier(0.55, 0, 0.2, 1) 240ms forwards;
}
@keyframes scanReveal { to { clip-path: inset(0 0 0 0); } }
.loader__scan {
  position: absolute; top: -9%; bottom: -9%; left: 0; width: 3px;
  background: var(--lime); box-shadow: 0 0 18px 2px rgba(193,253,58,0.7);
  opacity: 0;
  animation: scanLine 1300ms cubic-bezier(0.55, 0, 0.2, 1) 240ms forwards;
}
@keyframes scanLine {
  0% { left: 0%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}
.loader__lgdot {
  transform-box: fill-box; transform-origin: center;
  animation: lgDotPulse 1.6s ease-in-out 1450ms infinite;
}
@keyframes lgDotPulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.55; transform: scale(1.22); } }

.loader__status {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 360px; margin: 32px auto 0;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
  opacity: 0; animation: fadeIn 600ms ease 700ms forwards;
}
.loader__count { color: var(--lime); font-variant-numeric: tabular-nums; }
@keyframes fadeIn { to { opacity: 1; } }

.loader__bar {
  position: absolute; left: 0; bottom: 0; width: 100%; height: 3px;
  background: var(--line);
}
.loader__bar-fill { display: block; height: 100%; width: 0%; background: var(--lime); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  padding-block: 18px;
  transition: background var(--dur) var(--ease), backdrop-filter var(--dur) var(--ease), padding var(--dur) var(--ease), border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(6,6,22,0.72);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom-color: var(--line);
  padding-block: 12px;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.header__logo img { width: 138px; height: auto; }
.header__nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 44px); }
.header__links { display: flex; gap: clamp(18px, 2.2vw, 34px); }
.header__links a {
  font-size: 15px; font-weight: 500; color: var(--white);
  position: relative; padding-block: 4px;
  transition: color var(--dur) var(--ease);
}
.header__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--lime); border-radius: 2px;
  transition: width 320ms var(--ease);
}
.header__links a:hover { color: var(--lime); }
.header__links a:hover::after { width: 100%; }
.header__burger { display: none; width: 44px; height: 44px; position: relative; }
.header__burger span {
  position: absolute; left: 11px; width: 22px; height: 2px; background: var(--white);
  border-radius: 2px; transition: transform 320ms var(--ease), opacity 200ms;
}
.header__burger span:nth-child(1) { top: 18px; }
.header__burger span:nth-child(2) { top: 25px; }
body.menu-open .header__burger span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
body.menu-open .header__burger span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* Mobile overlay menu */
.menu {
  position: fixed; inset: 0; z-index: 95;
  background: var(--ink);
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: var(--gutter);
  transform: translateY(-100%); transition: transform 600ms var(--ease);
  visibility: hidden;
}
.menu.is-open { transform: translateY(0); visibility: visible; }
.menu__links { display: flex; flex-direction: column; gap: 6px; margin-bottom: 36px; }
.menu__links a {
  display: flex; align-items: center; gap: 18px;
  font-family: var(--f-display); text-transform: uppercase;
  font-size: clamp(40px, 13vw, 76px); line-height: 1.04; color: var(--white);
}
.menu__dot { width: 12px; height: 12px; border-radius: 50%; background: var(--lime); flex: none; }
.menu__cta { align-self: flex-start; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: 120px; padding-bottom: 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(193,253,58,0.06), transparent 55%),
    radial-gradient(80% 60% at 80% 90%, rgba(123,97,255,0.06), transparent 60%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1.2px, transparent 1.2px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 40%, #000 30%, transparent 75%);
  mask-image: radial-gradient(120% 90% at 50% 40%, #000 30%, transparent 75%);
}
.hero__inner { position: relative; z-index: 2; max-width: 1000px; }
.hero__eyebrow { margin-bottom: 26px; }
.hero__title { margin-bottom: 0; }
.hero__line { display: block; overflow: hidden; }
.hero__mask { display: inline-block; will-change: transform; }
.hero__mask--accent { color: var(--lime); }
.js .hero__mask { transform: translateY(115%); }
.is-loaded .hero__mask { transform: translateY(0); transition: transform 900ms var(--ease-snap); }
.is-loaded .hero__line:nth-child(2) .hero__mask { transition-delay: 90ms; }
.is-loaded .hero__line:nth-child(3) .hero__mask { transition-delay: 180ms; }

.hero__support {
  max-width: 560px; margin-top: 30px; color: var(--muted);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero__cue {
  position: absolute; left: var(--gutter); bottom: 28px; z-index: 2;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
}

/* ---- Floating cards (hero field) ---- */
.hero__field {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
}

/* ---- Background atmosphere: faint orbits + a pulsing signal node ---- */
.hero__signal { position: absolute; border-radius: 50%; pointer-events: none; }
.hero__signal--left {
  width: 580px; height: 580px; left: -180px; bottom: -210px;
  border: 1px solid rgba(255,255,255,0.05);
}
.hero__signal--left::before {
  content: ""; position: absolute; inset: 96px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.035);
}
.hero__signal--right {
  width: 380px; height: 380px; right: -130px; top: -120px;
  border: 1px solid rgba(255,255,255,0.04);
}
.hero__signal--center {
  width: 56px; height: 56px; left: 57%; top: 30%;
  display: grid; place-items: center; display: none;
}
.hero__signal--center::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(193,253,58,0.45);
  animation: pulse 2600ms var(--ease) infinite;
}
.hero__signal--center::after {
  content: ""; width: 11px; height: 11px; border-radius: 50%;
  background: var(--lime); box-shadow: 0 0 16px rgba(193,253,58,0.6);
}

/* ---- "Activate with us" CTA ---- */
.btn--signal {
  border: 1.5px solid rgba(193,253,58,0.5); color: var(--lime);
  background: rgba(193,253,58,0.05); padding: 10px 10px 10px 26px;
}
.btn--signal:hover { background: rgba(193,253,58,0.1); border-color: var(--lime); transform: translateY(-2px); }
.btn__orb {
  width: 30px; height: 30px; border-radius: 50%; background: var(--lime); color: var(--ink);
  display: grid; place-items: center; font-size: 15px; font-weight: 700; flex: none;
  transition: transform var(--dur) var(--ease);
}
.btn--signal:hover .btn__orb { transform: rotate(45deg); }
.fcard {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) translate(var(--x), var(--y)) rotate(var(--r));
  background: linear-gradient(165deg, rgba(22,22,38,0.92), rgba(9,9,20,0.95));
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 15px;
  box-shadow: 0 34px 64px -34px rgba(0,0,0,0.85);
  display: flex; flex-direction: column; gap: 11px;
  animation: floaty 7s ease-in-out infinite;
}
.fcard--story       { animation-delay: -1.4s; }
.fcard--performance { animation-delay: -2.8s; }
.fcard--capture     { animation-delay: -4.1s; }
.fcard--impact      { animation-delay: -5.5s; }
@keyframes floaty {
  0%,100% { translate: 0 0; }
  50% { translate: 0 -14px; }
}
.fcard__tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lime);
}
.fcard__big {
  font-family: var(--f-display); font-size: 40px; line-height: 0.9; color: var(--white);
  font-variant-numeric: tabular-nums;
}
.fcard__sub { font-size: 11px; color: var(--muted); letter-spacing: 0.04em; }
.fcard__bars { display: flex; align-items: flex-end; gap: 4px; height: 26px; margin-top: 2px; }
.fcard__bars i {
  width: 6px; background: var(--lime); border-radius: 2px; opacity: 0.85;
  animation: eq 1100ms ease-in-out infinite;
}
.fcard__bars i:nth-child(1){height:40%;animation-delay:0ms}
.fcard__bars i:nth-child(2){height:70%;animation-delay:120ms}
.fcard__bars i:nth-child(3){height:100%;animation-delay:240ms}
.fcard__bars i:nth-child(4){height:55%;animation-delay:360ms}
.fcard__bars i:nth-child(5){height:85%;animation-delay:180ms}
.fcard__bars i:nth-child(6){height:35%;animation-delay:300ms}
.fcard__bars i:nth-child(7){height:65%;animation-delay:90ms}
@keyframes eq { 0%,100% { transform: scaleY(0.55); } 50% { transform: scaleY(1); } }

/* ---- shared card internals ---- */
.fcard__topline {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}
.fcard__topline strong { color: var(--lime); font-weight: 600; }
.fcard__live-inline, .fcard__live-pill {
  display: inline-flex; align-items: center; gap: 5px; flex: none;
  color: var(--lime); font-size: 9.5px; letter-spacing: 0.08em; text-transform: uppercase;
}
.fcard__live-pill { border: 1px solid rgba(193,253,58,0.4); border-radius: 999px; padding: 3px 9px; }
.fcard__footline {
  display: flex; align-items: center; gap: 8px;
  font-size: 9.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
}
.fcard__footline b { display: inline-flex; align-items: center; gap: 5px; color: var(--lime); font-weight: 600; }
.fcard__footline--muted { color: var(--muted); }

/* ---- metric: live interactions ---- */
.fcard--metric { width: 220px; }
.fcard__stack-label { font-size: 11px; line-height: 1.3; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }
.fcard__delta { font-size: 11px; color: var(--lime); letter-spacing: 0.02em; margin-top: 2px; }
.fcard__delta b { color: var(--lime); }

/* ---- story: social post ---- */
.fcard--story { width: 254px; }
.fcard__story-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.fcard__brand { display: flex; align-items: center; gap: 9px; }
.fcard__brand-mark {
  width: 34px; height: 34px; border-radius: 10px; flex: none;
  background: var(--lime); color: var(--ink);
  font-family: var(--f-display); font-size: 8.5px; line-height: 0.92; letter-spacing: 0.02em;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.fcard__brand-copy { display: flex; flex-direction: column; line-height: 1.25; }
.fcard__brand-copy strong { font-size: 12px; font-weight: 700; color: var(--white); }
.fcard__brand-copy small { font-size: 10px; color: var(--muted); }
.fcard__story-copy { font-size: 11.5px; line-height: 1.4; color: var(--white); margin: 0; }
.fcard__story-media { margin: 0; height: 104px; border-radius: 12px; overflow: hidden; }
.fcard__story-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fcard__story-stats { display: flex; gap: 16px; }
.fcard__story-stats b { display: flex; flex-direction: column; font-size: 12px; font-weight: 700; color: var(--white); }
.fcard__story-stats small { font-size: 8.5px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }

/* ---- performance dashboard ---- */
.fcard--performance { width: 298px; }
.fcard__stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.fcard__stat { display: flex; flex-direction: column; gap: 3px; }
.fcard__stat small { font-size: 8.5px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }
.fcard__stat b { font-family: var(--f-display); font-size: 23px; line-height: 1; color: var(--white); font-variant-numeric: tabular-nums; }
.fcard__stat i { font-style: normal; font-size: 8.5px; color: var(--muted); }

/* ---- capture: entry pass / lead capture ---- */
.fcard--capture { width: 234px; }
.fcard__capture-body { display: flex; align-items: center; gap: 16px; }
.fcard__capture-stats { display: flex; flex-direction: column; }
.fcard__capture-stats b { font-family: var(--f-display); font-size: 21px; line-height: 1; color: var(--white); font-variant-numeric: tabular-nums; }
.fcard__capture-stats small { font-size: 8.5px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); margin: 2px 0 8px; }
.fcard__capture-stats small:last-child { margin-bottom: 0; }
.fcard__qr {
  width: 84px; height: 84px; flex: none; border-radius: 12px; background: #fff; position: relative;
  background-image: conic-gradient(from 0deg, #060616 25%, #fff 0 50%, #060616 0 75%, #fff 0);
  background-size: 11px 11px;
}
.fcard__qr::before, .fcard__qr::after {
  content: ""; position: absolute; width: 24px; height: 24px;
  border: 4px solid #060616; border-radius: 5px; background: #fff;
}
.fcard__qr::before { top: 7px; left: 7px; }
.fcard__qr::after { top: 7px; right: 7px; }

/* ---- impact: community ---- */
.fcard--impact { width: 216px; }
.fcard__group-icon { width: 9px; height: 9px; flex: none; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 3px rgba(193,253,58,0.18); }
.fcard__impact-stack { display: flex; flex-direction: column; gap: 9px; }
.fcard__impact-stack span { display: flex; flex-direction: column; }
.fcard__impact-stack b { font-family: var(--f-display); font-size: 21px; line-height: 1; color: var(--white); font-variant-numeric: tabular-nums; }
.fcard__impact-stack small { font-size: 8.5px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }
.fcard__impact-stack .is-highlight b { color: var(--lime); }

/* ============================================================
   STATEMENT
   ============================================================ */
/* THE IDEA — one full-bleed section: statement in a dark left column, portal on the right.
   The word-by-word scroll reveal (.reveal-word) is preserved. */
.statement {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: clamp(660px, 90vh, 1000px);
  padding-block: clamp(64px, 9vw, 140px);
}
.statement__bg { position: absolute; inset: 0; z-index: 0; }
.statement__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: 58% center; display: block;
}
/* Brand-ink scrim: solid on the left column, easing off over the portal so the
   word-reveal stays legible and the image reads clearly on the right. */
.statement__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, #060616 0%, #060616 30%, rgba(6,6,22,0.74) 50%, rgba(6,6,22,0.30) 78%, rgba(6,6,22,0.52) 100%),
    linear-gradient(180deg, rgba(6,6,22,0.42) 0%, transparent 34%, rgba(6,6,22,0.66) 100%);
}
.statement__inner { position: relative; z-index: 2; }
.statement__col { max-width: clamp(500px, 58vw, 880px); }
.statement .eyebrow { margin-bottom: clamp(24px, 3vw, 40px); }
.statement__h {
  font-family: var(--f-display); text-transform: uppercase; letter-spacing: -0.015em;
  font-size: clamp(40px, 5.8vw, 96px); line-height: 0.9; color: var(--white);
}
@media (max-width: 760px) {
  .statement__bg img { object-position: 70% 45%; }
  .statement__bg::after { background: linear-gradient(180deg, rgba(6,6,22,0.66) 0%, rgba(6,6,22,0.88) 100%); }
  .statement__col { max-width: none; }
}
.statement__break { display: block; height: 0.12em; }
.reveal-word {
  display: inline-block; color: rgba(255,255,255,0.16);
  transition: color 360ms var(--ease);
}
.reveal-word.hl.is-lit { color: var(--lime); }
.reveal-word.is-lit { color: var(--white); }
/* no-JS fallback: show full statement */
.no-js .reveal-word { color: var(--white); }
.no-js .reveal-word.hl { color: var(--lime); }

@media (max-width: 860px) {
  .statement .shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .statement__visual {
    width: min(100%, 620px);
    justify-self: stretch;
  }
  .statement__text { max-width: 16ch; }
}

/* ============================================================
   PROOF / METRICS
   ============================================================ */
.proof { padding-block: var(--section-pad); }
.proof__head {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(24px, 5vw, 80px);
  align-items: start; margin-bottom: clamp(48px, 7vw, 88px);
}
.proof__lead { display: flex; align-items: center; gap: clamp(16px, 2vw, 28px); padding-top: 6px; }
.proof__lead .eyebrow { flex: none; }
.proof__connector { flex: 1 1 auto; height: 1px; background: linear-gradient(90deg, var(--line-2) 0%, transparent 100%); }
.proof__title { max-width: 22ch; }
.proof__hl { color: var(--lime); text-shadow: 0 0 28px rgba(193,253,58,0.35); }

.proof__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.6vw, 22px);
}
.metric {
  position: relative; overflow: hidden;
  border-radius: clamp(20px, 1.8vw, 28px);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(255,255,255,0.05), rgba(255,255,255,0.012));
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  padding: clamp(24px, 2.2vw, 36px);
  min-height: clamp(220px, 22vw, 300px);
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
/* static lime corner glow (top-left), brightens on hover */
.metric::before {
  content: ""; position: absolute; top: 0; left: 0; width: 72%; height: 72%; z-index: 0; pointer-events: none;
  background: radial-gradient(circle at 0% 0%, rgba(193,253,58,0.16), transparent 66%);
  opacity: 0.65; transition: opacity var(--dur) var(--ease);
}
/* cursor-following lime spotlight, fades in on hover */
.metric::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), rgba(193,253,58,0.16), transparent 60%);
  transition: opacity 320ms var(--ease);
}
.metric > * { position: relative; z-index: 1; }
.metric:hover {
  transform: translateY(-8px); border-color: rgba(193,253,58,0.42);
  box-shadow: 0 32px 64px -32px rgba(0,0,0,0.7), 0 0 0 1px rgba(193,253,58,0.12);
}
.metric:hover::before { opacity: 1; }
.metric:hover::after { opacity: 1; }

.metric__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.metric__num { color: var(--lime); display: block; line-height: 0.9; }
.metric__icon { color: var(--muted); flex: none; transition: color var(--dur) var(--ease), transform var(--dur) var(--ease); }
.metric__icon svg { width: clamp(20px, 1.5vw, 26px); height: auto; display: block; }
.metric:hover .metric__icon { color: var(--lime); transform: translateY(-2px); }

.metric__foot { margin-top: auto; }
.metric__line { display: block; height: 1px; background: var(--line-2); margin-bottom: clamp(14px, 1.4vw, 20px); }
.metric__label { display: block; font-weight: 700; font-size: clamp(15px, 1.2vw, 19px); }
.metric__note { display: block; font-size: 13px; color: var(--muted); margin-top: 6px; }

/* ============================================================
   ACTIVATION GALLERY — slow drag-controllable carousel
   ============================================================ */
.gallery { padding-block: clamp(56px, 8vw, 120px); overflow: hidden; }
.gallery__head { margin-bottom: clamp(26px, 4vw, 48px); }
.gallery__head .eyebrow { margin-bottom: 18px; }
.gallery__title {
  font-family: var(--f-display); text-transform: uppercase;
  font-size: clamp(30px, 4.2vw, 60px); line-height: 0.96; letter-spacing: -0.01em;
}
.gallery__viewport {
  position: relative; width: 100%; padding-block: 30px;
  cursor: grab; touch-action: pan-y; user-select: none; -webkit-user-select: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.gallery__viewport.is-grabbing { cursor: grabbing; }
.gallery__track { display: flex; width: max-content; will-change: transform; }
.gpanel {
  position: relative; flex: none; margin: 0 clamp(14px, 1.6vw, 24px) 0 0;
  width: clamp(220px, 22vw, 300px); aspect-ratio: 3 / 5;
  border-radius: clamp(16px, 1.6vw, 24px); overflow: hidden;
  background: var(--ink-2); border: 1px solid var(--line);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.7);
}
.gpanel img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; -webkit-user-drag: none; }
/* fanned offsets/rotations, repeating every 5 panels */
.gpanel:nth-child(5n+1) { transform: translateY(-18px) rotate(-3deg); }
.gpanel:nth-child(5n+2) { transform: translateY(12px) rotate(2deg); }
.gpanel:nth-child(5n+3) { transform: translateY(-4px) rotate(-1.5deg); }
.gpanel:nth-child(5n+4) { transform: translateY(22px) rotate(3deg); }
.gpanel:nth-child(5n+5) { transform: translateY(-10px) rotate(-2deg); }
@media (max-width: 600px) {
  .gpanel { width: clamp(178px, 62vw, 240px); }
  .metric__num { font-size: clamp(48px, 15vw, 72px); }
}

/* ============================================================
   SERVICES — vertical-title expanding rail
   Dark canvas; the open column is a lime panel. One open at a time.
   ============================================================ */
.services { position: relative; overflow: hidden; padding-block: var(--section-pad); }
.services__glow {
  position: absolute; left: 50%; bottom: -8%; transform: translateX(-50%);
  width: min(1100px, 92%); height: 72%; z-index: 1; pointer-events: none;
  background: radial-gradient(58% 60% at 50% 100%, rgba(193,253,58,0.20), transparent 70%);
}
.services__head { position: relative; z-index: 2; margin-bottom: clamp(40px, 5vw, 72px); }
.services__head .eyebrow { margin-bottom: 22px; }

.svc-rail {
  position: relative; z-index: 2;
  display: flex; gap: clamp(6px, 0.7vw, 12px); align-items: stretch;
  min-height: clamp(440px, 50vh, 560px);
}
/* Columns fill the full width as faint full-height cells (panel wall);
   one expands into the lime panel. */
.svc-col {
  position: relative; flex: 1 1 0; min-width: 0;
  border-radius: clamp(16px, 1.6vw, 26px);
  background: rgba(255,255,255,0.03);
  transition: flex-grow var(--dur) var(--ease), flex-basis var(--dur) var(--ease),
              background var(--dur) var(--ease);
}
@media (hover: hover) {
  .svc-col:not(.is-active):hover { background: rgba(255,255,255,0.06); }
}
.svc-col.is-active { flex: 0 0 clamp(320px, 40vw, 470px); background: var(--lime); }

/* The whole column is the toggle; the rotated title anchors bottom-left. */
.svc-col__bar {
  position: absolute; inset: 0; display: flex;
  align-items: flex-end; justify-content: center;
  padding: 0 0 clamp(24px, 3vw, 40px);
  cursor: pointer;
}
.svc-col.is-active .svc-col__bar { justify-content: flex-start; padding-left: clamp(24px, 2.2vw, 40px); }
.svc-col__title {
  writing-mode: vertical-rl; transform: rotate(180deg); white-space: nowrap;
  font-family: var(--f-body); font-weight: 600; letter-spacing: 0.01em;
  font-size: clamp(18px, 1.8vw, 28px); color: var(--muted);
  transition: color var(--dur) var(--ease);
}
.svc-col.is-active .svc-col__title { color: var(--ink); }
@media (hover: hover) {
  .svc-col:not(.is-active) .svc-col__bar:hover .svc-col__title { color: var(--white); }
}

.svc-col__panel {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: center; gap: clamp(22px, 2.6vw, 34px);
  padding: clamp(34px, 3.4vw, 52px);
  padding-left: clamp(76px, 7vw, 116px);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 420ms var(--ease), visibility 420ms var(--ease);
}
/* Panel stays click-through so clicking the open pill hits the toggle button
   beneath it and closes it; only the CTA re-enables pointer events. */
.svc-col.is-active .svc-col__panel { opacity: 1; visibility: visible; pointer-events: none; transition-delay: 140ms; }
.svc-col__desc {
  color: var(--ink); font-weight: 500; line-height: 1.4; max-width: 30ch;
  font-size: clamp(16px, 1.5vw, 20px);
}
.svc-col__cta { align-self: flex-start; pointer-events: auto; }
.svc-col__arrow { font-size: 1.05em; transform: translateY(1px); }

/* Tablet/mobile: rail flips to a stacked tap-accordion (same markup). */
@media (max-width: 860px) {
  .svc-rail { flex-direction: column; gap: 10px; min-height: 0; }
  .svc-col { flex: 0 0 auto; background: var(--ink-2); border-radius: 22px; overflow: hidden; }
  .svc-col.is-active { flex-basis: auto; background: var(--lime); }
  .svc-col__bar,
  .svc-col.is-active .svc-col__bar {
    position: relative; inset: auto; width: 100%;
    align-items: center; justify-content: space-between;
    padding: 20px clamp(20px, 5vw, 28px);
  }
  .svc-col__bar::after {
    content: ""; width: 16px; height: 16px; flex: none;
    background:
      linear-gradient(var(--muted), var(--muted)) center/16px 2px no-repeat,
      linear-gradient(var(--muted), var(--muted)) center/2px 16px no-repeat;
    transition: transform var(--dur) var(--ease), background var(--dur);
  }
  .svc-col.is-active .svc-col__bar::after {
    background: linear-gradient(var(--ink), var(--ink)) center/16px 2px no-repeat;
  }
  .svc-col__title {
    writing-mode: horizontal-tb; transform: none; white-space: normal;
    font-size: clamp(21px, 5.6vw, 30px);
  }
  .svc-col__panel {
    position: relative; inset: auto; z-index: auto; justify-content: flex-start;
    padding: 0 clamp(20px, 5vw, 28px); gap: 18px;
    max-height: 0; overflow: hidden; opacity: 0; pointer-events: none;
    transition: max-height var(--dur) var(--ease), opacity 320ms var(--ease), padding var(--dur) var(--ease);
  }
  .svc-col.is-active .svc-col__panel {
    max-height: 22em; opacity: 1; pointer-events: auto;
    padding-top: 4px; padding-bottom: 26px; transition-delay: 0ms;
  }
}

/* No-JS: degrade to a readable stacked list with all panels open. */
html.no-js .svc-rail { flex-direction: column; gap: 10px; min-height: 0; }
html.no-js .svc-col { flex-basis: auto; }
html.no-js .svc-col__bar { position: relative; inset: auto; padding: 16px 20px; }
html.no-js .svc-col__title { writing-mode: horizontal-tb; transform: none; color: var(--white); }
html.no-js .svc-col__panel { position: relative; inset: auto; opacity: 1; visibility: visible; pointer-events: auto; max-height: none; padding: 0 20px 20px; }
html.no-js .svc-col__desc { color: var(--muted); }
html.no-js .svc-col__cta { display: none; }

/* ============================================================
   WORK
   ============================================================ */
.work { padding-block: var(--section-pad); }
.work__head { margin-bottom: clamp(40px, 5vw, 72px); }
.work__head .eyebrow { margin-bottom: 22px; }

/* Featured bento: one large tile + smaller ones, all overlay-style */
.work__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: clamp(200px, 22vw, 300px); gap: clamp(16px, 2vw, 28px);
}
.work__grid > li { min-width: 0; }
.work__grid > li:nth-child(1) { grid-column: 1; grid-row: 1 / span 2; }
.work__grid > li:nth-child(2) { grid-column: 2; grid-row: 1; }
.work__grid > li:nth-child(3) { grid-column: 2; grid-row: 2; }
.work__grid > li:nth-child(4) { grid-column: 1 / -1; grid-row: 3; }

.wcard {
  position: relative; display: block; height: 100%;
  border-radius: var(--r-card); overflow: hidden;
  background: #0d0d1a; isolation: isolate;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  will-change: transform;
}
.wcard:hover { transform: translateY(-6px); box-shadow: 0 40px 80px -40px rgba(0,0,0,0.8); }

.wcard__media { position: absolute; inset: 0; }
.wcard__media::before, .wcard__media::after { content: ""; position: absolute; inset: 0; }
.wcard__media::before {
  background-position: center; background-repeat: no-repeat; background-size: cover;
  transform: scale(1); transition: transform 800ms var(--ease), filter 800ms var(--ease);
  filter: saturate(0.97) contrast(1.04);
}
.wcard__media::after {
  background:
    linear-gradient(180deg, rgba(6,6,22,0) 26%, rgba(6,6,22,0.42) 60%, rgba(6,6,22,0.94) 100%),
    radial-gradient(circle at 16% 14%, rgba(193,253,58,0.14), transparent 26%);
}
.wcard:hover .wcard__media::before { transform: scale(1.06); }
.wcard__media--exhibition::before  { background-image: url("../assets/work-auto-exhibition-v1.jpg");  background-position: center 46%; }
.wcard__media--installation::before { background-image: url("../assets/work-auto-installation-v1.jpg"); background-position: center 42%; }
.wcard__media--campaign::before    { background-image: url("../assets/work-auto-campaign-v1.jpg");    background-position: center 42%; }
.wcard__media--landing::before     { background-image: url("../assets/work-auto-landing-v1.jpg");     background-position: center 40%; }

.wcard__chip {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(6,6,22,0.55); backdrop-filter: blur(8px);
  border: 1px solid var(--line-2); border-radius: var(--r-pill); padding: 8px 14px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white);
}
.wcard__chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--lime); flex: none; }

.wcard__content {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: clamp(20px, 2vw, 30px); display: flex; flex-direction: column; gap: 14px;
}
.wcard__client {
  font-family: var(--f-display); text-transform: uppercase; letter-spacing: -0.01em;
  font-size: clamp(22px, 2.1vw, 34px); line-height: 0.94;
}
.work__grid > li:nth-child(1) .wcard__client { font-size: clamp(28px, 3vw, 52px); }
.wcard__meta { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }
.wcard__result { display: flex; align-items: baseline; gap: 8px; }
.wcard__num { color: var(--lime); font-family: var(--f-display); font-size: clamp(20px, 1.8vw, 30px); line-height: 1; }
.wcard__rlabel { color: #c9c9d2; font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; }
.wcard__go {
  flex: none; width: 48px; height: 48px; border-radius: 50%;
  background: var(--lime); color: var(--ink); display: grid; place-items: center;
  font-size: 20px; font-weight: 700;
  opacity: 0; transform: translateY(10px) scale(0.85);
  transition: opacity 420ms var(--ease), transform 420ms var(--ease);
}
.wcard:hover .wcard__go, .wcard:focus-visible .wcard__go { opacity: 1; transform: none; }

/* ============================================================
   PROCESS
   ============================================================ */
.process { padding-block: var(--section-pad); }
.process__head { margin-bottom: clamp(32px, 4vw, 56px); }
.process__head .eyebrow { margin-bottom: 22px; }
.process__list { border-top: 1px solid var(--line); }
.pstep {
  position: relative;
  display: grid;
  grid-template-columns: clamp(64px, 8vw, 120px) 1fr auto;
  align-items: center;
  gap: clamp(16px, 3vw, 48px);
  padding-block: clamp(20px, 2.6vw, 38px);
  padding-right: 36px;
  border-bottom: 1px solid var(--line);
  transition: background var(--dur) var(--ease);
}
.pstep__num {
  font-family: var(--f-display); font-size: clamp(28px, 3.4vw, 56px); line-height: 1;
  color: var(--muted); opacity: 0.4;
  transition: color var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.pstep__name {
  font-family: var(--f-display); text-transform: uppercase;
  font-size: clamp(26px, 4.4vw, 68px); line-height: 0.94; letter-spacing: -0.01em;
  color: var(--muted);
  transition: color var(--dur) var(--ease), transform 460ms var(--ease);
}
.pstep__desc {
  grid-column: 2 / 3;
  font-size: clamp(14px, 1.3vw, 17px); color: var(--muted);
  max-width: 52ch; max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height 460ms var(--ease), opacity 360ms, margin-top 460ms var(--ease);
}
.pstep__node {
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid var(--muted); opacity: 0.4;
  transition: all var(--dur) var(--ease);
  justify-self: end;
}
.pstep.is-active { background: linear-gradient(90deg, rgba(193,253,58,0.06), transparent 70%); }
.pstep.is-active .pstep__num { color: var(--lime); opacity: 1; }
.pstep.is-active .pstep__name { color: var(--white); }
.pstep.is-active .pstep__node { background: var(--lime); border-color: var(--lime); opacity: 1; box-shadow: 0 0 0 6px rgba(193,253,58,0.18); }
.pstep.is-active .pstep__desc { max-height: 6em; opacity: 1; margin-top: 14px; }
@media (hover: hover) {
  .pstep:hover .pstep__name { color: var(--white); transform: translateX(10px); }
  .pstep:hover .pstep__desc { max-height: 6em; opacity: 1; margin-top: 14px; }
}

/* ============================================================
   CAPABILITIES / SYSTEM
   ============================================================ */
.system { padding-block: var(--section-pad); position: relative; overflow: hidden; }

/* headline + lead */
.system__head { display: grid; grid-template-columns: 1.55fr 1fr; gap: clamp(24px, 4vw, 64px); align-items: end; margin-bottom: clamp(40px, 5vw, 72px); }
.system__eyebrow { margin-bottom: clamp(18px, 2vw, 30px); }
.system__title {
  font-family: var(--f-display); text-transform: uppercase; letter-spacing: -0.01em;
  font-size: clamp(46px, 8.4vw, 128px); line-height: 1.0; color: var(--white);
}
.system__accent { color: var(--lime); }
.system__lead { color: var(--muted); max-width: 42ch; margin-bottom: 8px; }

/* card grid */
.system__grid {
  display: grid; grid-template-columns: repeat(4, 1fr) 0.62fr;
  gap: clamp(14px, 1.4vw, 22px); align-items: stretch;
}
.scard {
  position: relative; display: flex; flex-direction: column; height: 100%;
  background: linear-gradient(165deg, rgba(20,20,34,0.92), rgba(9,9,20,0.95)); border: 1px solid var(--line); border-radius: 24px;
  padding: clamp(22px, 1.8vw, 30px);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  will-change: transform;
}
.system__grid > li:nth-child(1) .scard { transform: rotate(-1.4deg); }
.system__grid > li:nth-child(2) .scard { transform: rotate(1deg); }
.system__grid > li:nth-child(3) .scard { transform: rotate(-0.8deg); }
.system__grid > li:nth-child(4) .scard { transform: rotate(1.4deg); }
.scard:hover { transform: rotate(0deg) translateY(-8px); border-color: rgba(193,253,58,0.4); box-shadow: 0 36px 70px -34px rgba(0,0,0,0.8); }
.scard__num { font-family: var(--f-display); color: var(--lime); font-size: 13px; letter-spacing: 0.05em; }
.scard__title { font-family: var(--f-display); text-transform: uppercase; font-size: clamp(22px, 1.9vw, 30px); line-height: 0.96; letter-spacing: -0.01em; margin-top: 8px; }
.scard__icon { color: var(--lime); margin: clamp(20px, 2.2vw, 34px) 0 clamp(16px, 1.4vw, 22px); filter: drop-shadow(0 0 10px rgba(193,253,58,0.5)); transition: filter var(--dur) var(--ease), transform var(--dur) var(--ease); }
.scard__icon svg { width: clamp(50px, 4.6vw, 70px); height: auto; display: block; }
.scard__rule { display: block; width: 26px; height: 2px; border-radius: 2px; background: var(--lime); margin-bottom: clamp(14px, 1.3vw, 20px); }
.scard:hover .scard__icon { filter: drop-shadow(0 0 16px rgba(193,253,58,0.95)); transform: translateY(-2px) rotate(-4deg); }
.scard__desc { color: var(--muted); font-size: clamp(13px, 1vw, 15px); line-height: 1.5; }
.scard__go {
  margin-top: clamp(20px, 2vw, 32px); width: 44px; height: 44px; border-radius: 50%; align-self: flex-start;
  background: var(--lime); color: var(--ink); display: grid; place-items: center; font-size: 18px; font-weight: 700;
}
.scard__go span { display: block; transition: transform var(--dur) var(--ease); }
.scard:hover .scard__go span { transform: translateX(3px); }

/* join card */
.scard--join {
  justify-content: space-between; gap: 18px; overflow: hidden;
  background: var(--lime); color: var(--ink); border-color: var(--lime); transform: rotate(2deg);
}
.scard--join::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(6,6,22,0.24) 1.4px, transparent 1.6px);
  background-size: 12px 12px;
  -webkit-mask-image: linear-gradient(205deg, transparent 45%, #000 100%);
  mask-image: linear-gradient(205deg, transparent 45%, #000 100%);
}
.scard--join > * { position: relative; z-index: 1; }
.scard--join:hover { transform: rotate(0deg) translateY(-8px); box-shadow: 0 36px 70px -34px rgba(0,0,0,0.8); }
.scard__spark { font-size: 22px; line-height: 1; }
.scard__join-title { font-family: var(--f-display); text-transform: uppercase; font-size: clamp(30px, 2.7vw, 46px); line-height: 0.88; margin: auto 0 clamp(20px, 2vw, 30px); }
.scard__join-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.scard__join-label { font-family: var(--f-display); text-transform: uppercase; font-size: clamp(13px, 1.1vw, 16px); line-height: 1; letter-spacing: 0.01em; }
.scard__join-go {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: var(--ink); color: var(--lime); display: grid; place-items: center; font-size: 18px; font-weight: 700;
  transition: transform var(--dur) var(--ease);
}
.scard--join:hover .scard__join-go { transform: translateX(3px); }

/* sparkle decorations */
.system__spark { position: absolute; color: var(--lime); pointer-events: none; display:none; }
.system__spark svg { width: 100%; height: 100%; display: block; filter: drop-shadow(0 0 8px rgba(193,253,58,0.5)); }
.system__spark--1 { width: 30px; height: 30px; left: 47%; bottom: 5%; }
.system__spark--2 { width: 18px; height: 18px; left: 5%; top: 18%; }

@media (max-width: 1100px) {
  .system__head { grid-template-columns: 1fr; align-items: start; gap: 20px; }
  .system__grid { grid-template-columns: repeat(2, 1fr); }
  .system__join-cell { grid-column: 1 / -1; }
  .scard--join { flex-direction: row; align-items: center; transform: rotate(0deg); }
  .scard__join-title { margin-top: 0; }
}
@media (max-width: 600px) {
  .system__grid { grid-template-columns: 1fr; }
  .system__grid > li .scard { transform: rotate(0deg); }
  .scard--join { flex-wrap: wrap; }
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta {
  position: relative; overflow: hidden;
  padding-block: clamp(100px, 16vw, 240px);
  text-align: center;
  isolation: isolate;
}
.cta::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: radial-gradient(80% 70% at 50% 50%, rgba(193,253,58,0.10), transparent 60%);
}
.cta__signals {
  position: absolute; inset: 0; z-index: -1;
  background-image: radial-gradient(circle, rgba(193,253,58,0.16) 1.6px, transparent 1.8px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 50%, #000, transparent 72%);
  mask-image: radial-gradient(70% 60% at 50% 50%, #000, transparent 72%);
  animation: drift 18s linear infinite;
}
@keyframes drift { from { background-position: 0 0; } to { background-position: 80px 40px; } }
.cta__inner { position: relative; z-index: 2; }
.cta .eyebrow { justify-content: center; margin-bottom: 28px; }
.cta__title { margin-bottom: 8px; }
.cta__title .hero__line { display: block; }
.cta__title .hero__mask--accent { color: var(--lime); }
.cta__support { max-width: 46ch; margin: 26px auto 0; color: var(--muted); }
.cta__actions { display: flex; flex-direction: column; align-items: center; gap: 22px; margin-top: 42px; }
.cta__mail {
  font-size: 15px; color: var(--muted); border-bottom: 1px solid var(--line-2);
  padding-bottom: 3px; transition: color var(--dur), border-color var(--dur);
}
.cta__mail:hover { color: var(--lime); border-color: var(--lime); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  padding-top: clamp(56px, 7vw, 96px); padding-bottom: 36px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 2fr 1.6fr;
  gap: clamp(32px, 5vw, 72px);
  padding-bottom: clamp(48px, 6vw, 80px);
}
.footer__brand .header__logo img { width: 150px; }
.footer__line { margin-top: 22px; font-weight: 600; font-size: 16px; line-height: 1.45; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer__h { font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a { font-size: 15px; color: var(--white); transition: color var(--dur); }
.footer__col a:hover { color: var(--lime); }
.footer__form { align-self: start; }
.footer__form-h { display: block; font-family: var(--f-display); text-transform: uppercase; font-size: clamp(22px, 2vw, 30px); line-height: 1; letter-spacing: -0.01em; }
.footer__form-sub { font-size: 13px; color: var(--muted); margin-top: 10px; margin-bottom: 18px; }
.footer__field {
  display: flex; gap: 8px;
  background: var(--surface); border: 1px solid var(--line-2);
  border-radius: var(--r-pill); padding: 6px 6px 6px 20px;
}
.footer__field input {
  flex: 1 1 auto; background: none; border: none; color: var(--white); min-width: 0;
}
.footer__field input::placeholder { color: var(--muted); }
.footer__field input:focus { outline: none; }
.footer__field:focus-within { border-color: var(--lime); }
.footer__field .btn { padding: 12px 22px; }
.footer__msg { font-size: 13px; color: var(--lime); margin-top: 12px; min-height: 1.2em; }
.footer__base {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-top: 28px; border-top: 1px solid var(--line);
  font-size: 12px; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase;
}
.footer__sig { display: inline-flex; align-items: center; gap: 8px; }

/* ============================================================
   Reveal base (scroll-in). Gated behind .js so no-JS shows content.
   ============================================================ */
.js .reveal { opacity: 0; transform: translateY(28px); }
.reveal.is-in { opacity: 1; transform: translateY(0); transition: opacity 800ms var(--ease), transform 800ms var(--ease); }

/* ============================================================
   Responsive
   ============================================================ */
/* Hero cards thin out as width drops so they never crowd the headline */
@media (max-width: 1300px) {
  .fcard--capture, .fcard--impact { display: none; }
}

@media (max-width: 1024px) {
  .proof__head { grid-template-columns: 1fr; align-items: start; gap: 24px; }
  .proof__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__form { grid-column: 1 / -1; }
  .fcard--performance { display: none; }
}

@media (max-width: 860px) {
  .header__links { display: none; }
  .header__cta { display: none; }
  .header__burger { display: block; }
  .fcard--story { display: none; }
  .work__grid { grid-template-columns: 1fr; grid-auto-rows: clamp(240px, 64vw, 320px); }
  .work__grid > li:nth-child(1), .work__grid > li:nth-child(2),
  .work__grid > li:nth-child(3), .work__grid > li:nth-child(4) { grid-column: 1; grid-row: auto; }
  .pstep {
    grid-template-columns: clamp(44px, 13vw, 72px) 1fr auto;
    align-items: center;
    column-gap: clamp(12px, 3.5vw, 20px);
    padding-right: 18px;
  }
  .pstep__num  { grid-column: 1; grid-row: 1; }
  .pstep__name { grid-column: 2; grid-row: 1; }
  .pstep__node { grid-column: 3; grid-row: 1; align-self: center; }
  .pstep__desc { grid-column: 2 / -1; grid-row: 2; max-width: none; }
}

@media (max-width: 600px) {
  :root { --r-card: 36px; }

  /* Hero on phones: arrange the existing dashboard cards to fill the empty
     space — performance full-width, then capture + impact two-up. */
  .hero { flex-direction: column; align-items: stretch; min-height: auto; padding-bottom: 48px; }
  .hero__inner { order: 0; max-width: none; }
  .hero__field {
    order: 1; position: static;
    margin-top: 26px; padding-inline: var(--gutter);
    pointer-events: auto;
    display: grid; grid-template-columns: 1.14fr 0.86fr; gap: 12px;
  }
  .fcard {
    position: relative; top: auto; left: auto;
    transform: none; opacity: 1; animation: none;
    width: auto; padding: 14px;
    box-shadow: 0 18px 40px -26px rgba(0,0,0,0.85);
  }
  .fcard--metric, .fcard--story { display: none; }
  .fcard--performance, .fcard--capture, .fcard--impact { display: flex; }
  .fcard--performance { grid-column: 1 / -1; }
  .fcard--capture .fcard__qr { width: 60px; height: 60px; border-radius: 9px; }
  .fcard--capture .fcard__capture-body { gap: 9px; }
  .fcard--capture .fcard__topline { font-size: 8.5px; letter-spacing: 0.04em; gap: 6px; }
  .fcard--impact .fcard__topline { font-size: 8.5px; letter-spacing: 0.04em; }
  .proof__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .footer__base { flex-direction: column; align-items: flex-start; gap: 10px; }
  .srow__tag { display: none; }
  .menu__cta { align-self: stretch; justify-content: center; }
}

/* ============================================================
   Custom cursor — the brand's green dot becomes the pointer.
   Desktop / fine-pointer only; native I-beam restored on text fields.
   ============================================================ */
body.has-cursor { cursor: none; }
body.has-cursor a, body.has-cursor button, body.has-cursor [role="button"],
body.has-cursor .svc-col__bar, body.has-cursor .ccard, body.has-cursor .wcard { cursor: none; }
body.has-cursor input, body.has-cursor textarea { cursor: text; }

.cursor {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: 0; transition: opacity 280ms var(--ease);
}
.cursor.is-visible { opacity: 1; }
.cursor.is-text { opacity: 0; }
.cursor__dot, .cursor__ring {
  position: fixed; top: 0; left: 0; border-radius: 50%;
  pointer-events: none; will-change: transform;
}
.cursor__dot {
  width: 9px; height: 9px; background: var(--lime);
  transition: width 200ms var(--ease), height 200ms var(--ease), background 200ms var(--ease), box-shadow 200ms var(--ease);
}
.cursor__ring {
  width: 34px; height: 34px; border: 1.5px solid var(--lime);
  transition: width 260ms var(--ease), height 260ms var(--ease), background 260ms var(--ease);
}
.cursor.is-hover .cursor__ring { width: 54px; height: 54px; background: rgba(193,253,58,0.12); }
.cursor.is-hover .cursor__dot { width: 7px; height: 7px; }
.cursor.is-down .cursor__ring { width: 26px; height: 26px; }
/* On the lime band the green dot would vanish — swap the core to ink (with a lime
   halo so it still reads over dark elements inside the band) and ink the ring. */
.cursor.is-lime .cursor__dot { background: var(--ink); box-shadow: 0 0 0 2px rgba(193,253,58,0.9); }
.cursor.is-lime .cursor__ring { border-color: var(--ink); }
.cursor.is-lime.is-hover .cursor__ring { background: rgba(6,6,22,0.10); }

/* ============================================================
   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;
  }
  .js .hero__mask { transform: none; }
  .js .reveal { opacity: 1; transform: none; }
  .reveal-word { color: var(--white); }
  .reveal-word.hl { color: var(--lime); }
  .fcard { animation: none; }
  .loader { display: none; }
}
