/* ═══════════════════════════════════════════════
   3POINT TECH — 3D Scrollytelling
   ═══════════════════════════════════════════════ */

:root {
  --bg: #04040a;
  --bg-soft: #0a0a16;
  --ink: #eef0ff;
  --ink-dim: rgba(238, 240, 255, 0.55);
  --ink-faint: rgba(238, 240, 255, 0.28);
  --accent: #6c5ce7;
  --accent-2: #00f0ff;
  --accent-3: #ff2e88;
  --grad: linear-gradient(100deg, var(--accent-2), var(--accent) 55%, var(--accent-3));
  --font-display: "Syne", sans-serif;
  --font-body: "Space Grotesk", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --card-border: rgba(255, 255, 255, 0.08);
  /* opaque-ish card bg instead of backdrop-filter: blur — blur re-renders on every scrolled frame */
  --card-bg: rgba(13, 13, 26, 0.72);
  /* content band: fluid side padding on small screens, centered max width on wide ones */
  --content-max: 1520px;
  --gutter: clamp(1.25rem, 5vw, 5rem);
  --pad-inline: max(var(--gutter), calc((100% - var(--content-max)) / 2));
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { overflow-anchor: none; } /* never let mounting nodes drift the scroll position */

html { scroll-behavior: initial; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  cursor: none;
}
/* no overflow rules on html/body — they break position:fixed (pinning) in Safari;
   sideways-animating content is clipped per-section instead */

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

a { color: inherit; text-decoration: none; cursor: none; }

/* ── Fixed layers ─────────────────────────────── */

#webgl {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.grain {
  position: fixed;
  inset: -40%;
  z-index: 200;
  pointer-events: none;
  opacity: 0.05;
  will-change: transform;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%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)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); } 10% { transform: translate(-5%,-10%); }
  20% { transform: translate(-15%,5%); } 30% { transform: translate(7%,-25%); }
  40% { transform: translate(-5%,25%); } 50% { transform: translate(-15%,10%); }
  60% { transform: translate(15%,0); }  70% { transform: translate(0,15%); }
  80% { transform: translate(3%,35%); } 90% { transform: translate(-10%,10%); }
}

.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  z-index: 300;
  pointer-events: none;
  /* moved via transform on the compositor, positioned instantly on pointermove —
     NO transform transition, so it can never trail or ghost on fast moves */
  transition: width .3s, height .3s, background .3s, border-color .3s;
  will-change: transform;
}
.cursor.is-hover { width: 80px; height: 80px; background: rgba(255,255,255,0.14); border-color: rgba(0,240,255,0.7); }
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--accent-2);
  border-radius: 50%;
  z-index: 301;
  pointer-events: none;
  will-change: transform;
}
@media (hover: none) { .cursor, .cursor-dot { display: none; } body, a { cursor: auto; } }

.progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 150;
  background: rgba(255,255,255,0.06);
}
.progress span {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--grad);
  transform-origin: left;
  transform: scaleX(0);
}

/* ── Preloader ────────────────────────────────── */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader__inner { text-align: center; max-width: 92vw; }
.preloader__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 6.5vw, 5rem);
  letter-spacing: 0.02em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35em;
}
.preloader__logo em { font-style: normal; color: var(--ink-dim); font-weight: 500; }
.preloader__mark {
  color: var(--accent-2);
  font-size: 0.6em;
  animation: spinmark 6s linear infinite;
  display: inline-block;
}
.preloader__count {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--ink-dim);
  margin: 1.2rem 0 0.7rem;
}
.preloader__bar {
  width: 220px;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 0 auto;
  overflow: hidden;
}
.preloader__bar span { display: block; height: 100%; width: 0%; background: var(--grad); }

/* ── Nav ──────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem max(var(--gutter), calc((100% - var(--content-max)) / 2));
  transition: background .5s;
}
.nav.is-scrolled { background: rgba(4,4,10,0.85); }
.nav__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  display: flex; align-items: center; gap: .45rem;
}
.nav__logo em { font-style: normal; color: var(--ink-dim); font-weight: 500; }
.nav__logo-mark {
  color: var(--accent-2);
  font-size: 0.75em;
  animation: spinmark 6s linear infinite;
  display: inline-block;
}
@keyframes spinmark { to { transform: rotate(360deg); } }
.nav__links { display: flex; gap: 2rem; }
.nav__links a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
  transition: color .3s;
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%; height: 1px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
@media (max-width: 860px) { .nav__links { display: none; } }
/* narrow phones: keep logo + CTA on one line without collision */
@media (max-width: 560px) {
  .nav { padding-block: 1rem; gap: 0.8rem; }
  .nav .nav__logo { font-size: 1rem; flex-shrink: 0; }
  .nav .nav__cta { padding: 0.6rem 1.15rem; font-size: 0.68rem; letter-spacing: 0.1em; white-space: nowrap; flex-shrink: 0; }
}
@media (max-width: 380px) {
  .nav .nav__logo em { display: none; }
}

