/* ============================================================
   PAICON 2026 — Homepage (scoped .pi-home)
   Ported from prototype styles.css (homepage v3 design system).
   Global element resets / :root duplicated into .pi-home so the page
   is self-contained. Nav/footer rules become inert (no .nav/.footer
   inside .pi-home) — the global theme.css owns nav + footer.
   ============================================================ */
.pi-home {
  
  --bg:       #fbfaf6;     
  --bg-2:     #f3f1ea;
  --bg-3:     #ebe7dc;

  
  --navy:     #0a1240;
  --navy-2:   #0f185a;
  --navy-deep:#06092a;

  --ink:      #0a1240;     
  --ink-2:    #3a426c;     
  --ink-3:    #6c759a;     
  --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;     
  --teal-soft: #3dd4c0;
  --gold:     #d8a23a;
}
.pi-home img, .pi-home svg { display: block; max-width: 100%; }
.pi-home a { color: inherit; text-decoration: none; }
.pi-home button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }
.pi-home input, .pi-home select { font: inherit; color: inherit; background: transparent; border: 0; }
.pi-home input:focus, .pi-home select:focus { outline: 1px solid var(--accent); outline-offset: 2px; }
.pi-home .page { position: relative; isolation: isolate; }
.pi-home .eyebrow {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: fit-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;
}
.pi-home .eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.pi-home .eyebrow--light { color: var(--accent); }
.pi-home .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;
}
.pi-home .btn--primary {
  background: var(--accent);
  color: #2a1300;
  border-color: var(--accent);
}
.pi-home .btn--primary:hover { transform: translateY(-1px); filter: brightness(1.05); }
.pi-home .btn--ghost {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(10,18,64,0.02);
}
.pi-home .btn--ghost:hover { background: rgba(10,18,64,0.05); border-color: rgba(10,18,64,0.2); }
.pi-home .btn--ghost-light { color: #fff; border-color: rgba(255,255,255,0.22); background: rgba(255,255,255,0.04); }
.pi-home .btn--ghost-light:hover { background: rgba(255,255,255,0.08); }
.pi-home .btn span[aria-hidden] { transition: transform .2s ease; }
.pi-home .btn:hover span[aria-hidden] { transform: translateX(2px); }
.pi-home .hl {
  background-image: linear-gradient(transparent 70%, rgba(230, 122, 0,0.35) 70%);
}
.pi-home .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;
}
.pi-home .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);
}
.pi-home .nav__inner {
  width: min(1320px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}
.pi-home .nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 13px;
}
.pi-home .nav__brand-word { color: var(--navy); }
.pi-home .nav__primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.pi-home .nav__primary > a, .pi-home .nav__btn {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  padding: 6px 0;
  position: relative;
  font-weight: 500;
}
.pi-home .nav__primary > a:hover, .pi-home .nav__btn:hover { color: var(--ink); }
.pi-home .nav__primary > a.nav__link--accent { color: var(--accent); }
.pi-home .nav__primary > a.nav__link--accent:hover { color: var(--accent); filter: brightness(0.9); }
.pi-home .nav__btn { display: inline-flex; align-items: center; gap: 6px; }
.pi-home .nav__has-menu { position: relative; }
.pi-home .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;
}
.pi-home .nav__menu--open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.pi-home .nav__menu-h {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.pi-home .nav__menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.pi-home .nav__menu-grid--single { grid-template-columns: 1fr; }
.pi-home .nav__menu:has(.nav__menu-grid--single) { min-width: 320px; }
.pi-home .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;
}
.pi-home .nav__menu-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 8px;
  margin: 2px -12px;
  transition: background .2s ease;
}
.pi-home .nav__menu-item:hover { background: var(--bg-2); }
.pi-home .nav__menu-name { font-weight: 600; font-size: 14px; color: var(--navy); }
.pi-home .nav__menu-tag { font-size: 12px; color: var(--ink-3); }
.pi-home .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;
}
.pi-home .nav__cta:hover { background: var(--navy-2); transform: translateY(-1px); }
.pi-home .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);
}
.pi-home .hero__bg, .pi-home .manifesto__bg, .pi-home .cta__bg {
  position: absolute; inset: 0; z-index: 0;
  opacity: 0.7;
}
.pi-home .dotmesh { position: absolute; inset: 0; width: 100%; height: 100%; }
.pi-home .hero__inner {
  position: relative;
  z-index: 1;
  width: min(1320px, 92vw);
  margin: 0 auto;
}
.pi-home .hero__top { max-width: 880px; margin: 0 auto; text-align: center; }
.pi-home .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;
}
.pi-home .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; }
}
.pi-home .hero__title {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 22px;
  line-height: 1;
}
.pi-home .hero__title-prefix {
  font-size: clamp(13px, 1vw, 15px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.pi-home .hero__title-name {
  font-weight: 700;
  font-size: clamp(56px, 8vw, 116px);
  letter-spacing: -0.035em;
  color: var(--navy);
}
.pi-home .hero__title-tag {
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 32px);
  letter-spacing: -0.01em;
  color: var(--ink-2);
}
.pi-home .hero__lede {
  margin: 8px auto 36px;
  max-width: 60ch;
  font-size: clamp(15px, 1.1vw, 18px);
  color: var(--ink-2);
  line-height: 1.6;
}
.pi-home .hero__ctas {
  display: flex; gap: 14px; align-items: center; justify-content: center; flex-wrap: wrap;
}
.pi-home .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);
}
.pi-home .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;
}
.pi-home .laptop {
  position: relative;
  margin: 56px auto 0;
  max-width: 1180px;
  perspective: 1600px;
}
.pi-home .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);
}
.pi-home .laptop__cam {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: #2a2a30;
  margin: 0 auto 10px;
}
.pi-home .laptop__screen {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: #f6f7fb;
  aspect-ratio: 16 / 10;
}
.pi-home .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);
}
.pi-home .laptop__base::before, .pi-home .laptop__base::after {
  content: "";
  position: absolute; top: 0;
  width: 14px; height: 14px;
  background: linear-gradient(180deg, #2a2a30, #16161a);
}
.pi-home .laptop__base::before { left: 0; border-radius: 0 0 0 16px; }
.pi-home .laptop__base::after { right: 0; border-radius: 0 0 16px 0; }
.pi-home .laptop__notch {
  position: absolute; left: 50%; top: 0;
  transform: translateX(-50%);
  width: 100px; height: 5px;
  background: #0a0a0d;
  border-radius: 0 0 8px 8px;
}
.pi-home .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;
}
.pi-home .laptop__caption {
  margin-top: 56px;
  text-align: center;
  font-style: italic;
  font-size: 14px;
  color: var(--ink-3);
}
.pi-home .laptop__caption em { color: var(--ink-2); }
.pi-home .laptop__cta {
  margin-top: 24px;
  text-align: center;
}
.pi-home .nav__brand-img { height: 60px; width: auto; display: block; }
.pi-home .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;
}
.pi-home .laptop__screen.is-revealed .laptop__iframe {
  filter: none;
  transform: none;
  pointer-events: auto;
}
.pi-home .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;
}
.pi-home .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%);
}
.pi-home .laptop__preview-inner {
  max-width: 560px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.pi-home .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);
}
.pi-home .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); }
}
.pi-home .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;
}
.pi-home .laptop__preview-sub {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
  max-width: 440px;
}
.pi-home .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);
}
.pi-home .laptop__preview:hover .laptop__preview-cta {
  transform: translateY(-1px);
}
.pi-home .laptop__preview-cta--hand {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.pi-home .laptop__preview:hover .laptop__preview-cta--hand {
  transform: none;
  color: #fff;
}
.pi-home .laptop__preview-hand {
  display: inline-block;
  transform-origin: 50% 80%;
  animation: lhand 1.4s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.35));
}
@keyframes lhand {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(4px); }
}
.pi-home .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;
}
.pi-home .laptop__disclaimer a {
  color: #e67a00;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.pi-home .laptop__disclaimer + .laptop__caption {
  margin-top: 14px;
}
.pi-home .dash {
  position: absolute; inset: 0;
  background: #f6f7fb;
  color: #1c233f;
  font-size: 9px;
  display: flex; flex-direction: column;
}
.pi-home .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;
}
.pi-home .dash__topbar-left { display: inline-flex; align-items: center; gap: 6px; }
.pi-home .dash__topbar-brand {
  font-weight: 700; font-size: 11px;
  color: #0a1240; letter-spacing: 0.04em;
}
.pi-home .dash__topbar-brand em { font-style: italic; font-weight: 500; color: #e67a00; }
.pi-home .dash__topbar-mid { color: #6c759a; font-size: 8.5px; }
.pi-home .dash__topbar-right { display: inline-flex; gap: 6px; align-items: center; }
.pi-home .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;
}
.pi-home .dash__chip:hover { background: #eef1fa; color: #0a1240; }
.pi-home .dash__chip--accent { background: #0a1240; color: #fff; border-color: #0a1240; }
.pi-home .dash__chip--accent:hover { background: #0f185a; color: #fff; }
.pi-home .dash__chip--on { background: #e67a00; border-color: #e67a00; color: #2a1300; }
.pi-home .dash__body {
  flex: 1;
  display: grid;
  grid-template-columns: 110px 130px 1fr;
  min-height: 0;
}
.pi-home .dash__side {
  background: #0a1240;
  color: #cfd5f5;
  padding: 10px 8px;
  display: flex; flex-direction: column; gap: 5px;
  font-size: 8.5px;
}
.pi-home .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;
}
.pi-home .dash__side-item:hover { background: rgba(255,255,255,0.05); }
.pi-home .dash__side-item--on { background: rgba(255,255,255,0.10); color: #fff; }
.pi-home .dash__side-dot {
  display: inline-block;
  width: 4px; height: 4px;
  background: #e67a00; border-radius: 999px;
  flex-shrink: 0;
}
.pi-home .dash__side-h {
  margin-top: 8px;
  font-size: 7.5px; letter-spacing: 0.16em;
  color: #6e76a8;
  text-transform: uppercase;
}
.pi-home .dash__side-sub {
  font-size: 8px;
  color: #aeb6e0;
  padding-left: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}
.pi-home .dash__side-sub:hover { color: #fff; }
.pi-home .dash__filters {
  background: #f0f3fb;
  border-right: 1px solid #e1e6f3;
  padding: 10px 8px;
  display: flex; flex-direction: column; gap: 8px;
  overflow: hidden;
}
.pi-home .dash__filters-h {
  display: flex; justify-content: space-between;
  font-size: 8px; letter-spacing: 0.16em;
  color: #6c759a;
  text-transform: uppercase;
  font-weight: 600;
}
.pi-home .dash__filters-h button {
  color: #4a55a8;
  cursor: pointer;
  font-size: 8px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600;
}
.pi-home .dash__filters-h button:hover { color: #0a1240; }
.pi-home .dash__filters-group { display: flex; flex-direction: column; gap: 3px; }
.pi-home .dash__filters-label {
  font-size: 7.5px; letter-spacing: 0.18em;
  color: #6c759a;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.pi-home .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;
}
.pi-home .dash__pill:hover { background: #eef1fa; border-color: #c0c9f5; }
.pi-home .dash__pill--on {
  background: #e0e6ff;
  color: #2a368a;
  border-color: #c0c9f5;
  font-weight: 600;
}
.pi-home .dash__main {
  padding: 10px 12px;
  overflow: hidden;
  background: #f6f7fb;
}
.pi-home .dash__title {
  font-weight: 700; font-size: 12px;
  color: #0a1240;
  margin-bottom: 8px;
}
.pi-home .dash__title-sub { font-weight: 400; font-size: 8.5px; color: #6c759a; margin-left: 6px; }
.pi-home .dash__kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 8px;
}
.pi-home .dash__kpi {
  background: #fff;
  border: 1px solid #e6eaf5;
  border-radius: 5px;
  padding: 6px 8px;
}
.pi-home .dash__kpi-v { font-weight: 700; font-size: 13px; color: #0a1240; }
.pi-home .dash__kpi-l1 {
  font-size: 7.5px; color: #6c759a;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-top: 2px;
}
.pi-home .dash__kpi-l2 { font-size: 7.5px; color: #8a91c2; margin-top: 1px; }
.pi-home .dash__panel-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 6px;
}
.pi-home .dash__panel-row--three { grid-template-columns: repeat(3, 1fr); }
.pi-home .dash__panel {
  background: #fff;
  border: 1px solid #e6eaf5;
  border-radius: 5px;
  padding: 7px 9px;
}
.pi-home .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;
}
.pi-home .dash__panel-tag {
  background: #ffe7d4;
  color: #b94800;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 99px;
  font-size: 7px;
}
.pi-home .dash__panel-sub {
  font-weight: 600; font-size: 10px; color: #1c233f; margin: 4px 0 6px;
}
.pi-home .worldmap { width: 100%; height: 95px; }
.pi-home .donut { display: flex; align-items: center; gap: 6px; }
.pi-home .donut svg { width: 95px; height: 95px; flex-shrink: 0; }
.pi-home .donut__num { font-weight: 700; font-size: 18px; fill: #0a1240; }
.pi-home .donut__legend {
  list-style: none; margin: 0; padding: 0;
  font-size: 8px; color: #475184;
  display: flex; flex-direction: column; gap: 3px;
  flex: 1;
}
.pi-home .donut__legend li { display: flex; align-items: center; gap: 5px; }
.pi-home .donut__legend em { font-style: normal; margin-left: auto; color: #1c233f; font-weight: 600; }
.pi-home .donut__sw { width: 8px; height: 8px; border-radius: 2px; }
.pi-home .bars { display: flex; flex-direction: column; gap: 4px; }
.pi-home .bar {
  display: grid;
  grid-template-columns: 70px 1fr 26px;
  align-items: center;
  gap: 6px;
  font-size: 8px;
}
.pi-home .bar__lbl { color: #475184; }
.pi-home .bar__track { height: 5px; background: #eef1fa; border-radius: 999px; overflow: hidden; }
.pi-home .bar__fill { height: 100%; border-radius: 999px; transition: width .5s ease; }
.pi-home .bar__pct { color: #1c233f; font-weight: 600; text-align: right; }
.pi-home .dash__metrics { display: flex; flex-direction: column; gap: 4px; }
.pi-home .metric {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 8.5px;
  padding: 3px 0;
  border-bottom: 1px dashed #e6eaf5;
}
.pi-home .metric:last-child { border-bottom: 0; }
.pi-home .metric__k { color: #475184; }
.pi-home .metric__v { font-weight: 700; color: #1c233f; }
.pi-home .metric__v--accent { color: #16a094; }
.pi-home .agent {
  background: #fff;
  height: 100%;
  display: flex; flex-direction: column;
  font-size: 9px;
  border-radius: 0;
}
.pi-home .agent__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 8px;
  background: linear-gradient(90deg, #0a1240, #1c2780);
  color: #fff;
}
.pi-home .agent__head-title { font-weight: 700; font-size: 11px; letter-spacing: 0.04em; }
.pi-home .agent__head-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 8px; letter-spacing: 0.16em; text-transform: uppercase;
  color: #aeb6e0;
}
.pi-home .agent__thread {
  flex: 1;
  overflow: auto;
  padding: 8px 10px;
  display: flex; flex-direction: column;
  gap: 8px;
}
.pi-home .agent__msg { display: flex; flex-direction: column; gap: 3px; }
.pi-home .agent__msg-role {
  font-family: "JetBrains Mono", monospace;
  font-size: 7px; letter-spacing: 0.16em; text-transform: uppercase;
  color: #6c759a;
}
.pi-home .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;
}
.pi-home .agent__msg--user .agent__msg-body {
  background: #0a1240; color: #fff; border-color: #0a1240;
  align-self: flex-end;
}
.pi-home .agent__msg--user { align-items: flex-end; }
.pi-home .agent__msg--user .agent__msg-role { color: #6c759a; }
.pi-home .agent__cohorts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-top: 4px;
  max-width: 88%;
}
.pi-home .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;
}
.pi-home .agent__cohort:hover { border-color: #e67a00; background: #fff7f0; }
.pi-home .agent__cohort-n {
  font-weight: 600; font-size: 9px; color: #0a1240;
  grid-column: 1; grid-row: 1;
}
.pi-home .agent__cohort-k {
  font-size: 7.5px; color: #6c759a;
  grid-column: 1; grid-row: 2;
}
.pi-home .agent__cohort-arrow {
  grid-column: 2; grid-row: 1 / span 2;
  align-self: center;
  color: #e67a00;
}
.pi-home .agent__busy {
  display: inline-flex; gap: 4px;
  width: auto;
  padding: 8px 10px;
}
.pi-home .agent__busy span {
  width: 5px; height: 5px;
  background: #6c759a;
  border-radius: 999px;
  display: inline-block;
  animation: bounce 1.2s ease-in-out infinite;
}
.pi-home .agent__busy span:nth-child(2) { animation-delay: 0.15s; }
.pi-home .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; }
}
.pi-home .agent__presets {
  padding: 6px 10px;
  display: flex; gap: 4px;
  flex-wrap: wrap;
  border-top: 1px solid #e6eaf5;
  background: #f8f9fd;
}
.pi-home .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;
}
.pi-home .agent__preset:hover { background: #fff7f0; border-color: #e67a00; color: #b94800; }
.pi-home .agent__input {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px;
  padding: 6px 8px;
  border-top: 1px solid #e6eaf5;
  background: #fff;
}
.pi-home .agent__input input {
  border: 1px solid #e1e6f3;
  border-radius: 5px;
  padding: 5px 8px;
  font-size: 9px;
  background: #fff;
  color: #1c233f;
}
.pi-home .agent__send {
  background: #e67a00;
  color: #2a1300;
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 9px; font-weight: 600;
  cursor: pointer;
}
.pi-home .agent__send:hover { filter: brightness(1.05); }
.pi-home .vprop {
  position: relative;
  padding: 140px 0 100px;
  background: var(--bg);
}
.pi-home .vprop__inner {
  width: min(1320px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.pi-home .vprop__title {
  font-weight: 700;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 0 0 28px;
  color: var(--navy);
}
.pi-home .vprop__title em { color: var(--accent); font-style: normal; }
.pi-home .vprop__lede {
  margin: 0 0 56px;
  max-width: 50ch;
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.6;
}
.pi-home .vprop__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pi-home .vprop__stat-v {
  font-weight: 700;
  font-size: clamp(44px, 4vw, 62px);
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
}
.pi-home .vprop__stat-l { margin-top: 10px; font-size: 13px; color: var(--ink-2); }
.pi-home .vprop__cards { display: flex; flex-direction: column; gap: 14px; }
.pi-home .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;
}
.pi-home .aud-card:hover {
  transform: translateX(2px);
  border-color: var(--ink-3);
  box-shadow: 0 6px 20px rgba(10,18,64,0.06);
}
.pi-home .aud-card__body { padding: 22px 26px; }
.pi-home .aud-card__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
}
.pi-home .aud-card__head h3 {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
  color: var(--navy);
}
.pi-home .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;
}
.pi-home .aud-card__body p {
  margin: 0; font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
}
.pi-home .manifesto {
  position: relative;
  padding: 60px 0;
  min-height: 400px;
  display: flex;
  align-items: center;
  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);
}
.pi-home .manifesto__inner {
  position: relative; z-index: 1;
  width: min(1320px, 92vw);
  margin: 0 auto;
  text-align: center;
}
.pi-home .manifesto__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "JetBrains Mono", 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: 36px;
}
.pi-home .manifesto__eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.pi-home .manifesto__title {
  font-weight: 700;
  font-size: clamp(48px, 6.4vw, 96px);
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin: 0 auto;
  max-width: min(1240px, 92vw);
  color: #fff;
}
.pi-home .manifesto__title em { font-style: normal; font-weight: 800; color: var(--accent); }
.pi-home .manifesto__line2 { display: block; margin-top: 0.5em; }
.pi-home .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;
}
.pi-home .pfeat {
  padding: 140px 0;
  background: var(--bg-2);
}
.pi-home .pfeat__inner {
  width: min(1320px, 92vw);
  margin: 0 auto;
}
.pi-home .pfeat__head { max-width: 760px; margin-bottom: 48px; }
.pi-home .pfeat__title {
  font-weight: 700;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 0 0 28px;
  color: var(--navy);
}
.pi-home .pfeat__title em { font-style: normal; color: var(--accent); }
.pi-home .pfeat__lede {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 55ch;
  line-height: 1.6;
  margin: 0;
}
.pi-home .pfeat__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.pi-home .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;
}
.pi-home .feat:hover {
  border-color: var(--ink-3);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(10,18,64,0.06);
}
.pi-home .feat--wide { grid-column: span 3; }
.pi-home .feat:nth-child(2) { grid-column: span 3; }
.pi-home .feat:nth-child(3), .pi-home .feat:nth-child(4), .pi-home .feat:nth-child(5) { grid-column: span 2; }
.pi-home .feat__head {
  display: flex; align-items: center; justify-content: flex-end;
  gap: 12px;
  margin-bottom: 6px;
  min-height: 60px;
}
.pi-home .feat__head--modalities, .pi-home .feat__head--agnostic, .pi-home .feat__head--licensing {
  align-items: flex-start;
  min-height: 60px;
}
.pi-home .feat__num {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  flex-shrink: 0;
}
.pi-home .feat__t {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.2;
  color: var(--navy);
}
.pi-home .feat__short {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}
.pi-home .feat__d {
  margin: 0;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
}
.pi-home .feat__tags {
  list-style: none;
  margin: auto 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 12px;
}
.pi-home .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);
}
.pi-home .fviz { flex: 1; max-width: 70%; }
.pi-home .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;
}
.pi-home .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;
}
.pi-home .modlayer svg { flex-shrink: 0; width: 14px; height: 14px; }
.pi-home .fviz--agn-orbit {
  position: relative;
  width: 150px; height: 110px;
  align-self: flex-start;
  flex: 0 0 auto;
}
.pi-home .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;
}
.pi-home .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;
}
.pi-home .fviz--mod {
  display: flex; flex-wrap: wrap; gap: 4px; justify-content: flex-end;
}
.pi-home .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);
}
.pi-home .fviz--agn { width: 100%; height: 50px; }
.pi-home .fviz--agn-pills {
  display: flex; flex-wrap: wrap; gap: 6px; justify-content: flex-end;
}
.pi-home .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);
}
.pi-home .fviz--agent {
  display: flex; flex-direction: column; gap: 6px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  width: 100%;
  align-items: flex-end;
}
.pi-home .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;
}
.pi-home .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; } }
.pi-home .fviz__answer {
  display: flex; gap: 4px; padding: 8px 10px;
  background: rgba(91,127,255,0.08);
  border-radius: 6px; align-self: flex-end;
}
.pi-home .fviz__dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #5b7fff;
  animation: featDot 1.4s ease-in-out infinite;
}
.pi-home .fviz__dot:nth-child(2) { animation-delay: 0.2s; }
.pi-home .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); }
}
.pi-home .fviz--pipe {
  display: flex; align-items: center; gap: 4px;
  flex-wrap: wrap; width: 100%;
}
.pi-home .fviz--steps {
  display: flex; align-items: center; gap: 4px;
  flex-wrap: wrap;
  max-width: 220px;
  align-self: flex-start;
  justify-content: flex-end;
}
.pi-home .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;
}
.pi-home .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);
}
.pi-home .fviz__step--final {
  background: var(--navy); color: #fff; border-color: var(--navy);
}
.pi-home .fviz__arr { color: var(--ink-3); font-size: 12px; }
.pi-home .fviz--lic { width: 56px; height: 56px; }
.pi-home .fviz--lic-doc { width: 100%; max-width: 110px; align-self: flex-start; }
.pi-home .fviz--lic-pills {
  display: flex; flex-wrap: wrap; gap: 6px; justify-content: flex-end;
}
@media (max-width: 1024px) {
.pi-home .pfeat__grid { grid-template-columns: repeat(2, 1fr); }
.pi-home .feat, .pi-home .feat--wide, .pi-home .feat:nth-child(2), .pi-home .feat:nth-child(3), .pi-home .feat:nth-child(4), .pi-home .feat:nth-child(5) { grid-column: span 1; }
}
@media (max-width: 720px) {
.pi-home .pfeat__grid { grid-template-columns: 1fr; }
}
.pi-home .usecase {
  padding: 140px 0;
  background: var(--bg);
}
.pi-home .usecase__inner {
  width: min(1320px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.pi-home .usecase__title {
  display: flex; flex-direction: column;
  gap: 10px;
  margin: 0 0 28px;
}
.pi-home .usecase__name {
  font-weight: 700;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1.04;
  color: var(--navy);
}
.pi-home .usecase__tag {
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--ink-2);
  letter-spacing: -0.005em;
}
.pi-home .usecase__lede {
  font-size: 17px;
  color: var(--ink-2);
  margin: 0 0 28px;
  max-width: 50ch;
  line-height: 1.6;
}
.pi-home .usecase__bullets {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pi-home .usecase__bullets li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
}
.pi-home .usecase__bullet {
  display: inline-block;
  width: 8px; height: 8px;
  margin-top: 8px;
  background: var(--accent, #e67a00);
  border-radius: 999px;
}
.pi-home .usecase__viz { background: transparent; }
.pi-home .ssv { display: flex; flex-direction: column; color: #fff; font-family: "Inter", sans-serif; }
.pi-home .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);
}
.pi-home .ssv__brand { display: flex; align-items: center; gap: 8px; color: var(--accent); }
.pi-home .ssv__brand-mark { display: inline-flex; }
.pi-home .ssv__brand-name { font-weight: 600; font-size: 13px; color: #fff; letter-spacing: -0.01em; }
.pi-home .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;
}
.pi-home .ssv__topbar-right { display: flex; align-items: center; gap: 10px; }
.pi-home .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);
}
.pi-home .ssv__status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #e67a00;
  box-shadow: 0 0 8px rgba(230, 122, 0,0.6);
}
.pi-home .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; } }
.pi-home .ssv__body { display: grid; grid-template-columns: 110px 1fr; gap: 0; position: relative; }
.pi-home .ssv--locked .ssv__rail, .pi-home .ssv--locked .ssv__main {
  filter: blur(11px) saturate(0.75);
  pointer-events: none;
  user-select: none;
}
.pi-home .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;
}
.pi-home .ssv__preview-inner {
  display: flex; flex-direction: column; gap: 14px;
  max-width: 460px;
  align-items: flex-start;
}
.pi-home .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);
}
.pi-home .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;
}
.pi-home .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;
}
.pi-home .ssv__preview-sub {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
  max-width: 420px;
}
.pi-home .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;
}
.pi-home .ssv__preview:hover .ssv__preview-cta { transform: translateY(-1px); }
.pi-home .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);
}
.pi-home .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;
}
.pi-home .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;
}
.pi-home .ssv__thumb:hover { border-color: rgba(255,255,255,0.25); }
.pi-home .ssv__thumb--on { border-color: var(--accent); background: rgba(230, 122, 0,0.08); }
.pi-home .ssv__thumb-img {
  display: block; width: 100%; height: 40px;
  border-radius: 3px; overflow: hidden;
}
.pi-home .ssv__thumb-meta { display: flex; flex-direction: column; gap: 2px; }
.pi-home .ssv__thumb-code {
  font-family: "Inter", sans-serif;
  font-size: 9px; color: #fff; letter-spacing: 0.05em;
}
.pi-home .ssv__thumb-origin {
  font-family: "Inter", sans-serif;
  font-size: 8px; color: var(--ink-2-on-dark); letter-spacing: 0.08em; text-transform: uppercase;
}
.pi-home .ssv__main { display: grid; grid-template-columns: 1.3fr 1fr; gap: 0; }
.pi-home .ssv__viewer {
  position: relative;
  border-right: 1px solid var(--line-on-dark);
  min-height: 320px;
  display: flex; flex-direction: column;
  background: #0a0506;
}
.pi-home .ssv__viewtabs {
  display: flex; gap: 2px;
  padding: 6px;
  border-bottom: 1px solid var(--line-on-dark);
  background: rgba(0,0,0,0.3);
}
.pi-home .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;
}
.pi-home .ssv__viewtab:hover { color: #fff; background: rgba(255,255,255,0.04); }
.pi-home .ssv__viewtab--on { color: var(--accent); border-color: rgba(230, 122, 0,0.4); background: rgba(230, 122, 0,0.08); }
.pi-home .ssv__viewer-stage {
  position: relative;
  flex: 1;
  min-height: 260px;
  overflow: hidden;
}
.pi-home .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; } }
.pi-home .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;
}
.pi-home .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);
}
.pi-home .ssv__legend-bar {
  height: 6px; border-radius: 2px;
  background: linear-gradient(90deg, #2c4894, #3dd4c0, #f9d34d, #e67a00, #d94545);
}
.pi-home .ssv__legend-ends {
  display: flex; justify-content: space-between;
  font-family: "Inter", sans-serif;
  font-size: 8px; color: var(--ink-2-on-dark);
}
.pi-home .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;
}
.pi-home .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);
}
.pi-home .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;
}
.pi-home .ssv__modal-close:hover { color: #fff; }
.pi-home .ssv__modal-eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.pi-home .ssv__modal-title {
  margin: 0 0 8px;
  font-size: 20px; font-weight: 600;
  letter-spacing: -0.015em;
  color: #fff;
}
.pi-home .ssv__modal-lede {
  margin: 0 0 18px;
  font-size: 13px; line-height: 1.55;
  color: rgba(255,255,255,0.7);
}
.pi-home .ssv__modal-form { display: flex; flex-direction: column; gap: 10px; }
.pi-home .ssv__modal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pi-home .ssv__modal-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.pi-home .ssv__modal-field .ssv__modal-input { width: 100%; box-sizing: border-box; }
.pi-home .ssv__modal-label {
  font-family: "Inter", sans-serif;
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-2-on-dark);
}
.pi-home .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;
}
.pi-home .ssv__modal-input:focus { border-color: var(--accent); }
.pi-home .ssv__modal-input::placeholder { color: rgba(255,255,255,0.35); }
.pi-home .ssv__modal-submit { margin-top: 4px; }
.pi-home .ssv__modal-fine {
  margin: 4px 0 0;
  font-size: 11px; line-height: 1.5;
  color: var(--ink-2-on-dark);
}
.pi-home .ssv__modal-success { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; padding: 12px 0; }
.pi-home .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;
}
.pi-home .ssv__viewer-hud {
  position: absolute; bottom: 8px; left: 8px;
  display: flex; gap: 5px; flex-wrap: wrap;
}
.pi-home .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);
}
.pi-home .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);
}
.pi-home .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%; } }
.pi-home .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;
}
.pi-home .ssv__readout {
  padding: 16px;
  display: flex; flex-direction: column; gap: 14px;
  background: rgba(0,0,0,0.18);
}
.pi-home .ssv__readout-head {
  display: flex; align-items: baseline; justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line-on-dark);
}
.pi-home .ssv__readout-title { font-size: 12px; font-weight: 600; letter-spacing: -0.005em; color: #fff; }
.pi-home .ssv__readout-id {
  font-family: "Inter", sans-serif;
  font-size: 10px; color: var(--ink-2-on-dark); letter-spacing: 0.06em;
}
.pi-home .ssv__verdict {
  display: flex; flex-direction: column; gap: 2px;
  padding: 10px 12px;
  border-radius: 6px;
  border-left: 3px solid;
}
.pi-home .ssv__verdict--msi { background: rgba(61,212,192,0.08); border-left-color: #3dd4c0; }
.pi-home .ssv__verdict--mss { background: rgba(230, 122, 0,0.08); border-left-color: var(--accent); }
.pi-home .ssv__verdict-lbl {
  font-family: "Inter", sans-serif;
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-2-on-dark);
}
.pi-home .ssv__verdict-val { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; color: #fff; }
.pi-home .ssv__verdict-conf {
  font-family: "Inter", sans-serif;
  font-size: 10px; color: var(--ink-2-on-dark); letter-spacing: 0.04em;
}
.pi-home .ssv__bars { display: flex; flex-direction: column; gap: 8px; }
.pi-home .ssv__bar { display: flex; flex-direction: column; gap: 4px; }
.pi-home .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;
}
.pi-home .ssv__bar-val { color: #fff; }
.pi-home .ssv__bar-track {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.pi-home .ssv__bar-fill { height: 100%; transition: width .5s cubic-bezier(.2,.7,.2,1); }
.pi-home .ssv__bar-fill--msi { background: #3dd4c0; }
.pi-home .ssv__bar-fill--mss { background: var(--accent); }
.pi-home .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;
}
.pi-home .ssv__metrics--locked .ssv__metric-val {
  filter: blur(5px);
  user-select: none;
  letter-spacing: 0.02em;
}
.pi-home .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;
}
.pi-home .ssv__metrics-lock-icon {
  font-size: 11px;
  filter: grayscale(1) brightness(1.6);
}
.pi-home .ssv__metrics div { display: flex; flex-direction: column; gap: 1px; }
.pi-home .ssv__metrics dt {
  font-family: "Inter", sans-serif;
  font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-2-on-dark);
}
.pi-home .ssv__metrics dd {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 13px; font-weight: 600; color: #fff;
}
.pi-home .ssv__actions { display: flex; gap: 8px; }
.pi-home .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;
}
.pi-home .ssv__btn--primary {
  background: var(--accent); border-color: var(--accent); color: var(--navy);
}
.pi-home .ssv__btn--primary:hover { transform: translateY(-1px); }
.pi-home .ssv__btn--ghost {
  background: transparent; border-color: var(--line-on-dark); color: rgba(255,255,255,0.85);
}
.pi-home .ssv__btn--ghost:hover { background: rgba(255,255,255,0.05); }
.pi-home .ssv__svg { width: 100%; flex: 1; display: block; }
.pi-home .ssv__lab {
  font-family: "Inter", sans-serif;
  font-size: 9px; letter-spacing: 0.14em;
}
@media (max-width: 900px) {
.pi-home .ssv__body { grid-template-columns: 1fr; }
.pi-home .ssv__rail {
    flex-direction: row; overflow-x: auto;
    border-right: none; border-bottom: 1px solid var(--line-on-dark);
  }
.pi-home .ssv__thumb { min-width: 100px; }
.pi-home .ssv__main { grid-template-columns: 1fr; }
.pi-home .ssv__viewer { border-right: none; border-bottom: 1px solid var(--line-on-dark); }
}
.pi-home .ssv__head--legacy {
  display: flex; align-items: center; gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-on-dark);
}
.pi-home .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;
}
.pi-home .ssv__tab--on { background: rgba(255,255,255,0.08); color: #fff; }
.pi-home .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;
}
.pi-home .ssv__slide {
  margin: 14px 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line-on-dark);
}
.pi-home .ssv__svg { width: 100%; height: auto; display: block; }
.pi-home .ssv__lab {
  font-family: "Inter", sans-serif;
  font-size: 9px;
  letter-spacing: 0.14em;
}
.pi-home .ssv__foot {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.pi-home .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);
}
.pi-home .ssv__chip--ok { color: var(--teal-soft); border-color: rgba(61,212,192,0.4); }
.pi-home .testi {
  padding: 120px 0;
  background: var(--bg-2);
}
.pi-home .testi__inner {
  width: min(1320px, 92vw);
  margin: 0 auto;
}
.pi-home .testi__head { max-width: 700px; margin-bottom: 56px; }
.pi-home .testi__title {
  font-weight: 700;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 0;
  color: var(--navy);
}
.pi-home .testi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pi-home .testi-card {
  position: relative;
  margin: 0;
  padding: 28px 28px 28px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.pi-home .testi-card__bar {
  display: none;
}
.pi-home .testi-card blockquote {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
}
.pi-home .testi-card figcaption {
  display: flex; flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.pi-home .testi-card__name { font-weight: 600; font-size: 14px; color: var(--navy); }
.pi-home .testi-card__org {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.pi-home .partners {
  margin-top: 80px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
}
.pi-home .partners__lbl {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.pi-home .partners__rule { height: 1px; background: var(--line); }
.pi-home .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%);
}
.pi-home .partners__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: partnersScroll 28s linear infinite;
}
.pi-home .partners__marquee:hover .partners__track { animation-play-state: paused; }
@keyframes partnersScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
.pi-home .partners__track { animation: none; }
}
.pi-home .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);
}
.pi-home .partner-mark:hover {
  filter: saturate(1);
  transform: translateY(-1px);
}
.pi-home .partner-mark svg {
  max-width: 100%;
  height: 36px;
  transform: translateY(-1px);
}
.pi-home .cta {
  position: relative;
  padding: 140px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 50% 100%, rgba(230, 122, 0,0.10) 0%, transparent 60%),
    var(--navy-deep);
  color: #fff;
}
.pi-home .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;
}
.pi-home .cta .eyebrow { color: var(--accent); }
.pi-home .cta__title {
  font-weight: 700;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 0 0 24px;
  color: #fff;
}
.pi-home .cta__title em { font-style: normal; color: var(--accent); }
.pi-home .cta__lede {
  font-size: 17px;
  color: var(--ink-2-on-dark);
  max-width: 50ch;
  margin: 0 0 32px;
  line-height: 1.6;
}
.pi-home .cta__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.pi-home .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);
}
.pi-home .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);
}
.pi-home .cta__field { display: flex; flex-direction: column; gap: 6px; }
.pi-home .cta__field span {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3-on-dark);
}
.pi-home .cta__field input, .pi-home .cta__field select, .pi-home .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;
}
.pi-home .cta__field textarea {
  resize: vertical;
  min-height: 88px;
  line-height: 1.5;
}
.pi-home .cta__field input::placeholder, .pi-home .cta__field textarea::placeholder { color: var(--ink-3-on-dark); }
.pi-home .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;
}
.pi-home .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;
}
.pi-home .cta__submit:hover { filter: brightness(1.05); }
.pi-home .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;
}
.pi-home .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;
}
.pi-home .cta__tab:hover { color: #fff; }
.pi-home .cta__tab--on {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(230,122,0,0.30);
}
.pi-home .cta__tab--on:hover { color: #fff; }
.pi-home .cta__tab-icon { display: inline-flex; align-items: center; }
.pi-home .cta__demo { display: flex; flex-direction: column; gap: 12px; }
.pi-home .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;
}
.pi-home .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;
}
.pi-home .cta__cal-month { font-weight: 600; font-size: 15px; letter-spacing: -0.01em; color: #fff; }
.pi-home .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;
}
.pi-home .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);
}
.pi-home .cta__cal-dow span { text-align: center; padding: 4px 0; }
.pi-home .cta__cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; }
.pi-home .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;
}
.pi-home .cta__cal-cell--empty { background: transparent; border-color: transparent; }
.pi-home .cta__cal-cell--past { color: rgba(255,255,255,0.20); text-decoration: line-through; }
.pi-home .cta__cal-cell--off { color: rgba(255,255,255,0.25); }
.pi-home .cta__cal-cell--booked { color: rgba(255,255,255,0.4); }
.pi-home .cta__cal-cell--booked .cta__cal-num { text-decoration: line-through; }
.pi-home .cta__cal-cell--open {
  background: rgba(230,122,0,0.08);
  border-color: rgba(230,122,0,0.30);
  color: #fff;
}
.pi-home .cta__cal-cell--today {
  outline: 1.5px solid var(--accent);
  outline-offset: -1.5px;
}
.pi-home .cta__cal-num { line-height: 1; }
.pi-home .cta__cal-dot {
  width: 4px; height: 4px; border-radius: 999px; background: var(--accent);
}
.pi-home .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);
}
.pi-home .cta__cal-legend > span { display: inline-flex; align-items: center; gap: 6px; }
.pi-home .cta__cal-sw {
  width: 10px; height: 10px; border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.15);
}
.pi-home .cta__cal-sw--open { background: rgba(230,122,0,0.45); border-color: rgba(230,122,0,0.6); }
.pi-home .cta__cal-sw--booked { background: rgba(255,255,255,0.08); }
.pi-home .cta__cal-sw--off { background: rgba(255,255,255,0.03); }
.pi-home .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);
}
.pi-home .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;
}
.pi-home .cta__cal-overlay strong { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; color: #fff; }
.pi-home .cta__cal-overlay-lede { font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.65); }
.pi-home .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;
}
.pi-home .cta__cal-overlay-cta:hover { filter: brightness(1.08); }
.pi-home .cta__msg { display: flex; flex-direction: column; gap: 14px; }
.pi-home .footer {
  width: min(1320px, 92vw);
  margin: 0 auto;
  padding: 80px 0 40px;
}
.pi-home .footer__top {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr 1.55fr;
  gap: 64px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
  align-items: stretch;
}
.pi-home .footer__brand {
  display: flex;
  flex-direction: column;
}
.pi-home .footer__brand p {
  margin: 18px 0 32px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
  max-width: 38ch;
}
.pi-home .footer__brand .footer__connect { margin-top: 12px; }
.pi-home .footer__connect .footer__col-h { margin-bottom: 22px; }
.pi-home .footer__logo {
  display: inline-flex; align-items: center;
  margin-bottom: 4px;
}
.pi-home .footer__logo img { filter: none !important; }
.pi-home .footer__nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
  align-content: start;
}
.pi-home .footer__nav > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pi-home .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;
}
.pi-home .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;
}
.pi-home .footer__nav a:hover { color: var(--accent); transform: translateX(2px); }
.pi-home .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;
}
.pi-home .footer__nav a:hover .footer__arrow { color: var(--accent); }
.pi-home .footer__news { display: flex; flex-direction: column; }
.pi-home .footer__news-lede {
  margin: 0 0 16px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: none;
}
.pi-home .footer__news-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
}
.pi-home .footer__news-fields input {
  grid-column: span 1;
  padding: 12px 14px;
  font-size: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  color: var(--navy);
}
.pi-home .footer__news-fields input[type="email"] { grid-column: 1 / -1; }
.pi-home .footer__news-fields input::placeholder { color: var(--ink-3); }
.pi-home .footer__news-fields input:focus { outline: none; border-color: var(--accent); }
.pi-home .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;
}
.pi-home .footer__news-btn:hover { filter: brightness(1.05); transform: translateY(-1px); }
.pi-home .footer__social {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pi-home .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;
}
.pi-home .footer__social a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
}
.pi-home .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;
}
.pi-home .footer__legal a:hover { color: var(--navy); }
.pi-home .footer__cert { letter-spacing: 0.22em; }
@media (max-width: 1080px) {
.pi-home .nav__primary { display: none; }
.pi-home .nav__inner { grid-template-columns: 1fr auto; }
.pi-home .vprop__inner { grid-template-columns: 1fr; gap: 56px; }
.pi-home .usecase__inner { grid-template-columns: 1fr; gap: 48px; }
.pi-home .testi__grid { grid-template-columns: 1fr; }
.pi-home .cta__inner { grid-template-columns: 1fr; gap: 48px; }
.pi-home .footer__top { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
.pi-home .hero { padding-top: 110px; }
.pi-home .hero__title-name { font-size: clamp(44px, 14vw, 80px); }
.pi-home .vprop__stats { grid-template-columns: repeat(2, 1fr); }
.pi-home .footer__cols { grid-template-columns: 1fr 1fr; }
}
.pi-home .dash__topbar-sep { color: #c0c9d8; margin: 0 6px; }
.pi-home .dash__topbar-crumb { color: #475184; font-size: 9px; font-weight: 500; }
.pi-home .dash__topbar-mid { display: flex; justify-content: center; }
.pi-home .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;
}
.pi-home .dash__chip--admin {
  background: #0a1240; color: #fff; border-color: #0a1240;
  font-weight: 700;
}
.pi-home .dash__side { gap: 2px; }
.pi-home .dash__side-ico {
  display: inline-block; width: 12px;
  text-align: center;
  color: #e67a00;
  font-size: 9px;
}
.pi-home .dash__side-item.on { background: rgba(255,255,255,0.10); color: #fff; }
.pi-home .dash__side-item.on .dash__side-ico { color: #e67a00; }
.pi-home .dash__pill.on {
  background: #e0e6ff;
  color: #2a368a;
  border-color: #c0c9f5;
  font-weight: 600;
}
.pi-home .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;
}
.pi-home .dash__filters-tally strong { color: #0a1240; font-size: 11px; letter-spacing: 0; text-transform: none; font-weight: 700; }
.pi-home .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;
}
.pi-home .dash__panel-foot strong { color: #0a1240; font-size: 10px; letter-spacing: 0; text-transform: none; }
.pi-home .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;
}
.pi-home .dash__link:hover { color: #c96e00; }
.pi-home .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;
}
.pi-home .dash__status-dot {
  display: inline-block;
  width: 5px; height: 5px;
  background: #3dd4c0;
  border-radius: 999px;
  animation: pulse 2s infinite;
}
.pi-home .dash__status-sep { color: #4a55a8; }
.pi-home .dash__status-spacer { flex: 1; }
.pi-home .ov { display: flex; flex-direction: column; gap: 6px; height: 100%; }
.pi-home .ov__kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.pi-home .ov__kpi {
  background: #fff;
  border: 1px solid #e6eaf5;
  border-radius: 5px;
  padding: 6px 8px;
}
.pi-home .ov__kpi-v { font-weight: 700; font-size: 14px; color: #0a1240; }
.pi-home .ov__kpi-l1 { font-size: 7.5px; color: #6c759a; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 2px; }
.pi-home .ov__kpi-l2 { font-size: 7.5px; color: #8a91c2; }
.pi-home .ov__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.9fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  flex: 1;
  min-height: 0;
}
.pi-home .ov__panel-map { grid-column: 1; grid-row: 1 / span 2; }
.pi-home .ov__panel-cancer { grid-column: 2; grid-row: 1 / span 2; }
.pi-home .ov__panel-mod { grid-column: 3; grid-row: 1; }
.pi-home .ov__panel-pipe { grid-column: 3; grid-row: 2; }
.pi-home .ov__panel-recent { display: none; }
.pi-home .ov__map-legend {
  display: flex; gap: 10px; margin-top: 6px;
  font-size: 7.5px; color: #6c759a;
}
.pi-home .ov__map-legend i {
  display: inline-block;
  width: 6px; height: 6px;
  margin-right: 3px;
  border-radius: 999px;
  vertical-align: 1px;
}
.pi-home .ov__cancers { display: flex; flex-direction: column; gap: 4px; }
.pi-home .ov__cancer {
  display: grid;
  grid-template-columns: 60px 1fr 38px;
  align-items: center;
  gap: 6px;
  font-size: 8.5px;
}
.pi-home .ov__cancer-name { color: #475184; }
.pi-home .ov__cancer-track { height: 5px; background: #eef1fa; border-radius: 999px; overflow: hidden; }
.pi-home .ov__cancer-fill { height: 100%; border-radius: 999px; }
.pi-home .ov__cancer-v { font-weight: 600; color: #1c233f; text-align: right; }
.pi-home .ov__recent { display: flex; flex-direction: column; gap: 3px; }
.pi-home .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;
}
.pi-home .ov__recent-row:hover { background: #fff; border-color: #e67a00; }
.pi-home .ov__recent-name { display: block; font-weight: 600; font-size: 9px; color: #0a1240; }
.pi-home .ov__recent-sub { display: block; font-size: 7.5px; color: #6c759a; }
.pi-home .ov__recent-r { display: flex; align-items: center; gap: 6px; }
.pi-home .ov__recent-pat { font-weight: 700; color: #1c233f; font-size: 10px; }
.pi-home .ov__recent-arrow { color: #e67a00; }
.pi-home .wm { width: 100%; flex: 1; min-height: 0; display: flex; align-items: center; }
.pi-home .wm__svg { width: 100%; height: 100%; max-height: 130px; }
.pi-home .dl { display: flex; flex-direction: column; height: 100%; gap: 4px; }
.pi-home .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;
}
.pi-home .dl__rows { display: flex; flex-direction: column; gap: 3px; overflow: auto; flex: 1; min-height: 0; }
.pi-home .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;
}
.pi-home .dl__row:hover { border-color: #e67a00; background: #fff8f0; }
.pi-home .dl__col { font-size: 8.5px; color: #475184; display: flex; align-items: center; gap: 5px; min-width: 0; }
.pi-home .dl__col-name { font-size: 9px; }
.pi-home .dl__name { display: block; font-weight: 600; color: #0a1240; }
.pi-home .dl__id { display: block; font-family: "JetBrains Mono", monospace; font-size: 7px; color: #8a91c2; letter-spacing: 0.12em; }
.pi-home .dl__dot {
  width: 6px; height: 6px; border-radius: 999px; flex-shrink: 0;
}
.pi-home .dl__dot--paicon { background: #e67a00; }
.pi-home .dl__dot--public { background: #16a094; }
.pi-home .dl__qbar {
  display: inline-block;
  width: 60px; height: 4px;
  background: #eef1fa; border-radius: 999px; overflow: hidden;
}
.pi-home .dl__qbar span { display: block; height: 100%; background: linear-gradient(90deg, #e67a00, #16a094); border-radius: 999px; }
.pi-home .dl__qv { font-weight: 600; color: #1c233f; }
.pi-home .dl__tier {
  font-size: 7.5px;
  padding: 2px 7px;
  border-radius: 999px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.pi-home .dl__tier--free { background: #e6f7f4; color: #0e6e64; }
.pi-home .dl__tier--pro { background: #ffe7d4; color: #b94800; }
.pi-home .dl__tier--contact { background: #fef0d4; color: #8a5a00; }
.pi-home .dl__empty { padding: 30px; text-align: center; color: #8a91c2; font-size: 9px; }
.pi-home .dd { display: flex; flex-direction: column; gap: 6px; height: 100%; overflow: auto; }
.pi-home .dd__back {
  align-self: flex-start;
  font-size: 8px; color: #6c759a;
  cursor: pointer; padding: 0;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.pi-home .dd__back:hover { color: #0a1240; }
.pi-home .dd__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 12px; }
.pi-home .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;
}
.pi-home .dd__source--paicon { background: #e67a00; color: #2a1300; }
.pi-home .dd__source--public { background: #16a094; color: #fff; }
.pi-home .dd__name { font-weight: 700; font-size: 14px; color: #0a1240; }
.pi-home .dd__meta { display: flex; gap: 5px; font-size: 8px; color: #6c759a; flex-wrap: wrap; align-items: center; margin-top: 3px; }
.pi-home .dd__meta .dd__tier { padding: 1px 6px; border-radius: 999px; font-weight: 600; font-size: 7.5px; letter-spacing: 0.1em; text-transform: uppercase; }
.pi-home .dd__tier--pro { background: #ffe7d4; color: #b94800; }
.pi-home .dd__tier--free { background: #e6f7f4; color: #0e6e64; }
.pi-home .dd__tier--contact { background: #fef0d4; color: #8a5a00; }
.pi-home .dd__actions { display: flex; gap: 4px; }
.pi-home .dd__btn {
  font-size: 8px;
  padding: 5px 10px;
  border-radius: 5px;
  background: #fff;
  border: 1px solid #e1e6f3;
  color: #475184;
  cursor: pointer;
  font-weight: 500;
}
.pi-home .dd__btn:hover { border-color: #e67a00; color: #b94800; }
.pi-home .dd__btn--p { background: #0a1240; color: #fff; border-color: #0a1240; }
.pi-home .dd__btn--p:hover { background: #e67a00; color: #2a1300; border-color: #e67a00; }
.pi-home .dd__kpis {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}
.pi-home .dd__kpi {
  background: #fff;
  border: 1px solid #e6eaf5;
  border-radius: 5px;
  padding: 6px 8px;
  display: flex;
  flex-direction: column;
}
.pi-home .dd__kpi span { font-weight: 700; font-size: 13px; color: #0a1240; }
.pi-home .dd__kpi em { font-style: normal; font-size: 7.5px; color: #6c759a; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 2px; }
.pi-home .dd__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.pi-home .dd__panel-wide { grid-column: 1 / -1; }
.pi-home .dd__bm { display: flex; flex-direction: column; gap: 4px; }
.pi-home .dd__bm-row {
  display: grid;
  grid-template-columns: 60px 1fr 56px;
  align-items: center;
  gap: 6px;
  font-size: 8.5px;
}
.pi-home .dd__bm-n { font-weight: 600; color: #1c233f; }
.pi-home .dd__bm-track { height: 5px; background: #eef1fa; border-radius: 999px; overflow: hidden; }
.pi-home .dd__bm-fill { height: 100%; background: linear-gradient(90deg, #16a094, #7a8aff); border-radius: 999px; }
.pi-home .dd__bm-v { color: #1c233f; font-weight: 600; text-align: right; }
.pi-home .dd__bm-v em { font-style: normal; color: #8a91c2; font-weight: 400; }
.pi-home .dd__grade {
  display: flex;
  align-items: stretch;
  gap: 4px;
  height: 70px;
  margin-top: 4px;
}
.pi-home .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;
}
.pi-home .dd__grade-fill {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 100%;
  opacity: 0.85;
}
.pi-home .dd__grade-l1, .pi-home .dd__grade-l2 { position: relative; z-index: 1; color: #fff; font-weight: 600; }
.pi-home .dd__grade-l1 { font-size: 7.5px; letter-spacing: 0.06em; }
.pi-home .dd__grade-l2 { font-size: 11px; }
.pi-home .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;
}
.pi-home .dd__grade-foot strong { color: #0a1240; font-size: 9px; letter-spacing: 0; text-transform: none; }
.pi-home .dd__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 8px;
}
.pi-home .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;
}
.pi-home .dd__table td {
  padding: 5px 6px;
  border-bottom: 1px solid #f0f3fb;
  color: #1c233f;
}
.pi-home .dd__id { font-family: "JetBrains Mono", monospace; color: #4a55a8; font-size: 7.5px; letter-spacing: 0.05em; }
.pi-home .dd__audit { display: flex; flex-direction: column; gap: 3px; }
.pi-home .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;
}
.pi-home .dd__audit-t { font-family: "JetBrains Mono", monospace; color: #6c759a; font-size: 8px; }
.pi-home .dd__audit-e { color: #1c233f; }
.pi-home .dd__audit-who { color: #8a91c2; font-size: 7.5px; }
.pi-home .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;
}
.pi-home .dd__consent strong { font-weight: 700; color: #2a1300; }
.pi-home .laptop__iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  background: #F4F6FB;
  display: block;
}

/* ============================================================
   Repo additions: hero laptop placeholder + CTA HubSpot card
   ============================================================ */
/* Static placeholder inside the hero laptop (live PaiX demo wired later) */
.pi-home .laptop__placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(700px 380px at 30% 20%, rgba(230,122,0,0.12), transparent 60%),
    radial-gradient(600px 360px at 85% 90%, rgba(22,160,148,0.12), transparent 60%),
    linear-gradient(160deg, #0a1240 0%, #06092a 100%);
}
.pi-home .laptop__placeholder-inner {
  text-align: center; color: #cfd5f5; padding: 24px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
}
.pi-home .laptop__placeholder-inner strong {
  display: block; margin-top: 10px; color: #fff;
  font-family: "Inter", system-ui, sans-serif; font-size: 18px;
  letter-spacing: -0.01em; text-transform: none; font-weight: 600;
}
/* hide the click-to-reveal overlay once revealed */
.pi-home .laptop__screen.is-revealed .laptop__preview { opacity: 0; pointer-events: none; }

/* CTA tabbed panel (parity with other 2026 pages) */
.pi-home .cta__pane[hidden] { display: none; }
.pi-home .home-hsform { background: #fff; border-radius: 12px; padding: 16px 16px 4px; }

.pi-home { background: var(--bg); font-feature-settings: "ss01", "cv11"; }

/* ---------- SatSight Dx static report card (use-case section) ---------- */
.pi-home .ssr { width: 100%; display: flex; justify-content: center; }
.pi-home .ssr__paper { background: #fff; border-radius: 8px; box-shadow: 0 8px 40px rgba(10,18,64,0.14), 0 1px 3px rgba(10,18,64,0.08); padding: 32px 36px; width: 100%; display: flex; flex-direction: column; gap: 20px; color: var(--navy); }
.pi-home .ssr__header { display: flex; justify-content: space-between; align-items: flex-start; }
.pi-home .ssr__header-left { display: flex; flex-direction: column; gap: 2px; }
.pi-home .ssr__logo-text { font-weight: 700; font-size: 18px; letter-spacing: -0.02em; color: var(--navy); }
.pi-home .ssr__logo-sub { font-size: 11px; color: var(--ink-3); letter-spacing: 0.04em; }
.pi-home .ssr__header-right { text-align: right; display: flex; flex-direction: column; gap: 2px; }
.pi-home .ssr__header-label { font-family: "JetBrains Mono", monospace; font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-3); }
.pi-home .ssr__header-id { font-family: "JetBrains Mono", monospace; font-size: 12px; font-weight: 600; color: var(--navy); }
.pi-home .ssr__divider { height: 1px; background: linear-gradient(90deg, var(--navy) 0%, transparent 100%); opacity: 0.12; }
.pi-home .ssr__case-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.pi-home .ssr__case-field { display: flex; flex-direction: column; gap: 3px; }
.pi-home .ssr__field-label { font-family: "JetBrains Mono", monospace; font-size: 9px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-3); }
.pi-home .ssr__field-value { font-size: 13px; font-weight: 600; color: var(--navy); }
.pi-home .ssr__images { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pi-home .ssr__images--three { grid-template-columns: 1fr 1fr 1fr; }
.pi-home .ssr__img-block { display: flex; flex-direction: column; gap: 6px; }
.pi-home .ssr__img-label { font-family: "JetBrains Mono", monospace; font-size: 9px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-3); }
.pi-home .ssr__img { width: 100%; height: auto; border-radius: 4px; border: 1px solid rgba(10,18,64,0.08); }
.pi-home .ssr__prediction { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; background: rgba(10,18,64,0.03); border-radius: 6px; padding: 16px 20px; }
.pi-home .ssr__pred-main { display: flex; flex-direction: column; gap: 6px; flex-shrink: 0; }
.pi-home .ssr__pred-label { font-family: "JetBrains Mono", monospace; font-size: 9px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-3); }
.pi-home .ssr__pred-badge { font-weight: 700; font-size: 22px; letter-spacing: -0.02em; }
.pi-home .ssr__pred-badge--msi { color: var(--accent); }
.pi-home .ssr__pred-badge--mss { color: var(--navy); }
.pi-home .ssr__pred-conf { font-size: 12px; color: var(--ink-3); }
.pi-home .ssr__pred-bars { flex: 1; display: flex; flex-direction: column; gap: 8px; min-width: 0; padding-top: 18px; }
.pi-home .ssr__pred-bar-row { display: grid; grid-template-columns: 40px 1fr 36px; align-items: center; gap: 8px; font-family: "JetBrains Mono", monospace; font-size: 11px; color: var(--ink-2); }
.pi-home .ssr__pred-track { height: 6px; background: rgba(10,18,64,0.06); border-radius: 3px; overflow: hidden; }
.pi-home .ssr__pred-fill { height: 100%; border-radius: 3px; }
.pi-home .ssr__pred-fill--msi { background: var(--accent); }
.pi-home .ssr__pred-fill--mss { background: var(--navy); opacity: 0.35; }
.pi-home .ssr__pred-val { text-align: right; font-weight: 600; font-size: 11px; }
.pi-home .ssr__metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding-top: 4px; }
.pi-home .ssr__metric { display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center; }
.pi-home .ssr__metric-label { font-family: "JetBrains Mono", monospace; font-size: 9px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-3); }
.pi-home .ssr__metric-value { font-weight: 700; font-size: 18px; color: var(--navy); letter-spacing: -0.02em; }
.pi-home .ssr__footer { display: flex; justify-content: space-between; font-size: 10px; color: var(--ink-3); }
@media (max-width: 520px) {
  .pi-home .ssr__case-row { grid-template-columns: repeat(2, 1fr); }
  .pi-home .ssr__paper { padding: 24px 22px; }
}

/* ---------- Book-a-demo modal (auto-open, HubSpot) ---------- */
.pi-home .dmodal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 24px; background: rgba(8,12,32,0.55); backdrop-filter: blur(4px); animation: dmodalFade .25s ease; }
.pi-home .dmodal[hidden] { display: none; }
@keyframes dmodalFade { from { opacity: 0; } to { opacity: 1; } }
.pi-home .dmodal__scrim { position: absolute; inset: 0; cursor: pointer; }
.pi-home .dmodal__card { position: relative; z-index: 1; width: min(460px, 100%); max-height: calc(100vh - 48px); overflow: auto; background: var(--bg); border-radius: 18px; box-shadow: 0 40px 100px rgba(6,9,42,0.45); padding: 24px 16px 16px; animation: dmodalPop .32s cubic-bezier(.2,.8,.2,1); }
@keyframes dmodalPop { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.pi-home .dmodal__close { position: absolute; top: 12px; right: 14px; width: 32px; height: 32px; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--navy); font-size: 20px; line-height: 1; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; z-index: 2; transition: background .15s ease, color .15s ease, border-color .15s ease; }
.pi-home .dmodal__close:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
/* views */
.pi-home .dmodal__intro[hidden], .pi-home .dmodal__sched[hidden] { display: none; }
/* Step 1 — intro (full-bleed dark shot, vertical) */
.pi-home .dmodal__card--intro { padding: 0; overflow: hidden; width: min(440px, 100%); }
.pi-home .dmodal__card--intro .dmodal__close { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.28); color: #fff; backdrop-filter: blur(4px); }
.pi-home .dmodal__card--intro .dmodal__close:hover { background: rgba(255,255,255,0.28); }
.pi-home .dmodal__intro { display: flex; flex-direction: column; }
.pi-home .dmodal__shot { position: relative; background: radial-gradient(500px 260px at 50% 0%, rgba(230,122,0,0.18) 0%, transparent 65%), var(--navy-deep); padding: 30px 30px 0; overflow: hidden; }
.pi-home .dmodal__shot::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 48px; background: linear-gradient(to bottom, transparent, var(--bg)); }
.pi-home .dmodal__shot img { display: block; width: 100%; height: auto; border-radius: 10px 10px 0 0; box-shadow: 0 18px 40px rgba(6,9,42,0.35); }
.pi-home .dmodal__intro-body { display: flex; flex-direction: column; gap: 13px; padding: 22px 30px 30px; }
.pi-home .dmodal__kicker { display: inline-flex; align-items: center; gap: 9px; font-family: "JetBrains Mono", monospace; font-size: 11.5px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--accent); }
.pi-home .dmodal__pulse { width: 8px; height: 8px; border-radius: 999px; background: var(--accent); box-shadow: 0 0 0 0 rgba(230,122,0,0.5); animation: pulse 1.8s ease-in-out infinite; }
.pi-home .dmodal__title { font-weight: 700; font-size: 24px; letter-spacing: -0.02em; color: var(--navy); margin: 12px 0 0; }
.pi-home .dmodal__intro-lede { font-size: 15px; line-height: 1.6; color: var(--ink-2); margin: 0; }
.pi-home .dmodal__submit { align-self: stretch; width: 100%; justify-content: center; margin-top: 4px; }
/* Step 2 — scheduler (HubSpot meetings embed) */
.pi-home .dmodal__sched { min-height: 460px; }
.pi-home .dmodal__sched .meetings-iframe-container { min-height: 460px; }

/* ============================================================
   v2 REWORK — new / changed homepage sections
   (later rules override the legacy hero/laptop blocks above)
   ============================================================ */

/* ---------- HERO: changing-faces video ---------- */
.pi-home .hero--faces {
  position: relative;
  padding: 0;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy-deep);
  isolation: isolate;
}
.pi-home .hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pi-home .hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(125% 95% at 50% 50%,
      rgba(6,9,42,0.94) 0%,
      rgba(6,9,42,0.78) 34%,
      rgba(6,9,42,0.52) 66%,
      rgba(6,9,42,0.74) 100%);
}
.pi-home .hero__overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  padding: 56px 28px;
}
.pi-home .hero__head {
  margin: 14px 0 0;
  font-weight: 700;
  font-size: clamp(44px, 5.6vw, 84px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: #fff;
  text-wrap: balance;
  text-shadow: 0 2px 30px rgba(0,0,0,0.35);
}
.pi-home .hero__head em { font-style: normal; color: var(--accent); }
.pi-home .hero__sub {
  margin: 24px auto 36px;
  max-width: 50ch;
  font-size: clamp(16px, 1.4vw, 21px);
  line-height: 1.6;
  color: var(--ink-2-on-dark);
}
.pi-home .hero--faces .hero__ctas {
  display: flex; gap: 14px; align-items: center; justify-content: center; flex-wrap: wrap;
}

/* ---------- Video modal ("Watch Our Story") ---------- */
.pi-home .vidmodal,
.vidmodal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8, 12, 32, 0.82);
  backdrop-filter: blur(8px);
  animation: vidmodalFade .25s ease;
}
@keyframes vidmodalFade { from { opacity: 0; } to { opacity: 1; } }
.vidmodal__inner { position: relative; width: min(1040px, 100%); }
.vidmodal__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5);
  background: #000;
}
.vidmodal__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vidmodal__close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease;
}
.vidmodal__close:hover { background: rgba(255, 255, 255, 0.24); }
@media (max-width: 600px) { .vidmodal__close { top: -44px; } }

/* ---------- ValueProp: cards wrapper ---------- */
.pi-home .vprop__cards-wrapper {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px;
}
.pi-home .vprop__cards-head {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

/* ---------- Platform Features: hero row + shot + kicker ---------- */
.pi-home .pfeat__hero-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}
.pi-home .pfeat__hero-row .pfeat__head { margin-bottom: 0; max-width: none; }
.pi-home .pfeat__kicker {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: fit-content;
  gap: 9px;
  font-family: "JetBrains Mono", 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: 26px;
}
.pi-home .pfeat__kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.pi-home .pfeat__kicker-text { color: var(--accent); font-weight: 700; }
.pi-home .pfeat__title-bold { font-weight: 800; color: var(--navy); }
.pi-home .pfeat__shot {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.pi-home .pfeat__shot img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 40px 80px rgba(10, 18, 64, 0.22));
}
.pi-home .pfeat__shot-cap {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ---------- Founder's Message ---------- */
.pi-home .founder { padding: 112px 0; background: var(--bg); }
.pi-home .founder__inner {
  width: min(1120px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 72px;
  align-items: start;
}
.pi-home .founder__photo {
  width: 100%;
  height: 420px;
  margin-top: 78px; /* align photo top with the quote's first line ("We started PAICON"), past the eyebrow */
  object-fit: cover;
  object-position: 50% 28%;
  display: block;
  border-radius: 14px;
  box-shadow: 0 22px 60px rgba(10,18,64,0.16);
}
.pi-home .founder__quote {
  margin: 18px 0 0;
  font-size: 20px;
  line-height: 1.62;
  letter-spacing: -0.005em;
  color: var(--ink-2);
}
.pi-home .founder__quote em { font-style: normal; font-weight: 600; color: var(--accent); }
.pi-home .founder__sign { margin-top: 36px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.pi-home .founder__sig-img { width: 116px; height: auto; flex-shrink: 0; display: block; mix-blend-mode: multiply; }
.pi-home .founder__who { display: flex; flex-direction: column; gap: 3px; }
.pi-home .founder__name { font-weight: 700; font-size: 17px; color: var(--navy); }
.pi-home .founder__role { font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: 0.06em; color: var(--ink-3); }

/* ---------- Voices from ByteSight (quote spotlight) ---------- */
.pi-home .testi__head { max-width: 1040px; margin: 0 auto 56px; text-align: center; }
.pi-home .testi__head .eyebrow { margin-left: auto; margin-right: auto; }
.pi-home .testi__title {
  font-weight: 700;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 0;
  color: var(--navy);
}
.pi-home .testi__title em { font-style: normal; color: var(--accent); }
.pi-home .spot { position: relative; max-width: 1120px; margin: 0 auto; padding: 8px 0 4px; }
.pi-home .spot__stage--pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
  animation: spotIn .5s ease;
}
@keyframes spotIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.pi-home .spot__card { margin: 0; display: flex; flex-direction: column; }
.pi-home .spot__mark {
  display: block;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 84px;
  line-height: 0.7;
  color: var(--accent);
  opacity: 0.9;
  margin-bottom: 0;
}
.pi-home .spot__quote {
  margin: 0;
  font-size: clamp(18px, 1.5vw, 23px);
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: -0.01em;
  color: var(--navy);
  padding-bottom: 28px;
  flex: 1;
  text-wrap: pretty;
}
.pi-home .spot__attr { display: flex; align-items: center; gap: 16px; margin-top: auto; }
.pi-home .spot__avatar {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--line);
}
.pi-home .spot__avatar-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pi-home .spot__id { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.pi-home .spot__name { font-weight: 700; font-size: 16px; color: var(--navy); }
.pi-home .spot__role { font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: 0.02em; line-height: 1.5; color: var(--ink-3); max-width: 60ch; }
.pi-home .spot__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.pi-home .spot__arrow {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--navy);
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .16s ease, border-color .16s ease, color .16s ease;
}
.pi-home .spot__arrow:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
.pi-home .spot__count { font-family: "JetBrains Mono", monospace; font-size: 13px; letter-spacing: 0.06em; color: var(--ink-3); }
.pi-home .spot__count-now { color: var(--navy); font-weight: 600; }
.pi-home .spot__count-sep { margin: 0 4px; opacity: 0.5; }

/* ---------- Voices: publication CTAs ---------- */
.pi-home .testi__pub { margin-top: 36px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ---------- Responsive (new sections) ---------- */
@media (max-width: 1080px) {
  .pi-home .founder__inner { grid-template-columns: 1fr; gap: 40px; max-width: 620px; }
  .pi-home .founder__photo { height: 420px; margin-top: 0; }
  .pi-home .pfeat__hero-row { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 760px) {
  .pi-home .spot__stage--pair { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 720px) {
  .pi-home .hero--faces { min-height: 84vh; }
  .pi-home .hero__overlay { padding: 40px 20px; }
}
