/* Ported from V2Restricted theme.py, shell.css, stack_holo.py */
:root {
  --wrap-max: 1180px;
  --wrap-gutter: 16px;
  --nav-h: 62px;
  --nav-top-inset: 0px;
  --nav-stack: calc(var(--nav-top-inset) + var(--nav-h));
  --radius-xl: 20px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --ease-out: cubic-bezier(.22,.8,.24,1);
  --font-ui: system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  --font-brand: "Geist", var(--font-ui);
  --font-mono: ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;
  --surface: #06080f;
  --surface-raised: #0c1019;
  --panel-opaque: #141b28;
  --body-grad-top: #080b12;
  --body-grad-bottom: #05070d;
  --mesh-a: rgba(88,166,255,.14);
  --mesh-b: rgba(52,211,153,.12);
  --mesh-c: rgba(66,232,224,.10);
  --text: #eef4fb;
  --text-muted: #8b9bb3;
  --text-faint: #6f7d92;
  --text-inverse: #0b1018;
  --border: rgba(255,255,255,.09);
  --border-strong: rgba(255,255,255,.16);
  --focus-ring: rgba(124,184,255,.45);
  --focus-glow: rgba(124,184,255,.14);
  --accent-color: #7cb8ff;
  --accent-2-color: #42e8e0;
  --accent-ink: #d8ebff;
  --accent-soft: rgba(88,166,255,.20);
  --violet-color: #a78bfa;
  --success: #4ade80;
  --warning: #fbbf24;
  --tag-active-accent: #d4b44a;
  --tone-teal: #42c4bc;
  --tone-steel: #6b8199;
  --tone-system: #8b7cc8;
  --nav-bg: #0f1419;
  --nav-border: #2a3344;
  --nav-ink: #d4e4ff;
  --nav-row-idle-ink: rgba(255,255,255,.92);
  --nav-row-hover-bg: rgba(255,255,255,.05);
  --tag-face: #243248;
  --tag-border: #455870;
  --tag-border-hover: #5a7090;
  --tag-label-ink: #f4f8ff;
  --tag-desc-ink: #a8b4c8;
  --tag-mark-ink: #0f141c;
  --footer-bg: #05070d;
  --footer-border: rgba(255,255,255,.06);
  --shadow-1: 0 8px 32px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.06);
  --shadow-2: 0 18px 48px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.04);
  --shadow-tag: 0 3px 0 rgba(0,0,0,.38), 0 6px 20px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.06);
  --motion-idle-icon: rgba(255,255,255,.10);
  --motion-idle-ink: rgba(111,125,146,1);
  --motion-live-icon: rgba(124,184,255,.8);
  --motion-live-ink: #7cb8ff;
  --motion-step-label: #eef4fb;
  --bg: var(--surface);
  --bg-elevated: var(--surface-raised);
  --ink: var(--text);
  --muted: var(--text-muted);
  --line: var(--border);
  --accent: var(--accent-color);
  --mesh-1: var(--mesh-a);
  --mesh-2: var(--mesh-b);
  --mesh-3: var(--mesh-c);
}

@media (min-width: 640px) { :root { --nav-h: 74px; } }
@media (min-width: 1040px) { :root { --nav-h: 94px; } }

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: dark; }
/* ScrollTrigger drives its own scroll math; native smooth scrolling fights pinning. */
html.js-motion { scroll-behavior: auto; }
html, body {
  margin: 0;
  min-height: 100%;
  /* Kill macOS/Chrome rubber-band at the top so .hero-lights does not translate. */
  overscroll-behavior-y: none;
}
body {
  font: 15px/1.5 var(--font-ui);
  color: var(--ink);
  padding-top: var(--nav-stack);
  background: var(--bg);
  background-image:
    radial-gradient(900px 520px at 8% -8%, var(--mesh-1), transparent 58%),
    radial-gradient(760px 480px at 92% 4%, var(--mesh-2), transparent 55%),
    radial-gradient(640px 420px at 50% 108%, var(--mesh-3), transparent 60%),
    linear-gradient(180deg, var(--body-grad-top) 0%, var(--bg) 42%, var(--body-grad-bottom) 100%);
  background-attachment: fixed;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; color: inherit; }
::selection { background: rgba(124,184,255,.28); color: #fff; }

/* Top chrome — full-bleed boxed bar, columns split by hairline dividers */
.mkt-nav {
  position: fixed;
  top: var(--nav-top-inset);
  left: 0;
  right: 0;
  z-index: 3900;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: stretch;
  min-height: var(--nav-h);
  background: rgba(6, 9, 16, .78);
  backdrop-filter: blur(22px) saturate(1.15);
  -webkit-backdrop-filter: blur(22px) saturate(1.15);
  border-bottom: 1px solid var(--border-strong);
}
.mkt-brand {
  display: flex;
  align-items: center;
  padding: 0 clamp(18px, 2.2vw, 40px);
  border-right: 1px solid var(--border);
}
.mkt-brand img,
.mkt-logo {
  height: clamp(22px, 1.9vw, 32px);
  width: auto;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, .45)) drop-shadow(0 1px 0 rgba(255, 255, 255, .12));
}
.footer-grid .mkt-logo { height: 36px; }
img.mkt-logo--on-light { display: none !important; }
html[data-theme="light"] img.mkt-logo--on-dark { display: none !important; }
html[data-theme="light"] img.mkt-logo--on-light { display: block !important; }

