/* ─────────────────────────────────────────────
   MEMIOS INDIA · DARK · BRAND-LED
   Colors sampled directly from the Memios India logo:
   - Royal blue:  #004FBA
   - Brand gold:  #D9A405
   Pure sans typography. No italics. No serifs.
   ───────────────────────────────────────────── */

:root {
  /* SURFACES */
  --bg: #050a14;
  --bg-2: #0a1424;
  --bg-elev: #0f1c30;
  --bg-soft: #14253e;

  /* INK */
  --ink: #f4f6fa;
  --ink-soft: rgba(244, 246, 250, 0.74);
  --ink-muted: rgba(244, 246, 250, 0.44);
  --ink-faint: rgba(244, 246, 250, 0.18);

  /* LINES */
  --line: rgba(244, 246, 250, 0.09);
  --line-bright: rgba(83, 145, 232, 0.32);

  /* BRAND COLORS — sampled from logo */
  --blue: #004FBA;            /* primary brand blue */
  --blue-bright: #5391E8;     /* lighter blue for accents */
  --blue-deep: #003280;       /* darker for hover/depth */
  --blue-glow: rgba(0, 79, 186, 0.55);

  --gold: #D9A405;            /* brand gold from m-ribbon */
  --gold-bright: #F5C547;     /* brighter gold for highlights */

  /* RHYTHM */
  --max: 1320px;
  --pad-x: clamp(24px, 5vw, 80px);
  --section-y: clamp(72px, 9vh, 120px);

  --ease-out: cubic-bezier(.2, .8, .2, 1);
  --ease-cinematic: cubic-bezier(.16, 1, .3, 1);
  /* Fast curve for interactive feedback (hovers, presses) — kept under 300ms */
  --ease-snappy: cubic-bezier(.32, .72, 0, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { background: var(--bg); scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none;
}
@media (hover: none) { body { cursor: auto; } }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.accent { color: var(--blue-bright); font-weight: 400; }

/* ─────────────────────────────────────────────
   SECTION TYPE
   ───────────────────────────────────────────── */

.section-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(83, 145, 232, 0.75);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.section-tag::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--blue-bright);
  opacity: 0.7;
}

.section-h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.028em;
  color: var(--ink);
  max-width: 20ch;
  margin-bottom: 32px;
}

.section-lede {
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 56ch;
  font-weight: 300;
}

/* ─────────────────────────────────────────────
   CURSOR
   ───────────────────────────────────────────── */

.cursor-dot, .cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
  top: 0; left: 0;
}
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--blue-bright);
  box-shadow: 0 0 14px rgba(83, 145, 232, 0.8);
  transition: width .25s, height .25s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(83, 145, 232, 0.45);
  transition: width .45s var(--ease-cinematic),
              height .45s var(--ease-cinematic),
              border-color .3s, background .3s;
}
.cursor-ring.hover {
  width: 72px; height: 72px;
  border-color: var(--blue-bright);
  background: rgba(0, 79, 186, 0.10);
}
.cursor-dot.hover { width: 2px; height: 2px; }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ─────────────────────────────────────────────
   SCROLL PROGRESS
   ───────────────────────────────────────────── */

.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  box-shadow: 0 0 10px rgba(0, 79, 186, 0.7);
  z-index: 1000;
  will-change: width;
}

/* ─────────────────────────────────────────────
   HEADER
   ───────────────────────────────────────────── */

.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 80;
  padding: 22px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px;
  transition: padding .5s var(--ease-cinematic),
              background .5s, backdrop-filter .5s,
              border-color .5s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding: 12px var(--pad-x);
  background: rgba(5, 10, 20, 0.82);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border-bottom-color: var(--line);
}

.brand-logo {
  height: 44px;
  width: auto;
  transition: height .5s var(--ease-cinematic);
  display: block;
}
.site-header.scrolled .brand-logo { height: 36px; }

.nav {
  display: flex;
  gap: 36px;
  font-size: 13.5px;
  font-weight: 400;
}
.nav a {
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--blue-bright);
  box-shadow: 0 0 8px rgba(83, 145, 232, 0.7);
  transition: width .5s var(--ease-cinematic);
}
.nav a:hover { color: var(--blue-bright); }
.nav a:hover::after { width: 100%; }
/* Active section (scroll-spy) */
.nav a.is-current { color: var(--blue-bright); }
.nav a.is-current::after { width: 100%; }

.header-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--ink-faint);
  background: rgba(244, 246, 250, 0.02);
  transition: border-color .2s, background .2s, color .2s, transform .2s var(--ease-snappy);
}
.header-cta:hover {
  border-color: var(--blue-bright);
  background: rgba(0, 79, 186, 0.12);
  color: var(--blue-bright);
  transform: translateY(-1px);
}
.header-cta .arrow { transition: transform .2s var(--ease-snappy); }
.header-cta:hover .arrow { transform: translateX(4px); }

@media (max-width: 920px) {
  .nav { display: none; }
  .brand-logo { height: 36px; }
  .header-cta { padding: 9px 14px; font-size: 11px; }
}
@media (max-width: 640px) {
  .header-cta span:first-child { display: none; }
  .header-cta { padding: 9px 11px; gap: 0; }
}

/* ─────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────── */

.btn-primary, .btn-ghost {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 17px 30px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform .5s var(--ease-cinematic),
              border-color .4s, background .4s, color .4s;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  will-change: transform;
  cursor: none;
}
.btn-primary {
  background: var(--blue);
  color: var(--ink);
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--blue-bright);
  transform: translateY(101%);
  transition: transform .6s var(--ease-cinematic);
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover { transform: translateY(-2px); }
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary .arrow { transition: transform .5s var(--ease-cinematic); }
.btn-primary:hover .arrow { transform: translateX(6px); }
.btn-primary--large { padding: 22px 38px; font-size: 14px; }

.btn-ghost {
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink-faint);
}
.btn-ghost:hover {
  border-color: var(--blue-bright);
  background: rgba(0, 79, 186, 0.10);
  color: var(--blue-bright);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 128px var(--pad-x) 72px;
  max-width: var(--max);
  margin: 0 auto;
  overflow: hidden;
}

