/* =========================================================
   BOHM landing — plain CSS
   ========================================================= */
:root {
  --blue: #1E5FBF;
  --blue-2: #3B82F6;
  --navy: #0B2545;
  --navy-2: #13325F;
  --orange: #F5A524;
  --green: #22C55E;
  --green-2: #047857;
  --red: #EF4444;
  --bg: #ffffff;
  --bg-muted: #F4F7FC;
  --bg-soft: #EEF4FB;
  --text: #0F172A;
  --text-2: #334155;
  --text-3: #64748B;
  --border: #E2E8F0;
  --shadow-sm: 0 1px 2px rgba(15,23,42,.06), 0 1px 3px rgba(15,23,42,.08);
  --shadow-md: 0 4px 10px rgba(15,23,42,.06), 0 10px 30px rgba(15,23,42,.08);
  --shadow-lg: 0 10px 25px rgba(15,23,42,.08), 0 30px 60px rgba(15,23,42,.12);
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --maxw: 1200px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(18px, 4vw, 40px);
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
  box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn__arrow { display: inline-block; transition: transform .2s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: #1c54a8; }
.btn--light   { background: #fff; color: var(--navy); border-color: rgba(255,255,255,.3); }
.btn--ghost   { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.3); }
.btn--ghost:hover { background: rgba(255,255,255,.12); }
.btn--white   { background: #fff; color: var(--blue); }
.btn--dark    { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.3); backdrop-filter: blur(8px); }
.btn--dark:hover { background: rgba(255,255,255,.18); }
.btn--orange  { background: var(--orange); color: #fff; }
.btn--orange:hover { background: #d98b10; }

/* ============== NAV ============== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid rgba(15,23,42,.05);
  transition: box-shadow .2s var(--ease);
}
.nav.is-scrolled { box-shadow: 0 2px 12px rgba(15,23,42,.06); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}
.nav__brand { display: flex; align-items: center; gap: 10px; color: var(--navy); }
.nav__logo { width: 34px; height: 34px; }
.nav__wordmark { font-weight: 800; font-size: 20px; letter-spacing: -.01em; }
.nav__links {
  display: flex;
  gap: 28px;
  font-size: 15px;
  color: var(--text-2);
}
.nav__links a { position: relative; padding: 6px 2px; font-weight: 500; transition: color .2s; }
.nav__links a:hover { color: var(--blue); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--blue); border-radius: 2px;
  transform: scaleX(0); transform-origin: center; transition: transform .2s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta { padding: 10px 18px; font-size: 14px; }

.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
  border-radius: 10px;
}
.nav__toggle span {
  display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px;
  transition: transform .2s var(--ease), opacity .2s;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 12px 20px 20px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.nav__mobile a {
  padding: 14px 8px;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.nav__mobile a:last-child { border-bottom: 0; margin-top: 10px; }

/* ============== HERO ============== */
.hero {
  position: relative;
  color: #fff;
  min-height: calc(100vh - 72px);
  min-height: calc(100dvh - 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 6vh, 72px) 0 clamp(96px, 14vh, 140px);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(30,95,191,.45), transparent 60%),
    radial-gradient(900px 500px at 10% 10%, rgba(11,37,69,.9), transparent 60%),
    linear-gradient(180deg, #0B2545 0%, #102C52 50%, #1A3A68 100%);
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 40%, transparent 80%);
  opacity: .6;
}
.hero__inner { max-width: 1080px; }

.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.pill {
  display: inline-flex; align-items: center;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600;
  color: #fff;
}
.pill--green  { background: var(--green); }
.pill--blue   { background: var(--blue-2); }
.pill--orange { background: var(--orange); }

.hero__title {
  font-size: clamp(28px, 4.4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 0 0 18px;
  white-space: nowrap;
}
@media (max-width: 520px) {
  .hero__title { white-space: normal; }
}
.hero__accent-a { color: var(--orange); }
.hero__accent-b { color: var(--green); }

.hero__kicker {
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 600;
  margin: 0 0 18px;
  color: #E2E8F0;
}
.hero__lede {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.65;
  color: #CBD5E1;
  max-width: 740px;
  margin: 0 0 32px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.stat {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  padding: 18px 16px;
  border-radius: var(--radius);
  text-align: center;
  transition: transform .2s var(--ease), background .2s;
}
.stat:hover { transform: translateY(-3px); background: rgba(255,255,255,.08); }
.stat__num { font-size: clamp(24px, 3vw, 34px); font-weight: 800; letter-spacing: -.02em; }
.stat__label { font-size: 13px; color: #CBD5E1; margin-top: 4px; }

.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.hero__wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%; height: 80px;
  z-index: 1;
}

/* ============== SECTIONS ============== */
.section {
  padding: clamp(60px, 9vw, 110px) 0;
}
.section--muted { background: var(--bg-muted); }
.section--soft  { background: linear-gradient(180deg, #EEF4FB, #E3EDF9); }

.section__head {
  max-width: 820px;
  margin: 0 auto clamp(32px, 5vw, 56px);
  text-align: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600;
  color: var(--blue);
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}
.h2 {
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--text);
}
.grad-blue  { background: linear-gradient(90deg, #1E5FBF, #3B82F6); -webkit-background-clip: text; background-clip: text; color: transparent; }

#features .section__head { max-width: 1100px; }
#features .h2 { font-size: clamp(28px, 4.2vw, 44px); }

#connected .section__head { max-width: 1100px; }
#connected .h2 { font-size: clamp(26px, 4vw, 42px); }

#live .section__head { max-width: 1100px; }
#live .h2 { font-size: clamp(24px, 3.4vw, 38px); white-space: nowrap; }
@media (max-width: 760px) {
  #live .h2 { white-space: normal; font-size: clamp(24px, 6vw, 32px); }
}
.grad-green { background: linear-gradient(90deg, #22C55E, #0B6E3A); -webkit-background-clip: text; background-clip: text; color: transparent; }

.section__lede {
  font-size: clamp(15px, 1.7vw, 18px);
  color: var(--text-3);
  margin: 0;
}

/* ============== ORCHESTRATE ============== */
.orchestrate__heading {
  text-align: left;
  font-size: clamp(24px, 3vw, 38px);
  margin: 0 0 clamp(20px, 3vw, 32px);
  white-space: nowrap;
}
@media (max-width: 900px) {
  .orchestrate__heading {
    white-space: normal;
    font-size: clamp(24px, 5vw, 36px);
  }
}
.orchestrate__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.orchestrate__copy .h2 { text-align: left; }
.orchestrate__lede {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--text-3);
  line-height: 1.65;
  margin: 0 0 30px;
}
.orch-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 22px;
}
.orch-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  padding: 14px 16px;
  margin: -14px -16px;
  border-radius: 14px;
  cursor: pointer;
  position: relative;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.orch-item::before {
  content: "";
  position: absolute;
  left: 0; top: 14px; bottom: 14px;
  width: 3px;
  border-radius: 3px;
  background: var(--blue);
  opacity: 0;
  transform: scaleY(.4);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.orch-item:hover { background: rgba(30,95,191,.04); }
.orch-item.is-active {
  background: rgba(30,95,191,.06);
}
.orch-item.is-active::before { opacity: 1; transform: scaleY(1); }
.orch-item__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  box-shadow: 0 8px 18px -8px rgba(15,23,42,.25);
}
.orch-item__icon svg { width: 24px; height: 24px; }
.orch-item h3 { margin: 2px 0 4px; font-size: 18px; letter-spacing: -.01em; }
.orch-item p  { margin: 0; color: var(--text-3); font-size: 14.5px; line-height: 1.55; }

.orchestrate__visual {
  position: relative;
  display: grid;
  align-self: stretch;
  align-items: center;
  justify-items: stretch;
}
.orch-visual {
  grid-row: 1;
  grid-column: 1;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(8px) scale(.99);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
  pointer-events: none;
}
.orch-visual.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.orch-visual__inner {
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 6px 20px rgba(15,23,42,.06), 0 1px 3px rgba(15,23,42,.04);
  overflow: hidden;
  aspect-ratio: 400 / 280;
}
.orch-visual__svg { width: 100%; height: 100%; display: block; }
.orch-visual figcaption {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
}
.orch-visual__chip {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(220,38,38,.12);
  color: #B91C1C;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}
.orch-visual__pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #EF4444;
  box-shadow: 0 0 0 0 rgba(239,68,68,.55);
  animation: orchPulse 1.6s ease-out infinite;
}
@keyframes orchPulse {
  0%   { box-shadow: 0 0 0 0   rgba(239,68,68,.55); }
  70%  { box-shadow: 0 0 0 10px rgba(239,68,68,0); }
  100% { box-shadow: 0 0 0 0   rgba(239,68,68,0); }
}

@media (prefers-reduced-motion: reduce) {
  .orch-visual, .orch-visual__pulse { transition: none; animation: none; }
}
.device {
  background: linear-gradient(180deg, #E0E7FF, #C7D2FE 60%, #A5B4FC);
  padding: 10px;
  border-radius: 20px;
  box-shadow: 0 30px 60px -20px rgba(15,23,42,.25), 0 10px 25px -10px rgba(15,23,42,.2);
  position: relative;
  transform: rotate(-1deg);
  transition: transform .4s var(--ease);
}
.orchestrate__visual:hover .device { transform: rotate(0deg) translateY(-4px); }
.device::before {
  content: "";
  position: absolute;
  inset: -10px -10px auto -10px;
  height: 110%;
  background: linear-gradient(180deg, rgba(219,234,254,.6), rgba(219,234,254,0));
  border-radius: 22px;
  z-index: -1;
  filter: blur(12px);
}
.device__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 18px 10px;
  font-size: 11px;
  font-weight: 600;
  color: #475569;
}
.device__title { color: #0F172A; font-weight: 700; font-size: 12.5px; }
.device__screen {
  position: relative;
  background: #F8FAFC;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.device__svg { width: 100%; height: 100%; display: block; }
.device__chip {
  position: absolute;
  top: 10px; right: 10px;
  background: rgba(15,23,42,.7);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  padding: 4px 8px;
  border-radius: 4px;
}
.device__toolbar {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex; gap: 6px;
}
.device__toolbar span {
  width: 24px; height: 24px;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(15,23,42,.1);
}

/* ============== LIVE ENV ============== */
.live__title { text-align: center; }
.live__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.live__lede {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--text-2);
  line-height: 1.65;
  margin: 0 0 26px;
}
.live__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 22px;
}
.live-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
}
.live-item__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid; place-items: center;
  box-shadow: 0 6px 14px -6px rgba(15,23,42,.25);
}
.live-item__icon svg { width: 20px; height: 20px; }
.live-item h3 { margin: 0 0 2px; font-size: 16px; letter-spacing: -.01em; color: var(--text); }
.live-item p  { margin: 0; color: var(--text-3); font-size: 14px; line-height: 1.55; }

.live__visual {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(16px, 2vw, 24px);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.phones {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.phone {
  aspect-ratio: 9 / 19;
  border-radius: 14px;
  padding: 3px;
  box-shadow: 0 6px 14px -6px rgba(15,23,42,.2);
}
.phone--light { background: #D1D5DB; }
.phone--dark  { background: #1F2937; }
.phone--green { background: #14532D; }
.phone__screen {
  width: 100%; height: 100%;
  border-radius: 12px;
  background: #F8FAFC;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  padding: 10px 6px;
}
.phone__screen--dark { background: #111827; color: #E5E7EB; }
.phone__screen--green { background: #10B981; color: #04293A; }
.phone__screen--text {
  justify-content: flex-start;
  align-items: flex-start;
  padding: 10px 8px;
}
.phone__wordmark {
  font-weight: 800;
  font-size: clamp(9px, 1.1vw, 13px);
  letter-spacing: .14em;
  color: #0F172A;
}
.phone__wordmark--light { color: #F9FAFB; }
.phone__wordmark--top { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); }
.phone__stripes {
  position: absolute;
  bottom: 10px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 2px;
}
.phone__stripes i {
  display: inline-block;
  width: 8px; height: 3px;
  border-radius: 2px;
}
.phone__yellow {
  width: 60%;
  aspect-ratio: 1;
  background: #FACC15;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(250,204,21,.5);
}
.phone__screen--text p {
  margin: 0;
  font-size: clamp(5px, .55vw, 7px);
  line-height: 1.35;
  color: #CBD5E1;
  font-weight: 500;
}
.phone__screen--green p { color: #052E2B; font-weight: 600; }
.phone__small { font-size: clamp(4px, .5vw, 6px) !important; line-height: 1.3 !important; }
.phone__small--dark { color: #04293A !important; }
.phone__ring {
  width: 70%;
  aspect-ratio: 1;
  border: 2px solid #F5A524;
  border-radius: 50%;
  align-self: center;
  margin-top: auto;
  margin-bottom: 10px;
}
.phone__arc, .phone__net { width: 100%; height: 100%; }

/* ============== PIPELINE ============== */
.pipeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr) ;
  gap: 20px;
  align-items: stretch;
  position: relative;
}
.pipeline__step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.pipeline__step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pipeline__step h3 { margin: 16px 0 6px; font-size: 20px; letter-spacing: -.01em; }
.pipeline__step p  { margin: 0; color: var(--text-3); font-size: 14.5px; }
.pipeline__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--c) 12%, white);
  color: var(--c);
  display: grid; place-items: center;
}
.pipeline__icon svg { width: 26px; height: 26px; }
.pipeline__arrow {
  display: none;
  align-self: center;
  color: var(--text-3);
  font-size: 22px;
}

/* ============== SHOWCASE (Passports) ============== */
.showcase {
  display: grid;
  gap: 30px;
}
.showcase__card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(16px, 2.2vw, 26px);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 20px;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}
.showcase__card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(600px 200px at 0% 0%, rgba(30,95,191,.06), transparent 70%),
              radial-gradient(400px 200px at 100% 100%, rgba(239,68,68,.05), transparent 70%);
  pointer-events: none;
}
.showcase__panel {
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  min-height: 280px;
  box-shadow: 0 0 0 1px var(--border);
}
.showcase__panelHead {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; color: var(--text);
  font-size: 15px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}
.showcase__dot { width: 28px; height: 28px; border-radius: 8px; display: inline-block; }
.showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
  margin: 0;
}
.showcase__grid div { min-width: 0; }
.showcase__grid dt { font-size: 11px; color: var(--text-3); font-weight: 500; margin: 0 0 2px; }
.showcase__grid dd { font-size: 13px; font-weight: 600; color: var(--text); margin: 0; word-break: break-word; }
.showcase__viewer {
  background: #F8FAFC;
  border-radius: 14px;
  padding: 14px;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 1px var(--border);
  min-height: 280px;
}
.showcase__svg { width: 100%; height: 100%; }

.viewer-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.vf {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.vf:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.vf__icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.vf__icon svg { width: 20px; height: 20px; }
.vf h3 { margin: 0 0 6px; font-size: 18px; letter-spacing: -.01em; }
.vf p  { margin: 0; color: var(--text-3); font-size: 14.5px; }

/* ============== DEMO VIDEO ============== */
.demo__frame {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: transparent;
  isolation: isolate;
}
.demo__frame::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 16:9 */
}
.demo__video,
.demo__placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.demo__video { object-fit: cover; background: transparent; border-radius: inherit; }
.demo__placeholder {
  display: grid;
  place-items: center;
  background:
    radial-gradient(800px 400px at 50% 40%, rgba(30,95,191,.35), transparent 60%),
    linear-gradient(160deg, #13325F 0%, #0B2545 60%, #07182F 100%);
  color: #E2E8F0;
}
.demo__meta {
  position: absolute;
  top: 18px; left: 22px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.demo__title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  color: #fff;
}
.demo__sub {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  letter-spacing: .12em;
}
.demo__play {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  color: var(--blue);
  display: grid; place-items: center;
  box-shadow: 0 20px 50px -10px rgba(0,0,0,.55);
  transition: transform .25s var(--ease), background .2s, color .2s;
}
.demo__play:hover { transform: scale(1.06); background: var(--blue); color: #fff; }
.demo__play svg { transform: translateX(2px); }
.demo__badge {
  position: absolute;
  bottom: 18px; right: 22px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.85);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
}

.demo__caption {
  text-align: center;
  margin: 24px auto 22px;
  color: var(--text-3);
  max-width: 720px;
  font-size: 15px;
}
.demo__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.btn--outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
  box-shadow: none;
}
.btn--outline:hover { background: rgba(30,95,191,.08); }

@media (max-width: 768px) {
  .demo__play { width: 64px; height: 64px; }
  .demo__play svg { width: 26px; height: 26px; }
  .demo__title { font-size: 11px; }
  .demo__actions .btn { flex: 1 1 100%; justify-content: center; }
}

/* ============== STAKEHOLDERS ============== */
.stakeholders {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}
.stake {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.stake:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stake__icon {
  width: 54px; height: 54px;
  margin: 0 auto 14px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--from), var(--to));
  box-shadow: 0 6px 18px -6px var(--to);
}
.stake__icon svg { width: 24px; height: 24px; }
.stake h3 { margin: 0; font-size: 15px; letter-spacing: -.01em; line-height: 1.3; min-height: 2.6em; display: flex; align-items: center; justify-content: center; }

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.benefit__dot {
  display: inline-block;
  width: 44px; height: 44px;
  border-radius: 50%;
  margin-bottom: 14px;
  box-shadow: 0 8px 20px -6px currentColor;
}
.benefit h3 { margin: 0 0 6px; font-size: 20px; letter-spacing: -.01em; }
.benefit p  { margin: 0; color: var(--text-3); }

/* ============== FEATURES TRIO ============== */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature__icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { margin: 0 0 10px; font-size: 22px; letter-spacing: -.01em; }
.feature > p { margin: 0 0 16px; color: var(--text-3); }
.feature__list { list-style: none; padding: 0; margin: 0; }
.feature__list li {
  padding: 8px 0;
  border-top: 1px dashed var(--border);
  font-size: 14.5px;
  color: var(--text-2);
  position: relative;
  padding-left: 22px;
}
.feature__list li::before {
  content: "✓";
  position: absolute; left: 0; top: 8px;
  color: var(--green);
  font-weight: 800;
}

/* ============== USECASE ============== */
.usecase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 28px;
}
.usecase__left { padding: clamp(28px, 4vw, 44px); }
.usecase__tags { display: flex; gap: 8px; margin-bottom: 16px; }
.usecase__title { font-size: clamp(24px, 3vw, 32px); letter-spacing: -.02em; margin: 0 0 14px; }
.usecase__lede { color: var(--text-3); margin: 0 0 22px; }
.checklist { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 10px; }
.checklist li { display: flex; align-items: center; gap: 10px; color: var(--text-2); }
.check {
  display: inline-grid; place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 13px; font-weight: 700;
}
.link { color: var(--blue); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.link:hover { text-decoration: underline; }

.usecase__right {
  background: linear-gradient(135deg, #1E5FBF, #0B2545);
  color: #fff;
  display: grid;
  place-items: center;
  padding: clamp(28px, 4vw, 44px);
  position: relative;
  overflow: hidden;
}
.usecase__right::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(400px 300px at 30% 20%, rgba(255,255,255,.15), transparent);
}
.usecase__rightInner { position: relative; text-align: center; max-width: 360px; }
.usecase__big { font-size: clamp(48px, 6vw, 72px); font-weight: 900; letter-spacing: -.03em; line-height: 1; }
.usecase__sub { font-size: clamp(28px, 3.6vw, 44px); font-weight: 900; letter-spacing: -.03em; line-height: 1; margin-bottom: 14px; }
.usecase__note { color: rgba(255,255,255,.8); margin: 0 0 18px; }
.usecase__result {
  background: #fff; color: var(--blue);
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow-md);
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.usecase-mini {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.usecase-mini:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.usecase-mini h4 { margin: 12px 0 6px; font-size: 18px; letter-spacing: -.01em; }
.usecase-mini p { margin: 0; color: var(--text-3); font-size: 14.5px; }

/* ============== CTA ============== */
.cta {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--bg-muted);
}
.cta__card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #1E5FBF 0%, #1846a0 50%, #0B2545 100%);
  color: #fff;
  padding: clamp(36px, 6vw, 72px);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta__card::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 400px at 80% 0%, rgba(255,255,255,.15), transparent 60%),
    radial-gradient(500px 300px at 10% 100%, rgba(245,165,36,.15), transparent 60%);
  pointer-events: none;
}
.cta__card > * { position: relative; }
.cta__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
}
.cta__title { font-size: clamp(32px, 5vw, 56px); letter-spacing: -.02em; line-height: 1.05; margin: 0 0 16px; }
.cta__lede { font-size: clamp(15px, 1.7vw, 19px); color: rgba(255,255,255,.85); max-width: 680px; margin: 0 auto 32px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 28px; }
.trust {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 28px; justify-content: center; flex-wrap: wrap;
  color: rgba(255,255,255,.85);
  font-size: 14px;
}
.trust li { display: inline-flex; align-items: center; gap: 8px; }

/* ============== FOOTER ============== */
.footer {
  background: #0F172A;
  color: #CBD5E1;
  padding: clamp(48px, 7vw, 80px) 0 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px 32px;
}
.footer__logo svg { width: 44px; height: 44px; }
.footer__brand p { margin: 18px 0; max-width: 300px; color: #94A3B8; font-size: 14px; }
.footer__address {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 18px 0;
  font-style: normal;
  color: #94A3B8;
  font-size: 14px;
  line-height: 1.55;
  max-width: 300px;
}
.footer__address a { color: #94A3B8; transition: color .2s; }
.footer__address a:hover { color: #fff; }
.footer__copy { color: #fff; font-weight: 700; }
.footer__addrLine { margin-top: 8px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: #1E293B;
  color: #CBD5E1;
  border-radius: 8px;
  transition: background .2s, color .2s, transform .2s;
}
.footer__social a:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }

.footer h4 { color: #fff; font-size: 16px; margin: 0 0 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul a { font-size: 14px; color: #94A3B8; transition: color .2s; }
.footer ul a:hover { color: #fff; }

.footer__bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #1E293B;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #94A3B8;
}
.footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__legal a { transition: color .2s; }
.footer__legal a:hover { color: #fff; }

/* ============== REVEAL ANIMATION ============== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn { transition: none; }
  html { scroll-behavior: auto; }
}

/* ============== RESPONSIVE ============== */
@media (min-width: 900px) {
  .pipeline { grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; }
  .pipeline__arrow { display: block; }
}

@media (max-width: 1024px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile[data-open="true"] { display: flex; }

  .stakeholders { grid-template-columns: repeat(3, 1fr); }
  .showcase__card { grid-template-columns: 1fr 1fr; }
  .showcase__viewer { grid-column: span 2; min-height: 240px; }
  .orchestrate__grid { grid-template-columns: 1fr; }
  .live__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .features,
  .benefits,
  .usecase-grid,
  .viewer-features { grid-template-columns: 1fr; }
  .stakeholders { grid-template-columns: repeat(2, 1fr); }
  .usecase { grid-template-columns: 1fr; }
  .showcase__card { grid-template-columns: 1fr; }
  .showcase__viewer { grid-column: auto; }
  .hero__ctas .btn { flex: 1 1 100%; justify-content: center; }
  .cta__actions .btn { flex: 1 1 100%; justify-content: center; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
}

@media (max-width: 480px) {
  .stakeholders { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
  .hero__title { font-size: clamp(36px, 11vw, 56px); }
  .stat { padding: 14px 10px; }
}