.mkt-nav-grid {
  display: none;
  min-width: 0;
  flex: 1;
  align-self: stretch;
  align-items: stretch;
}
.mkt-navbox {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 6px;
  padding: 12px clamp(18px, 2vw, 34px);
  border-right: 1px solid var(--border);
  min-width: clamp(96px, 10vw, 148px);
  color: var(--text-muted);
  transition: background 220ms var(--ease-out), color 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}
.mkt-navbox::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--box-accent) 14%, transparent), transparent 42%),
    radial-gradient(130% 90% at 50% 115%, color-mix(in srgb, var(--box-accent) 22%, transparent), transparent 68%);
  opacity: .85;
}
.mkt-navbox__title {
  font-size: clamp(11px, .85vw, 14px);
  font-weight: 650;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.mkt-navbox--home {
  --box-accent: var(--accent-2-color);
  --box-tint: rgba(66, 232, 224, .07);
  background: var(--box-tint);
}
.mkt-navbox--about {
  --box-accent: var(--accent-color);
  --box-tint: rgba(124, 184, 255, .08);
  background: var(--box-tint);
}
.mkt-navbox--team {
  --box-accent: var(--violet-color);
  --box-tint: rgba(167, 139, 250, .08);
  background: var(--box-tint);
}
.mkt-navbox--contact,
.mkt-navbox--careers {
  --box-accent: var(--text-muted);
  --box-tint: var(--surface);
  background: var(--surface);
}
.mkt-navbox--contact::after,
.mkt-navbox--careers::after {
  content: none;
}
.mkt-navbox:hover {
  color: var(--text);
  background: color-mix(in srgb, var(--box-accent) 14%, transparent);
}
.mkt-navbox.active {
  color: var(--text);
  background: color-mix(in srgb, var(--box-accent) 22%, transparent);
  box-shadow: inset 0 -3px 0 var(--box-accent);
}
.mkt-navbox:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: -2px;
  z-index: 1;
}
.mkt-nav-links { display: none; }
.mkt-navcol {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 12px clamp(16px, 1.8vw, 34px);
  border-right: 1px solid var(--border);
}
.mkt-navcol--compact {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  align-self: stretch;
  justify-content: stretch;
  min-width: clamp(96px, 10vw, 148px);
  padding: 0;
  gap: 0;
}
.mkt-navcol--compact .mkt-navbox {
  flex: 1 1 0;
  min-height: 0;
  min-width: 0;
  padding-block: 0;
  border-right: none;
}
.mkt-navcol--compact .mkt-navbox--contact {
  border-bottom: 1px solid var(--border);
}
.mkt-link {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: clamp(12px, .92vw, 15px);
  font-weight: 650;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 180ms var(--ease-out);
}
.mkt-link:hover { color: var(--text); }
.mkt-link.active { color: var(--text); }
.mkt-link:focus-visible { outline: 2px solid var(--focus-ring); outline-offset: 3px; }

.mkt-nav-end {
  display: flex;
  align-items: stretch;
  min-width: 0;
}
.mkt-theme {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 38px;
  height: 38px;
  margin: 0 clamp(12px, 1.6vw, 20px) 0 clamp(8px, 1.2vw, 14px);
  padding: 0;
  cursor: pointer;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: var(--surface-raised);
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .28), 0 1px 0 rgba(255, 255, 255, .08);
}
.mkt-theme:hover {
  color: var(--text);
  background: color-mix(in srgb, var(--surface-raised) 70%, var(--accent-color) 16%);
  border-color: color-mix(in srgb, var(--accent-color) 40%, var(--border-strong));
}
.mkt-theme:focus-visible { outline: 2px solid var(--focus-ring); outline-offset: 2px; }
.mkt-theme svg { width: 18px; height: 18px; }
.mkt-theme__sun { display: block; }
.mkt-theme__moon { display: none; }