.hero-atmosphere {
  position: absolute; inset: -10%;
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(83, 145, 232, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(83, 145, 232, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 0%, transparent 100%);
  will-change: transform;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  will-change: transform;
}
.hero-glow--a {
  width: 700px; height: 700px;
  background: var(--blue);
  top: -10%; left: -10%;
}
.hero-glow--b {
  width: 500px; height: 500px;
  background: rgba(217, 164, 5, 0.18);
  bottom: -10%; right: -10%;
}

/* Drifting pipe-network lines + traveling pulses */
.hero-pipes {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0.5;
}
.hero-pipe {
  fill: none;
  stroke: rgba(83, 145, 232, 0.16);
  stroke-width: 1.5;
  stroke-dasharray: 6 10;
  animation: pipeDrift 5s linear infinite;
}
.hero-pipe--2 { animation-duration: 7s; stroke: rgba(83,145,232,0.12); }
.hero-pipe--3 { animation-duration: 6s; stroke: rgba(217,164,5,0.10); }
@keyframes pipeDrift {
  to { stroke-dashoffset: -16; }
}
/* Pulses that travel along each pipe path */
.hero-pulse {
  fill: var(--blue-bright);
  filter: drop-shadow(0 0 6px rgba(83,145,232,0.9));
  offset-path: path("M-50,180 L520,180 Q560,180 560,220 L560,420 Q560,460 600,460 L1490,460");
  animation: pulseTravel 8s linear infinite;
}
.hero-pulse--2 {
  fill: var(--gold);
  filter: drop-shadow(0 0 6px rgba(217,164,5,0.8));
  offset-path: path("M-50,640 L380,640 Q420,640 420,600 L420,320 Q420,280 460,280 L1490,280");
  animation: pulseTravel 11s linear infinite;
  animation-delay: 2s;
}
.hero-pulse--3 {
  offset-path: path("M-50,760 L900,760 Q940,760 940,720 L940,560 Q940,520 980,520 L1490,520");
  animation: pulseTravel 9.5s linear infinite;
  animation-delay: 4s;
}
@keyframes pulseTravel {
  from { offset-distance: 0%; opacity: 0; }
  8% { opacity: 1; }
  92% { opacity: 1; }
  to { offset-distance: 100%; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-pipe, .hero-pulse, .hero-pulse--2, .hero-pulse--3 { animation: none; }
  .hero-pulse, .hero-pulse--2, .hero-pulse--3 { opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.hero-brand {
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
}
.hero-brand img {
  height: clamp(64px, 7vw, 104px);
  width: auto;
  display: block;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 16px 8px 12px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 40px;
  background: rgba(244, 246, 250, 0.02);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(20px);
}
.hero-eyebrow__dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(217, 164, 5, 0.18);
  animation: heroPulse 2.4s infinite;
}
@keyframes heroPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(217, 164, 5, 0.18); }
  50% { box-shadow: 0 0 0 9px rgba(217, 164, 5, 0); }
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(44px, 7.2vw, 112px);
  line-height: 1.02;
  letter-spacing: -0.038em;
  color: var(--ink);
  margin-bottom: 48px;
  max-width: 18ch;
}
.hero-title .line {
  display: block;
  /* Padding gives descenders (g, y, p) room; negative margin keeps
     the visual line spacing tight despite the padding. */
  padding-bottom: 0.18em;
  margin-bottom: -0.18em;
}
.hero-title .line > span {
  display: inline;
}
.hero-title .ch {
  display: inline-block;
  will-change: transform, opacity;
}
/* Only hide chars once JS has split + is about to animate them.
   If GSAP never runs, text stays visible (no blank hero). */
.hero-title.is-split .ch {
  opacity: 0;
}
.hero-title .accent {
  color: var(--blue-bright);
  font-weight: 400;
}
.hero-subhead {
  font-family: 'Sora', sans-serif;
  font-weight: 300;
  font-size: clamp(18px, 2.4vw, 30px);
  letter-spacing: -0.02em;
  color: var(--ink-soft);
  margin-top: -16px;
  margin-bottom: 32px;
  max-width: 26ch;
}
.hero-title.is-split ~ .hero-subhead { opacity: 0; }

.hero-lead {
  font-size: clamp(16px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-bottom: 56px;
  font-weight: 300;
  opacity: 0;
  transform: translateY(20px);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}

.hero-scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-muted);
  opacity: 0;
}
.hero-scroll-cue__line {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, var(--blue-bright), transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll-cue__line::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 16px;
  background: var(--blue-bright);
  animation: scrollLine 2.4s infinite var(--ease-cinematic);
}
@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(400%); }
}

@media (max-width: 640px) {
  .hero-scroll-cue { display: none; }
  .hero { padding: 120px 24px 80px; min-height: 90vh; }
  .hero-brand { margin-bottom: 32px; }
  .hero-eyebrow { margin-bottom: 28px; }
  .hero-title { margin-bottom: 28px; }
  .hero-lead { margin-bottom: 32px; }
}

/* ─────────────────────────────────────────────
   MARQUEE
   ───────────────────────────────────────────── */

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  overflow: hidden;
  background: var(--bg-2);
}
.marquee-track {
  display: flex;
  gap: 50px;
  animation: marqueeScroll 55s linear infinite;
  white-space: nowrap;
  width: max-content;
  align-items: center;
}
.marquee-item {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(28px, 4vw, 52px);
  color: var(--ink);
  letter-spacing: -0.025em;
}
.marquee-item sup {
  font-size: 0.4em;
  vertical-align: super;
  color: var(--blue-bright);
  margin-left: 4px;
  font-weight: 400;
}
.marquee-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(16px, 2vw, 24px);
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}
.marquee-sep {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(217, 164, 5, 0.55);
}
.marquee-cert {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  height: 60px;
  padding: 0 20px;
  background: rgba(244, 246, 250, 0.06);
  border: 1px solid rgba(244, 246, 250, 0.10);
  border-radius: 10px;
  transition: background .2s, border-color .2s;
}
.marquee-cert:hover {
  background: rgba(244, 246, 250, 0.10);
  border-color: rgba(83, 145, 232, 0.3);
}
.marquee-cert img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}
.marquee-cert__fallback {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--blue);
  white-space: nowrap;
}
/* Certification pill badges in the marquee (always visible, no image needed) */
.marquee-badge {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-bright);
  padding: 10px 22px;
  border: 1px solid var(--line-bright);
  border-radius: 100px;
  background: rgba(0, 79, 186, 0.08);
  white-space: nowrap;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────
   AUDIENCE SEGMENTS strip
   ───────────────────────────────────────────── */
