/* ── DESIGN TOKENS (identical to Nexus/RadX/Pilot/Ops) ── */
:root {
  --display: 'Bebas Neue', Impact, sans-serif;
  --sans: 'Poppins', system-ui, sans-serif;
  --mono: 'JetBrains Mono', 'Fira Code', monospace;
  --bg: #04070d;
  --bg-2: #070b14;
  --surface: #0d1420;
  --surface-2: #111826;
  --elevated: #151e2c;
  --text: #eef2ff;
  --text-2: #8594b4;
  --text-3: #4a5878;
  --text-4: #2e3d58;
  --mach: #1fb6f0;
  --mach-bright: #3fc5f8;
  --mach-dim: rgba(31, 182, 240, .08);
  --mach-glow: rgba(31, 182, 240, .4);
  --warn: #ff5b5b;
  --warn-dim: rgba(255, 91, 91, .08);
  --green: #22c55e;
  --hairline: rgba(255, 255, 255, .07);
  --hairline-2: rgba(255, 255, 255, .13);
  --hairline-strong: rgba(255, 255, 255, .2);
  --maxw: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
  --sy: clamp(80px, 10vw, 120px);
  --radius: 10px;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

::selection {
  background: var(--mach-dim);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(1400px 800px at 85% -10%, rgba(31, 182, 240, .07), transparent 60%),
    radial-gradient(1000px 700px at -10% 115%, rgba(31, 182, 240, .05), transparent 60%);
}

/* ── LAYOUT ── */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  position: relative;
}

section {
  position: relative;
  z-index: 3;
}

/* ── TYPOGRAPHY ── */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--mach);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--mach);
  opacity: .7;
}

.eyebrow.center {
  justify-content: center;
}

.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: .005em;
  line-height: .92;
  text-transform: uppercase;
  margin: 0;
}

.h-xl {
  font-size: clamp(56px, 9vw, 140px);
}

.h-lg {
  font-size: clamp(44px, 6.4vw, 104px);
}

.h-md {
  font-size: clamp(34px, 4.2vw, 68px);
}

.h-sm {
  font-size: clamp(22px, 2.4vw, 32px);
}

.body-lg {
  font-size: clamp(17px, 1.2vw, 19px);
  color: var(--text-2);
  line-height: 1.7;
  max-width: 60ch;
}

.accent {
  color: var(--mach);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .01em;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--mach);
  color: #021019;
  box-shadow: 0 0 0 1px rgba(31, 182, 240, .4), 0 18px 40px -12px var(--mach-glow);
}

.btn-primary:hover {
  background: var(--mach-bright);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid var(--hairline-strong);
  color: var(--text);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--text);
}

.btn-outline {
  border: 1px solid var(--mach);
  color: var(--mach);
  background: transparent;
}

.btn-outline:hover {
  background: var(--mach-dim);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 13px;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(4, 7, 13, .6);
  border-bottom: 1px solid var(--hairline);
  transition: background .25s var(--ease);
}

.nav.scrolled {
  background: rgba(4, 7, 13, .88);
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: .1em;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.brand-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mach);
  display: inline-block;
  margin-bottom: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2px;
}

.nav-links a {
  display: block;
  padding: 6px 13px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-3);
  transition: color .2s;
  letter-spacing: .01em;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media(max-width:960px) {
  .nav-links {
    display: none;
  }
}

/* ── VIDEO HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: clamp(56px, 7vw, 96px);
}

/* video fills the frame */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* multi-layer overlay: deep vignette + left-fade for text legibility */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(4, 7, 13, .82) 0%, rgba(4, 7, 13, .55) 55%, rgba(4, 7, 13, .18) 100%),
    linear-gradient(to top, rgba(4, 7, 13, .72) 0%, rgba(4, 7, 13, .0) 50%),
    linear-gradient(to bottom, rgba(4, 7, 13, .5) 0%, transparent 20%);
}

/* subtle mach-blue atmospheric tint in bottom-left */
.hero-overlay::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 60%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(31, 182, 240, .07) 0%, transparent 70%);
  pointer-events: none;
}