.mkt-nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding-right: clamp(14px, 2.2vw, 40px);
}
.mkt-nav-actions::before {
  content: "";
  align-self: stretch;
  width: 1px;
  background: var(--border);
  margin-right: clamp(14px, 2.2vw, 40px);
}
.mkt-menu {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; padding: 0; cursor: pointer;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--surface-raised); color: var(--text);
}
.mkt-menu:focus-visible { outline: 2px solid var(--focus-ring); }
@media (min-width: 1040px) {
  .mkt-nav-grid { display: flex; }
  .mkt-nav-grid > .mkt-navbox,
  .mkt-navcol--compact { flex: 1 1 0; max-width: 168px; }
  .mkt-menu { display: none; }
}
@media (max-width: 1039px) {
  :root { --nav-top-inset: env(safe-area-inset-top, 0px); }
  .mkt-nav {
    top: env(safe-area-inset-top, 0px);
    z-index: 9999;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .mkt-nav-actions::before { display: none; }
}
@media (max-width: 719px) {
  .mkt-nav-actions .mkt-btn { display: none; }
}

.mkt-btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 40px; padding: 0 16px; border-radius: var(--radius-sm);
  border: 1px solid rgba(124,184,255,.35);
  background: var(--accent-color); color: var(--text-inverse);
  font-size: 13px; font-weight: 650; cursor: pointer;
}
.mkt-btn:hover { background: #9cc9ff; }
.mkt-btn.ghost {
  background: var(--surface-raised); color: var(--text);
  border-color: var(--border);
}
.mkt-btn.ghost:hover { border-color: var(--border-strong); }
.mkt-btn:focus-visible { outline: 2px solid var(--focus-ring); outline-offset: 2px; }
.mkt-btn[disabled] { opacity: .45; cursor: not-allowed; }

.mkt-drawer {
  display: flex; flex-direction: column; gap: 0;
  position: fixed;
  top: calc(var(--nav-top-inset) + var(--nav-h));
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3800;
  background: rgba(6,8,15,.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 8px clamp(18px, 5vw, 40px) 32px;
  overflow-y: auto;
}
.mkt-drawer[hidden] { display: none !important; }
body.nav-open { overflow: hidden; }
.mkt-drawer-primary {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}
.mkt-drawer .mkt-navbox {
  border: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-radius: var(--radius-md);
  min-width: 0;
  padding: 18px 22px;
  gap: 8px;
}
.mkt-drawer .mkt-navbox__title {
  font-size: clamp(16px, 4.5vw, 22px);
  letter-spacing: .1em;
}
.mkt-drawer-secondary {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.mkt-drawer .mkt-link {
  font-size: clamp(16px, 4.2vw, 20px);
  letter-spacing: .08em;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.mkt-drawer .mkt-link.active {
  color: var(--text);
  padding-left: 12px;
  border-left: 2px solid var(--accent-color);
}
.mkt-drawer-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.mkt-drawer-actions .mkt-btn { height: 48px; flex: 1 1 12rem; }

.wrap { width: min(var(--wrap-max), calc(100% - var(--wrap-gutter) * 2)); margin: 0 auto; }
main { padding-bottom: 64px; }

.hero-scene {
  position: relative;
  overflow: clip;
  isolation: isolate;
  overscroll-behavior-y: none;
}

/* Living control-room grid: static hairline cells, JS lights a sparse subset. */
.hero-lights {
  --cell: clamp(40px, 4vw, 64px);
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(auto-fill, var(--cell));
  grid-auto-rows: var(--cell);
  background-image:
    linear-gradient(to right, rgba(124,184,255,.085) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(124,184,255,.085) 1px, transparent 1px);
  background-size: var(--cell) var(--cell);
  -webkit-mask-image: radial-gradient(118% 80% at 58% 42%, transparent 0%, transparent 20%, rgba(0,0,0,.72) 44%, #000 70%);
  mask-image: radial-gradient(118% 80% at 58% 42%, transparent 0%, transparent 20%, rgba(0,0,0,.72) 44%, #000 70%);
}
.hero-cell {
  --tint: 124,184,255;
  background: rgba(var(--tint), .20);
  opacity: 0;
  will-change: opacity;
  animation: heroCell var(--dur, 7s) ease-in-out var(--delay, 0s) infinite;
}
.hero-cell--teal { --tint: 66,232,224; }
.hero-cell--amber { --tint: 212,180,74; }
.hero-cell--steel { --tint: 107,129,153; }
@keyframes heroCell {
  0%, 100% { opacity: 0; }
  9% { opacity: var(--peak, .55); }
  24% { opacity: calc(var(--peak, .55) * .3); }
  40% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-cell { animation: none; opacity: .1; }
}

.hero {
  position: relative;
  z-index: 1;
  width: min(1400px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: clamp(40px, 4vh, 80px);
  padding: clamp(40px, 9vh, 108px) 0 0;
  perspective: 1200px;
}
.hero-copy {
  display: grid;
  justify-items: center;
  gap: clamp(12px, 2.1vh, 24px);
  max-width: 100%;
  margin: 0;
}
.hero-copy h1, .hero-headline {
  margin: 0;
  font-size: clamp(2.112rem, 7.744vw, 8.36rem);
  font-weight: 650; letter-spacing: -.045em; line-height: .94; color: var(--text);
  perspective: 900px;
}
.hero-headline .hero-word,
.hero-headline .hero-word-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 0.08em;
}
.hero-headline .hero-char {
  display: inline-block;
  will-change: opacity;
}
.hero-copy p, .hero-sub {
  margin: 0; color: var(--text-muted);
}
.hero-copy p:not(.hero-sub) {
  max-width: 36rem;
  font-size: clamp(1rem, 1.3vw, 1.35rem);
}
.hero-copy .hero-sub,
.hero-sub {
  max-width: none;
  font-size: clamp(1.35rem, 1.75vw, 1.82rem);
}
@media (min-width: 480px) {
  .hero-copy .hero-sub,
  .hero-sub {
    white-space: nowrap;
  }
}
@media (max-width: 479px) {
  .hero-copy .hero-sub,
  .hero-sub {
    font-size: clamp(0.95rem, 3.6vw, 1.25rem);
  }
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.hero-ctas .mkt-btn {
  height: 52px;
  padding: 0 21px;
  font-size: 17px;
  border-radius: 10px;
}
html.js-motion .hero-headline:not(.is-ready),
html.js-motion .hero-sub:not(.is-ready),
html.js-motion .hero-ctas:not(.is-ready),
html.js-motion .hero .product-shot:not(.is-ready) {
  opacity: 0;
}
@media (prefers-reduced-motion: reduce) {
  html.js-motion .hero-headline,
  html.js-motion .hero-sub,
  html.js-motion .hero-ctas,
  html.js-motion .hero .product-shot {
    opacity: 1;
  }
}
@media (min-width: 900px) {
  /* Pin the hero to the viewport; the dashboard is deliberately cropped at the
     fold so scrolling pulls it up and out to full size. */
  html.js-motion .hero-scene { height: 100svh; }
}

.product-gallery {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 12px;
  align-items: start;
}
.product-gallery--single {
  display: block;
  width: min(1100px, 100%);
  min-width: 0;
}
.product-gallery--single .product-shot--primary { grid-column: auto; }
.product-gallery--single .tablet {
  border-radius: 22px;
  padding: 12px 12px 12px 16px;
}
.product-gallery--single .tablet-camera,
.shot-stage .tablet-camera {
  left: 8px;
}
.product-shot {
  margin: 0; padding: 0;
  display: flex; flex-direction: column; align-items: center;
  background: none; border: none; box-shadow: none;
}
.product-shot--primary { grid-column: 1 / -1; }
.tablet {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, #1a2230 0%, #0a0e16 100%);
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  padding: 10px 10px 10px 14px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 12px 28px rgba(0,0,0,.38);
}
.tablet-camera {
  position: absolute; left: 7px; top: 50%; transform: translate(-50%, -50%);
  width: 5px; height: 5px; margin: 0;
  border-radius: 50%; background: #0c1019;
  box-shadow: 0 0 0 1.5px #2a3344, inset 0 0 0 1.5px #1a2230;
}
.tablet-screen {
  overflow: hidden; border-radius: 6px; background: #06080f;
  aspect-ratio: 3420 / 1972;
}
.tablet-screen img {
  width: 100%; height: 100%; object-fit: contain; object-position: center; display: block;
}
.product-shot figcaption {
  margin-top: 8px;
  font-size: 10px; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-muted);
}
.product-shot--primary .tablet { border-color: rgba(212,180,74,.42); }
.product-shot[data-accent="briefing"] .tablet { border-color: rgba(167,139,250,.42); }
.product-shot[data-accent="debrief"] .tablet { border-color: rgba(66,232,224,.42); }
.product-shot--primary .tablet-camera { box-shadow: 0 0 0 1.5px #8a7340, inset 0 0 0 1.5px #2a2418, 0 0 8px rgba(212,180,74,.28); }
.product-shot[data-accent="briefing"] .tablet-camera { box-shadow: 0 0 0 1.5px #5a4a78, inset 0 0 0 1.5px #221e30, 0 0 8px rgba(167,139,250,.28); }
.product-shot[data-accent="debrief"] .tablet-camera { box-shadow: 0 0 0 1.5px #2a5a58, inset 0 0 0 1.5px #142824, 0 0 8px rgba(66,232,224,.28); }

/* Problem statement */
.problem { padding: 56px 0 24px; }
.kicker {
  font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent-2-color); margin: 0 0 10px;
}
.problem h2, .section-title {
  margin: 0 0 20px; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 650; letter-spacing: -.02em;
}
.problem-grid { display: grid; gap: 12px; }
@media (min-width: 800px) { .problem-grid { grid-template-columns: repeat(3, 1fr); } }
.problem-card {
  background: var(--surface-raised); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 22px 20px; box-shadow: var(--shadow-1);
}
.problem-card .stat {
  font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 650; line-height: 1;
  letter-spacing: -.03em; color: var(--text); white-space: pre-line;
}
.problem-card .unit { display: block; margin-top: 6px; font-size: 1rem; font-weight: 500; color: var(--accent-2-color); }
.problem-card hr { border: 0; height: 1px; width: 48px; background: rgba(66,232,224,.45); margin: 14px 0; }
.problem-card p { margin: 0; color: var(--text-muted); }
.problem-card p span { color: var(--text-faint); }

/* stack_holo.py tiles */
.stk-simple-nav {
  display: grid; gap: 10px; margin: 28px 0 8px;
}
@media (min-width: 821px) {
  .stk-simple-nav { grid-template-columns: 1fr 1fr; }
}
.stk-dest {
  position: relative; display: grid; grid-template-columns: minmax(0,1fr) 120px;
  min-height: 108px; margin: 0; padding: 0; text-align: left;
  border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  background: var(--panel-opaque);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 6px 18px rgba(0,0,0,.32);
  color: var(--text); overflow: hidden; cursor: default;
}
.stk-dest-copy { padding: 14px 16px; display: flex; flex-direction: column; justify-content: center; gap: 4px; }
.stk-dest-num { font-family: var(--font-mono); font-size: 12px; font-weight: 700; color: var(--text-faint); }
.stk-dest-label { font-size: 22px; font-weight: 700; line-height: 1.1; }
.stk-dest-desc { font-size: 13px; color: var(--text-muted); }
.stk-dest-art {
  display: flex; align-items: center; justify-content: center;
  border-left: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.03);
}
.stk-dest-art svg { width: 72px; height: 56px; }
.stk-dest[data-stk="debrief"] { border-color: rgba(66,196,188,.55); background: linear-gradient(180deg, rgba(66,196,188,.10), transparent 58%), var(--panel-opaque); }
.stk-dest[data-stk="debrief"] .stk-dest-art { color: #42c4bc; }
.stk-dest[data-stk="reports"] { border-color: rgba(124,184,255,.5); background: linear-gradient(180deg, rgba(124,184,255,.10), transparent 58%), var(--panel-opaque); }
.stk-dest[data-stk="reports"] .stk-dest-art { color: #7cb8ff; }
.stk-dest[data-stk="briefing"] { border-color: rgba(167,139,250,.5); background: linear-gradient(180deg, rgba(167,139,250,.12), transparent 58%), var(--panel-opaque); }
.stk-dest[data-stk="briefing"] .stk-dest-art { color: #a78bfa; }
.stk-dest[data-stk="halgo"] { border-color: rgba(196,180,250,.45); background: linear-gradient(180deg, rgba(196,180,250,.12), transparent 58%), var(--panel-opaque); }
.stk-dest[data-stk="halgo"] .stk-dest-art { color: #c4b4fa; }

.page-hero { padding: 48px 0 12px; }
.page-hero h1 { margin: 8px 0 12px; font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 700; letter-spacing: -.02em; line-height: 1.08; }
.page-hero p { max-width: 40rem; color: var(--text-muted); font-size: 1.1rem; }
.prose { max-width: 46rem; color: var(--text-muted); font-size: 1.05rem; }
.prose p { margin: 0 0 1rem; }
.quote {
  margin: 24px 0 0; padding: 18px 20px; border-left: 3px solid var(--accent-color);
  background: var(--panel-opaque); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text); font-style: italic; font-size: 2.1rem;
}
.cards { display: grid; gap: 12px; margin: 28px 0; }
@media (min-width: 800px) { .cards.three { grid-template-columns: repeat(3, 1fr); } .cards.two { grid-template-columns: 1fr 1fr; } }
.card {
  background: var(--surface-raised); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 22px; box-shadow: var(--shadow-1);
}
.card h3 { margin: 0 0 8px; font-size: 1.15rem; }
.card p { margin: 0; color: var(--text-muted); }

.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 900px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
.team-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; border-radius: var(--radius-sm); border: 1px solid var(--border); }
.team-card h3 { margin: 10px 0 2px; font-size: 1rem; }
.team-card p { margin: 0; color: var(--text-muted); font-size: 13px; font-weight: 600; letter-spacing: 0.01em; }

.hero-split { display: grid; gap: 24px; align-items: center; }
@media (min-width: 900px) { .hero-split { grid-template-columns: 1fr 1.1fr; } }
.hero-photo { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-2); }
.hero-photo img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

.form { display: grid; gap: 19.44px; max-width: 38.88rem; margin-inline: auto; }
.form label { display: grid; gap: 6.48px; font-size: 12.96px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted); }
.form input:not([type="checkbox"]), .form textarea {
  background: var(--surface-sunken, rgba(12,16,26,.55)); border: 0; border-bottom: 1px solid var(--border-strong);
  padding: 8.64px 0; color: var(--text); font-size: 16.2px; width: 100%;
}
.form input:not([type="checkbox"]):focus, .form textarea:focus { outline: none; border-bottom-color: var(--accent-color); }
.form .mkt-btn { height: 43.2px; padding: 0 17.28px; font-size: 14.04px; }
.form label.check {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10.8px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-muted);
}
.form label.check input[type="checkbox"] {
  flex: 0 0 auto;
  width: 1em;
  height: 1em;
  margin: 0;
  padding: 0;
  background: none;
  border: 0;
  accent-color: var(--accent-color);
}
.form label.check span {
  flex: 1 1 auto;
  min-width: 0;
}
.form-status-wrap { margin: 0; }
.form-status { min-height: 1.4em; font-size: 14.04px; color: var(--accent-2-color); margin: 0; }
.form-status-progress {
  margin-top: 8px;
  height: 2px;
  border-radius: 999px;
  overflow: hidden;
  background: color-mix(in srgb, var(--border) 70%, transparent);
}
.form-status-progress__bar {
  height: 100%;
  width: 42%;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in srgb, var(--accent-color) 45%, transparent),
    var(--accent-color),
    var(--accent-2-color),
    color-mix(in srgb, var(--accent-2-color) 45%, transparent),
    transparent
  );
  animation: form-status-progress 1.5s ease-in-out infinite;
}
@keyframes form-status-progress {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}
@media (prefers-reduced-motion: reduce) {
  .form-status-progress__bar {
    width: 100%;
    animation: none;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-2-color));
    opacity: 0.65;
  }
}
.form-recaptcha { margin: 0; font-size: 12.96px; line-height: 1.45; font-weight: 400; letter-spacing: 0; text-transform: none; color: var(--text-muted); }
.form-recaptcha a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.grecaptcha-badge { visibility: hidden; }
.warn {
  border: 1px solid rgba(251,191,36,.35); background: rgba(42,36,24,.8);
  color: var(--warning); border-radius: var(--radius-sm); padding: 12px 14px; margin: 0 0 20px;
}

.demo {
  display: grid; gap: 24px; padding: 48px 0; align-items: start;
}
@media (min-width: 900px) { .demo { grid-template-columns: 1fr 1.15fr; } }
.demo h2 { margin: 0 0 16px; font-size: clamp(1.8rem, 3vw, 2.6rem); }
.demo h2 span { display: block; color: var(--accent-color); }
.demo-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; color: var(--text-muted); }
.demo-list li { display: flex; gap: 10px; align-items: center; }
.demo-list i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-2-color); flex: 0 0 6px; }
.cal-card { background: var(--surface-raised); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 18px; box-shadow: var(--shadow-1); }
.cal-card h3 { margin: 0 0 4px; }
.cal-card p { margin: 0 0 12px; color: var(--text-muted); font-size: 13px; }