.nav__cta, .btn {
  position: relative;
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color .4s, color .4s, transform .3s;
}
.nav__cta span, .btn span { position: relative; z-index: 1; }
.nav__cta::before, .btn--solid::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad);
  transform: translateY(101%);
  transition: transform .45s cubic-bezier(.16,1,.3,1);
}
.nav__cta:hover::before, .btn--solid:hover::before { transform: translateY(0); }
.btn--solid { background: var(--ink); color: var(--bg); border-color: transparent; }
.btn--solid:hover { color: #fff; }
.btn--ghost:hover { border-color: var(--accent-2); color: var(--accent-2); }
.btn--big { padding: 1.2rem 3rem; font-size: 0.95rem; }
.btn:active { transform: scale(0.96); }

/* ── Shared ───────────────────────────────────── */

main { position: relative; z-index: 1; }

section { position: relative; padding: clamp(4.5rem, 11vh, 9rem) var(--pad-inline); }

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--accent-2);
  margin-bottom: 1.6rem;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; }

.char { display: inline-block; transform: translateY(115%) rotate(6deg); }
.word-mask { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: 0.12em; margin-bottom: -0.12em; }

[data-reveal] { opacity: 0; transform: translateY(50px); }

/* ── Hero ─────────────────────────────────────── */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(4rem, 8vh, 6rem);
}
.hero__kicker {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--ink-dim);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 0 rgba(0,240,255,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 14px rgba(0,240,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,240,255,0); }
}
.hero__title {
  font-size: clamp(2.8rem, 9vw, 7.6rem);
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
}
.hero__title .line { display: block; }
/* both phrases share one grid cell — the title reserves the taller phrase's height */
.hero__title { display: grid; }
.hero__phrase { grid-area: 1 / 1; align-self: start; }
.hero__phrase--two { visibility: hidden; }
.line--ghost {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(238,240,255,0.75);
}
.line--accent {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* background-clip:text doesn't survive transformed descendants — re-apply per char */
.line--accent .char {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  max-width: 560px;
  margin-top: 2.4rem;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: var(--ink-dim);
  font-weight: 300;
}
.hero__actions { display: flex; gap: 1.2rem; margin-top: 2.4rem; flex-wrap: wrap; }

/* glitch line under CUT THE AI NOISE. — overlays the (invisible) sub, so no layout shift */
.hero__noise-slot { height: 0; position: relative; }
.hero__noise {
  position: absolute;
  top: 2.4rem; left: 0;
  max-width: 100%;
  font-family: var(--font-mono);
  font-size: clamp(0.7rem, 1vw, 0.9rem);
  letter-spacing: 0.18em;
  color: var(--ink-dim);
  white-space: nowrap;
  overflow: hidden;
  opacity: 0;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem; right: var(--pad-inline);
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--ink-faint);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px; height: 70px;
  background: linear-gradient(to bottom, transparent, var(--accent-2));
  animation: scrollline 2s ease-in-out infinite;
}
@keyframes scrollline {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Statement ────────────────────────────────── */

.statement {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.statement__text {
  max-width: 1100px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.6vw, 3.2rem);
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}
.statement__text .w { opacity: 0.12; transition: none; }

/* ── Marquee ──────────────────────────────────── */

.marquee { overflow: hidden; padding: 2rem 0; border-block: 1px solid var(--card-border); }
.marquee__track {
  display: flex;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 4rem);
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(238,240,255,0.3);
  will-change: transform;
}
.marquee__track span { padding-right: 2rem; }

/* ── Reality ──────────────────────────────────── */

