/* ============================================================
   PAICON — homepage v3 — LIGHT BACKGROUND, interactive PaiX
   ============================================================ */

:root {
  /* Light surfaces */
  --bg:       #fbfaf6;     /* warm off-white page */
  --bg-2:     #f3f1ea;
  --bg-3:     #ebe7dc;

  /* Dark navy used as INK and accent blocks */
  --navy:     #0a1240;
  --navy-2:   #0f185a;
  --navy-deep:#06092a;

  --ink:      #0a1240;     /* primary text on light */
  --ink-2:    #3a426c;     /* secondary text */
  --ink-3:    #6c759a;     /* tertiary / mono */
  --ink-on-dark: #ffffff;
  --ink-2-on-dark: #cfd5f5;
  --ink-3-on-dark: #8a91c2;

  --line:     rgba(10, 18, 64, 0.10);
  --line-2:   rgba(10, 18, 64, 0.05);
  --line-on-dark: rgba(255,255,255,0.12);

  --accent:   #e67a00;
  --teal:     #16a094;     /* deeper teal for light bg legibility */
  --teal-soft: #3dd4c0;
  --gold:     #d8a23a;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: var(--bg); }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  font-feature-settings: "ss01", "cv11";
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }
input, select { font: inherit; color: inherit; background: transparent; border: 0; }
input:focus, select:focus { outline: 1px solid var(--accent); outline-offset: 2px; }

.page { position: relative; isolation: isolate; }
html[data-grain="on"] body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.7'/></svg>");
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: fit-content;
  max-width: max-content;
  gap: 9px;
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(230, 122, 0, 0.12);
  border: 1px solid rgba(230, 122, 0, 0.30);
  padding: 8px 15px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.eyebrow--light { color: var(--accent); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.btn--primary {
  background: var(--accent);
  color: #2a1300;
  border-color: var(--accent);
}
.btn--primary:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn--ghost {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(10,18,64,0.02);
}
.btn--ghost:hover { background: rgba(10,18,64,0.05); border-color: rgba(10,18,64,0.2); }
.btn--ghost-light { color: #fff; border-color: rgba(255,255,255,0.22); background: rgba(255,255,255,0.04); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.08); }
.btn span[aria-hidden] { transition: transform .2s ease; }
.btn:hover span[aria-hidden] { transform: translateX(2px); }

.hl {
  background-image: linear-gradient(transparent 70%, rgba(230, 122, 0,0.35) 70%);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  padding: 18px 0;
  transition: background .3s ease, backdrop-filter .3s ease, padding .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(251, 250, 246, 0.85);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  padding: 12px 0;
  border-bottom-color: var(--line);
}
.nav__inner {
  width: min(1320px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 13px;
}
.nav__brand-word { color: var(--navy); }

.nav__primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.nav__primary > a, .nav__btn {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  padding: 6px 0;
  position: relative;
  font-weight: 500;
}
.nav__primary > a:hover, .nav__btn:hover { color: var(--ink); }
.nav__primary > a.nav__link--accent { color: var(--accent); }
.nav__primary > a.nav__link--accent:hover { color: var(--accent); filter: brightness(0.9); }
.nav__btn { display: inline-flex; align-items: center; gap: 6px; }
.nav__has-menu { position: relative; }
.nav__menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .25s ease;
  box-shadow: 0 24px 64px rgba(10,18,64,0.18);
  min-width: 540px;
}
.nav__menu--open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__menu-h {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.nav__menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.nav__menu-grid--single { grid-template-columns: 1fr; }
.nav__menu:has(.nav__menu-grid--single) { min-width: 320px; }
.nav__menu-eyebrow {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.nav__menu-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 8px;
  margin: 2px -12px;
  transition: background .2s ease;
}
.nav__menu-item:hover { background: var(--bg-2); }
.nav__menu-name { font-weight: 600; font-size: 14px; color: var(--navy); }
.nav__menu-tag { font-size: 12px; color: var(--ink-3); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: background .2s ease, transform .2s ease;
}
.nav__cta:hover { background: var(--navy-2); transform: translateY(-1px); }

/* Mobile nav toggle (hidden on desktop) */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}
.nav__toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown panel (hidden until opened, and only used on small screens) */
.nav__mobile {
  display: none;
  flex-direction: column;
  width: min(1320px, 92vw);
  margin: 12px auto 0;
  padding: 12px;
  background: rgba(251, 250, 246, 0.98);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 24px 64px rgba(10, 18, 64, 0.14);
}
.nav__mobile a {
  padding: 13px 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: 8px;
}
.nav__mobile a:hover { background: var(--bg-2); color: var(--ink); }
.nav__mobile-cta {
  margin-top: 8px;
  background: var(--navy);
  color: #fff !important;
  text-align: center;
  font-weight: 600;
}
.nav__mobile-cta:hover { background: var(--navy-2); color: #fff !important; }
.nav__mobile--open { display: flex; }

/* ============================================================
   HERO  (light)
   ============================================================ */
.hero {
  position: relative;
  padding: 130px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(1100px 600px at 20% 10%, rgba(230, 122, 0,0.10) 0%, transparent 60%),
    radial-gradient(900px 500px at 90% 80%, rgba(61,212,192,0.08) 0%, transparent 60%),
    var(--bg);
}
.hero__bg, .manifesto__bg, .cta__bg {
  position: absolute; inset: 0; z-index: 0;
  opacity: 0.7;
}
.dotmesh { position: absolute; inset: 0; width: 100%; height: 100%; }

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(1320px, 92vw);
  margin: 0 auto;
}
.hero__top { max-width: 880px; margin: 0 auto; text-align: center; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.6);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 28px;
}
.hero__eyebrow-dot {
  width: 6px; height: 6px; border-radius: 999px; background: var(--accent);
  box-shadow: 0 0 0 4px rgba(230, 122, 0,0.18);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.25); opacity: 0.6; }
}

.hero__title {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 22px;
  line-height: 1;
}
.hero__title-prefix {
  font-size: clamp(13px, 1vw, 15px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.hero__title-name {
  font-weight: 700;
  font-size: clamp(56px, 8vw, 116px);
  letter-spacing: -0.035em;
  color: var(--navy);
}
.hero__title-tag {
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 32px);
  letter-spacing: -0.01em;
  color: var(--ink-2);
}
.hero__lede {
  margin: 8px auto 36px;
  max-width: 60ch;
  font-size: clamp(15px, 1.1vw, 18px);
  color: var(--ink-2);
  line-height: 1.6;
}
.hero__ctas {
  display: flex; gap: 14px; align-items: center; justify-content: center; flex-wrap: wrap;
}
.hero__interact-hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 8px 16px;
  background: rgba(22,160,148,0.08);
  border: 1px solid rgba(22,160,148,0.25);
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--teal);
}
.hero__interact-pulse {
  width: 6px; height: 6px; border-radius: 999px; background: var(--teal);
  box-shadow: 0 0 0 4px rgba(22,160,148,0.2);
  animation: pulse 1.8s ease-in-out infinite;
}

/* ============================================================
   LAPTOP MOCK (rests on light bg)
   ============================================================ */