.site-footer {
  background: var(--footer-bg); border-top: 1px solid var(--footer-border);
  padding: 40px 0 28px; color: var(--text-muted);
}
.site-footer h2 { color: var(--text); margin: 0 0 10px; font-size: 1.5rem; }
.partners {
  display: grid; grid-template-columns: 1fr; gap: 14px;
  margin: 32px 0 28px;
}
@media (min-width: 700px) {
  .partners { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (min-width: 960px) {
  .partners { grid-template-columns: repeat(4, 1fr); }
}
.partner {
  display: grid; grid-template-rows: auto minmax(64px, auto) 2.8em;
  align-items: start; justify-items: center; text-align: center;
  padding: 20px 16px 16px;
  background: var(--surface-raised); border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
@media (min-width: 700px) {
  .partner {
    grid-template-rows: auto minmax(80px, auto) 2.8em;
    padding: 22px 18px 18px;
  }
}
.partner-label {
  margin: 0 0 12px; font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted);
}
.partner-logo {
  display: flex; align-items: center; justify-content: center;
  min-height: 64px; width: 100%;
  background: transparent;
}
@media (min-width: 700px) { .partner-logo { min-height: 80px; } }
.partner-logo a {
  display: flex; align-items: center; justify-content: center;
  background: transparent;
}
.partner-logo img {
  display: block;
  width: auto;
  max-width: min(100%, 260px);
  height: auto;
  max-height: 56px;
  object-fit: contain;
  margin: 0;
  background: transparent;
}
@media (min-width: 700px) {
  .partner-logo img { max-height: 72px; max-width: min(100%, 300px); }
}
@media (min-width: 960px) {
  .partner-logo img { max-height: 80px; }
}
.partner-wordmark {
  display: block;
  font-family: var(--font-brand);
  font-size: 20px;
  font-weight: 650;
  letter-spacing: .02em;
  line-height: 1.15;
  color: var(--text);
  background: transparent;
}
@media (min-width: 700px) {
  .partner-wordmark { font-size: 22px; }
}
.partner-note {
  margin: 8px 0 0; font-size: 11px; line-height: 1.35; color: var(--text-faint);
}
.partner--backed-by-list {
  grid-template-rows: auto 1fr;
  align-content: start;
}
.partner-backed-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.partner-backed-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.partner--backed-by-list .partner-logo {
  min-height: 48px;
}
.partner--backed-by-list .partner-logo img {
  max-height: 48px;
  max-width: min(100%, 220px);
}
@media (min-width: 700px) {
  .partner--backed-by-list .partner-logo { min-height: 56px; }
  .partner--backed-by-list .partner-logo img { max-height: 56px; max-width: min(100%, 240px); }
}
.partner--backed-by-list .partner-note {
  margin: 4px 0 0;
}
.footer-grid { display: grid; gap: 20px; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1fr 1fr 2fr; } }
.footer-grid h3 { margin: 0 0 10px; color: var(--text); font-size: 14px; }
.footer-grid ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.footer-grid a:hover { color: var(--accent-color); }
.legal-note { margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--border); font-size: 12px; text-align: center; }
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0 0; }