.segments {
  padding: clamp(50px, 7vh, 90px) var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.segments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.segment {
  background: var(--bg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background .25s var(--ease-snappy), transform .25s var(--ease-snappy);
}
.segment:hover {
  background: var(--bg-2);
  transform: translateY(-4px);
}
.segment__icon {
  color: var(--blue-bright);
  margin-bottom: 8px;
}
.segment__name {
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--ink);
}
.segment__desc {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.5;
}
/* Benefit text: collapsed by default on desktop, expands on hover */
.segment__benefit {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease-cinematic), opacity .4s ease, margin-top .5s var(--ease-cinematic);
  margin-top: 0;
}
.segment:hover .segment__benefit {
  max-height: 160px;
  opacity: 1;
  margin-top: 6px;
}
/* subtle cue that there's more on hover */
.segment { cursor: default; position: relative; }
@media (max-width: 820px) {
  .segments-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  /* No hover on touch devices: always show the benefit text */
  .segment__benefit {
    max-height: none;
    opacity: 1;
    margin-top: 6px;
  }
}
@media (max-width: 460px) {
  .segments-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
   PM PROOF BAND — featured trust signal
   ───────────────────────────────────────────── */
.pmband {
  padding: clamp(48px, 7vh, 90px) var(--pad-x);
  max-width: 1500px;
  margin: 0 auto;
}
.pmband-media {
  position: relative;
  width: 100%;
  aspect-ratio: 21/9;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
}
.pmband-media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  display: block;
  transition: transform 1.6s var(--ease-cinematic);
}
.pmband-media:hover img { transform: scale(1.02); }
/* small subtle label overlaid top-left of the image */
.pmband-tag {
  position: absolute;
  top: 24px; left: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(5, 10, 20, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 7px 14px;
  border: 1px solid rgba(244, 246, 250, 0.12);
  border-radius: 100px;
}
.pmband-caption {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  font-style: normal;
  font-weight: 400;
  margin-top: 18px;
  text-align: center;
  max-width: 72ch;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.01em;
}
@media (max-width: 768px) {
  .pmband-media { aspect-ratio: 4/3; }
  .pmband-tag { font-size: 10px; top: 14px; left: 14px; padding: 6px 11px; }
}


.proof {
  padding: var(--section-y) var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
}
.proof-inner { max-width: 1100px; }
.proof-title {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(32px, 4.8vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.028em;
  color: var(--ink);
  max-width: 22ch;
  margin-bottom: 56px;
}

.proof-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof-num {
  background: var(--bg);
  padding: 48px 28px;
}
.proof-num__value {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: clamp(48px, 5.5vw, 84px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
  color: var(--ink);
  display: flex;
  align-items: baseline;
}
.proof-num__unit {
  font-size: 0.42em;
  color: var(--blue-bright);
  margin-left: 4px;
  font-weight: 400;
}
.proof-num__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  line-height: 1.5;
}

@media (max-width: 920px) {
  .proof-numbers { grid-template-columns: repeat(2, 1fr); }
  .proof-title { margin-bottom: 60px; }
}
@media (max-width: 480px) {
  .proof-numbers { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
   TECH — scroll-pinned narrative
   With real CleanStream 3D render as the centrepiece
   ───────────────────────────────────────────── */

.tech {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  background: var(--bg);
  position: relative;
  border-top: 1px solid var(--line);
}

.tech-pin {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 56px;
  align-items: center;
  min-height: 100vh;
}

.tech-copy { position: relative; }
.tech-h2 { max-width: 14ch; margin: 16px 0 40px; }
.tech-copy .section-tag { margin-bottom: 56px; }

.tech-steps {
  position: relative;
  height: 340px;
  margin-bottom: 40px;
}
.tech-step {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
  will-change: opacity, transform;
}
.tech-step.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity .7s var(--ease-cinematic), transform .7s var(--ease-cinematic);
}
.tech-step__num {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: clamp(48px, 5vw, 76px);
  line-height: 1;
  color: var(--blue-bright);
  margin-bottom: 16px;
  letter-spacing: -0.04em;
  opacity: 0.9;
}
.tech-step__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 24px;
}
.tech-step__title {
  font-family: 'Sora', 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 18px;
  max-width: 20ch;
}
.tech-step__body {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 48ch;
  font-weight: 300;
}

.tech-progress {
  margin-top: 60px;
  display: flex; align-items: center; gap: 18px;
}
.tech-flowline {
  flex: 1;
  position: relative;
  height: 14px;
  display: flex;
  align-items: center;
}
.tech-flowline__track {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--line);
}
.tech-flowline__fill {
  position: absolute;
  left: 0;
  height: 2px;
  width: 20%;
  background: linear-gradient(90deg, rgba(83,145,232,0.3), var(--blue-bright));
  box-shadow: 0 0 10px rgba(83, 145, 232, 0.7);
  transition: width .8s var(--ease-cinematic);
}
/* Glowing pulse that sits at the leading edge of the fill */
.tech-flowline__pulse {
  position: absolute;
  top: 50%;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 12px 2px rgba(83,145,232,0.9);
  transform: translate(-50%, -50%);
  left: 20%;
  transition: left .8s var(--ease-cinematic);
  z-index: 3;
}
.tech-flowline__pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(83,145,232,0.5);
  animation: flowPulseRing 1.6s ease-out infinite;
}
@keyframes flowPulseRing {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.6); opacity: 0; }
}
/* Stage node markers along the line */
.tech-flowline__node {
  position: absolute;
  top: 50%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line-bright);
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: background .4s, border-color .4s, transform .4s;
}
.tech-flowline__node[data-node="0"] { left: 0%; }
.tech-flowline__node[data-node="1"] { left: 25%; }
.tech-flowline__node[data-node="2"] { left: 50%; }
.tech-flowline__node[data-node="3"] { left: 75%; }
.tech-flowline__node[data-node="4"] { left: 100%; }
.tech-flowline__node.is-reached {
  background: var(--blue-bright);
  border-color: var(--blue-bright);
  transform: translate(-50%, -50%) scale(1.3);
}
.tech-progress__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
  text-transform: uppercase;
}