/* content stack */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: clamp(120px, 16vw, 200px);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 720px;
}

/* deployment label */
.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(238, 242, 255, .5);
}

.hero-location::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--mach);
  opacity: .8;
  flex-shrink: 0;
}

/* live status pill */
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(31, 182, 240, .08);
  border: 1px solid rgba(31, 182, 240, .25);
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mach);
  align-self: flex-start;
}

.live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mach);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .2
  }
}

/* headline */
.hero-h1 {
  font-size: clamp(52px, 7.5vw, 118px);
  line-height: .9;
}

.hero-h1 .line-2 {
  color: var(--mach);
  display: block;
}

/* subheadline */
.hero-sub {
  font-size: clamp(15px, 1.1vw, 17px);
  color: rgba(133, 148, 180, .9);
  line-height: 1.8;
  max-width: 52ch;
}

/* CTAs */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* proof strip */
.hero-proof {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(4, 7, 13, .55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  flex-wrap: wrap;
  max-width: 600px;
}

.proof-item {
  flex: 1;
  min-width: 90px;
  padding: 14px 18px;
  border-right: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.proof-item:last-child {
  border-right: none;
}

.proof-val {
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: .04em;
  color: var(--text);
  line-height: 1;
}

.proof-val .unit {
  color: var(--mach);
  font-size: .6em;
  padding-left: 2px;
}

.proof-key {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-4);
  margin-top: 1px;
}

/* scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: .4;
  animation: scrollFade 3s ease-in-out infinite;
}

@keyframes scrollFade {

  0%,
  100% {
    opacity: .4;
    transform: translateX(-50%) translateY(0)
  }

  50% {
    opacity: .7;
    transform: translateX(-50%) translateY(6px)
  }
}

.hero-scroll-cue span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-3);
}

.scroll-arrow {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, var(--mach), transparent);
}

/* video muted fallback: poster shows if video can't autoplay */
@media(prefers-reduced-motion:reduce) {
  .hero-video-wrap video {
    display: none;
  }
}

@media(max-width:600px) {
  .hero {
    align-items: flex-end;
  }

  .hero-inner {
    max-width: 100%;
  }

  .hero-overlay {
    background:
      linear-gradient(to top, rgba(4, 7, 13, .85) 0%, rgba(4, 7, 13, .4) 60%),
      linear-gradient(to bottom, rgba(4, 7, 13, .5) 0%, transparent 25%);
  }
}

/* ── PROBLEM ── */
.problem {
  padding-top: var(--sy);
  padding-bottom: var(--sy);
  background: var(--bg-2);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
}

.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.problem-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.problem-left h2 {
  margin-top: 12px;
}

.problem-left p {
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--text-2);
  line-height: 1.8;
  max-width: 46ch;
}

.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.prob-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .25s var(--ease);
  position: relative;
  overflow: hidden;
}

.prob-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--mach);
  opacity: .5;
}

.prob-card:hover {
  border-color: var(--hairline-2);
}

.prob-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.prob-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--warn-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prob-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--warn);
  fill: none;
  stroke-width: 1.5;
}

.prob-card h4 {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
}

.prob-card p {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.6;
  margin: 0;
}

@media(max-width:800px) {
  .problem-inner {
    grid-template-columns: 1fr;
  }
}

/* ── PLATFORM ── */
.platform {
  padding-top: var(--sy);
  padding-bottom: var(--sy);
  background: var(--bg);
  border-bottom: 1px solid var(--hairline);
}

.platform-header {
  max-width: 680px;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.platform-header h2 {
  margin: 12px 0 20px;
}

.platform-header p {
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--text-2);
  line-height: 1.8;
}

.platform-cta {
  margin-top: 20px;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
}

.plat-card {
  background: var(--surface);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: background .25s var(--ease);
}

.plat-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--mach), transparent);
  opacity: 0;
  transition: opacity .3s var(--ease);
}

.plat-card:hover::after {
  opacity: .7;
}