.laptop {
  position: relative;
  margin: 56px auto 0;
  max-width: 1180px;
  perspective: 1600px;
}
.laptop__lid {
  position: relative;
  background: linear-gradient(180deg, #1a1a1f 0%, #0d0d10 100%);
  border-radius: 18px 18px 6px 6px;
  padding: 18px 18px 16px;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.06),
    0 60px 120px rgba(10,18,64,0.22);
}
.laptop__cam {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: #2a2a30;
  margin: 0 auto 10px;
}
.laptop__screen {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: #f6f7fb;
  aspect-ratio: 16 / 10;
}
.laptop__base {
  position: relative;
  height: 14px;
  background: linear-gradient(180deg, #2a2a30 0%, #16161a 100%);
  border-radius: 0 0 16px 16px;
  margin: 0 -14px;
  box-shadow: 0 22px 40px rgba(10,18,64,0.18);
}
.laptop__base::before, .laptop__base::after {
  content: "";
  position: absolute; top: 0;
  width: 14px; height: 14px;
  background: linear-gradient(180deg, #2a2a30, #16161a);
}
.laptop__base::before { left: 0; border-radius: 0 0 0 16px; }
.laptop__base::after  { right: 0; border-radius: 0 0 16px 0; }
.laptop__notch {
  position: absolute; left: 50%; top: 0;
  transform: translateX(-50%);
  width: 100px; height: 5px;
  background: #0a0a0d;
  border-radius: 0 0 8px 8px;
}
.laptop__shadow {
  position: absolute;
  left: 5%; right: 5%;
  bottom: -38px; height: 60px;
  background: radial-gradient(closest-side, rgba(10,18,64,0.18), transparent 70%);
  filter: blur(10px);
  z-index: -1;
}
.laptop__caption {
  margin-top: 56px;
  text-align: center;
  font-style: italic;
  font-size: 14px;
  color: var(--ink-3);
}
.laptop__caption em { color: var(--ink-2); }
.nav__brand-img { height: 60px; width: auto; display: block; }

/* Blurred preview overlay on the laptop screen */
.laptop__screen .laptop__iframe {
  filter: blur(8px) saturate(0.85);
  transform: scale(1.02);
  transition: filter 0.5s ease, transform 0.6s ease;
  pointer-events: none;
}
.laptop__screen.is-revealed .laptop__iframe {
  filter: none;
  transform: none;
  pointer-events: auto;
}
.laptop__preview {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  border: 0;
  cursor: pointer;
  background:
    radial-gradient(120% 80% at 50% 40%, rgba(10,18,64,0.55) 0%, rgba(10,18,64,0.80) 55%, rgba(5,8,30,0.92) 100%);
  color: #fff;
  padding: 28px;
  text-align: center;
  font-family: inherit;
  z-index: 2;
  transition: background 0.3s ease;
}
.laptop__preview:hover {
  background:
    radial-gradient(120% 80% at 50% 40%, rgba(10,18,64,0.50) 0%, rgba(10,18,64,0.76) 55%, rgba(5,8,30,0.90) 100%);
}
.laptop__preview-inner {
  max-width: 560px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.laptop__preview-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono, "JetBrains Mono", monospace);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(4px);
}
.laptop__preview-pulse {
  width: 6px; height: 6px; border-radius: 999px;
  background: #e67a00;
  box-shadow: 0 0 0 0 rgba(230, 122, 0,0.7);
  animation: laptopPulse 1.8s ease-out infinite;
}
@keyframes laptopPulse {
  0%   { box-shadow: 0 0 0 0 rgba(230, 122, 0,0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(230, 122, 0,0); }
  100% { box-shadow: 0 0 0 0 rgba(230, 122, 0,0); }
}
.laptop__preview-title {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.18;
  margin: 0;
  text-wrap: balance;
  color: #fff;
  letter-spacing: -0.01em;
}
.laptop__preview-sub {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
  max-width: 440px;
}
.laptop__preview-cta {
  margin-top: 6px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background: #e67a00;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.laptop__preview:hover .laptop__preview-cta {
  transform: translateY(-1px);
}

.laptop__disclaimer {
  margin-top: 36px;
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-3);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.laptop__disclaimer a {
  color: #e67a00;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.laptop__disclaimer + .laptop__caption {
  margin-top: 14px;
}

/* ============================================================
   PAIX DASHBOARD
   ============================================================ */
.dash {
  position: absolute; inset: 0;
  background: #f6f7fb;
  color: #1c233f;
  font-size: 9px;
  display: flex; flex-direction: column;
}
.dash__topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  background: #fff;
  border-bottom: 1px solid #e6eaf5;
}
.dash__topbar-left { display: inline-flex; align-items: center; gap: 6px; }
.dash__topbar-brand {
  font-weight: 700; font-size: 11px;
  color: #0a1240; letter-spacing: 0.04em;
}
.dash__topbar-brand em { font-style: italic; font-weight: 500; color: #e67a00; }
.dash__topbar-mid { color: #6c759a; font-size: 8.5px; }
.dash__topbar-right { display: inline-flex; gap: 6px; align-items: center; }
.dash__chip {
  font-size: 8px; letter-spacing: 0.1em;
  padding: 3px 7px;
  border: 1px solid #dfe4f3;
  border-radius: 999px;
  color: #6c759a;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.dash__chip:hover { background: #eef1fa; color: #0a1240; }
.dash__chip--accent { background: #0a1240; color: #fff; border-color: #0a1240; }
.dash__chip--accent:hover { background: #0f185a; color: #fff; }
.dash__chip--on { background: #e67a00; border-color: #e67a00; color: #2a1300; }

.dash__body {
  flex: 1;
  display: grid;
  grid-template-columns: 110px 130px 1fr;
  min-height: 0;
}
.dash__side {
  background: #0a1240;
  color: #cfd5f5;
  padding: 10px 8px;
  display: flex; flex-direction: column; gap: 5px;
  font-size: 8.5px;
}
.dash__side-item {
  display: flex; align-items: center; gap: 6px;
  padding: 5px 6px;
  border-radius: 4px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  text-align: left;
  color: inherit;
  transition: background .15s ease;
}
.dash__side-item:hover { background: rgba(255,255,255,0.05); }
.dash__side-item--on { background: rgba(255,255,255,0.10); color: #fff; }
.dash__side-dot {
  display: inline-block;
  width: 4px; height: 4px;
  background: #e67a00; border-radius: 999px;
  flex-shrink: 0;
}
.dash__side-h {
  margin-top: 8px;
  font-size: 7.5px; letter-spacing: 0.16em;
  color: #6e76a8;
  text-transform: uppercase;
}
.dash__side-sub {
  font-size: 8px;
  color: #aeb6e0;
  padding-left: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}
.dash__side-sub:hover { color: #fff; }

.dash__filters {
  background: #f0f3fb;
  border-right: 1px solid #e1e6f3;
  padding: 10px 8px;
  display: flex; flex-direction: column; gap: 8px;
  overflow: hidden;
}
.dash__filters-h {
  display: flex; justify-content: space-between;
  font-size: 8px; letter-spacing: 0.16em;
  color: #6c759a;
  text-transform: uppercase;
  font-weight: 600;
}
.dash__filters-h button {
  color: #4a55a8;
  cursor: pointer;
  font-size: 8px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600;
}
.dash__filters-h button:hover { color: #0a1240; }
.dash__filters-group { display: flex; flex-direction: column; gap: 3px; }
.dash__filters-label {
  font-size: 7.5px; letter-spacing: 0.18em;
  color: #6c759a;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.dash__pill {
  font-size: 8px;
  padding: 3px 8px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #e1e6f3;
  color: #475184;
  text-align: left;
  cursor: pointer;
  transition: all .12s ease;
}
.dash__pill:hover { background: #eef1fa; border-color: #c0c9f5; }
.dash__pill--on {
  background: #e0e6ff;
  color: #2a368a;
  border-color: #c0c9f5;
  font-weight: 600;
}

.dash__main {
  padding: 10px 12px;
  overflow: hidden;
  background: #f6f7fb;
}
.dash__title {
  font-weight: 700; font-size: 12px;
  color: #0a1240;
  margin-bottom: 8px;
}
.dash__title-sub { font-weight: 400; font-size: 8.5px; color: #6c759a; margin-left: 6px; }

.dash__kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 8px;
}
.dash__kpi {
  background: #fff;
  border: 1px solid #e6eaf5;
  border-radius: 5px;
  padding: 6px 8px;
}
.dash__kpi-v { font-weight: 700; font-size: 13px; color: #0a1240; }
.dash__kpi-l1 {
  font-size: 7.5px; color: #6c759a;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-top: 2px;
}
.dash__kpi-l2 { font-size: 7.5px; color: #8a91c2; margin-top: 1px; }

.dash__panel-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 6px;
}
.dash__panel-row--three { grid-template-columns: repeat(3, 1fr); }
.dash__panel {
  background: #fff;
  border: 1px solid #e6eaf5;
  border-radius: 5px;
  padding: 7px 9px;
}
.dash__panel-head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 7.5px; letter-spacing: 0.14em;
  color: #6c759a; text-transform: uppercase;
}
.dash__panel-tag {
  background: #ffe7d4;
  color: #b94800;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 99px;
  font-size: 7px;
}
.dash__panel-sub {
  font-weight: 600; font-size: 10px; color: #1c233f; margin: 4px 0 6px;
}

.worldmap { width: 100%; height: 95px; }

.donut { display: flex; align-items: center; gap: 6px; }
.donut svg { width: 95px; height: 95px; flex-shrink: 0; }
.donut__num { font-weight: 700; font-size: 18px; fill: #0a1240; }
.donut__legend {
  list-style: none; margin: 0; padding: 0;
  font-size: 8px; color: #475184;
  display: flex; flex-direction: column; gap: 3px;
  flex: 1;
}
.donut__legend li { display: flex; align-items: center; gap: 5px; }
.donut__legend em { font-style: normal; margin-left: auto; color: #1c233f; font-weight: 600; }
.donut__sw { width: 8px; height: 8px; border-radius: 2px; }

.bars { display: flex; flex-direction: column; gap: 4px; }
.bar {
  display: grid;
  grid-template-columns: 70px 1fr 26px;
  align-items: center;
  gap: 6px;
  font-size: 8px;
}
.bar__lbl { color: #475184; }
.bar__track { height: 5px; background: #eef1fa; border-radius: 999px; overflow: hidden; }
.bar__fill { height: 100%; border-radius: 999px; transition: width .5s ease; }
.bar__pct { color: #1c233f; font-weight: 600; text-align: right; }

.dash__metrics { display: flex; flex-direction: column; gap: 4px; }
.metric {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 8.5px;
  padding: 3px 0;
  border-bottom: 1px dashed #e6eaf5;
}
.metric:last-child { border-bottom: 0; }
.metric__k { color: #475184; }
.metric__v { font-weight: 700; color: #1c233f; }
.metric__v--accent { color: #16a094; }

/* AGENT VIEW */
.agent {
  background: #fff;
  height: 100%;
  display: flex; flex-direction: column;
  font-size: 9px;
  border-radius: 0;
}
.agent__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 8px;
  background: linear-gradient(90deg, #0a1240, #1c2780);
  color: #fff;
}
.agent__head-title { font-weight: 700; font-size: 11px; letter-spacing: 0.04em; }
.agent__head-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 8px; letter-spacing: 0.16em; text-transform: uppercase;
  color: #aeb6e0;
}
.agent__thread {
  flex: 1;
  overflow: auto;
  padding: 8px 10px;
  display: flex; flex-direction: column;
  gap: 8px;
}
.agent__msg { display: flex; flex-direction: column; gap: 3px; }
.agent__msg-role {
  font-family: "JetBrains Mono", monospace;
  font-size: 7px; letter-spacing: 0.16em; text-transform: uppercase;
  color: #6c759a;
}
.agent__msg-body {
  background: #f0f3fb;
  border: 1px solid #e1e6f3;
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 9px;
  color: #1c233f;
  max-width: 88%;
  line-height: 1.45;
}
.agent__msg--user .agent__msg-body {
  background: #0a1240; color: #fff; border-color: #0a1240;
  align-self: flex-end;
}
.agent__msg--user { align-items: flex-end; }
.agent__msg--user .agent__msg-role { color: #6c759a; }
.agent__cohorts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-top: 4px;
  max-width: 88%;
}
.agent__cohort {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4px;
  padding: 5px 7px;
  background: #fff;
  border: 1px solid #e1e6f3;
  border-radius: 5px;
  text-align: left;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.agent__cohort:hover { border-color: #e67a00; background: #fff7f0; }
.agent__cohort-n {
  font-weight: 600; font-size: 9px; color: #0a1240;
  grid-column: 1; grid-row: 1;
}
.agent__cohort-k {
  font-size: 7.5px; color: #6c759a;
  grid-column: 1; grid-row: 2;
}
.agent__cohort-arrow {
  grid-column: 2; grid-row: 1 / span 2;
  align-self: center;
  color: #e67a00;
}
.agent__busy {
  display: inline-flex; gap: 4px;
  width: auto;
  padding: 8px 10px;
}
.agent__busy span {
  width: 5px; height: 5px;
  background: #6c759a;
  border-radius: 999px;
  display: inline-block;
  animation: bounce 1.2s ease-in-out infinite;
}
.agent__busy span:nth-child(2) { animation-delay: 0.15s; }
.agent__busy span:nth-child(3) { animation-delay: 0.30s; }
@keyframes bounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
  40% { transform: scale(1); opacity: 1; }
}
.agent__presets {
  padding: 6px 10px;
  display: flex; gap: 4px;
  flex-wrap: wrap;
  border-top: 1px solid #e6eaf5;
  background: #f8f9fd;
}
.agent__preset {
  font-size: 8px;
  padding: 4px 8px;
  background: #fff;
  border: 1px solid #e1e6f3;
  border-radius: 999px;
  color: #475184;
  cursor: pointer;
  white-space: nowrap;
  max-width: 60ch;
  overflow: hidden; text-overflow: ellipsis;
}
.agent__preset:hover { background: #fff7f0; border-color: #e67a00; color: #b94800; }
.agent__input {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px;
  padding: 6px 8px;
  border-top: 1px solid #e6eaf5;
  background: #fff;
}
.agent__input input {
  border: 1px solid #e1e6f3;
  border-radius: 5px;
  padding: 5px 8px;
  font-size: 9px;
  background: #fff;
  color: #1c233f;
}
.agent__send {
  background: #e67a00;
  color: #2a1300;
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 9px; font-weight: 600;
  cursor: pointer;
}
.agent__send:hover { filter: brightness(1.05); }

/* ============================================================
   VALUE PROP (light)
   ============================================================ */
.vprop {
  position: relative;
  padding: 140px 0 100px;
  background: var(--bg);
}
.vprop__inner {
  width: min(1320px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.vprop__title {
  font-weight: 700;
  font-size: clamp(38px, 4.4vw, 64px);
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 0 0 28px;
  color: var(--navy);
}
.vprop__title em { color: var(--accent); font-style: normal; }
.vprop__lede {
  margin: 0 0 56px;
  max-width: 50ch;
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.6;
}
.vprop__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.vprop__stat-v {
  font-weight: 700;
  font-size: clamp(44px, 4vw, 62px);
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
}
.vprop__stat-l { margin-top: 10px; font-size: 13px; color: var(--ink-2); }
.vprop__cards { display: flex; flex-direction: column; gap: 14px; }
.aud-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.aud-card:hover {
  transform: translateX(2px);
  border-color: var(--ink-3);
  box-shadow: 0 6px 20px rgba(10,18,64,0.06);
}
.aud-card__body { padding: 22px 26px; }
.aud-card__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
}
.aud-card__head h3 {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
  color: var(--navy);
}
.aud-card__num {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--teal);
  letter-spacing: 0.16em;
  flex-shrink: 0;
  margin-top: 6px;
  white-space: nowrap;
}
.aud-card__body p {
  margin: 0; font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
}

/* ============================================================
   MANIFESTO (dark inset on light page)
   ============================================================ */
.manifesto {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 50% 100%, rgba(230, 122, 0,0.10) 0%, transparent 60%),
    var(--navy-deep);
  color: var(--ink-on-dark);
}
.manifesto__inner {
  position: relative; z-index: 1;
  width: min(1180px, 92vw);
  margin: 0 auto;
  text-align: center;
}
.manifesto__eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 36px;
}
.manifesto__title {
  font-weight: 700;
  font-size: clamp(48px, 6.4vw, 96px);
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 0 auto;
  max-width: 22ch;
  color: #fff;
}
.manifesto__title em { font-style: normal; font-weight: 800; color: var(--accent); }
.manifesto__sig {
  margin-top: 48px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.22em;
  color: #fff;
}

/* ============================================================
   PLATFORM FEATURES (light)
   ============================================================ */
.pfeat {
  padding: 140px 0;
  background: var(--bg-2);
}
.pfeat__inner {
  width: min(1320px, 92vw);
  margin: 0 auto;
}
.pfeat__head { max-width: 760px; margin-bottom: 80px; }
.pfeat__title {
  font-weight: 700;
  font-size: clamp(38px, 4.4vw, 64px);
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 0 0 28px;
  color: var(--navy);
}
.pfeat__title em { font-style: normal; color: var(--accent); }
.pfeat__lede {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 55ch;
  line-height: 1.6;
  margin: 0;
}
.pfeat__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.feat {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 260px;
  grid-column: span 2;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.feat:hover {
  border-color: var(--ink-3);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(10,18,64,0.06);
}
.feat--wide { grid-column: span 3; }
.feat:nth-child(2) { grid-column: span 3; }
.feat:nth-child(3),
.feat:nth-child(4),
.feat:nth-child(5) { grid-column: span 2; }

.feat__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
  min-height: 60px;
}
.feat__head--modalities,
.feat__head--agnostic,
.feat__head--licensing {
  align-items: flex-start;
  min-height: 60px;
}
.feat__num {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  flex-shrink: 0;
}
.feat__t {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.2;
  color: var(--navy);
}
.feat__short {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}
.feat__d {
  margin: 0;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
}
.feat__tags {
  list-style: none;
  margin: auto 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 12px;
}
.feat__tags li {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--bg);
}

/* Feature visualizations */
.fviz { flex: 1; max-width: 70%; }

/* 01 — Multi-Modal: 2-row grid of icon + label pills */
.fviz--mod-stack {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 4px 6px;
  width: auto;
  max-width: 220px;
  height: 76px;
  align-content: center;
  align-self: flex-start;
  justify-content: end;
}
.modlayer {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 8px 3px 4px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--c) 10%, white);
  border: 1px solid color-mix(in oklab, var(--c) 28%, white);
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  font-weight: 600;
  color: var(--c);
  margin-left: 0;
  white-space: nowrap;
}
.modlayer svg { flex-shrink: 0; width: 14px; height: 14px; }

/* 02 — Disease Agnostic: compact orbit */
.fviz--agn-orbit {
  position: relative;
  width: 150px; height: 110px;
  align-self: flex-start;
  flex: 0 0 auto;
}
.agn__core {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #0a1240;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.5px;
}
.agn__node {
  position: absolute; top: 50%; left: 50%;
  --r: 56px;
  --a: calc((var(--i) / var(--n)) * 360deg - 90deg);
  transform:
    translate(-50%, -50%)
    rotate(var(--a))
    translateX(var(--r))
    rotate(calc(var(--a) * -1));
  padding: 2px 7px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: color-mix(in oklab, var(--c) 16%, white);
  border: 1px solid color-mix(in oklab, var(--c) 38%, white);
  color: var(--c);
  font-family: "JetBrains Mono", monospace;
  font-size: 8.5px; font-weight: 700;
  white-space: nowrap;
}

/* legacy chip/pill styles kept for any other usage */
.fviz--mod {
  display: flex; flex-wrap: wrap; gap: 4px; justify-content: flex-end;
}
.fviz__chip {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--c);
  background: color-mix(in oklab, var(--c) 14%, white);
  border: 1px solid color-mix(in oklab, var(--c) 35%, white);
}
.fviz--agn { width: 100%; height: 50px; }
.fviz--agn-pills {
  display: flex; flex-wrap: wrap; gap: 6px; justify-content: flex-end;
}
.fviz__pill {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--c);
  background: color-mix(in oklab, var(--c) 14%, white);
  border: 1px solid color-mix(in oklab, var(--c) 35%, white);
}
.fviz--agent {
  display: flex; flex-direction: column; gap: 6px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  width: 100%;
}
.fviz__prompt {
  display: flex; align-items: flex-start; gap: 6px;
  padding: 8px 10px;
  background: var(--bg);
  border-radius: 6px;
  color: var(--ink-2);
  line-height: 1.4;
}
.fviz__caret {
  width: 6px; height: 10px; background: var(--accent);
  flex-shrink: 0; margin-top: 1px;
  animation: featCaret 1s steps(2) infinite;
}
@keyframes featCaret { 50% { opacity: 0; } }
.fviz__answer {
  display: flex; gap: 4px; padding: 8px 10px;
  background: rgba(91,127,255,0.08);
  border-radius: 6px; align-self: flex-start;
}
.fviz__dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #5b7fff;
  animation: featDot 1.4s ease-in-out infinite;
}
.fviz__dot:nth-child(2) { animation-delay: 0.2s; }
.fviz__dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes featDot {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-2px); }
}
.fviz--pipe {
  display: flex; align-items: center; gap: 4px;
  flex-wrap: wrap; width: 100%;
}
.fviz--steps {
  display: flex; align-items: center; gap: 4px;
  flex-wrap: wrap;
  max-width: 220px;
  align-self: flex-start;
  justify-content: flex-end;
}
.fviz__pill {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--bg, #f6f5f1);
  border: 1px solid var(--line);
  color: var(--ink-2);
  white-space: nowrap;
}
.fviz__step {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--bg);
  color: var(--ink-2);
}
.fviz__step--final {
  background: var(--navy); color: #fff; border-color: var(--navy);
}
.fviz__arr { color: var(--ink-3); font-size: 12px; }
.fviz--lic { width: 56px; height: 56px; }
.fviz--lic-doc { width: 100%; max-width: 110px; align-self: flex-start; }
.fviz--lic-pills {
  display: flex; flex-wrap: wrap; gap: 6px; justify-content: flex-end;
}

@media (max-width: 1024px) {
  .pfeat__grid { grid-template-columns: repeat(2, 1fr); }
  .feat,
  .feat--wide,
  .feat:nth-child(2),
  .feat:nth-child(3),
  .feat:nth-child(4),
  .feat:nth-child(5) { grid-column: span 1; }
}
@media (max-width: 720px) {
  .pfeat__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   USE CASE
   ============================================================ */
.usecase {
  padding: 140px 0;
  background: var(--bg);
}
.usecase__inner {
  width: min(1320px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.usecase__title {
  display: flex; flex-direction: column;
  gap: 10px;
  margin: 0 0 28px;
}
.usecase__name {
  font-weight: 700;
  font-size: clamp(38px, 4.4vw, 64px);
  letter-spacing: -0.025em;
  line-height: 1.04;
  color: var(--navy);
}
.usecase__tag {
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--ink-2);
  letter-spacing: -0.005em;
}
.usecase__lede {
  font-size: 17px;
  color: var(--ink-2);
  margin: 0 0 28px;
  max-width: 50ch;
  line-height: 1.6;
}
.usecase__bullets {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.usecase__bullets li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
}
.usecase__bullet {
  display: inline-block;
  width: 8px; height: 8px;
  margin-top: 8px;
  background: var(--accent, #e67a00);
  border-radius: 999px;
}

.usecase__viz {
  background: var(--navy-deep);
  border: 1px solid rgba(10,18,64,0.4);
  border-radius: 14px;
  padding: 16px;
  color: #fff;
  box-shadow: 0 24px 64px rgba(10,18,64,0.18);
}
.usecase__viz { padding: 0 !important; background: var(--navy-deep) !important; overflow: hidden; position: relative; }
.ssv { display: flex; flex-direction: column; color: #fff; font-family: "Inter", sans-serif; }
.ssv__topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line-on-dark);
  background: rgba(0,0,0,0.2);
}
.ssv__brand { display: flex; align-items: center; gap: 8px; color: var(--accent); }
.ssv__brand-mark { display: inline-flex; }
.ssv__brand-name { font-weight: 600; font-size: 13px; color: #fff; letter-spacing: -0.01em; }
.ssv__brand-ver {
  font-family: "Inter", sans-serif;
  font-size: 9px; letter-spacing: 0.1em;
  color: var(--ink-2-on-dark);
  padding: 2px 6px;
  border: 1px solid var(--line-on-dark);
  border-radius: 4px;
}
.ssv__topbar-right { display: flex; align-items: center; gap: 10px; }
.ssv__status {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: "Inter", sans-serif;
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-2-on-dark);
}
.ssv__status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #e67a00;
  box-shadow: 0 0 8px rgba(230, 122, 0,0.6);
}
.ssv__status--analyzing .ssv__status-dot { background: var(--accent); animation: ssv-pulse 0.8s ease-in-out infinite; }
@keyframes ssv-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.ssv__body { display: grid; grid-template-columns: 110px 1fr; gap: 0; position: relative; }
.ssv--locked .ssv__rail,
.ssv--locked .ssv__main {
  filter: blur(11px) saturate(0.75);
  pointer-events: none;
  user-select: none;
}
.ssv__preview {
  position: absolute; inset: 0; z-index: 5;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(10,18,64,0.55) 0%, rgba(10,18,64,0.78) 100%);
  border: none;
  cursor: pointer;
  text-align: left;
  font: inherit; color: inherit;
  padding: 24px;
}
.ssv__preview-inner {
  display: flex; flex-direction: column; gap: 14px;
  max-width: 460px;
  align-items: flex-start;
}
.ssv__preview-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(4px);
}
.ssv__preview-pulse {
  width: 6px; height: 6px; border-radius: 999px;
  background: #e67a00;
  box-shadow: 0 0 0 0 rgba(230, 122, 0, 0.7);
  animation: laptopPulse 1.8s ease-out infinite;
}
.ssv__preview-title {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.25;
  margin: 0;
  text-wrap: balance;
  color: #fff;
  letter-spacing: -0.01em;
}
.ssv__preview-sub {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
  max-width: 420px;
}
.ssv__preview-cta {
  margin-top: 4px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background: #e67a00;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transition: transform .15s ease;
}
.ssv__preview:hover .ssv__preview-cta { transform: translateY(-1px); }
.ssv__rail {
  border-right: 1px solid var(--line-on-dark);
  padding: 12px 10px;
  display: flex; flex-direction: column; gap: 8px;
  background: rgba(0,0,0,0.15);
}
.ssv__rail-head {
  font-family: "Inter", sans-serif;
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-2-on-dark);
  margin-bottom: 4px;
}
.ssv__thumb {
  display: flex; flex-direction: column; gap: 6px;
  background: transparent;
  border: 1px solid var(--line-on-dark);
  border-radius: 6px;
  padding: 6px;
  cursor: pointer;
  text-align: left;
  transition: border-color .2s ease, background .2s ease;
}
.ssv__thumb:hover { border-color: rgba(255,255,255,0.25); }
.ssv__thumb--on { border-color: var(--accent); background: rgba(230, 122, 0,0.08); }
.ssv__thumb-img {
  display: block; width: 100%; height: 40px;
  border-radius: 3px; overflow: hidden;
}
.ssv__thumb-meta { display: flex; flex-direction: column; gap: 2px; }
.ssv__thumb-code {
  font-family: "Inter", sans-serif;
  font-size: 9px; color: #fff; letter-spacing: 0.05em;
}
.ssv__thumb-origin {
  font-family: "Inter", sans-serif;
  font-size: 8px; color: var(--ink-2-on-dark); letter-spacing: 0.08em; text-transform: uppercase;
}

.ssv__main { display: grid; grid-template-columns: 1.3fr 1fr; gap: 0; }
.ssv__viewer {
  position: relative;
  border-right: 1px solid var(--line-on-dark);
  min-height: 320px;
  display: flex; flex-direction: column;
  background: #0a0506;
}
.ssv__viewtabs {
  display: flex; gap: 2px;
  padding: 6px;
  border-bottom: 1px solid var(--line-on-dark);
  background: rgba(0,0,0,0.3);
}
.ssv__viewtab {
  flex: 1;
  background: transparent;
  border: 1px solid transparent;
  color: var(--ink-2-on-dark);
  font-family: "Inter", sans-serif;
  font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 8px;
  cursor: pointer;
  border-radius: 3px;
  transition: all .15s ease;
}
.ssv__viewtab:hover { color: #fff; background: rgba(255,255,255,0.04); }
.ssv__viewtab--on { color: var(--accent); border-color: rgba(230, 122, 0,0.4); background: rgba(230, 122, 0,0.08); }
.ssv__viewer-stage {
  position: relative;
  flex: 1;
  min-height: 260px;
  overflow: hidden;
}
.ssv__viewer-img {
  width: 100%; height: 100%;
  object-fit: contain;
  background: #1a0f15;
  display: block;
  animation: ssv-fade .35s ease;
}
@keyframes ssv-fade { from { opacity: 0; } to { opacity: 1; } }
.ssv__legend {
  position: absolute; top: 8px; right: 8px;
  display: flex; flex-direction: column; gap: 4px;
  padding: 6px 8px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  min-width: 100px;
}
.ssv__legend-lbl {
  font-family: "Inter", sans-serif;
  font-size: 8px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.ssv__legend-bar {
  height: 6px; border-radius: 2px;
  background: linear-gradient(90deg, #2c4894, #3dd4c0, #f9d34d, #e67a00, #d94545);
}
.ssv__legend-ends {
  display: flex; justify-content: space-between;
  font-family: "Inter", sans-serif;
  font-size: 8px; color: var(--ink-2-on-dark);
}

/* Report modal */
.ssv__modal {
  position: absolute; inset: 0;
  background: rgba(10,18,64,0.78);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
  animation: ssv-fade .2s ease;
}
.ssv__modal-card {
  position: relative;
  width: min(420px, 92%);
  background: var(--navy-deep);
  border: 1px solid var(--line-on-dark);
  border-radius: 10px;
  padding: 24px 22px 22px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}
.ssv__modal-close {
  position: absolute; top: 10px; right: 12px;
  background: transparent; border: 0;
  color: var(--ink-2-on-dark);
  font-size: 22px; line-height: 1;
  cursor: pointer; padding: 4px 8px;
}
.ssv__modal-close:hover { color: #fff; }
.ssv__modal-eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.ssv__modal-title {
  margin: 0 0 8px;
  font-size: 20px; font-weight: 600;
  letter-spacing: -0.015em;
  color: #fff;
}
.ssv__modal-lede {
  margin: 0 0 18px;
  font-size: 13px; line-height: 1.55;
  color: rgba(255,255,255,0.7);
}
.ssv__modal-form { display: flex; flex-direction: column; gap: 10px; }
.ssv__modal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ssv__modal-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.ssv__modal-field .ssv__modal-input { width: 100%; box-sizing: border-box; }
.ssv__modal-label {
  font-family: "Inter", sans-serif;
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-2-on-dark);
}
.ssv__modal-input {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--line-on-dark);
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 14px;
  color: #fff;
  font-family: inherit;
  outline: none;
  transition: border-color .15s ease;
}
.ssv__modal-input:focus { border-color: var(--accent); }
.ssv__modal-input::placeholder { color: rgba(255,255,255,0.35); }
.ssv__modal-submit { margin-top: 4px; }
.ssv__modal-fine {
  margin: 4px 0 0;
  font-size: 11px; line-height: 1.5;
  color: var(--ink-2-on-dark);
}
.ssv__modal-success { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; padding: 12px 0; }
.ssv__modal-check {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(61,212,192,0.15);
  border: 1.5px solid #3dd4c0;
  color: #3dd4c0;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700;
  margin-bottom: 4px;
}
.ssv__viewer-hud {
  position: absolute; bottom: 8px; left: 8px;
  display: flex; gap: 5px; flex-wrap: wrap;
}
.ssv__hud-chip {
  font-family: "Inter", sans-serif;
  font-size: 9px; letter-spacing: 0.06em;
  padding: 3px 7px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 3px;
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
}
.ssv__overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10,18,64,0.4);
  backdrop-filter: blur(2px);
}
.ssv__scan {
  position: absolute; left: 0; right: 0; top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: ssv-scan 1.4s linear infinite;
}
@keyframes ssv-scan { 0% { top: 0; } 100% { top: 100%; } }
.ssv__overlay-lbl {
  font-family: "Inter", sans-serif;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent);
  padding: 6px 12px;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(230, 122, 0,0.4);
  border-radius: 4px;
}

.ssv__readout {
  padding: 16px;
  display: flex; flex-direction: column; gap: 14px;
  background: rgba(0,0,0,0.18);
}
.ssv__readout-head {
  display: flex; align-items: baseline; justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line-on-dark);
}
.ssv__readout-title { font-size: 12px; font-weight: 600; letter-spacing: -0.005em; color: #fff; }
.ssv__readout-id {
  font-family: "Inter", sans-serif;
  font-size: 10px; color: var(--ink-2-on-dark); letter-spacing: 0.06em;
}
.ssv__verdict {
  display: flex; flex-direction: column; gap: 2px;
  padding: 10px 12px;
  border-radius: 6px;
  border-left: 3px solid;
}
.ssv__verdict--msi { background: rgba(61,212,192,0.08); border-left-color: #3dd4c0; }
.ssv__verdict--mss { background: rgba(230, 122, 0,0.08); border-left-color: var(--accent); }
.ssv__verdict-lbl {
  font-family: "Inter", sans-serif;
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-2-on-dark);
}
.ssv__verdict-val { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; color: #fff; }
.ssv__verdict-conf {
  font-family: "Inter", sans-serif;
  font-size: 10px; color: var(--ink-2-on-dark); letter-spacing: 0.04em;
}

.ssv__bars { display: flex; flex-direction: column; gap: 8px; }
.ssv__bar { display: flex; flex-direction: column; gap: 4px; }
.ssv__bar-row {
  display: flex; justify-content: space-between;
  font-family: "Inter", sans-serif;
  font-size: 10px; color: rgba(255,255,255,0.85); letter-spacing: 0.04em;
}
.ssv__bar-val { color: #fff; }
.ssv__bar-track {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.ssv__bar-fill { height: 100%; transition: width .5s cubic-bezier(.2,.7,.2,1); }
.ssv__bar-fill--msi { background: #3dd4c0; }
.ssv__bar-fill--mss { background: var(--accent); }

.ssv__metrics {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 12px;
  margin: 0;
  padding: 10px 0;
  border-top: 1px dashed var(--line-on-dark);
  border-bottom: 1px dashed var(--line-on-dark);
  position: relative;
}
.ssv__metrics--locked .ssv__metric-val {
  filter: blur(5px);
  user-select: none;
  letter-spacing: 0.02em;
}
.ssv__metrics-lock {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 6px;
  font-family: "Inter", sans-serif;
  font-size: 10px; line-height: 1.35;
  color: var(--ink-2-on-dark);
  padding-top: 4px;
  border-top: 1px dotted var(--line-on-dark);
  margin-top: 2px;
}
.ssv__metrics-lock-icon {
  font-size: 11px;
  filter: grayscale(1) brightness(1.6);
}
.ssv__metrics div { display: flex; flex-direction: column; gap: 1px; }
.ssv__metrics dt {
  font-family: "Inter", sans-serif;
  font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-2-on-dark);
}
.ssv__metrics dd {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 13px; font-weight: 600; color: #fff;
}

.ssv__actions { display: flex; gap: 8px; }
.ssv__btn {
  flex: 1;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 12px; font-weight: 600;
  cursor: pointer;
  border: 1px solid;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  transition: transform .15s ease, background .15s ease;
}
.ssv__btn--primary {
  background: var(--accent); border-color: var(--accent); color: var(--navy);
}
.ssv__btn--primary:hover { transform: translateY(-1px); }
.ssv__btn--ghost {
  background: transparent; border-color: var(--line-on-dark); color: rgba(255,255,255,0.85);
}
.ssv__btn--ghost:hover { background: rgba(255,255,255,0.05); }

.ssv__svg { width: 100%; flex: 1; display: block; }
.ssv__lab {
  font-family: "Inter", sans-serif;
  font-size: 9px; letter-spacing: 0.14em;
}

@media (max-width: 900px) {
  .ssv__body { grid-template-columns: 1fr; }
  .ssv__rail {
    flex-direction: row; overflow-x: auto;
    border-right: none; border-bottom: 1px solid var(--line-on-dark);
  }
  .ssv__thumb { min-width: 100px; }
  .ssv__main { grid-template-columns: 1fr; }
  .ssv__viewer { border-right: none; border-bottom: 1px solid var(--line-on-dark); }
}

/* legacy .ssv__head — unused */
.ssv__head--legacy {
  display: flex; align-items: center; gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-on-dark);
}
.ssv__tab--legacy {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-3-on-dark);
  padding: 6px 10px;
  border-radius: 6px;
}
.ssv__tab--on { background: rgba(255,255,255,0.08); color: #fff; }
.ssv__pred {
  margin-left: auto;
  background: var(--teal-soft);
  color: #062a25;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 6px;
  letter-spacing: 0.08em;
}
.ssv__slide {
  margin: 14px 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line-on-dark);
}
.ssv__svg { width: 100%; height: auto; display: block; }
.ssv__lab {
  font-family: "Inter", sans-serif;
  font-size: 9px;
  letter-spacing: 0.14em;
}
.ssv__foot {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.ssv__chip {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-on-dark);
  border-radius: 999px;
  color: var(--ink-2-on-dark);
}
.ssv__chip--ok { color: var(--teal-soft); border-color: rgba(61,212,192,0.4); }

/* ============================================================
   TESTIMONIALS + PARTNERS
   ============================================================ */
.testi {
  padding: 120px 0;
  background: var(--bg-2);
}
.testi__inner {
  width: min(1320px, 92vw);
  margin: 0 auto;
}
.testi__head { max-width: 700px; margin-bottom: 56px; }
.testi__title {
  font-weight: 700;
  font-size: clamp(38px, 4.4vw, 64px);
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 0;
  color: var(--navy);
}
.testi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.testi-card {
  position: relative;
  margin: 0;
  padding: 28px 28px 28px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.testi-card__bar {
  display: none;
}
.testi-card blockquote {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
}
.testi-card figcaption {
  display: flex; flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.testi-card__name { font-weight: 600; font-size: 14px; color: var(--navy); }
.testi-card__org {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.partners {
  margin-top: 80px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
}
.partners__lbl {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.partners__rule { height: 1px; background: var(--line); }
.partners__marquee {
  grid-column: 1 / -1;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.partners__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: partnersScroll 28s linear infinite;
}
.partners__marquee:hover .partners__track { animation-play-state: paused; }
@keyframes partnersScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .partners__track { animation: none; }
}
.partner-mark {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 60px;
  flex: 0 0 auto;
  min-width: 280px;
  transition: filter .25s ease, transform .25s ease;
  filter: saturate(0.85);
}
.partner-mark:hover {
  filter: saturate(1);
  transform: translateY(-1px);
}
.partner-mark svg {
  max-width: 100%;
  height: 36px;
  transform: translateY(-1px);
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  position: relative;
  padding: 140px 0 90px;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}
.cta__inner {
  position: relative; z-index: 1;
  width: min(1320px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.cta .eyebrow { color: var(--accent); }
.cta__title {
  font-weight: 700;
  font-size: clamp(38px, 4.4vw, 64px);
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 0 0 24px;
  color: #fff;
}
.cta__title em { font-style: normal; color: var(--accent); }
.cta__lede {
  font-size: 17px;
  color: var(--ink-2-on-dark);
  max-width: 50ch;
  margin: 0 0 32px;
  line-height: 1.6;
}
.cta__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.cta__panel {
  background: var(--navy-deep);
  border: 1px solid var(--line-on-dark);
  border-radius: 14px;
  padding: 28px;
  display: flex; flex-direction: column;
  gap: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
}
.cta__panel-head {
  display: flex; justify-content: space-between;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-3-on-dark);
  text-transform: uppercase;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line-on-dark);
}
.cta__field { display: flex; flex-direction: column; gap: 6px; }
.cta__field span {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3-on-dark);
}
.cta__field input,
.cta__field select,
.cta__field textarea {
  padding: 12px 14px;
  background: var(--navy-2);
  border: 1px solid var(--line-on-dark);
  border-radius: 8px;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
}
.cta__field textarea {
  resize: vertical;
  min-height: 88px;
  line-height: 1.5;
}
.cta__field input::placeholder,
.cta__field textarea::placeholder { color: var(--ink-3-on-dark); }
.cta__field-optional {
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3-on-dark);
  margin-left: 6px;
}
.cta__submit {
  padding: 11px 18px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: 4px;
  cursor: pointer;
  border: 0;
}
.cta__submit:hover { filter: brightness(1.05); }

/* ---- CTA tabs (Book a demo / Send a message) ---- */
.cta__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 6px;
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--line-on-dark);
  border-radius: 10px;
}
.cta__tab {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 10px 12px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border-radius: 7px;
  transition: background .18s ease, color .18s ease;
}
.cta__tab:hover { color: #fff; }
.cta__tab--on {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(230,122,0,0.30);
}
.cta__tab--on:hover { color: #fff; }
.cta__tab-icon { display: inline-flex; align-items: center; }

/* ---- Demo pane (calendar placeholder) ---- */
.cta__demo { display: flex; flex-direction: column; gap: 12px; }
.cta__cal {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 20px 22px 18px;
  overflow: hidden;
}
.cta__cal-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 14px;
}
.cta__cal-month { font-weight: 600; font-size: 15px; letter-spacing: -0.01em; color: #fff; }
.cta__cal-nav {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.5);
  border-radius: 6px;
  font-size: 16px;
  cursor: not-allowed;
}
.cta__cal-dow {
  display: grid; grid-template-columns: repeat(7,1fr);
  gap: 4px; margin-bottom: 6px;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.cta__cal-dow span { text-align: center; padding: 4px 0; }
.cta__cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; }
.cta__cal-cell {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2px;
  border-radius: 6px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  min-height: 36px;
}
.cta__cal-cell--empty { background: transparent; border-color: transparent; }
.cta__cal-cell--past { color: rgba(255,255,255,0.20); text-decoration: line-through; }
.cta__cal-cell--off { color: rgba(255,255,255,0.25); }
.cta__cal-cell--booked { color: rgba(255,255,255,0.4); }
.cta__cal-cell--booked .cta__cal-num { text-decoration: line-through; }
.cta__cal-cell--open {
  background: rgba(230,122,0,0.08);
  border-color: rgba(230,122,0,0.30);
  color: #fff;
}
.cta__cal-cell--today {
  outline: 1.5px solid var(--accent);
  outline-offset: -1.5px;
}
.cta__cal-num { line-height: 1; }
.cta__cal-dot {
  width: 4px; height: 4px; border-radius: 999px; background: var(--accent);
}
.cta__cal-legend {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-top: 14px; padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.cta__cal-legend > span { display: inline-flex; align-items: center; gap: 6px; }
.cta__cal-sw {
  width: 10px; height: 10px; border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.15);
}
.cta__cal-sw--open { background: rgba(230,122,0,0.45); border-color: rgba(230,122,0,0.6); }
.cta__cal-sw--booked { background: rgba(255,255,255,0.08); }
.cta__cal-sw--off { background: rgba(255,255,255,0.03); }
.cta__cal-overlay {
  position: absolute;
  left: 16px; right: 16px; bottom: 16px;
  display: flex; flex-direction: column; gap: 6px;
  padding: 16px 18px;
  background: linear-gradient(180deg, rgba(10,18,64,0.92), rgba(10,18,64,0.96));
  backdrop-filter: blur(8px);
  border: 1px solid rgba(230,122,0,0.35);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.45);
}
.cta__cal-overlay-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent);
  font-weight: 600;
}
.cta__cal-overlay strong { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; color: #fff; }
.cta__cal-overlay-lede { font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.65); }
.cta__cal-overlay-cta {
  align-self: flex-start; margin-top: 8px;
  padding: 8px 14px; border-radius: 7px;
  background: var(--accent); color: #fff;
  font: 600 12px/1 "Inter", sans-serif;
  letter-spacing: 0.06em;
  display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none;
  cursor: pointer;
  border: 0;
}
.cta__cal-overlay-cta:hover { filter: brightness(1.08); }

/* ---- Message pane (form wrapper) ---- */
.cta__msg { display: flex; flex-direction: column; gap: 14px; }

/* ============================================================
   FOOTER  (light)
   ============================================================ */
.footer {
  width: min(1320px, 92vw);
  margin: 0 auto;
  padding: 80px 0 40px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1fr;
  gap: 64px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
  align-items: stretch;
}
.footer__brand {
  display: flex;
  flex-direction: column;
}
.footer__brand p {
  margin: 18px 0 32px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
  max-width: 38ch;
}
.footer__brand .footer__connect { margin-top: auto; }
.footer__connect .footer__col-h { margin-bottom: 14px; }
.footer__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 4px;
}
.footer__logo img { filter: none !important; }

.footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.footer__nav > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col-h {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 4px;
}
.footer__nav a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}
.footer__nav a:hover { color: var(--accent); transform: translateX(2px); }
.footer__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--ink-3);
  transition: color .2s ease;
}
.footer__nav a:hover .footer__arrow { color: var(--accent); }