/* The real CleanStream render becomes the hero of this section */
.tech-visual {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin-left: auto;
}
.tech-render {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  transition: transform 1.2s var(--ease-cinematic);
}
.tech-render__img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 32px;
  filter:
    brightness(0.85)
    contrast(1.15)
    hue-rotate(190deg)
    saturate(1.2);
  mix-blend-mode: screen;
  opacity: 0.88;
  will-change: transform;
  transition: transform 1.4s var(--ease-cinematic), filter 1s;
}

/* Five stage images cross-fade; auto-advancing, pause on hover */
.tech-stage-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transform: scale(1.04);
  pointer-events: none;
  transition: opacity .9s var(--ease-cinematic), transform 1.4s var(--ease-cinematic);
  will-change: opacity, transform;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(255,255,255,0.98) 0%, rgba(225,232,245,0.92) 60%, rgba(190,205,230,0.85) 100%);
}
.tech-stage-img.is-active {
  opacity: 1;
  transform: scale(1);
}
.tech-stage-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 6px;
  display: block;
}

.tech-render__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 60%, rgba(0, 79, 186, 0.08) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Motion overlay: a flowing energy glow that sweeps in the pipe-flow direction */
.tech-scan {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: screen;
}
.tech-scan::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -60%;
  width: 50%;
  height: 140%;
  background: linear-gradient(105deg,
    transparent 0%,
    rgba(83, 145, 232, 0.0) 35%,
    rgba(83, 145, 232, 0.35) 50%,
    rgba(120, 180, 255, 0.0) 65%,
    transparent 100%);
  transform: skewX(-12deg);
  animation: techFlowSweep 3.4s cubic-bezier(.45,0,.55,1) infinite;
}
@keyframes techFlowSweep {
  0% { left: -60%; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { left: 130%; opacity: 0; }
}
/* Subtle pulse so the blue pipework "breathes" */
.tech-scan::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 65% 45%, rgba(83,145,232,0.10) 0%, transparent 55%);
  animation: techGlowPulse 2.8s ease-in-out infinite;
}
@keyframes techGlowPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

@media (max-width: 1024px) {
  .tech-pin {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
  }
  .tech-visual { max-width: 100%; margin: 0 auto; }
  .tech-step:last-child { margin-bottom: 0; }
  .tech-render { aspect-ratio: 16 / 11; }
}

/* ─────────────────────────────────────────────
   QUOTE
   ───────────────────────────────────────────── */

.quote {
  background: var(--bg-2);
  padding: clamp(80px, 12vh, 140px) var(--pad-x);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quote-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.quote .section-tag {
  justify-content: center;
  display: inline-flex;
}
.quote blockquote {
  margin-top: 32px;
}
.quote blockquote p {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: clamp(28px, 4.6vw, 64px);
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 22ch;
  margin: 0 auto;
}
.quote blockquote .accent {
  color: var(--blue-bright);
  font-weight: 300;
}
.quote-attribution {
  margin-top: 48px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ─────────────────────────────────────────────
   PRODUCTS — MULE feature row + 3 cards
   ───────────────────────────────────────────── */

.products {
  padding: var(--section-y) var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
}
.products-head { max-width: 700px; margin-bottom: 48px; }
.products-head .section-h2 { max-width: 16ch; }

/* Feature row — MULE photography deserves space */
.product-feature {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color .25s, transform .25s var(--ease-snappy);
  text-decoration: none;
  color: inherit;
}
.product-feature:hover {
  border-color: var(--line-bright);
  transform: translateY(-4px);
}
.product-feature__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 60%, rgba(0, 79, 186, 0.18) 0%, transparent 60%),
    linear-gradient(135deg, #0a1830 0%, #050a14 100%);
}
.product-feature__media img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 40px;
  transition: transform 1.4s var(--ease-cinematic);
  will-change: transform;
}
.product-feature:hover .product-feature__media img {
  transform: scale(1.05);
}
.product-feature__body {
  padding: 60px 60px 60px 0;
}
.product-feature__title {
  font-family: 'Sora', 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin: 16px 0 20px;
  max-width: 18ch;
}
.product-feature__desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 44ch;
}
.product-feature__specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 36px;
}
.spec__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
}
.spec__value {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--ink);
}
.product-feature__cta {
  cursor: none;
}

@media (max-width: 920px) {
  .product-feature { grid-template-columns: 1fr; }
  .product-feature__body { padding: 0 32px 40px; }
  .product-feature__specs { grid-template-columns: 1fr; gap: 16px; }
}

/* 3-card grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .25s, transform .25s var(--ease-snappy);
  text-decoration: none;
  color: inherit;
}
.product-card:hover {
  border-color: var(--line-bright);
  transform: translateY(-4px);
}
.product-card__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 60%, rgba(0, 79, 186, 0.15) 0%, transparent 60%),
    linear-gradient(135deg, #0a1830 0%, #050a14 100%);
}
.product-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-cinematic);
  will-change: transform;
}
.product-card:hover .product-card__media img {
  transform: scale(1.06);
}
.product-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5, 10, 20, 0.7) 100%);
  pointer-events: none;
}
.product-card__body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card__tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 16px;
}
.product-card__tag sup {
  font-size: 0.8em;
  vertical-align: super;
  margin-left: 1px;
}
.product-card__title {
  font-family: 'Sora', 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(19px, 1.7vw, 22px);
  line-height: 1.25;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin-bottom: 14px;
  max-width: 22ch;
}
.product-card__desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 28px;
  max-width: 44ch;
  flex: 1;
}
.product-card__cta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-bright);
  display: inline-flex; align-items: center; gap: 12px;
  transition: gap .5s var(--ease-cinematic);
}
.product-card:hover .product-card__cta { gap: 18px; }

@media (max-width: 920px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
   APPLICATIONS
   ───────────────────────────────────────────── */