.reality { min-height: 100vh; }
.reality__pin { min-height: 80vh; display: flex; flex-direction: column; justify-content: center; }
.reality__heading { font-size: clamp(2.2rem, 5.5vw, 4.5rem); margin-bottom: 3rem; }
.reality__stat { display: flex; align-items: baseline; gap: 2.5rem; flex-wrap: wrap; }
.reality__number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(7rem, 22vw, 20rem);
  line-height: 0.9;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  will-change: transform;
}
.reality__number i { font-style: normal; font-size: 0.45em; }
.reality__caption {
  max-width: 560px;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}
.reality__caption b {
  color: #fff;
  padding: 0 0.14em;
  border-radius: 6px;
  /* marker highlight — swept to 100% by GSAP when it scrolls into view */
  background-image: linear-gradient(100deg, rgba(255,46,136,0.55), rgba(108,92,231,0.6));
  background-repeat: no-repeat;
  background-size: 0% 90%;
  background-position: 0 60%;
}
.reality__caption small {
  display: block;
  margin-top: 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink-dim);
}
.reality__tease {
  margin-top: 3.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 3.1rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}
.reality__tease em {
  color: var(--accent-2);
  font-style: normal;
  display: inline-block;
  animation: howpulse 2.2s ease-in-out infinite;
}
@keyframes howpulse {
  0%, 100% { transform: scale(1) rotate(0); text-shadow: 0 0 0 rgba(0,240,255,0); }
  50% { transform: scale(1.14) rotate(-2.5deg); text-shadow: 0 0 26px rgba(0,240,255,0.6); }
}

/* ── Pattern ──────────────────────────────────── */

.pattern { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; }
.pattern__steps { overflow-x: clip; }
@media (max-width: 900px) {
  .pattern { grid-template-columns: 1fr; }
  .pattern__sticky { position: static; }
  .pattern__steps { gap: 8vh; padding-block: 4vh; }
}
.pattern__sticky { position: sticky; top: 22vh; align-self: start; height: fit-content; }
.pattern__heading { font-size: clamp(2rem, 4.5vw, 3.8rem); }
.pattern__steps { display: flex; flex-direction: column; gap: 22vh; padding-block: 10vh; }
.pattern__step {
  display: flex;
  gap: 2rem;
  align-items: baseline;
  padding: 2.4rem;
  border: 1px solid var(--card-border);
  border-radius: 20px;
  background: var(--card-bg);
  opacity: 0.15;
  transform: translateX(80px) scale(0.95);
}
.pattern__step p { font-size: clamp(1.2rem, 2.2vw, 1.7rem); font-weight: 300; }
.pattern__step b { font-weight: 600; }
.pattern__num {
  font-family: var(--font-mono);
  color: var(--accent-2);
  font-size: 0.9rem;
}
.pattern__step--fail { border-color: rgba(255,46,136,0.4); }
.pattern__step--fail .pattern__num { color: var(--accent-3); }
.pattern__step--fail b { color: var(--accent-3); }

/* ── Approach ─────────────────────────────────── */