/* Viewport fly-in — only [data-reveal], and only after html.js. Never hide the whole page. */
html.js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
}
html.js [data-reveal].is-in {
  opacity: 1;
  transform: none;
  transition:
    opacity 560ms var(--ease-out),
    transform 560ms var(--ease-out);
  transition-delay: calc(var(--reveal-i, 0) * 100ms);
}
@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal],
  html.js [data-reveal].is-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Scrollytelling scenes ──────────────────────────────────────────
   Baseline styles below render a readable, fully static page. The
   `html.js-motion` layer near the bottom converts scenes into pinned,
   scroll-scrubbed stages once GSAP/ScrollTrigger takes over. */
.scene { position: relative; z-index: 1; }
.scene__pin {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: stretch;
  overflow: hidden;
}

/* Act II — oversized problem beats */
.beat {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78svh;
  padding: 6vh clamp(16px, 4vw, 48px);
}
.beat__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  width: min(100%, 1180px);
  margin: 0 auto;
}
.beat__layout--flip .beat__art { order: -1; }
.beat__copy {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  width: 100%;
}
.beat__stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: min(100%, 28rem);
}
.beat__stat {
  font-size: clamp(2.08rem, 8vw, 6.8rem);
  font-weight: 650;
  line-height: .92;
  letter-spacing: -.04em;
  color: var(--text);
}
.beat__stat--count {
  font-size: clamp(3.6rem, 12.8vw, 10.4rem);
  font-variant-numeric: tabular-nums;
  line-height: .88;
}
.beat__unit {
  display: block;
  margin-top: clamp(6px, 1.2vw, 14px);
  font-size: clamp(1.5rem, 4vw, 3.25rem);
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--accent-color);
}
.beat__rule {
  width: clamp(56px, 10vw, 88px);
  height: 1px;
  margin: clamp(14px, 2.5vw, 22px) auto;
  background: color-mix(in srgb, var(--accent-color) 55%, transparent);
}
.beat__line {
  margin: 0;
  font-size: clamp(.95rem, 2.1vw, 1.45rem);
  font-weight: 300;
  line-height: 1.4;
  color: var(--text-muted);
}
.beat__line span { color: var(--text-faint); }
.beat[data-beat="0"] .beat__unit {
  font-size: clamp(2.25rem, 6vw, 4.875rem);
}
.beat[data-beat="0"] .beat__line {
  font-size: clamp(1.425rem, 3.15vw, 2.175rem);
}
.beat[data-beat="1"] .beat__line {
  font-size: clamp(1.425rem, 3.15vw, 2.175rem);
}
.beat[data-beat="2"] .beat__line {
  font-size: clamp(1.425rem, 3.15vw, 2.175rem);
}
/* Blue soldier silhouettes, one per beat */
.beat__art {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(260px, 38vh, 480px);
  opacity: .62;
  pointer-events: none;
  user-select: none;
}
.beat__art img {
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}
.beat__art--lg { height: clamp(330px, 50.6vh, 616px); opacity: .68; }
.beat__art--parachute { height: clamp(422px, 66vh, 766px); }