.applications {
  padding: var(--section-y) var(--pad-x);
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.applications-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.applications-head {
  max-width: 700px;
  margin-bottom: 48px;
}
.applications-head .section-h2 { max-width: 18ch; }

.applications-list {
  list-style: none;
  border-top: 1px solid var(--line);
}
.application {
  display: grid;
  grid-template-columns: 80px 180px 1fr 1.4fr 60px;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: padding .6s var(--ease-cinematic), background .5s;
  position: relative;
  cursor: none;
}
.application::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--blue-bright);
  transition: width .6s var(--ease-cinematic);
  box-shadow: 0 0 12px rgba(83, 145, 232, 0.45);
}
.application:hover { padding: 52px 24px; }
.application:hover::before { width: 3px; }
.application__num {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: 44px;
  color: var(--ink-faint);
  transition: color .2s;
  letter-spacing: -0.03em;
}
.application:hover .application__num { color: var(--blue-bright); }
.application__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.application__title {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.015em;
  color: var(--ink);
  transition: color .2s;
}
.application:hover .application__title { color: var(--blue-bright); }
.application__desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 300;
}
.application__arrow {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  color: var(--ink-muted);
  text-align: right;
  transition: color .2s, transform .25s var(--ease-snappy);
}
.application:hover .application__arrow {
  color: var(--blue-bright);
  transform: translateX(8px);
}

@media (max-width: 1024px) {
  .application {
    grid-template-columns: 50px 1fr 36px;
    gap: 20px;
    padding: 24px 0;
  }
  .application:hover { padding: 32px 16px; }
  .application__label, .application__desc { display: none; }
}

/* ─────────────────────────────────────────────
   ABOUT
   ───────────────────────────────────────────── */

.about {
  padding: var(--section-y) var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.about-left .section-h2 { max-width: 16ch; }
.about-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 24px;
  max-width: 48ch;
  font-weight: 300;
}
.about-leader {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 48px;
  margin-bottom: 32px;
}
.about-leader__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 16px;
}
.about-leader__name {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 24px;
}
.about-leader__bio {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 40px;
  font-weight: 300;
}
.about-credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.credential__value {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
}
.credential__unit {
  font-size: 0.4em;
  color: var(--blue-bright);
  margin-left: 4px;
  font-weight: 400;
}
.credential__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-muted);
  line-height: 1.5;
}
.about-relationships, .about-projects {
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
}
.about-relationships__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 14px;
}
.about-relationships p, .about-projects p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}

@media (max-width: 920px) {
  .about-inner { grid-template-columns: 1fr; gap: 60px; }
  .about-credentials { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .about-leader { padding: 32px; }
}
@media (max-width: 560px) {
  .about-credentials { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
   CONTACT
   ───────────────────────────────────────────── */

.contact {
  position: relative;
  padding: clamp(120px, 18vh, 200px) var(--pad-x);
  background: var(--bg);
  border-top: 1px solid var(--line);
  text-align: center;
  overflow: hidden;
}
.contact-glow {
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 79, 186, 0.22) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(50px);
  animation: contactGlow 5s infinite ease-in-out;
  pointer-events: none;
}
@keyframes contactGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}
.contact-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.contact .section-tag {
  justify-content: center;
  display: inline-flex;
}
.contact-title {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: clamp(40px, 7vw, 104px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 56px;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}
.contact-cta-row {
  margin-bottom: 56px;
  display: flex;
  justify-content: center;
}
.contact-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 64px;
  margin-top: 8px;
  border-top: 1px solid var(--line);
  text-align: left;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 32px 28px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  transition: border-color .25s, transform .25s var(--ease-snappy);
}
.contact-detail:hover {
  border-color: var(--line-bright);
  transform: translateY(-4px);
}
.contact-detail__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 79, 186, 0.12);
  border: 1px solid var(--line-bright);
  color: var(--blue-bright);
  margin-bottom: 16px;
}
.contact-detail__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 12px;
}
.contact-detail a,
.contact-detail span {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.7;
  transition: color .2s;
}
.contact-detail a:hover { color: var(--blue-bright); }

@media (max-width: 720px) {
  .contact-details { grid-template-columns: 1fr; gap: 16px; }
}

/* ─────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────── */

.site-footer {
  padding: 72px var(--pad-x) 40px;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.site-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.site-footer__logo {
  height: 56px;
  width: auto;
  margin-bottom: 22px;
}
.site-footer__brand { max-width: 420px; }
.site-footer__brand p {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.7;
}
.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 16px 56px;
}
.site-footer__nav a {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-soft);
  transition: color .2s;
  position: relative;
}
.site-footer__nav a:hover { color: var(--blue-bright); }
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 32px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.site-footer__tagline { color: var(--blue-bright); }

@media (max-width: 640px) {
  .site-footer__top { flex-direction: column; gap: 36px; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ─────────────────────────────────────────────
   REVEAL
   ───────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  will-change: opacity, transform;
}

/* ─────────────────────────────────────────────
   ACCESSIBILITY
   ───────────────────────────────────────────── */

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─────────────────────────────────────────────
   ABOUT · TECHNOLOGY subsection refinements
   ───────────────────────────────────────────── */

.about-tech { max-width: 1000px; margin: 0 auto; }
.about-tech .about-body { max-width: 60ch; }

.about-tech-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 56px 0 40px;
}
.tech-stat {
  background: var(--bg);
  padding: 40px 28px;
}
.tech-stat__value {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: clamp(42px, 4.8vw, 64px);
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 14px;
  color: var(--ink);
  display: flex;
  align-items: baseline;
}
.tech-stat__unit {
  font-size: 0.4em;
  color: var(--blue-bright);
  margin-left: 6px;
  font-weight: 400;
}
.tech-stat__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  line-height: 1.5;
}