.footer__news { display: flex; flex-direction: column; }
.footer__news-lede {
  margin: 0 0 16px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 32ch;
}
.footer__news-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
}
.footer__news-fields input {
  grid-column: span 1;
  min-width: 0;
  padding: 12px 14px;
  font-size: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  color: var(--navy);
}
.footer__news-fields input[type="email"] { grid-column: 1 / -1; }
.footer__news-fields input::placeholder { color: var(--ink-3); }
.footer__news-fields input:focus { outline: none; border-color: var(--accent); }
.footer__news-btn {
  grid-column: 1 / -1;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  color: #2a1300;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: filter .15s ease, transform .15s ease;
}
.footer__news-btn:hover { filter: brightness(1.05); transform: translateY(-1px); }

.footer__social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy);
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.footer__social a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
}

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__legal a:hover { color: var(--navy); }
.footer__cert { letter-spacing: 0.22em; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .nav__primary { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__inner { grid-template-columns: 1fr auto; }
  .vprop__inner { grid-template-columns: 1fr; gap: 56px; }
  .usecase__inner { grid-template-columns: 1fr; gap: 48px; }
  .testi__grid { grid-template-columns: 1fr; }
  .cta__inner { grid-template-columns: 1fr; gap: 48px; }
  .cta__inner > * { min-width: 0; }
  .cta__panel { padding: 22px; }
  .cta__field input, .cta__field select, .cta__field textarea { width: 100%; box-sizing: border-box; }
  .footer__top { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .hero { padding-top: 110px; }
  .hero__title-name { font-size: clamp(44px, 14vw, 80px); }
  .vprop__stats { grid-template-columns: repeat(2, 1fr); }
  .footer__cols { grid-template-columns: 1fr 1fr; }
}


/* ============================================================
   PaiX Navigator v2 — extended dashboard styles
   ============================================================ */

/* Topbar additions */
.dash__topbar-sep { color: #c0c9d8; margin: 0 6px; }
.dash__topbar-crumb { color: #475184; font-size: 9px; font-weight: 500; }
.dash__topbar-mid { display: flex; justify-content: center; }
.dash__search {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  background: #f0f3fb;
  border: 1px solid #e1e6f3;
  border-radius: 999px;
  color: #6c759a; font-size: 8.5px;
  max-width: 360px;
}
.dash__chip--admin {
  background: #0a1240; color: #fff; border-color: #0a1240;
  font-weight: 700;
}

/* Sidebar updates */
.dash__side { gap: 2px; }
.dash__side-ico {
  display: inline-block; width: 12px;
  text-align: center;
  color: #e67a00;
  font-size: 9px;
}
.dash__side-item.on { background: rgba(255,255,255,0.10); color: #fff; }
.dash__side-item.on .dash__side-ico { color: #e67a00; }

/* Filter pill 'on' state via class */
.dash__pill.on {
  background: #e0e6ff;
  color: #2a368a;
  border-color: #c0c9f5;
  font-weight: 600;
}
.dash__filters-tally {
  margin-top: auto;
  display: flex; flex-direction: column;
  gap: 2px;
  padding: 6px 7px;
  background: #fff;
  border: 1px solid #e1e6f3;
  border-radius: 5px;
  font-size: 7.5px;
  color: #6c759a;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.dash__filters-tally strong { color: #0a1240; font-size: 11px; letter-spacing: 0; text-transform: none; font-weight: 700; }

.dash__panel-foot {
  display: flex; justify-content: space-between;
  font-size: 7.5px; color: #6c759a;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 6px;
  padding-top: 4px;
  border-top: 1px dashed #e6eaf5;
}
.dash__panel-foot strong { color: #0a1240; font-size: 10px; letter-spacing: 0; text-transform: none; }

.dash__link {
  background: none; border: 0; padding: 0;
  font-size: 8px; color: #e67a00;
  letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600; cursor: pointer;
}
.dash__link:hover { color: #c96e00; }

/* Status bar */
.dash__statusbar {
  display: flex; align-items: center;
  gap: 8px;
  padding: 4px 10px;
  background: #0a1240;
  color: #aeb6e0;
  font-family: "JetBrains Mono", monospace;
  font-size: 7.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.dash__status-dot {
  display: inline-block;
  width: 5px; height: 5px;
  background: #3dd4c0;
  border-radius: 999px;
  animation: pulse 2s infinite;
}
.dash__status-sep { color: #4a55a8; }
.dash__status-spacer { flex: 1; }

/* OVERVIEW */
.ov { display: flex; flex-direction: column; gap: 6px; height: 100%; }
.ov__kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.ov__kpi {
  background: #fff;
  border: 1px solid #e6eaf5;
  border-radius: 5px;
  padding: 6px 8px;
}
.ov__kpi-v { font-weight: 700; font-size: 14px; color: #0a1240; }
.ov__kpi-l1 { font-size: 7.5px; color: #6c759a; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 2px; }
.ov__kpi-l2 { font-size: 7.5px; color: #8a91c2; }

.ov__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.9fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  flex: 1;
  min-height: 0;
}
.ov__panel-map    { grid-column: 1; grid-row: 1 / span 2; }
.ov__panel-cancer { grid-column: 2; grid-row: 1 / span 2; }
.ov__panel-mod    { grid-column: 3; grid-row: 1; }
.ov__panel-pipe   { grid-column: 3; grid-row: 2; }
.ov__panel-recent { display: none; }

.ov__map-legend {
  display: flex; gap: 10px; margin-top: 6px;
  font-size: 7.5px; color: #6c759a;
}
.ov__map-legend i {
  display: inline-block;
  width: 6px; height: 6px;
  margin-right: 3px;
  border-radius: 999px;
  vertical-align: 1px;
}

.ov__cancers { display: flex; flex-direction: column; gap: 4px; }
.ov__cancer {
  display: grid;
  grid-template-columns: 60px 1fr 38px;
  align-items: center;
  gap: 6px;
  font-size: 8.5px;
}
.ov__cancer-name { color: #475184; }
.ov__cancer-track { height: 5px; background: #eef1fa; border-radius: 999px; overflow: hidden; }
.ov__cancer-fill { height: 100%; border-radius: 999px; }
.ov__cancer-v { font-weight: 600; color: #1c233f; text-align: right; }

.ov__recent { display: flex; flex-direction: column; gap: 3px; }
.ov__recent-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 5px 8px;
  background: #f0f3fb;
  border: 1px solid #e1e6f3;
  border-radius: 5px;
  cursor: pointer;
  text-align: left;
}
.ov__recent-row:hover { background: #fff; border-color: #e67a00; }
.ov__recent-name { display: block; font-weight: 600; font-size: 9px; color: #0a1240; }
.ov__recent-sub { display: block; font-size: 7.5px; color: #6c759a; }
.ov__recent-r { display: flex; align-items: center; gap: 6px; }
.ov__recent-pat { font-weight: 700; color: #1c233f; font-size: 10px; }
.ov__recent-arrow { color: #e67a00; }

/* WORLD MAP */
.wm { width: 100%; flex: 1; min-height: 0; display: flex; align-items: center; }
.wm__svg { width: 100%; height: 100%; max-height: 130px; }

/* DATASETS LIST */
.dl { display: flex; flex-direction: column; height: 100%; gap: 4px; }
.dl__head {
  display: grid;
  grid-template-columns: 2.4fr 1fr 1fr 0.8fr 0.8fr 0.8fr 1.2fr 0.7fr;
  gap: 6px;
  padding: 6px 10px;
  background: #f0f3fb;
  border: 1px solid #e1e6f3;
  border-radius: 5px;
  font-size: 7.5px;
  letter-spacing: 0.16em;
  color: #6c759a;
  text-transform: uppercase;
}
.dl__rows { display: flex; flex-direction: column; gap: 3px; overflow: auto; flex: 1; min-height: 0; }
.dl__row {
  display: grid;
  grid-template-columns: 2.4fr 1fr 1fr 0.8fr 0.8fr 0.8fr 1.2fr 0.7fr;
  gap: 6px;
  align-items: center;
  padding: 7px 10px;
  background: #fff;
  border: 1px solid #e6eaf5;
  border-radius: 5px;
  font-size: 9px;
  color: #1c233f;
  cursor: pointer;
  text-align: left;
  transition: border-color .15s ease, background .15s ease;
}
.dl__row:hover { border-color: #e67a00; background: #fff8f0; }
.dl__col { font-size: 8.5px; color: #475184; display: flex; align-items: center; gap: 5px; min-width: 0; }
.dl__col-name { font-size: 9px; }
.dl__name { display: block; font-weight: 600; color: #0a1240; }
.dl__id { display: block; font-family: "JetBrains Mono", monospace; font-size: 7px; color: #8a91c2; letter-spacing: 0.12em; }
.dl__dot {
  width: 6px; height: 6px; border-radius: 999px; flex-shrink: 0;
}
.dl__dot--paicon { background: #e67a00; }
.dl__dot--public { background: #16a094; }
.dl__qbar {
  display: inline-block;
  width: 60px; height: 4px;
  background: #eef1fa; border-radius: 999px; overflow: hidden;
}
.dl__qbar span { display: block; height: 100%; background: linear-gradient(90deg, #e67a00, #16a094); border-radius: 999px; }
.dl__qv { font-weight: 600; color: #1c233f; }
.dl__tier {
  font-size: 7.5px;
  padding: 2px 7px;
  border-radius: 999px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.dl__tier--free { background: #e6f7f4; color: #0e6e64; }
.dl__tier--pro  { background: #ffe7d4; color: #b94800; }
.dl__tier--contact { background: #fef0d4; color: #8a5a00; }
.dl__empty { padding: 30px; text-align: center; color: #8a91c2; font-size: 9px; }

/* DETAIL */
.dd { display: flex; flex-direction: column; gap: 6px; height: 100%; overflow: auto; }
.dd__back {
  align-self: flex-start;
  font-size: 8px; color: #6c759a;
  cursor: pointer; padding: 0;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.dd__back:hover { color: #0a1240; }
.dd__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 12px; }
.dd__source {
  font-family: "JetBrains Mono", monospace;
  font-size: 7px; letter-spacing: 0.2em;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 4px;
}
.dd__source--paicon { background: #e67a00; color: #2a1300; }
.dd__source--public { background: #16a094; color: #fff; }
.dd__name { font-weight: 700; font-size: 14px; color: #0a1240; }
.dd__meta { display: flex; gap: 5px; font-size: 8px; color: #6c759a; flex-wrap: wrap; align-items: center; margin-top: 3px; }
.dd__meta .dd__tier { padding: 1px 6px; border-radius: 999px; font-weight: 600; font-size: 7.5px; letter-spacing: 0.1em; text-transform: uppercase; }
.dd__tier--pro { background: #ffe7d4; color: #b94800; }
.dd__tier--free { background: #e6f7f4; color: #0e6e64; }
.dd__tier--contact { background: #fef0d4; color: #8a5a00; }
.dd__actions { display: flex; gap: 4px; }
.dd__btn {
  font-size: 8px;
  padding: 5px 10px;
  border-radius: 5px;
  background: #fff;
  border: 1px solid #e1e6f3;
  color: #475184;
  cursor: pointer;
  font-weight: 500;
}
.dd__btn:hover { border-color: #e67a00; color: #b94800; }
.dd__btn--p { background: #0a1240; color: #fff; border-color: #0a1240; }
.dd__btn--p:hover { background: #e67a00; color: #2a1300; border-color: #e67a00; }

.dd__kpis {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}
.dd__kpi {
  background: #fff;
  border: 1px solid #e6eaf5;
  border-radius: 5px;
  padding: 6px 8px;
  display: flex;
  flex-direction: column;
}
.dd__kpi span { font-weight: 700; font-size: 13px; color: #0a1240; }
.dd__kpi em { font-style: normal; font-size: 7.5px; color: #6c759a; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 2px; }

.dd__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.dd__panel-wide { grid-column: 1 / -1; }

.dd__bm { display: flex; flex-direction: column; gap: 4px; }
.dd__bm-row {
  display: grid;
  grid-template-columns: 60px 1fr 56px;
  align-items: center;
  gap: 6px;
  font-size: 8.5px;
}
.dd__bm-n { font-weight: 600; color: #1c233f; }
.dd__bm-track { height: 5px; background: #eef1fa; border-radius: 999px; overflow: hidden; }
.dd__bm-fill { height: 100%; background: linear-gradient(90deg, #16a094, #7a8aff); border-radius: 999px; }
.dd__bm-v { color: #1c233f; font-weight: 600; text-align: right; }
.dd__bm-v em { font-style: normal; color: #8a91c2; font-weight: 400; }

.dd__grade {
  display: flex;
  align-items: stretch;
  gap: 4px;
  height: 70px;
  margin-top: 4px;
}
.dd__grade-bar {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #f4f6fb;
  border-radius: 4px;
  padding: 4px;
  overflow: hidden;
  min-width: 30px;
}
.dd__grade-fill {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 100%;
  opacity: 0.85;
}
.dd__grade-l1, .dd__grade-l2 { position: relative; z-index: 1; color: #fff; font-weight: 600; }
.dd__grade-l1 { font-size: 7.5px; letter-spacing: 0.06em; }
.dd__grade-l2 { font-size: 11px; }
.dd__grade-foot {
  display: flex; justify-content: space-between;
  font-size: 7.5px; color: #6c759a;
  margin-top: 6px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.dd__grade-foot strong { color: #0a1240; font-size: 9px; letter-spacing: 0; text-transform: none; }

.dd__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 8px;
}
.dd__table th {
  text-align: left;
  font-size: 7px; letter-spacing: 0.14em;
  color: #6c759a;
  text-transform: uppercase;
  padding: 4px 6px;
  border-bottom: 1px solid #e6eaf5;
  font-weight: 600;
}
.dd__table td {
  padding: 5px 6px;
  border-bottom: 1px solid #f0f3fb;
  color: #1c233f;
}
.dd__id { font-family: "JetBrains Mono", monospace; color: #4a55a8; font-size: 7.5px; letter-spacing: 0.05em; }

.dd__audit { display: flex; flex-direction: column; gap: 3px; }
.dd__audit-row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 6px;
  font-size: 8.5px;
  padding: 4px 0;
  border-bottom: 1px dashed #e6eaf5;
}
.dd__audit-t { font-family: "JetBrains Mono", monospace; color: #6c759a; font-size: 8px; }
.dd__audit-e { color: #1c233f; }
.dd__audit-who { color: #8a91c2; font-size: 7.5px; }
.dd__consent {
  margin-top: 6px;
  padding: 5px 8px;
  background: #fff7f0;
  border: 1px dashed #ffd0a8;
  border-radius: 4px;
  display: flex; justify-content: space-between;
  font-size: 7.5px; color: #b94800;
  letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600;
}
.dd__consent strong { font-weight: 700; color: #2a1300; }

.laptop__iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  background: #F4F6FB;
  display: block;
}