/* tall section + native sticky stage — no GSAP pinning (Safari-safe) */
.approach { height: 450vh; padding-block: 0; }
.approach__sticky-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 900px) {
  /* clear the fixed nav and keep the whole pinned stage inside one viewport */
  .approach__sticky-stage {
    justify-content: flex-start;
    padding-top: clamp(4.8rem, 11vh, 6.5rem);
    padding-bottom: 1rem;
    min-height: 0;
    gap: 0.5rem;
  }
}
.approach__heading { font-size: clamp(1.9rem, 3.6vw, 3.1rem); margin-bottom: 1rem; }
@media (max-width: 900px) {
  .approach__heading { font-size: clamp(1.4rem, 5.2vw, 1.9rem); margin-bottom: 0.4rem; }
}
.acard {
  position: relative;
  padding: 2.6rem 2.2rem;
  border: 1px solid var(--card-border);
  border-radius: 24px;
  background: var(--card-bg);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: border-color .4s;
}
.acard:hover { border-color: rgba(0,240,255,0.35); }
/* pinned 3-point stage — one big triangle building itself while cards take turns */
.approach__stage {
  display: grid;
  grid-template-columns: minmax(240px, 400px) 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  margin-top: 2.5rem;
}
@media (max-width: 900px) {
  .approach__stage { grid-template-columns: 1fr; gap: 1rem; margin-top: 1rem; }
  .approach__tri-wrap { max-width: min(175px, 40vh); margin-inline: auto; }
  .approach__cards { min-height: 250px; max-width: 100%; }
  .acard--stage { padding: 1.4rem 1.5rem; }
  .acard--stage .acard__point-label { margin-bottom: 0.9rem; }
  .acard--stage h3 { font-size: 1.15rem; }
  .acard--stage p { font-size: 0.9rem; }
  .acard__point-label b { font-size: 1.7rem; }
}
/* short phones: compress the pinned stage so triangle + card stay in one screen */
@media (max-width: 900px) and (max-height: 740px) {
  .approach__sticky-stage { padding-top: 4.5rem; gap: 0.25rem; }
  .approach__heading { font-size: 1.25rem; margin-bottom: 0.2rem; }
  .approach__stage { margin-top: 0.5rem; gap: 0.6rem; }
  .approach__tri-wrap { max-width: min(135px, 26vh); }
  .approach__cards { min-height: 210px; }
  .acard--stage { padding: 1.1rem 1.2rem; }
  .acard--stage .acard__point-label { margin-bottom: 0.5rem; }
  .acard--stage h3 { font-size: 1.02rem; margin-bottom: 0.4rem; }
  .acard--stage p { font-size: 0.82rem; }
  .acard__point-label b { font-size: 1.5rem; }
}
.approach__tri { width: 100%; overflow: visible; display: block; }
.atri-base {
  fill: rgba(108, 92, 231, 0.07);
  stroke: rgba(238, 240, 255, 0.18);
  stroke-width: 1.5;
  stroke-linejoin: round;
}
.atri-trace {
  stroke: var(--accent-2);
  stroke-width: 3;
  stroke-linecap: round;
  filter: drop-shadow(0 0 7px rgba(0, 240, 255, 0.7));
}
.atri-dot { fill: rgba(238, 240, 255, 0.28); }
.atri-dot.lit { fill: var(--accent-2); }
.atri-halo {
  fill: rgba(0, 240, 255, 0.22);
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: halopulse 2.4s ease-in-out infinite;
}
.atri-halo.lit { opacity: 1; }
@keyframes halopulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.5); }
}
.approach__cards { position: relative; min-height: 330px; max-width: 500px; overflow: clip; }
.acard--stage {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* only card 1 visible before the scroll timeline takes over (GSAP inline styles override this) */
.acard--stage:nth-child(n+2) { opacity: 0; visibility: hidden; }
.acard--stage .acard__point-label { margin-bottom: 1.8rem; }
.acard__point-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  color: var(--ink-dim);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.acard__point-label b {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.1rem;
  line-height: 1;
  letter-spacing: 0;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.acard h3 { font-size: 1.45rem; margin-bottom: 1rem; }
.acard p { color: var(--ink-dim); font-size: 0.98rem; }
.acard__glow {
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,92,231,0.35), transparent 70%);
  opacity: 0;
  transition: opacity .5s;
}
.acard:hover .acard__glow { opacity: 1; }

/* ── Gate ─────────────────────────────────────── */

.gate { background: linear-gradient(to bottom, transparent, rgba(10,10,22,0.7), transparent); }
.gate__heading { font-size: clamp(2rem, 4.6vw, 4rem); }
.gate__sub { max-width: 620px; color: var(--ink-dim); margin: 1.6rem 0 3.5rem; }
/* ── governance flow: glowing spine, items fly in from alternating sides ── */
.gate { overflow-x: clip; }
.gate__flow {
  position: relative;
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 7vh, 5rem);
  perspective: 1100px;
}
.gate__spine {
  position: absolute;
  left: 50%;
  top: -14px; bottom: -14px;
  width: 2px;
  margin-left: -1px;
  background: var(--grad);
  transform-origin: top;
  opacity: 0.65;
  border-radius: 2px;
}
.gitem {
  position: relative;
  width: 50%;
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 3vw, 2.6rem);
}
.gitem--left { align-self: flex-start; flex-direction: row-reverse; padding-right: clamp(2.2rem, 5vw, 4.5rem); }
.gitem--left .gitem__body { text-align: right; }
.gitem--left .gitem__body p { margin-left: auto; }
.gitem--right { align-self: flex-end; padding-left: clamp(2.2rem, 5vw, 4.5rem); }
/* node dot on the spine */
.gitem::before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -7px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent-2);
  box-shadow: 0 0 14px rgba(0, 240, 255, 0.8);
}
.gitem--left::before { right: -8px; }
.gitem--right::before { left: -8px; }
.gitem__num {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  color: var(--accent-2);
  display: block;
  margin-bottom: 0.6rem;
}
.gitem__body h4 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 0.6rem; }
.gitem__body p { font-size: 0.92rem; color: var(--ink-dim); max-width: 340px; }