.plat-card:hover {
  background: var(--surface-2);
}

.plat-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-4);
}

.plat-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--mach-dim);
  border: 1px solid rgba(31, 182, 240, .15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.plat-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--mach);
  fill: none;
  stroke-width: 1.4;
}

.plat-card h3 {
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
}

.plat-card p {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.plat-link {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mach);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}

.plat-card:hover .plat-link {
  gap: 10px;
}

@media(max-width:900px) {
  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ── PROOF NUMBERS ── */
.proof-numbers {
  padding-top: var(--sy);
  padding-bottom: var(--sy);
  background: var(--bg-2);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  position: relative;
  overflow: hidden;
}

.proof-numbers::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(31, 182, 240, .09), transparent 70%);
  pointer-events: none;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.pnum-block {
  background: var(--surface);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  border-right: 1px solid var(--hairline);
  transition: background .25s var(--ease);
}

.pnum-block:last-child {
  border-right: none;
}

.pnum-block:hover {
  background: var(--surface-2);
}

.pnum-big {
  font-family: var(--display);
  /* font-size: clamp(48px, 5.5vw, 80px); */
  letter-spacing: .02em;
  color: var(--text);
  line-height: 1;
}

.pnum-big .acc {
  color: var(--mach);
}

.pnum-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-4);
  line-height: 1.5;
  text-align: center;
  max-width: 14ch;
}

@media(max-width:900px) {
  .proof-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pnum-block {
    border-bottom: 1px solid var(--hairline);
  }
}

@media(max-width:560px) {
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── INDUSTRIES ── */
.industries {
  padding-top: var(--sy);
  padding-bottom: var(--sy);
  background: var(--bg);
  border-bottom: 1px solid var(--hairline);
}

.section-header {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.section-header h2 {
  margin: 12px 0 16px;
}

.section-header p {
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--text-2);
  line-height: 1.75;
  max-width: 52ch;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ind-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}

.ind-card:hover {
  border-color: var(--mach);
  transform: translateY(-3px);
}

.ind-visual {
  height: 160px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ind-vis-bg {
  position: absolute;
  inset: 0;
}

.ind-icon-large {
  /* width: 64px;
  height: 64px; */
  position: relative;
  z-index: 1;
  opacity: .9;
}

.ind-icon-large svg {
  width: 100%;
  height: 100%;
  stroke: var(--mach);
  fill: none;
  stroke-width: 1;
}

.ind-body {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.ind-name {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
}

.ind-challenge {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.55;
  flex: 1;
}

.ind-link {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mach);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}

.ind-card:hover .ind-link {
  gap: 10px;
}

@media(max-width:1000px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ── DEPLOYMENT SHOWCASE ── */
.deployments {
  padding-top: var(--sy);
  padding-bottom: var(--sy);
  background: var(--bg-2);
  border-bottom: 1px solid var(--hairline);
}

/* header */
.dep-header {
  margin-bottom: clamp(32px, 4vw, 48px);
}

.dep-header h2 {
  margin: 12px 0 16px;
}

.dep-header p {
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--text-2);
  line-height: 1.75;
  max-width: 68ch;
}

/* card grid */
.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.dep-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
}

.dep-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--mach);
  opacity: 0;
  transition: opacity .3s var(--ease);
  z-index: 2;
}

.dep-card:hover {
  border-color: rgba(31, 182, 240, .4);
  transform: translateY(-4px);
  box-shadow: 0 24px 64px -16px rgba(0, 0, 0, .6), 0 0 0 1px rgba(31, 182, 240, .15), 0 0 40px -8px rgba(31, 182, 240, .08);
}

.dep-card:hover::before {
  opacity: 1;
}

/* video — increased to ~56% of card height via aspect-ratio */
.dep-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  /* taller than 16/9 — increases video share */
  overflow: hidden;
  background: var(--bg);
  cursor: pointer;
  display: block;
  flex-shrink: 0;
}

.dep-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease), filter .5s var(--ease);
  filter: brightness(.82) saturate(.9);
}