@media (max-width: 720px) {
  .about-tech-stats { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
   LEADERSHIP · Photo left, bio right
   ───────────────────────────────────────────── */

.leadership {
  padding: clamp(56px, 7vh, 90px) var(--pad-x);
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.leadership-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 64px;
  align-items: center;
}

.leadership-photo {
  position: relative;
}
.leadership-photo__frame {
  position: relative;
  aspect-ratio: 4/5;
  width: 100%;
  max-width: 300px;
  background:
    linear-gradient(135deg, var(--bg-elev) 0%, var(--bg) 100%);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color .25s, transform .25s var(--ease-snappy);
}
.leadership-photo__frame:hover {
  border-color: var(--line-bright);
  transform: translateY(-4px);
}
.leadership-photo__frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.leadership-photo__placeholder {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background:
    radial-gradient(circle at 50% 40%, rgba(0, 79, 186, 0.18) 0%, transparent 60%),
    linear-gradient(135deg, var(--bg-elev) 0%, var(--bg) 100%);
}
.leadership-photo__placeholder-icon {
  font-family: 'Sora', sans-serif;
  font-weight: 300;
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: 0.08em;
  color: var(--blue-bright);
  opacity: 0.6;
}
.leadership-photo__placeholder-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: center;
  line-height: 1.7;
}
.leadership-photo__placeholder-text small {
  font-size: 0.85em;
  opacity: 0.7;
  text-transform: none;
  letter-spacing: 0.06em;
}

.leadership-photo__caption {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.leadership-photo__name-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-bright);
}
.leadership-photo__name {
  font-family: 'Sora', 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.022em;
  color: var(--ink);
}

.leadership-bio { max-width: 600px; }
.leadership-bio .section-h2 { max-width: 18ch; }

@media (max-width: 920px) {
  .leadership-inner { grid-template-columns: 1fr; gap: 50px; }
  .leadership-photo__frame { max-width: 380px; margin: 0 auto; }
  .leadership-photo__caption { text-align: center; align-items: center; }
}

/* ─────────────────────────────────────────────
   KEY PROJECTS
   ───────────────────────────────────────────── */

.projects {
  padding: var(--section-y) var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
}
.projects-head { max-width: 740px; margin-bottom: 48px; }
.projects-head .section-h2 { max-width: 18ch; }

.projects-list {
  border-top: 1px solid var(--line);
}
.projects-group-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin: 56px 0 8px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.projects-group-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}
.projects-group-label:first-of-type { margin-top: 0; }
.project {
  display: grid;
  grid-template-columns: 60px 280px 1.4fr 1fr;
  gap: 48px;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: padding .6s var(--ease-cinematic), background .5s;
  position: relative;
  cursor: none;
}
.project::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--blue-bright);
  transition: width .6s var(--ease-cinematic);
  box-shadow: 0 0 12px rgba(83, 145, 232, 0.5);
}
.project:hover { padding: 64px 24px; }
.project:hover::before { width: 3px; }

.project__index {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: 44px;
  color: var(--ink-faint);
  letter-spacing: -0.03em;
  line-height: 1;
  transition: color .2s;
  align-self: start;
  padding-top: 4px;
}
.project:hover .project__index { color: var(--blue-bright); }

/* Project media block (the image) */
.project__media {
  position: relative;
  aspect-ratio: 4/3;
  width: 100%;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
  transition: border-color .5s, transform .7s var(--ease-cinematic);
}
.project:hover .project__media {
  border-color: var(--line-bright);
  transform: translateY(-3px);
}
.project__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.4s var(--ease-cinematic);
  will-change: transform;
}
.project:hover .project__media img { transform: scale(1.06); }

.project__media-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background:
    radial-gradient(circle at 50% 45%, rgba(0, 79, 186, 0.18) 0%, transparent 65%),
    linear-gradient(135deg, var(--bg-elev) 0%, var(--bg) 100%);
}
.project__media.is-placeholder .project__media-placeholder { display: flex; }
.project__media-ph-label {
  font-family: 'Sora', 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 56px);
  letter-spacing: -0.02em;
  color: var(--blue-bright);
  opacity: 0.6;
  line-height: 1;
}
.project__media-ph-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: center;
  line-height: 1.7;
  padding: 0 12px;
}

.project__main {}
.project__location {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 16px;
}
.project__name {
  font-family: 'Sora', 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.18;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin-bottom: 18px;
  max-width: 22ch;
  transition: color .2s;
}
.project:hover .project__name { color: var(--blue-bright); }
.project__desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 48ch;
  font-weight: 300;
}

.project__meta {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 32px;
  border-left: 1px solid var(--line);
  align-self: center;
}
.project__meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.project__meta-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.project__meta-value {
  font-family: 'Sora', 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.005em;
}

@media (max-width: 1100px) {
  .project {
    grid-template-columns: 60px 220px 1fr;
    gap: 32px;
  }
  .project__meta {
    grid-column: 2 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    padding-left: 0;
    padding-top: 20px;
    border-left: none;
    border-top: 1px solid var(--line);
    margin-top: 4px;
  }
  .project__meta-item { flex: 1; min-width: 140px; }
}

@media (max-width: 720px) {
  .project {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 36px 0;
  }
  .project:hover { padding: 44px 16px; }
  .project__index { font-size: 32px; padding-top: 0; }
  .project__media { max-width: 380px; aspect-ratio: 16/10; }
  .project__meta { grid-column: 1; }
}

/* ─────────────────────────────────────────────
   GALLERY · Masonry grid
   ───────────────────────────────────────────── */

.gallery {
  padding: var(--section-y) var(--pad-x);
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.gallery-inner { max-width: var(--max); margin: 0 auto; }
.gallery-head { max-width: 740px; margin-bottom: 48px; }
.gallery-head .section-h2 { max-width: 20ch; }

.gallery-masonry {
  column-count: 3;
  column-gap: 20px;
}
.gallery-item {
  break-inside: avoid;
  margin: 0 0 20px;
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
  transition: border-color .25s, transform .25s var(--ease-snappy);
  cursor: none;
  display: block;
}
.gallery-item:hover {
  border-color: var(--line-bright);
  transform: translateY(-4px);
}
.gallery-item__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.gallery-item--tall .gallery-item__media { aspect-ratio: 3/4; }
.gallery-item__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.4s var(--ease-cinematic);
  will-change: transform;
}
.gallery-item:hover .gallery-item__media img { transform: scale(1.05); }

.gallery-item__placeholder {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 79, 186, 0.14) 0%, transparent 65%),
    linear-gradient(135deg, var(--bg-elev) 0%, var(--bg) 100%);
}
.gallery-item__media.is-placeholder .gallery-item__placeholder { display: flex; }
.gallery-item__ph-label {
  font-family: 'Sora', sans-serif;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--blue-bright);
  opacity: 0.55;
  letter-spacing: -0.02em;
}
.gallery-item__ph-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: center;
  line-height: 1.7;
}