/* ── holographic 3D elements (pure CSS 3D) ── */
.gitem__holo {
  flex: 0 0 auto;
  width: 90px; height: 90px;
  perspective: 480px;
  display: grid;
  place-items: center;
}
.holo {
  position: relative;
  width: 60px; height: 60px;
  transform-style: preserve-3d;
  animation: holospin 14s linear infinite;
}
@keyframes holospin {
  from { transform: rotateX(-18deg) rotateY(0deg); }
  to { transform: rotateX(-18deg) rotateY(360deg); }
}
.holo i { position: absolute; inset: 0; display: block; }

/* wireframe cube — classification */
.holo--cube i { border: 1.5px solid rgba(0, 240, 255, 0.65); background: rgba(0, 240, 255, 0.05); }
.holo--cube i:nth-child(1) { transform: translateZ(30px); }
.holo--cube i:nth-child(2) { transform: rotateY(90deg) translateZ(30px); }
.holo--cube i:nth-child(3) { transform: rotateY(180deg) translateZ(30px); }
.holo--cube i:nth-child(4) { transform: rotateY(270deg) translateZ(30px); }
.holo--cube i:nth-child(5) { transform: rotateX(90deg) translateZ(30px); }
.holo--cube i:nth-child(6) { transform: rotateX(-90deg) translateZ(30px); }

/* gyroscope rings — vulnerabilities scan */
.holo--rings { animation: none; }
.holo--rings i { border-radius: 50%; border: 1.5px solid rgba(108, 92, 231, 0.9); }
.holo--rings i:nth-child(1) { animation: ringspinY 5s linear infinite; border-color: rgba(0, 240, 255, 0.85); }
.holo--rings i:nth-child(2) { animation: ringspinX 7s linear infinite; }
.holo--rings i:nth-child(3) { inset: 12px; animation: ringspinD 9s linear infinite; border-color: rgba(255, 46, 136, 0.75); }
@keyframes ringspinY { from { transform: rotateY(0); } to { transform: rotateY(360deg); } }
@keyframes ringspinX { from { transform: rotateX(0); } to { transform: rotateX(360deg); } }
@keyframes ringspinD { from { transform: rotate3d(1, 1, 0, 0deg); } to { transform: rotate3d(1, 1, 0, 360deg); } }

/* pyramid — the brand triangle in 3D, AI readiness */
.holo--pyra i {
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: linear-gradient(to bottom, rgba(0, 240, 255, 0.4), rgba(108, 92, 231, 0.1));
  transform-origin: 50% 100%;
}
.holo--pyra i:nth-child(1) { transform: rotateY(0deg) translateZ(15px) rotateX(25deg); }
.holo--pyra i:nth-child(2) { transform: rotateY(90deg) translateZ(15px) rotateX(25deg); }
.holo--pyra i:nth-child(3) { transform: rotateY(180deg) translateZ(15px) rotateX(25deg); }
.holo--pyra i:nth-child(4) { transform: rotateY(270deg) translateZ(15px) rotateX(25deg); }

/* intersecting crystal planes — quality */
.holo--crystal i {
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.45), rgba(255, 46, 136, 0.25));
}
.holo--crystal i:nth-child(1) { transform: rotateY(0deg); }
.holo--crystal i:nth-child(2) { transform: rotateY(60deg); }
.holo--crystal i:nth-child(3) { transform: rotateY(120deg); }

@media (max-width: 760px) {
  .gate__spine { left: 12px; }
  .gitem, .gitem--left, .gitem--right {
    width: 100%;
    align-self: auto;
    flex-direction: row;
    padding: 0 0 0 2.4rem;
  }
  .gitem--left .gitem__body { text-align: left; }
  .gitem--left .gitem__body p { margin-left: 0; }
  .gitem--left::before, .gitem--right::before { left: 5px; right: auto; }
}

/* ── Team ─────────────────────────────────────── */