.dep-card:hover .dep-thumb img {
  transform: scale(1.05);
  filter: brightness(.68) saturate(.85);
}

/* gradient: heavier at bottom-left for logo legibility */
.dep-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(4, 7, 13, .0) 35%, rgba(4, 7, 13, .7) 100%),
    linear-gradient(to right, rgba(4, 7, 13, .5) 0%, transparent 50%);
}

/* partner logo overlay — top-left corner of video */
.dep-logo-overlay {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(4, 7, 13, .78);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 6px;
  padding: 7px 11px;
}

.dep-logo-initials {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--mach);
  line-height: 1;
}

.dep-logo-name {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-2);
}

/* play button */
.dep-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(31, 182, 240, .9);
  border: 2px solid rgba(31, 182, 240, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s var(--ease), background .2s, box-shadow .2s;
  z-index: 1;
  pointer-events: none;
}

.dep-play svg {
  width: 20px;
  height: 20px;
  fill: #021019;
  margin-left: 4px;
}

.dep-thumb:hover .dep-play {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--mach-bright);
  box-shadow: 0 0 0 8px rgba(31, 182, 240, .15);
}

/* duration badge */
.dep-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--text);
  background: rgba(4, 7, 13, .85);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 3px;
  padding: 3px 7px;
}

/* card body */
.dep-body {
  padding: 20px 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

/* headline — slightly larger */
.dep-headline {
  font-family: var(--display);
  font-size: clamp(18px, 1.8vw, 24px);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.05;
  margin: 0;
}

/* description */
.dep-desc {
  font-size: 12.5px;
  color: var(--text-3);
  line-height: 1.65;
  flex: 1;
  margin: 0;
}

/* proof tags — distinct from product tags */
.dep-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.dep-tag {
  font-family: var(--mono);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-3);
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--hairline-2);
  border-radius: 2px;
  padding: 3px 7px;
}

/* CTA row */
.dep-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  border-top: 1px solid var(--hairline);
  transition: background .2s;
}

.dep-card:hover .dep-cta {
  background: rgba(31, 182, 240, .03);
}

.dep-story-link {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mach);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap .2s;
  text-decoration: none;
}

.dep-card:hover .dep-story-link {
  gap: 12px;
}

.dep-story-link svg {
  width: 12px;
  height: 12px;
  stroke: var(--mach);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* deployment status badge — operational semantics */
.dep-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 3px;
  padding: 3px 8px;
}

.dep-status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: depPulse 2.4s ease-in-out infinite;
}

@keyframes depPulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

.dep-status.green {
  color: #22c55e;
  background: rgba(34, 197, 94, .08);
  border: 1px solid rgba(34, 197, 94, .2);
}

.dep-status.green .dep-status-dot {
  background: #22c55e;
}

.dep-status.blue {
  color: var(--mach);
  background: var(--mach-dim);
  border: 1px solid rgba(31, 182, 240, .2);
}

.dep-status.blue .dep-status-dot {
  background: var(--mach);
}

/* youtube modal */
.yt-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(4, 7, 13, .92);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--gutter);
}

.yt-modal.open {
  display: flex;
}

.yt-modal-inner {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16/9;
}

.yt-modal-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

.yt-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--elevated);
  border: 1px solid var(--hairline-2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .2s;
}

.yt-close:hover {
  border-color: var(--hairline-strong);
}

.yt-close svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-2);
  fill: none;
  stroke-width: 2;
}

@media(max-width:1000px) {
  .dep-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ── AUTONOMY LEVELS ── */
.levels {
  padding-top: var(--sy);
  padding-bottom: var(--sy);
  background: var(--bg);
  border-bottom: 1px solid var(--hairline);
}

.levels-intro {
  max-width: 640px;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.levels-intro h2 {
  margin: 12px 0 16px;
}

.levels-nav {
  display: flex;
  gap: 2px;
  background: var(--hairline);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 32px;
  max-width: 600px;
}

.level-btn {
  flex: 1;
  padding: 11px 8px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all .2s var(--ease);
  background: var(--elevated);
  color: var(--text-3);
  text-align: center;
}

.level-btn.active {
  background: var(--mach);
  color: #021019;
}

.levels-panel {
  display: none;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 40px;
}

.levels-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.lp-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-badge {
  font-family: var(--display);
  font-size: 72px;
  letter-spacing: .02em;
  color: var(--mach);
  line-height: 1;
}

.lp-title {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
}

.lp-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
}

.lp-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-products-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-4);
}