/* Problem scene — palm fronds and helicopter (beats 0–1) */
.problem-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.problem-decor__palm,
.problem-decor__helicopter {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}
.problem-decor__palm img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.problem-decor__palm--left-1 {
  bottom: 0;
  left: -22vw;
  width: 55vw;
  transform-origin: 30% 100%;
}
.problem-decor__palm--left-2 {
  bottom: -2vh;
  left: -30vw;
  width: 40vw;
  transform-origin: 25% 100%;
}
.problem-decor__palm--right-1 {
  bottom: 0;
  right: -22vw;
  width: 55vw;
  transform-origin: 70% 100%;
}
.problem-decor__palm--right-2 {
  bottom: -2vh;
  right: -30vw;
  width: 40vw;
  transform-origin: 75% 100%;
}
.problem-decor__helicopter {
  top: 10vh;
  right: 6vw;
  width: 22vw;
}
.problem-decor__helicopter img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: right top;
}

.beat-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(28px, 5vh, 40px);
  display: none;
  justify-content: center;
  gap: 10px;
  z-index: 3;
}
.beat-dots span {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(111,125,146,.35);
  transition: width 260ms var(--ease-out), background-color 260ms var(--ease-out);
}
.beat-dots span.is-on { width: 18px; background: var(--accent-color); }