.team__heading { font-size: clamp(1.8rem, 3.8vw, 3.2rem); max-width: 1000px; margin-bottom: 4rem; }
.team__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
@media (max-width: 980px) { .team__grid { grid-template-columns: 1fr; } }
.tcard {
  padding: 2.6rem 2.2rem;
  border: 1px solid var(--card-border);
  border-radius: 24px;
  background: var(--card-bg);
  transform-style: preserve-3d;
  transition: border-color .4s;
}
.tcard:hover { border-color: rgba(0,240,255,0.35); }
.tcard__avatar {
  width: 128px; height: 128px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  background: var(--grad);
  margin-bottom: 1.6rem;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.12);
}
.tcard__avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.tcard h3 { font-size: 1.35rem; }
.tcard__role {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--accent-2);
  margin: 0.5rem 0 1.2rem;
}
.tcard p { font-size: 0.9rem; color: var(--ink-dim); }
.team__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3.5rem;
  border-top: 1px solid var(--card-border);
  padding-top: 3rem;
}
@media (max-width: 760px) { .team__stats { grid-template-columns: 1fr; } }
.tstat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.4vw, 3.6rem);
  line-height: 0.95;
  font-weight: 800;
  white-space: nowrap;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* number and unit the same size — "30+ yrs" reads as one clean unit */
.tstat b i { font-style: normal; font-size: 1em; }
/* direct child only — must not hit the counter span inside <b> */
.tstat > span { color: var(--ink-dim); font-size: 0.9rem; }
.tstat b span { font-size: 1em; color: transparent; }

/* ── Offer (horizontal) ───────────────────────── */