.lp-products {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lp-product {
  background: var(--elevated);
  border: 1px solid var(--hairline-2);
  border-radius: 6px;
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 150px;
}

.lp-product-name {
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--mach);
  line-height: 1;
}

.lp-product-role {
  font-size: 11px;
  color: var(--text-3);
  line-height: 1.4;
}

.lp-challenge {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.65;
}

@media(max-width:700px) {
  .levels-panel.active {
    grid-template-columns: 1fr;
  }

  .levels-nav {
    flex-wrap: wrap;
  }
}

/* ── TESTIMONIAL ── */
.testimonial {
  padding-top: var(--sy);
  padding-bottom: var(--sy);
  background: var(--bg-2);
  border-bottom: 1px solid var(--hairline);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(31, 182, 240, .07), transparent 70%);
  pointer-events: none;
}

.quote-mark {
  font-family: var(--display);
  font-size: 120px;
  line-height: .6;
  color: var(--mach);
  opacity: .2;
  margin-bottom: 8px;
}

.quote-text {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 48px);
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.05;
  max-width: 860px;
  margin: 0 auto 32px;
}

.quote-source {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-4);
}

/* ── CTA PATHS ── */
.cta-paths {
  padding-top: var(--sy);
  padding-bottom: var(--sy);
  background: var(--bg);
  border-bottom: 1px solid var(--hairline);
}

.cta-paths-header {
  max-width: 640px;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.cta-paths-header h2 {
  margin: 12px 0 16px;
}

.cta-paths-header p {
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--text-2);
  line-height: 1.75;
}

.paths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
}

.path-card {
  background: var(--surface);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background .25s var(--ease);
  position: relative;
  overflow: hidden;
}

.path-card.path-featured {
  background: var(--surface-2);
  border-top: 2px solid var(--mach);
}

.path-card.path-featured::before {
  content: "PRIMARY";
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .16em;
  color: var(--mach);
  background: var(--mach-dim);
  border: 1px solid rgba(31, 182, 240, .2);
  border-radius: 3px;
  padding: 3px 8px;
}

.path-card:not(.path-featured)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--hairline);
}

.path-card:hover {
  background: var(--elevated);
}

.path-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-4);
}

.path-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--mach-dim);
  border: 1px solid rgba(31, 182, 240, .15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.path-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--mach);
  fill: none;
  stroke-width: 1.4;
}

.path-card h3 {
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.05;
}

.path-desc {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.6;
  flex: 1;
}

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

/* ── FOOTER ── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--hairline);
  padding: clamp(60px, 8vw, 100px) 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  padding-bottom: clamp(48px, 6vw, 72px);
  border-bottom: 1px solid var(--hairline);
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: .1em;
  color: var(--text);
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.65;
  max-width: 30ch;
}

.footer-contact {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--mach);
}

.footer-col h5 {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-4);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: var(--text-3);
  transition: color .2s;
}

.footer-col ul li a:hover {
  color: var(--text);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
  /* color: var(--text-4); */
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
  /* color: var(--text-4); */
  transition: color .2s;
}

.footer-legal a:hover {
  color: var(--text-3);
}

@media(max-width:960px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:500px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 7, 13, .88);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--gutter);
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  background: var(--surface);
  border: 1px solid var(--hairline-2);
  border-radius: 16px;
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: clamp(28px, 4vw, 48px);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--elevated);
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s;
}

.modal-close:hover {
  border-color: var(--hairline-strong);
}