.gallery-item__caption {
  padding: 22px 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gallery-item__tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-bright);
}
.gallery-item__title {
  font-family: 'Sora', 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

@media (max-width: 920px) {
  .gallery-masonry { column-count: 2; }
}
@media (max-width: 560px) {
  .gallery-masonry { column-count: 1; }
}

/* ─────────────────────────────────────────────
   TECH STAGE NAV ARROWS
   ───────────────────────────────────────────── */

.tech-nav {
  position: relative;
  margin: 20px auto 0;
  width: fit-content;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 8px 14px;
  background: rgba(5, 10, 20, 0.78);
  border: 1px solid rgba(244, 246, 250, 0.10);
  border-radius: 100px;
}
.tech-nav__btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  cursor: none;
  transition: border-color .2s, background .2s, color .2s, transform .2s var(--ease-snappy);
}
.tech-nav__btn:hover {
  border-color: var(--blue-bright);
  background: rgba(0, 79, 186, 0.15);
  color: var(--blue-bright);
}
.tech-nav__btn:active { transform: scale(0.92); }
.tech-nav__dots {
  display: flex;
  gap: 8px;
}
.tech-nav__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  border: none;
  background: var(--ink-faint);
  cursor: none;
  padding: 0;
  transition: background .18s, transform .18s var(--ease-snappy);
}
.tech-nav__dot.is-active {
  background: var(--blue-bright);
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(83, 145, 232, 0.7);
}

@media (max-width: 1024px) {
  .tech-nav { position: static; transform: none; margin: 24px auto 0; width: fit-content; }
}

/* ─────────────────────────────────────────────
   LEADERSHIP CAROUSEL
   ───────────────────────────────────────────── */

.leadership-header {
  max-width: var(--max);
  margin: 0 auto 36px;
  padding: 0 var(--pad-x);
}
.leadership-header .section-h2 { max-width: 20ch; }

.leadership-carousel {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  position: relative;
}
/* Side arrows flanking the whole slide at far left/right */
.leadership-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(5, 10, 20, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s, transform .2s var(--ease-snappy);
}
.leadership-arrow:hover {
  border-color: var(--blue-bright);
  color: var(--blue-bright);
  transform: translateY(-50%) scale(1.08);
}
.leadership-arrow:active { transform: translateY(-50%) scale(0.94); }
.leadership-arrow--prev { left: 8px; }
.leadership-arrow--next { right: 8px; }
@media (max-width: 1024px) {
  .leadership-arrow { width: 46px; height: 46px; }
  .leadership-arrow--prev { left: 0; }
  .leadership-arrow--next { right: 0; }
}
.leadership-track {
  position: relative;
}
.leadership-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .7s var(--ease-cinematic), transform .7s var(--ease-cinematic);
}
.leadership-slide.is-active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.leadership-inner {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 64px;
  align-items: center;
}
.leadership-bio__title {
  font-family: 'Sora', 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin-bottom: 28px;
  max-width: 18ch;
}

.leadership-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}
.leadership-nav__btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  cursor: none;
  transition: border-color .2s, background .2s, color .2s, transform .2s var(--ease-snappy);
}
.leadership-nav__btn:hover {
  border-color: var(--blue-bright);
  background: rgba(0, 79, 186, 0.12);
  color: var(--blue-bright);
  transform: translateY(-2px);
}
.leadership-nav__btn:active { transform: scale(0.94); }
.leadership-nav__dots { display: flex; gap: 10px; }
.leadership-nav__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--ink-faint);
  cursor: none;
  padding: 0;
  transition: background .18s, transform .18s var(--ease-snappy);
}
.leadership-nav__dot.is-active {
  background: var(--blue-bright);
  transform: scale(1.4);
  box-shadow: 0 0 8px rgba(83, 145, 232, 0.7);
}

@media (max-width: 920px) {
  .leadership-inner { grid-template-columns: 1fr; gap: 50px; }
  .leadership-photo__frame { max-width: 380px; margin: 0 auto; }
  .leadership-photo__caption { text-align: center; align-items: center; }
}

/* ─────────────────────────────────────────────
   CERTIFICATIONS / COMPLIANCE
   ───────────────────────────────────────────── */

.certs {
  padding: var(--section-y) var(--pad-x);
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.certs-inner { max-width: var(--max); margin: 0 auto; }
.certs-head { max-width: 760px; margin-bottom: 48px; }
.certs-head .section-h2 { max-width: 18ch; }

.certs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.cert-badge {
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 36px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  transition: border-color .25s, transform .25s var(--ease-snappy);
}
.cert-badge:hover {
  border-color: var(--line-bright);
  transform: translateY(-4px);
}
.cert-badge__mark {
  font-family: 'Sora', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--blue-bright);
  width: 92px; height: 92px;
  border-radius: 50%;
  border: 1px solid var(--line-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(0,79,186,0.12) 0%, transparent 70%);
}
.cert-badge__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-muted);
  line-height: 1.5;
}