/* tall section (height set by JS to viewport + slide distance) + native sticky stage */
.offer { padding: 0; }
.offer__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-inline: var(--pad-inline);
}
.offer__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 2.2rem; flex-wrap: wrap; }
.offer__heading { font-size: clamp(2rem, 4.6vw, 4rem); max-width: 760px; }
.offer__heading em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.offer__hint { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.25em; color: var(--ink-faint); }
.offer__track { display: flex; gap: 1.8rem; width: max-content; will-change: transform; }
.ocard {
  width: clamp(300px, 34vw, 460px);
  max-height: 62vh;
  padding: 2.4rem 2.2rem;
  border: 1px solid var(--card-border);
  border-radius: 28px;
  background: var(--card-bg);
  display: flex;
  flex-direction: column;
  transition: border-color .4s, box-shadow .4s;
  will-change: transform;
}
.ocard:hover { border-color: rgba(0,240,255,0.4); }
.ocard.is-active {
  border-color: rgba(0,240,255,0.6);
  box-shadow: 0 0 70px rgba(0,240,255,0.14), 0 30px 90px rgba(0,0,0,0.5);
}
.ocard.is-active .ocard__idx { color: var(--accent-2); }
.ocard.is-active .ocard__icon { animation: iconpop .55s cubic-bezier(.34,1.56,.64,1); }
@keyframes iconpop {
  0% { transform: scale(1) rotate(0); }
  45% { transform: scale(1.45) rotate(-10deg); }
  100% { transform: scale(1) rotate(0); }
}
.ocard__icon { display: inline-block; }
.ocard__idx { font-family: var(--font-mono); font-size: 0.75rem; color: var(--ink-faint); }
.ocard__icon { font-size: 2.4rem; color: var(--accent-2); margin: 2rem 0 1.4rem; }
.ocard h3 { font-size: 1.6rem; margin-bottom: 1rem; }
.ocard p { color: var(--ink-dim); font-size: 0.95rem; flex: 1; }
.ocard__tag {
  margin-top: 2rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  border-top: 1px solid var(--card-border);
  padding-top: 1.2rem;
}
.ocard__more {
  display: inline-block;
  margin-top: 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--accent-2);
  position: relative;
  transition: gap .3s;
}
.ocard__more::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 1px;
  background: var(--accent-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.ocard__more:hover::after { transform: scaleX(1); }
/* mobile: one near-full-width card centered at a time, driven by vertical scroll
   (same pinned scrub as desktop). Clear the fixed nav and keep head + card on screen. */
@media (max-width: 860px) {
  .offer__pin { justify-content: flex-start; padding-top: clamp(4.8rem, 12vh, 6.5rem); }
  .offer__head { margin-bottom: 1.3rem; gap: 0.6rem; }
  .offer__heading { font-size: clamp(1.4rem, 5.4vw, 2rem); max-width: 100%; }
  .offer__hint { display: none; }
  .offer__track { gap: 1rem; }
  .ocard {
    width: min(84vw, 430px);
    max-height: min(60vh, 500px);
    padding: 1.9rem 1.7rem;
    border-radius: 22px;
  }
  .ocard__icon { margin: 1.2rem 0 1rem; font-size: 2.1rem; }
  .ocard h3 { font-size: 1.35rem; }
  .ocard p { font-size: 0.92rem; }
  .ocard__tag { margin-top: 1.3rem; padding-top: 1rem; }
}
@media (max-width: 860px) and (max-height: 720px) {
  .offer__heading { font-size: 1.3rem; }
  .offer__head { margin-bottom: 0.9rem; }
  .ocard { max-height: 56vh; padding: 1.5rem 1.5rem; }
  .ocard h3 { font-size: 1.2rem; }
  .ocard p { font-size: 0.86rem; }
  .ocard__icon { margin: 0.9rem 0 0.8rem; font-size: 1.8rem; }
}

/* ── Use cases ────────────────────────────────── */

.usecases { overflow-x: clip; }
.usecases__heading { font-size: clamp(2.2rem, 5vw, 4.2rem); margin-bottom: 1.4rem; }
.morelink {
  display: inline-block;
  margin-bottom: 3rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--accent-2);
  position: relative;
}
.morelink::after {
  content: ""; position: absolute; left: 0; bottom: -4px;
  width: 100%; height: 1px; background: var(--grad);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.morelink:hover::after { transform: scaleX(1); }
.ucase {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
  border-top: 1px solid var(--card-border);
  opacity: 0;
  transform: translateY(60px);
}
@media (max-width: 820px) { .ucase { grid-template-columns: 1fr; gap: 1rem; } }
.ucase:last-of-type { border-bottom: 1px solid var(--card-border); }
.ucase__metric {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  line-height: 1;
  white-space: nowrap;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ucase__metric i { font-style: normal; font-size: 0.5em; }
/* deconstructed digits — each piece transforms independently, so the gradient
   must be clipped per character (parent background-clip dies under child transforms) */
.dchar {
  display: inline-block;
  will-change: transform;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ucase__body h3 { font-size: 1.6rem; margin-bottom: 0.8rem; }
.ucase__body p { color: var(--ink-dim); max-width: 640px; }
.ucase__body em { font-family: var(--font-mono); font-style: normal; font-size: 0.75em; color: var(--ink-faint); }
.usecases__more { margin-top: 3rem; color: var(--ink-dim); font-size: 1.1rem; max-width: 640px; }

/* ── Why now ──────────────────────────────────── */

.whynow { overflow-x: clip; }
.whynow__heading { font-size: clamp(2.2rem, 5vw, 4.2rem); max-width: 900px; margin-bottom: 4rem; }
.whynow__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
@media (max-width: 900px) { .whynow__grid { grid-template-columns: 1fr; } }
.wstat {
  padding: 2.6rem 2.2rem;
  border: 1px solid var(--card-border);
  border-radius: 24px;
  background: var(--card-bg);
}
/* the solid number the pixel mosaic resolves into — gradient applied on the span
   itself because transformed sibling pixels break background-clip on the parent */
.pxsolid {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  visibility: hidden;
}
/* pixel squares that compose/decompose the stat numbers */
.px {
  position: absolute;
  border-radius: 1px;
  pointer-events: none;
  will-change: transform;
}
.wstat b {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.4rem, 6vw, 5.2rem);
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1.2rem;
}
.wstat h4 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 0.6rem; }
.wstat p { color: var(--ink-dim); font-size: 0.9rem; }
.wstat em { font-family: var(--font-mono); font-style: normal; font-size: 0.8em; color: var(--ink-faint); display: block; margin-top: 0.6rem; }

/* ── CTA / Footer ─────────────────────────────── */

.cta {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cta__title {
  font-size: clamp(4rem, 14vw, 13rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.95;
}
.cta__title > span { display: block; }
.cta__sub { margin: 2.2rem 0 3rem; color: var(--ink-dim); font-size: clamp(1rem, 1.6vw, 1.3rem); }
.footer {
  margin-top: 8rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--card-border);
  padding-top: 2.5rem;
  font-size: 0.8rem;
  color: var(--ink-faint);
}
.footer__brand { font-family: var(--font-display); font-weight: 800; font-size: 1rem; display: flex; align-items: center; gap: 0.4rem; color: var(--ink); }
.footer__brand em { font-style: normal; color: var(--ink-dim); font-weight: 500; }
.footer__links { display: flex; gap: 1.8rem; }
.footer__links a { color: var(--ink-dim); transition: color .3s; }
.footer__links a:hover { color: var(--accent-2); }