/* Act III — full-bleed product screenshots */
.scene--shot .scene__pin { justify-items: center; padding: 8vh clamp(16px, 4vw, 48px); }
.shot-stage {
  width: min(94vw, 1400px, calc((100svh - var(--nav-h) - 120px) * 1.735));
  margin: 0 auto;
}
.shot-stage .tablet { border-radius: 22px; padding: 12px 12px 12px 16px; }
.shot-stage figcaption { margin-top: 14px; font-size: 11px; letter-spacing: .16em; }
/* Act IV — three steps (living grid backdrop like hero) */
.scene--solution {
  overflow: clip;
  isolation: isolate;
}
.scene--solution .hero-lights { z-index: 0; }
.scene--solution .scene__pin { position: relative; z-index: 1; }
.hero-lights--scene {
  -webkit-mask-image: radial-gradient(108% 78% at 56% 48%, transparent 0%, transparent 18%, rgba(0,0,0,.72) 42%, #000 66%);
  mask-image: radial-gradient(108% 78% at 56% 48%, transparent 0%, transparent 18%, rgba(0,0,0,.72) 42%, #000 66%);
}
.solution {
  width: min(100%, 60rem);
  margin: 0 auto;
  padding: 8vh clamp(16px, 4vw, 32px);
  text-align: center;
}
.solution__head .kicker {
  font-family: inherit;
  font-size: clamp(0.9625rem, 2.45vw, 2.548rem);
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: var(--text-muted);
}
@media (max-width: 479px) {
  .solution__head .kicker {
    font-size: clamp(0.9625rem, 5.04vw, 1.75rem);
  }
}
.solution__head h2 {
  margin: 8px 0 0;
  font-size: clamp(1.6rem, 5vw, 4rem);
  font-weight: 650;
  letter-spacing: -.02em;
}
.steps {
  position: relative;
  display: flex;
  align-items: flex-start;
  width: min(100%, 48rem);
  margin: 36px auto 0;
  padding: 0 8px;
}
.steps__track {
  position: absolute;
  top: 24px;
  left: 16%;
  right: 16%;
  height: 1px;
  z-index: 0;
}
.steps__rail,
.steps__fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  height: 100%;
}
.steps__rail { background: rgba(255,255,255,.09); }
.steps__fill { background: var(--accent-color); transform-origin: left center; }
.step {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step__icon {
  width: clamp(48px, 12vw, 80px);
  height: clamp(48px, 12vw, 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 2px solid var(--motion-live-icon);
  background: var(--surface);
  color: var(--motion-live-ink);
  box-shadow: 0 0 28px rgba(124,184,255,.18);
}
.step__icon svg { width: clamp(24px, 6vw, 32px); height: clamp(24px, 6vw, 32px); }
.step__label {
  margin-top: 10px;
  font-size: clamp(10px, 2.2vw, 14px);
  color: var(--text);
}
.solution__cta { margin-top: 40px; }

/* ── Motion layer: pinned, scroll-scrubbed stages ────────────────── */
@media (min-width: 900px) {
  html.js-motion .scene__pin { height: 100svh; }
  html.js-motion .scene--problem .beat {
    position: absolute;
    inset: 0;
    min-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    will-change: transform, opacity;
  }
  html.js-motion .scene--problem .beat + .beat { opacity: 0; visibility: hidden; }
  html.js-motion .beat__art { opacity: 0; will-change: transform, opacity; }
  html.js-motion .problem-decor__palm,
  html.js-motion .problem-decor__helicopter { opacity: 0; will-change: transform, opacity; }
  html.js-motion .beat-dots { display: flex; }
  html.js-motion .scene--shot .scene__pin { padding: var(--nav-h) 0 0; }
  html.js-motion .shot-stage { will-change: transform, opacity; }
  html.js-motion .product-gallery { will-change: transform; }
}

@media (max-width: 899px) {
  .beat { min-height: 62svh; padding-left: 1.25rem; padding-right: 1.25rem; }
  .beat__layout {
    grid-template-columns: 1fr;
    gap: clamp(20px, 4vh, 36px);
  }
  .beat__layout--flip .beat__art { order: 1; }
  .beat__art { height: clamp(200px, 32vh, 360px); opacity: .34; }
  .beat__art--lg { height: clamp(242px, 39.6vh, 440px); }
  .beat__art--parachute { height: clamp(317px, 50.16vh, 554px); }
  .shot-stage { width: min(100%, 720px); }
}

@media (max-width: 639px) {
  .beat__art { display: none; }
  .problem-decor { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .scene__pin { height: auto; }
  .beat {
    position: relative;
    inset: auto;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .beat__art { display: none; }
  .beat-dots { display: none; }
  .shot-stage { transform: none; opacity: 1; }
  .problem-decor { opacity: 1; }
  .problem-decor__palm--left-1,
  .problem-decor__palm--right-1,
  .problem-decor__helicopter { opacity: 0.45; transform: none; }
  .problem-decor__palm--left-2,
  .problem-decor__palm--right-2 { opacity: 0.18; transform: none; }
}

/* Back to top — injected by site.js; sits above content, below nav/drawer. */
.mkt-top {
  --mkt-top-lift: 0px;
  position: fixed;
  right: max(16px, env(safe-area-inset-right, 0px));
  bottom: max(16px, calc(12px + env(safe-area-inset-bottom, 0px)));
  z-index: 1200;
  width: 40px;
  height: 40px;
  padding: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: color-mix(in srgb, var(--surface) 88%, var(--accent-color) 12%);
  color: var(--accent-ink);
  box-shadow: var(--shadow-1);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(calc(-1 * var(--mkt-top-lift)));
  transition: opacity 140ms var(--ease-out), visibility 140ms, background 180ms var(--ease-out), border-color 180ms var(--ease-out);
  touch-action: manipulation;
}
.mkt-top svg { display: block; }
.mkt-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mkt-top:hover {
  background: color-mix(in srgb, var(--surface-raised) 70%, var(--accent-2-color) 18%);
  border-color: color-mix(in srgb, var(--accent-2-color) 45%, var(--border-strong));
  color: #fff;
}
.mkt-top:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
}
body.nav-open .mkt-top {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .mkt-top { transition: none; }
}

/* Cookie notice — first visit only; injected by site.js. White card on dark site. */
.mkt-cookie {
  position: fixed;
  z-index: 1300;
  right: max(16px, env(safe-area-inset-right, 0px));
  bottom: max(16px, calc(12px + env(safe-area-inset-bottom, 0px)));
  left: max(16px, env(safe-area-inset-left, 0px));
  width: auto;
  max-width: 22.5rem;
  margin-left: auto;
  padding: 18px 18px 16px;
  border-radius: var(--radius-lg);
  background: #fff;
  color: var(--text-inverse);
  border: 1px solid rgba(11, 16, 24, .08);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .42), 0 0 0 1px rgba(255, 255, 255, .08);
  font-family: var(--font-ui);
}
.mkt-cookie p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.45;
  color: #1a2330;
}
.mkt-cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.mkt-cookie .mkt-btn {
  height: 38px;
  padding: 0 16px;
  color: var(--text-inverse);
}
.mkt-cookie .mkt-btn:focus-visible {
  outline: 2px solid #2a6fbf;
  outline-offset: 2px;
}
.mkt-cookie .mkt-btn.ghost {
  background: #fff;
  color: #1a2330;
  border-color: rgba(11, 16, 24, .18);
}
.mkt-cookie .mkt-btn.ghost:hover {
  background: #f3f6fa;
  border-color: rgba(11, 16, 24, .34);
}
body.nav-open .mkt-cookie {
  display: none;
}
@media (min-width: 480px) {
  .mkt-cookie { left: auto; }
}
@media (prefers-reduced-motion: reduce) {
  .mkt-cookie { animation: none; }
}