.modal-close svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-3);
  fill: none;
  stroke-width: 2;
}

/* ── PARTNER LOGO BAR ── */
.partner-bar {
  background: var(--bg);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: clamp(36px, 5vw, 56px) 0;
}

.partner-bar-header {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.partner-bar-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-4);
  display: block;
  margin-bottom: 10px;
}

.partner-bar-sub {
  font-size: 13px;
  color: var(--text-4);
  max-width: 58ch;
  margin: 0 auto;
  line-height: 1.6;
}

.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.partner-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-right: 1px solid var(--hairline);
  opacity: .45;
  transition: opacity .3s var(--ease);
}

.partner-logo-item:last-child {
  border-right: none;
}

.partner-logo-item:hover {
  opacity: .8;
}

.partner-logo-item img {
  height: 28px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.partner-logo-text {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(238, 242, 255, .45);
}

@media(max-width:800px) {
  .partner-logo-item {
    padding: 14px 20px;
    border-right: none;
    border-bottom: 1px solid var(--hairline);
  }

  .partner-logo-item:last-child {
    border-bottom: none;
  }
}

/* ── PARTNER QUOTE STRIP ── */
.quote-strip {
  background: var(--surface);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: clamp(40px, 5vw, 64px) 0;
}

.quote-strip-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.qs-quote {
  font-family: var(--display);
  font-size: clamp(22px, 2.8vw, 38px);
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 24px;
}

.qs-quote .qs-accent {
  color: var(--mach);
}

.qs-attribution {
  display: flex;
  align-items: center;
  gap: 16px;
}

.qs-rule {
  width: 32px;
  height: 1px;
  background: var(--mach);
  opacity: .7;
  flex-shrink: 0;
}

.qs-source {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ── PRODUCTION READINESS ── */
.production-ready {
  padding-top: var(--sy);
  padding-bottom: var(--sy);
  background: var(--bg-2);
  border-bottom: 1px solid var(--hairline);
}

.pr-header {
  max-width: 640px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.pr-header h2 {
  margin: 12px 0 16px;
}

.pr-header p {
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--text-2);
  line-height: 1.75;
}

.pr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
}

.pr-item {
  background: var(--surface);
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .2s var(--ease);
}

.pr-item:hover {
  background: var(--surface-2);
}

.pr-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: var(--mach-dim);
  border: 1px solid rgba(31, 182, 240, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pr-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--mach);
  fill: none;
  stroke-width: 1.5;
}

.pr-title {
  font-family: var(--display);
  font-size: clamp(16px, 1.6vw, 20px);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
  margin: 0;
}

.pr-desc {
  font-size: 12.5px;
  color: var(--text-3);
  line-height: 1.65;
  margin: 0;
}

@media(max-width:900px) {
  .pr-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

.reveal-delay-4 {
  transition-delay: .4s;
}

.reveal-delay-5 {
  transition-delay: .5s;
}

@media(prefers-reduced-motion:reduce) {
  .reveal {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* 22-06-2026 */

.pnum-big {
  font-size: clamp(46px, 5.5vw, 74px);
}

.brand {
  max-width: 103px;
}

.nav-links {
  margin: 0;
}

.cta-card {
  text-align: center;
}

.cta-card .cta-card-eyebrow {
  width: 100%;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}

.proof-key {
  color: var(--text-2);
}

.hero-scroll-cue span {
  color: var(--text-2);
}

.prob-card p {
  color: var(--text-2);
}

.pnum-label {
  color: var(--text-2);
}

.lp-products-label {
  color: var(--text-2);
}

.quote-source.reveal.reveal-delay-1.in {
  color: var(--text-2);
}

.path-num {
  color: var(--text-2);
}

.footer-col h5 {
  color: var(--text-2);
}

.dep-tag {
  color: var(--text-2);
}

.nav-links a {
  color: var(--text-2);
}

.scroll-arrow {
  width: 3px;
}

/* 22-07-2025 */
.footer-copy {
  color: var(--text-2);
}

.footer-legal a {
  color: var(--text-2);
}