.certs-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.certs-process__item {
  background: var(--bg-2);
  padding: 40px 32px;
}
.certs-process__num {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: 40px;
  color: var(--blue-bright);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.certs-process__title {
  font-family: 'Sora', 'Inter', sans-serif;
  font-weight: 500;
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.certs-process__desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 300;
}

@media (max-width: 920px) {
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
  .certs-process { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .certs-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
   FAQ
   ───────────────────────────────────────────── */

.faq {
  padding: var(--section-y) var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
}
.faq-head { max-width: 700px; margin-bottom: 64px; }
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 0;
  cursor: none;
  list-style: none;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(17px, 1.8vw, 22px);
  letter-spacing: -0.015em;
  color: var(--ink);
  transition: color .2s;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q:hover { color: var(--blue-bright); }
.faq-item__icon {
  position: relative;
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--blue-bright);
  transition: transform .2s var(--ease-snappy), opacity .2s;
}
.faq-item__icon::before {
  top: 50%; left: 0;
  width: 100%; height: 1.5px;
  transform: translateY(-50%);
}
.faq-item__icon::after {
  left: 50%; top: 0;
  width: 1.5px; height: 100%;
  transform: translateX(-50%);
}
.faq-item[open] .faq-item__icon::after {
  transform: translateX(-50%) scaleY(0);
  opacity: 0;
}
.faq-item__a {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 80ch;
  padding-bottom: 32px;
  animation: faqReveal .5s var(--ease-cinematic);
}
@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────────
   LEAD FORM
   ───────────────────────────────────────────── */

.lead-form {
  max-width: 780px;
  margin: 0 auto 80px;
  text-align: left;
}
.lead-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.lead-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lead-field--full { margin-bottom: 24px; }
.lead-field label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.lead-field input,
.lead-field select,
.lead-field textarea {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--ink);
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 14px 16px;
  transition: border-color .3s, background .3s;
  width: 100%;
  resize: vertical;
}
.lead-field input::placeholder,
.lead-field textarea::placeholder { color: var(--ink-faint); }
.lead-field input:focus,
.lead-field select:focus,
.lead-field textarea:focus {
  outline: none;
  border-color: var(--blue-bright);
  background: rgba(0, 79, 186, 0.06);
}
.lead-field select { cursor: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235391E8' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.lead-field option { background: var(--bg-2); color: var(--ink); }

.lead-form__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.lead-form__status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
}
.lead-form__status.is-success { color: #4ade80; }
.lead-form__status.is-error { color: #f87171; }

@media (max-width: 640px) {
  .lead-form__row { grid-template-columns: 1fr; gap: 16px; }
}

/* ─────────────────────────────────────────────
   COLLAPSIBLE SECTIONS (Leadership, FAQ, Contact form)
   ───────────────────────────────────────────── */

.collapse-section {
  padding: 0 var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
}
.collapse {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.collapse + .collapse { border-top: none; }

.collapse__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px 0;
  cursor: none;
  list-style: none;
  transition: padding .4s var(--ease-cinematic);
}
.collapse__bar::-webkit-details-marker { display: none; }
.collapse__bar:hover { padding-left: 12px; }

.collapse__bar-text {}
.collapse__title {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.028em;
  color: var(--ink);
  max-width: 20ch;
  transition: color .2s;
}
.collapse__bar:hover .collapse__title { color: var(--blue-bright); }

.collapse__icon {
  position: relative;
  width: 28px; height: 28px;
  flex-shrink: 0;
}
.collapse__icon::before,
.collapse__icon::after {
  content: '';
  position: absolute;
  background: var(--blue-bright);
  transition: transform .2s var(--ease-snappy), opacity .2s;
}
.collapse__icon::before {
  top: 50%; left: 0;
  width: 100%; height: 2px;
  transform: translateY(-50%);
}
.collapse__icon::after {
  left: 50%; top: 0;
  width: 2px; height: 100%;
  transform: translateX(-50%);
}
.collapse[open] .collapse__icon::after {
  transform: translateX(-50%) scaleY(0);
  opacity: 0;
}

.collapse__body {
  padding-bottom: 80px;
  animation: collapseReveal .6s var(--ease-cinematic);
}
@keyframes collapseReveal {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Center variant for the contact form toggle */
.collapse--form {
  border: 1px solid var(--line);
  margin-bottom: 64px;
  background: var(--bg-2);
}
.collapse__bar--center {
  justify-content: center;
  padding: 28px;
}
.collapse__form-label {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-bright);
}
.collapse__form-label .collapse__icon { width: 20px; height: 20px; }
.collapse--form .collapse__body { padding: 0 32px 48px; }

/* FAQ section, when used inside a collapse, drops its own outer padding */
.faq.collapse-section { padding-left: var(--pad-x); padding-right: var(--pad-x); }
.faq .faq-list { border-top: 1px solid var(--line); }

/* Leadership inside collapse keeps carousel spacing */
.leadership.collapse-section .leadership-carousel { padding: 0; }

@media (max-width: 640px) {
  .collapse__bar { padding: 32px 0; }
  .collapse__body { padding-bottom: 48px; }
}

/* ─────────────────────────────────────────────
   ABOUT · split layout with Indian DNA visual
   ───────────────────────────────────────────── */

.about-inner--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.about-inner--split .about-tech { max-width: none; margin: 0; }

/* About intro: heading + two-column body text, full width above stats */
.about-intro {
  margin-bottom: 64px;
}
.about-intro .section-h2 {
  max-width: 22ch;
  margin-bottom: 40px;
}
.about-intro__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 1000px;
}
.about-intro__cols .about-body { margin: 0; }
@media (max-width: 760px) {
  .about-intro__cols { grid-template-columns: 1fr; gap: 24px; }
}

.about-visual {
  position: relative;
  /* Line the image up parallel with the heading (offset past the section-tag) */
  padding-top: 56px;
}
.about-visual__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-2);
  transition: border-color .25s, transform .25s var(--ease-snappy);
}
.about-visual__frame:hover {
  border-color: var(--line-bright);
  transform: translateY(-4px);
}
.about-visual__frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.about-visual__caption {
  margin-top: 16px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-muted);
  font-style: italic;
  font-weight: 300;
  max-width: 100%;
}
.about-visual__placeholder {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background:
    radial-gradient(circle at 50% 40%, rgba(0, 79, 186, 0.18) 0%, transparent 60%),
    linear-gradient(135deg, var(--bg-elev) 0%, var(--bg) 100%);
}
.about-visual__ph-icon {
  font-family: 'Sora', sans-serif;
  font-weight: 300;
  font-size: clamp(48px, 7vw, 88px);
  letter-spacing: 0.06em;
  color: var(--blue-bright);
  opacity: 0.6;
}
.about-visual__ph-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: center;
  line-height: 1.7;
}
.about-visual__ph-text small {
  font-size: 0.85em;
  opacity: 0.7;
  text-transform: none;
  letter-spacing: 0.06em;
}

@media (max-width: 920px) {
  .about-inner--split { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { padding-top: 0; }
  .about-visual__frame { max-width: 100%; margin: 0; aspect-ratio: 3/2; }
  .about-visual__caption { text-align: left; }
}

/* ─────────────────────────────────────────────
   RELATIONSHIPS moving scroll
   ───────────────────────────────────────────── */
.rel-marquee {
  overflow: hidden;
  margin-top: 8px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.rel-marquee-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: relScroll 28s linear infinite;
}
.rel-item {
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 400;
  color: var(--ink-soft);
  white-space: nowrap;
}
.rel-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
@keyframes relScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
