/* -------------------------------------------------------
   SIRENEDGE - SITE DESIGN SYSTEM (Live-site inspired)
   Dark glass surfaces, cyan-led signals, governance-first tone
------------------------------------------------------- */

:root {
  --background: 220 25% 6%;
  --foreground: 210 20% 92%;
  --card: 220 20% 10%;
  --card-foreground: 210 20% 92%;
  --popover: 220 20% 10%;
  --popover-foreground: 210 20% 92%;
  --primary: 187 80% 52%;
  --primary-foreground: 220 25% 6%;
  --secondary: 220 18% 16%;
  --secondary-foreground: 210 20% 85%;
  --muted: 220 15% 14%;
  --muted-foreground: 215 15% 60%;
  --accent: 187 60% 40%;
  --accent-foreground: 210 20% 95%;
  --destructive: 0 72% 55%;
  --destructive-foreground: 210 40% 98%;
  --border: 220 15% 18%;
  --input: 220 15% 18%;
  --ring: 187 80% 52%;

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  --container: 1160px;

  --shadow-soft: 0 10px 35px rgba(0, 0, 0, 0.35);
  --shadow-panel: 0 18px 50px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 40px -12px hsl(var(--primary) / 0.35);

  --surface-glass: hsl(var(--card) / 0.55);
  --surface-elevated: hsl(var(--card) / 0.8);
  --line-soft: hsl(var(--border) / 0.75);
  --line-strong: hsl(var(--primary) / 0.25);

  --transition-fast: 160ms ease;
  --transition-med: 280ms ease;

  --font-sans: -apple-system, BlinkMacSystemFont, "Inter", "SF Pro Text", "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: "SF Pro Display", "Inter", "Segoe UI", Roboto, Arial, sans-serif;
}

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

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

body {
  margin: 0;
  min-height: 100%;
  color: hsl(var(--foreground));
  background:
    radial-gradient(900px 500px at 18% 8%, hsl(var(--primary) / 0.15), transparent 62%),
    radial-gradient(700px 420px at 82% 10%, hsl(220 70% 45% / 0.16), transparent 65%),
    radial-gradient(900px 640px at 50% -18%, hsl(190 90% 45% / 0.12), transparent 64%),
    hsl(var(--background));
  font-family: var(--font-sans);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 160;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid hsl(var(--primary) / 0.42);
  background: hsl(var(--card) / 0.96);
  color: hsl(var(--foreground));
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    radial-gradient(2px 2px at 10% 20%, hsl(var(--primary) / 0.35), transparent 70%),
    radial-gradient(1px 1px at 70% 30%, rgba(255, 255, 255, 0.25), transparent 70%),
    radial-gradient(2px 2px at 80% 70%, hsl(190 100% 70% / 0.18), transparent 70%),
    radial-gradient(1px 1px at 22% 80%, rgba(255, 255, 255, 0.18), transparent 70%);
  background-size: 540px 540px;
  z-index: -2;
}

main {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  height: auto;
}

svg {
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

p {
  margin: 0;
  text-wrap: pretty;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast), border-color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.btn:focus-visible {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 3px;
}

::selection {
  background: hsl(var(--primary) / 0.22);
  color: hsl(var(--foreground));
}

.wrapper,
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: 20px;
}

.section,
.section-padding {
  position: relative;
  padding: clamp(72px, 8vw, 88px) 0;
}

.section-tight {
  padding: clamp(48px, 6vw, 60px) 0;
}

.section-overlay-grid,
.grid-bg {
  position: relative;
}

.section-muted {
  background: linear-gradient(180deg, hsl(var(--secondary) / 0.32), hsl(var(--secondary) / 0.16));
  border-top: 1px solid hsl(var(--border) / 0.35);
  border-bottom: 1px solid hsl(var(--border) / 0.35);
}

.section-overlay-grid::before,
.grid-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
  background-image:
    linear-gradient(hsl(var(--border) / 0.35) 1px, transparent 1px),
    linear-gradient(90deg, hsl(var(--border) / 0.35) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at center, black 20%, transparent 85%);
}

.section-inner {
  position: relative;
  z-index: 1;
}

.hero[id],
.section[id],
.page-hero[id] {
  scroll-margin-top: 92px;
}

#bubble-model {
  scroll-margin-top: 108px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid hsl(var(--primary) / 0.35);
  background: hsl(var(--primary) / 0.08);
  color: hsl(190 100% 88%);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: hsl(var(--primary));
  box-shadow: 0 0 14px hsl(var(--primary) / 0.9);
}

.title-display {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.title-section {
  font-size: clamp(1.85rem, 2vw + 1rem, 3rem);
  line-height: 1.04;
}

.title-subpage {
  font-size: clamp(2rem, 2vw + 1.1rem, 3.2rem);
  line-height: 1.02;
}

.section-title,
.hero-title {
  font-size: clamp(1.85rem, 2vw + 1rem, 3rem);
  line-height: 1.04;
}

.hero-title {
  font-size: clamp(2.2rem, 4.7vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  max-width: 12.5ch;
  text-shadow: 0 10px 30px hsl(220 40% 4% / 0.32);
}

.hero-title-emphasis {
  display: block;
  margin-top: 0.08em;
  font-size: 0.93em;
  line-height: 0.98;
  text-wrap: balance;
}

.lead,
.hero-subtitle {
  color: hsl(var(--muted-foreground));
  font-size: clamp(1rem, 0.3vw + 0.95rem, 1.15rem);
  line-height: 1.6;
  max-width: 68ch;
}

.hero-subtitle {
  margin-top: 4px;
  max-width: 56ch;
  color: hsl(214 16% 76%);
}

.page-hero-inner {
  display: grid;
  gap: 12px;
  max-width: 78ch;
}

.text-muted {
  color: hsl(var(--muted-foreground));
}

.text-gradient-primary {
  background-image: linear-gradient(135deg, hsl(var(--primary)), hsl(190 70% 70%));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid hsl(var(--border) / 0.45);
  background: linear-gradient(180deg, hsl(var(--background) / 0.82), hsl(var(--background) / 0.66));
  backdrop-filter: blur(14px);
}

header[data-scrolled="true"] {
  border-bottom-color: hsl(var(--border) / 0.7);
  background: linear-gradient(180deg, hsl(var(--background) / 0.9), hsl(var(--background) / 0.78));
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.22);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
  padding-block: 10px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 44px;
  min-width: 44px;
  height: 44px;
  border: 1px solid hsl(var(--border) / 0.75);
  border-radius: 12px;
  background: hsl(var(--card) / 0.4);
  color: hsl(var(--foreground));
  box-shadow: inset 0 1px 0 hsl(var(--foreground) / 0.04);
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.nav-toggle:hover {
  border-color: hsl(var(--primary) / 0.28);
  background: hsl(var(--card) / 0.62);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18), inset 0 1px 0 hsl(var(--foreground) / 0.06);
}

.nav-toggle:active {
  transform: translateY(1px);
}

.nav-toggle-lines {
  position: relative;
  width: 18px;
  height: 14px;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after,
.nav-toggle-lines span {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1.8px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease, top 180ms ease;
}

.nav-toggle-lines::before {
  top: 0;
}

.nav-toggle-lines span {
  top: 6px;
}

.nav-toggle-lines::after {
  top: 12px;
}

header[data-mobile-menu-open="true"] .nav-toggle-lines::before {
  top: 6px;
  transform: rotate(45deg);
}

header[data-mobile-menu-open="true"] .nav-toggle-lines span {
  opacity: 0;
}

header[data-mobile-menu-open="true"] .nav-toggle-lines::after {
  top: 6px;
  transform: rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: linear-gradient(180deg, rgba(5, 8, 14, 0.3), rgba(5, 8, 14, 0.62));
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

body[data-nav-open="true"] .nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.logo img {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
}

.logo-label {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
}

.logo-label strong {
  font-size: 15px;
  font-weight: 700;
  color: hsl(var(--foreground));
  letter-spacing: 0.01em;
}

.logo-label span {
  font-size: 11px;
  color: hsl(var(--muted-foreground));
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  row-gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  position: relative;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: hsl(var(--muted-foreground));
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 4px;
  height: 1.5px;
  border-radius: 999px;
  background: linear-gradient(90deg, hsl(var(--primary) / 0.2), hsl(var(--primary)), hsl(190 75% 66%));
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: left center;
  transition: opacity 180ms ease, transform 220ms ease;
}

.nav-links a.nav-cta::after {
  display: none;
}

.nav-links a:hover {
  color: hsl(var(--foreground));
  background: hsl(var(--card) / 0.35);
  border-color: hsl(var(--border) / 0.65);
}

.nav-links a:hover::after {
  opacity: 0.45;
  transform: scaleX(1);
}

.nav-links a[aria-current="page"],
.nav-links a[aria-current="location"] {
  color: hsl(var(--foreground));
  background: linear-gradient(180deg, hsl(var(--card) / 0.7), hsl(var(--card) / 0.45));
  border-color: hsl(var(--primary) / 0.2);
  box-shadow: inset 0 1px 0 hsl(var(--foreground) / 0.04);
}

.nav-links a[aria-current="page"]::after,
.nav-links a[aria-current="location"]::after {
  opacity: 0.95;
  transform: scaleX(1);
}

.nav-links a.nav-cta {
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--primary) / 0.35);
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(190 75% 66%));
  box-shadow: 0 8px 20px hsl(var(--primary) / 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  font-weight: 600;
  padding-inline: 12px;
}

.nav-links a.nav-cta:hover {
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--primary) / 0.4);
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(190 75% 66%));
  box-shadow: 0 10px 24px hsl(var(--primary) / 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.nav-links a.nav-cta[aria-current="page"],
.nav-links a.nav-cta[aria-current="location"] {
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--primary) / 0.45);
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(190 75% 66%));
  box-shadow: 0 10px 24px hsl(var(--primary) / 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid hsl(var(--border) / 0.9);
  color: hsl(var(--foreground));
  background: hsl(var(--card) / 0.42);
  box-shadow: inset 0 1px 0 hsl(var(--foreground) / 0.04);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: hsl(var(--border) / 1);
  background: hsl(var(--card) / 0.6);
}

.btn-primary {
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--primary) / 0.35);
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(190 75% 66%));
  box-shadow: 0 8px 22px hsl(var(--primary) / 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 12px 28px hsl(var(--primary) / 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.32);
  border-color: hsl(var(--primary) / 0.4);
}

.btn-ghost {
  background: transparent;
  border-color: hsl(var(--border) / 0.8);
}

.btn-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.inline-link {
  color: hsl(190 90% 78%);
  text-decoration: underline;
  text-decoration-color: hsl(var(--primary) / 0.35);
  text-underline-offset: 3px;
}

.inline-link:hover {
  text-decoration-color: hsl(var(--primary));
}

.card,
.glass-card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid hsl(var(--primary) / 0.16);
  background: linear-gradient(180deg, hsl(var(--card) / 0.62), hsl(var(--card) / 0.46));
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-soft);
  padding: 24px;
}

.card::before,
.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
}

.card:hover,
.glass-card:hover {
  border-color: hsl(var(--primary) / 0.28);
}

.panel,
.elevated-panel {
  border-radius: var(--radius-xl);
  border: 1px solid hsl(var(--border) / 0.65);
  background: linear-gradient(180deg, hsl(var(--card) / 0.82), hsl(var(--card) / 0.68));
  box-shadow: var(--shadow-panel);
  padding: 28px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.pill-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid hsl(var(--border) / 0.8);
  background: hsl(var(--card) / 0.45);
  color: hsl(var(--secondary-foreground));
  font-size: 13px;
}

.pill-list li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: hsl(var(--primary));
}

.stats-grid,
.grid,
.grid-2,
.grid-3,
.use-case-grid,
.pillars-grid,
.trust-grid,
.roadmap-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3,
.pillars-grid,
.roadmap-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.use-case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero {
  padding: 84px 0 68px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: 22px;
  align-items: start;
}

.hero-copy {
  display: grid;
  gap: 16px;
  position: relative;
  align-content: start;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: -18px -12px auto -18px;
  height: 210px;
  border-radius: 24px;
  background:
    radial-gradient(58% 72% at 18% 26%, hsl(var(--primary) / 0.1), transparent 72%),
    linear-gradient(180deg, hsl(var(--card) / 0.24), transparent 82%);
  border: 1px solid hsl(var(--primary) / 0.06);
  pointer-events: none;
  z-index: -1;
}

.hero-support {
  display: grid;
  gap: 14px;
  align-content: start;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 6px;
}

.meta-chip {
  border-radius: 14px;
  border: 1px solid hsl(var(--border) / 0.8);
  background: hsl(var(--card) / 0.4);
  padding: 12px;
}

.meta-chip .label {
  display: block;
  color: hsl(var(--muted-foreground));
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.meta-chip .value {
  display: block;
  color: hsl(var(--foreground));
  font-weight: 600;
  font-size: 13px;
  line-height: 1.35;
}

.hero-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.hero-brief-panel {
  position: relative;
  padding: 24px 24px 22px;
  border-color: hsl(var(--border) / 0.74);
  background:
    radial-gradient(62% 54% at 20% 10%, hsl(var(--primary) / 0.07), transparent 72%),
    linear-gradient(180deg, hsl(var(--card) / 0.84), hsl(var(--card) / 0.72));
}

.hero-brief-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, hsl(var(--foreground) / 0.035), transparent 32%);
}

.hero-brief-panel .hero-panel-header {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid hsl(var(--border) / 0.45);
}

.hero-check-list {
  gap: 8px;
}

.hero-check-list li {
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid hsl(var(--border) / 0.46);
  background: linear-gradient(180deg, hsl(var(--card) / 0.34), hsl(var(--card) / 0.2));
  font-size: 13.3px;
  line-height: 1.45;
}

.hero-check-list li::before {
  width: 6px;
  height: 6px;
  margin-top: 7px;
  background: hsl(var(--primary));
  box-shadow: 0 0 10px hsl(var(--primary) / 0.45);
}

.hero-check-lead {
  display: block;
  margin-bottom: 2px;
  color: hsl(var(--foreground));
  font-size: 12.4px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  font-weight: 650;
}

.hero-why-now {
  border-color: hsl(var(--primary) / 0.18);
  background:
    linear-gradient(180deg, hsl(var(--primary) / 0.07), hsl(var(--primary) / 0.035)),
    hsl(var(--card) / 0.36);
  box-shadow: inset 0 1px 0 hsl(var(--foreground) / 0.025);
}

.hero-cta-row {
  width: fit-content;
  max-width: 100%;
  gap: 8px;
  padding: 6px;
  border-radius: 16px;
  border: 1px solid hsl(var(--border) / 0.72);
  background: linear-gradient(180deg, hsl(var(--card) / 0.48), hsl(var(--card) / 0.34));
  box-shadow: 0 14px 30px hsl(220 34% 4% / 0.22), inset 0 1px 0 hsl(var(--foreground) / 0.03);
}

.hero-cta-row .btn {
  min-height: 48px;
  padding: 11px 18px;
  border-radius: 12px;
}

.hero-cta-row .btn-ghost {
  background: linear-gradient(180deg, hsl(var(--card) / 0.55), hsl(var(--card) / 0.4));
  border-color: hsl(var(--border) / 0.78);
}

.hero-cta-row .btn-ghost:hover {
  background: linear-gradient(180deg, hsl(var(--card) / 0.68), hsl(var(--card) / 0.52));
}

.hero-proof-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 620px);
  margin-top: 2px;
  padding-top: 14px;
}

.hero-proof-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, hsl(var(--primary) / 0.32), hsl(var(--border) / 0.55), transparent 92%);
}

.hero-proof-list li {
  min-height: 46px;
  align-items: flex-start;
  gap: 9px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid hsl(var(--border) / 0.72);
  background: linear-gradient(180deg, hsl(var(--card) / 0.5), hsl(var(--card) / 0.34));
  color: hsl(210 18% 84%);
  font-size: 12.8px;
  line-height: 1.35;
  box-shadow: inset 0 1px 0 hsl(var(--foreground) / 0.025);
}

.hero-proof-list li::before {
  width: 6px;
  height: 6px;
  margin-top: 5px;
  background: hsl(var(--primary));
  box-shadow: 0 0 12px hsl(var(--primary) / 0.5);
}

.hero-panel-title {
  font-size: 13px;
  color: hsl(var(--muted-foreground));
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.signal-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: hsl(var(--primary));
  box-shadow: 0 0 16px hsl(var(--primary) / 0.8);
}

.check-list,
.feature-list,
.copy-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.check-list li,
.feature-list li,
.copy-list li {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: hsl(var(--secondary-foreground));
  font-size: 14px;
  line-height: 1.55;
}

.check-list li::before,
.feature-list li::before,
.copy-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  margin-top: 6px;
  background: hsl(var(--primary));
  box-shadow: 0 0 12px hsl(var(--primary) / 0.65);
}

.note-block {
  border-radius: 14px;
  border: 1px solid hsl(var(--primary) / 0.15);
  background: hsl(var(--primary) / 0.04);
  padding: 14px;
  color: hsl(var(--secondary-foreground));
  font-size: 13px;
  line-height: 1.55;
}

.stat-card {
  text-align: center;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid hsl(var(--border) / 0.65);
  background: hsl(var(--card) / 0.38);
}

.stat-card .stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card .stat-label {
  color: hsl(var(--muted-foreground));
  font-size: 13px;
  line-height: 1.45;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-evidence-strip {
  gap: 10px;
  align-items: stretch;
}

.metric {
  border-radius: 16px;
  border: 1px solid hsl(var(--border) / 0.7);
  background: hsl(var(--card) / 0.42);
  padding: 16px;
}

.hero-evidence-card {
  position: relative;
  min-height: 132px;
  border-radius: 14px;
  border-color: hsl(var(--border) / 0.62);
  background:
    linear-gradient(180deg, hsl(var(--card) / 0.58), hsl(var(--card) / 0.42));
  box-shadow: inset 0 1px 0 hsl(var(--foreground) / 0.025);
  padding: 14px 14px 13px;
}

.hero-evidence-card::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, hsl(var(--primary) / 0.35), hsl(var(--border) / 0.28) 60%, transparent);
}

.metric .metric-kicker {
  color: hsl(var(--muted-foreground));
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.hero-evidence-card .metric-kicker {
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.metric .metric-value {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.06;
}

.hero-evidence-card .metric-value {
  font-size: 17px;
  line-height: 1.16;
  letter-spacing: -0.01em;
}

.metric .metric-copy {
  color: hsl(var(--muted-foreground));
  font-size: 13px;
  line-height: 1.45;
  margin-top: 6px;
}

.hero-evidence-card .metric-copy {
  margin-top: 7px;
  color: hsl(214 14% 70%);
  font-size: 12.5px;
  line-height: 1.4;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: clamp(18px, 2vw, 24px);
  align-items: start;
}

.split-panel > .bubble-shell {
  align-self: start;
}

.split-panel > .bubble-graph-panel {
  align-self: start;
}

.split-panel--bubble-module {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas: "left right";
  column-gap: clamp(16px, 1.8vw, 24px);
  row-gap: 0;
  align-items: stretch;
  border-radius: 28px;
  border: 1px solid hsl(var(--primary) / 0.15);
  padding: clamp(16px, 1.5vw, 20px);
  background:
    radial-gradient(circle at 18% 16%, hsl(var(--primary) / 0.08), transparent 50%),
    radial-gradient(circle at 84% 18%, hsl(var(--primary) / 0.05), transparent 56%),
    linear-gradient(180deg, hsl(var(--card) / 0.84), hsl(var(--card) / 0.64));
  box-shadow:
    0 24px 64px hsl(220 38% 3% / 0.34),
    inset 0 1px 0 hsl(var(--foreground) / 0.04);
}

.split-panel--bubble-module::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(hsl(var(--border) / 0.24) 1px, transparent 1px),
    linear-gradient(90deg, hsl(var(--border) / 0.2) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 30% 26%, black 10%, transparent 78%);
}

.split-panel--bubble-module::after {
  display: none;
}

.split-panel--bubble-module > * {
  position: relative;
  z-index: 1;
}

.split-panel--bubble-module > .bubble-graph-panel,
.split-panel--bubble-module > .page-stack {
  align-self: stretch;
}

.split-panel--bubble-module > .bubble-brief-shell--body {
  grid-area: left;
  gap: 8px;
  align-content: start;
  min-width: 0;
}

.split-panel--bubble-module > .bubble-graph-panel {
  grid-area: right;
}

.bubble-module-head {
  display: grid;
  gap: 8px;
  padding: 2px 0 10px;
  border-bottom: 1px solid hsl(var(--border) / 0.34);
}

.bubble-module-head-eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.bubble-module-head-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 16px;
  align-items: end;
}

.split-panel--bubble-module .bubble-brief-shell {
  padding: 0;
  gap: 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.split-panel--bubble-module .bubble-brief-shell--body {
  gap: 10px;
}

.split-panel--bubble-module .bubble-brief-shell::before,
.split-panel--bubble-module .bubble-brief-shell::after {
  display: none;
}

.split-panel--bubble-module .bubble-brief-header {
  display: grid;
  gap: 9px;
  border-radius: 16px;
  border: 1px solid hsl(var(--border) / 0.46);
  background:
    radial-gradient(circle at 22% 18%, hsl(var(--primary) / 0.08), transparent 58%),
    linear-gradient(180deg, hsl(var(--card) / 0.26), hsl(var(--card) / 0.12));
  box-shadow:
    inset 0 1px 0 hsl(var(--foreground) / 0.025),
    inset 0 0 0 1px hsl(var(--primary) / 0.02);
  padding: 10px 12px 11px;
}

.split-panel--bubble-module .bubble-brief-header .title-section {
  max-width: 16ch;
  line-height: 0.94;
  letter-spacing: -0.028em;
  font-size: clamp(1.86rem, 2.05vw, 2.26rem);
}

.split-panel--bubble-module .bubble-brief-header .lead {
  max-width: 40ch;
  color: hsl(214 17% 78%);
  font-size: 12.8px;
  line-height: 1.38;
  margin-top: 10px;
}

.split-panel--bubble-module .bubble-brief-header .bubble-vision-title {
  max-width: none;
  margin: 0;
  text-wrap: initial;
  line-height: 0.99;
  letter-spacing: -0.028em;
  font-size: clamp(1.64rem, 1.2vw + 0.8rem, 2.02rem);
}

.split-panel--bubble-module .bubble-vision-title .bubble-title-line {
  display: block;
  white-space: nowrap;
}

.split-panel--bubble-module .bubble-brief-header .bubble-vision-lead {
  display: grid;
  gap: 5px;
  max-width: none;
  margin: 0;
  text-wrap: initial;
}

.split-panel--bubble-module .bubble-vision-lead > span {
  display: block;
  white-space: nowrap;
  padding: 4px 0 4px 10px;
  border-left: 2px solid hsl(var(--primary) / 0.18);
  border-radius: 2px;
  max-width: 100%;
}

.split-panel--bubble-module .bubble-brief-header .bubble-vision-lead {
  justify-self: start;
  width: 100%;
  max-width: none;
  margin-top: 0;
  color: hsl(214 17% 80%);
  font-size: 12.7px;
  line-height: 1.3;
}

.split-panel--bubble-module .bubble-vision-board,
.split-panel--bubble-module .bubble-legend-disclosure,
.split-panel--bubble-module .bubble-vision-footer {
  border-color: hsl(var(--border) / 0.46);
  background:
    linear-gradient(180deg, hsl(var(--card) / 0.28), hsl(var(--card) / 0.15));
  box-shadow:
    inset 0 1px 0 hsl(var(--foreground) / 0.025),
    inset 0 0 0 1px hsl(var(--primary) / 0.025);
}

.split-panel--bubble-module .bubble-vision-board {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  align-content: start;
  padding: 11px;
}

.split-panel--bubble-module .bubble-vision-board-head {
  gap: 5px;
  margin-bottom: 8px;
  padding-bottom: 8px;
}

.split-panel--bubble-module .bubble-vision-board-head h3 {
  font-size: 17px;
  line-height: 1.12;
}

.split-panel--bubble-module .bubble-vision-board-head p {
  color: hsl(213 14% 74%);
  font-size: 12.2px;
  line-height: 1.36;
}

.split-panel--bubble-module .bubble-vision-matrix {
  gap: 8px;
}

.split-panel--bubble-module .bubble-vision-cell {
  border-color: hsl(var(--border) / 0.36);
  background: hsl(var(--card) / 0.14);
  min-height: 74px;
  padding: 9px 10px 8px;
  box-shadow: none;
}

.split-panel--bubble-module .bubble-vision-rails li {
  border-color: hsl(var(--border) / 0.34);
  background: hsl(var(--card) / 0.12);
}

.split-panel--bubble-module .bubble-vision-rails {
  margin-top: 10px;
  gap: 6px;
  display: flex;
  flex-wrap: wrap;
}

.split-panel--bubble-module .bubble-vision-rails li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 11.5px;
  line-height: 1.15;
}

.split-panel--bubble-module .bubble-vision-rail-index {
  min-width: 22px;
  min-height: 18px;
  padding: 0 5px;
  font-size: 9px;
  letter-spacing: 0.06em;
  border-color: hsl(var(--primary) / 0.16);
  background: hsl(var(--primary) / 0.06);
}

.bubble-vision-board-foot {
  margin-top: 10px;
  padding: 9px 10px 10px;
  border-radius: 12px;
  border: 1px solid hsl(var(--border) / 0.5);
  background:
    linear-gradient(180deg, hsl(var(--card) / 0.26), hsl(var(--card) / 0.14));
  box-shadow: inset 0 1px 0 hsl(var(--foreground) / 0.02);
}

.bubble-vision-board-foot-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: hsl(var(--primary));
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bubble-vision-board-foot-label::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.08);
}

.bubble-vision-board-foot p {
  margin: 6px 0 0;
  color: hsl(214 15% 78%);
  font-size: 12.2px;
  line-height: 1.36;
}

.split-panel--bubble-module > .bubble-graph-panel {
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: start;
  gap: 7px;
  min-height: 100%;
  padding-left: 0;
}

.bubble-graph-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  border-radius: 14px;
  border: 0;
  background: transparent;
  padding: 1px 0 6px;
  border-bottom: 1px solid hsl(var(--border) / 0.32);
  box-shadow: none;
}

.bubble-graph-panel-head-title {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.bubble-graph-panel-kicker {
  color: hsl(var(--primary));
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bubble-graph-panel-head-title strong {
  color: hsl(var(--foreground));
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.bubble-graph-panel-meta {
  color: hsl(214 13% 70%);
  font-size: 11.4px;
  line-height: 1.3;
}

.bubble-graph-panel-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid hsl(var(--primary) / 0.2);
  background: hsl(var(--primary) / 0.08);
  color: hsl(var(--primary));
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.split-panel--bubble-module .bubble-shell {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid hsl(var(--border) / 0.44);
  background:
    radial-gradient(circle at 50% 18%, hsl(var(--primary) / 0.06), transparent 52%),
    linear-gradient(180deg, hsl(var(--card) / 0.28), hsl(var(--card) / 0.12));
  box-shadow:
    inset 0 1px 0 hsl(var(--foreground) / 0.02),
    inset 0 0 0 1px hsl(var(--primary) / 0.025);
  padding: 3px;
}

.split-panel--bubble-module .bubble-shell::before {
  inset: -14% 10% auto 10%;
  height: 36%;
  background: radial-gradient(circle, hsl(var(--primary) / 0.06), transparent 72%);
}

.split-panel--bubble-module .bubble-svg {
  height: clamp(392px, 45.5vw, 576px);
  max-height: min(74vh, 576px);
  border-radius: 12px;
  border: 1px solid hsl(var(--border) / 0.28);
  background:
    radial-gradient(circle at 50% 26%, hsl(var(--primary) / 0.04), transparent 60%),
    linear-gradient(180deg, hsl(var(--card) / 0.14), hsl(var(--card) / 0.06));
}

.split-panel--bubble-module .bubble-svg .label {
  font-size: 2.5px;
}

.split-panel--bubble-module .bubble-svg .label-small {
  font-size: 2.12px;
}

.bubble-graph-panel-foot {
  border-radius: 14px;
  border: 1px solid hsl(var(--border) / 0.42);
  background: linear-gradient(180deg, hsl(var(--card) / 0.2), hsl(var(--card) / 0.12));
  padding: 8px 9px;
  box-shadow: inset 0 1px 0 hsl(var(--foreground) / 0.02);
}

.bubble-graph-panel-notes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.bubble-graph-panel-notes li {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid hsl(var(--border) / 0.42);
  background: hsl(var(--card) / 0.22);
  color: hsl(212 14% 77%);
  font-size: 10.8px;
  line-height: 1;
  letter-spacing: 0.03em;
}

.bubble-graph-panel-notes li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  margin-right: 6px;
  background: hsl(var(--primary));
  box-shadow: 0 0 10px hsl(var(--primary) / 0.35);
}

.bubble-graph-panel-notes li:nth-child(3)::before {
  background: hsl(45 90% 60%);
  box-shadow: 0 0 10px hsl(45 90% 60% / 0.28);
}

.bubble-brief-shell {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid hsl(var(--primary) / 0.14);
  background: linear-gradient(180deg, hsl(var(--card) / 0.76), hsl(var(--card) / 0.54));
  box-shadow: var(--shadow-panel);
  padding: 18px;
  gap: 14px;
}

.bubble-brief-shell::before {
  content: "";
  position: absolute;
  inset: -12% 10% auto 10%;
  height: 34%;
  border-radius: 999px;
  background: radial-gradient(circle, hsl(var(--primary) / 0.1), transparent 72%);
  pointer-events: none;
}

.bubble-brief-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(hsl(var(--border) / 0.32) 1px, transparent 1px),
    linear-gradient(90deg, hsl(var(--border) / 0.24) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at 24% 24%, black 12%, transparent 75%);
}

.bubble-brief-shell > * {
  position: relative;
  z-index: 1;
}

.bubble-brief-header {
  border-radius: 16px;
  border: 1px solid hsl(var(--border) / 0.5);
  background: linear-gradient(180deg, hsl(var(--card) / 0.34), hsl(var(--card) / 0.16));
  padding: 12px 13px 13px;
}

.bubble-brief-header .title-section {
  max-width: 12.5ch;
  letter-spacing: -0.02em;
}

.bubble-brief-header .lead {
  max-width: 36ch;
  color: hsl(214 17% 76%);
}

.bubble-brief-eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.bubble-brief-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid hsl(var(--border) / 0.6);
  background: hsl(var(--card) / 0.42);
  color: hsl(var(--muted-foreground));
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.bubble-vision-board {
  border-radius: 16px;
  border: 1px solid hsl(var(--primary) / 0.14);
  background: linear-gradient(180deg, hsl(var(--card) / 0.44), hsl(var(--card) / 0.24));
  box-shadow: inset 0 1px 0 hsl(var(--foreground) / 0.03);
  padding: 12px;
}

.bubble-vision-board-head {
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid hsl(var(--border) / 0.42);
}

.bubble-vision-board-head h3 {
  font-size: 19px;
  line-height: 1.14;
  letter-spacing: -0.015em;
}

.bubble-vision-board-head p {
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-size: 12.5px;
  line-height: 1.38;
}

.bubble-vision-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.bubble-vision-cell {
  border-radius: 12px;
  border: 1px solid hsl(var(--border) / 0.52);
  background: hsl(var(--card) / 0.32);
  padding: 10px 10px 9px;
  min-height: 82px;
}

.bubble-vision-cell-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(var(--primary));
}

.bubble-vision-cell-label::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.08);
}

.bubble-vision-cell p {
  margin: 7px 0 0;
  color: hsl(214 15% 76%);
  font-size: 12px;
  line-height: 1.35;
}

.bubble-vision-rails {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 7px;
}

.bubble-vision-rails li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 9px;
  border-radius: 11px;
  border: 1px solid hsl(var(--border) / 0.5);
  background: hsl(var(--card) / 0.28);
  padding: 8px 9px;
  color: hsl(var(--secondary-foreground));
  font-size: 12.5px;
  line-height: 1.35;
}

.bubble-vision-rail-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  min-height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  border: 1px solid hsl(var(--primary) / 0.22);
  background: hsl(var(--primary) / 0.08);
  color: hsl(var(--primary));
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.bubble-shell {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid hsl(var(--primary) / 0.14);
  background: linear-gradient(180deg, hsl(var(--card) / 0.74), hsl(var(--card) / 0.52));
  padding: 18px;
  box-shadow: var(--shadow-panel);
}

.bubble-shell::before {
  content: "";
  position: absolute;
  inset: -18% 12% auto 12%;
  height: 46%;
  border-radius: 999px;
  background: radial-gradient(circle, hsl(var(--primary) / 0.08), transparent 72%);
  pointer-events: none;
}

.bubble-svg {
  display: block;
  width: 100%;
  height: clamp(240px, 30vw, 380px);
  max-height: min(52vh, 420px);
  min-height: 0;
  aspect-ratio: 100 / 84;
}

.bubble-svg .grid {
  stroke: hsl(var(--border) / 0.18);
  stroke-width: 0.22;
}

.bubble-svg .link {
  stroke: hsl(var(--primary) / 0.35);
  stroke-width: 0.35;
  stroke-dasharray: 1.4 1;
  animation: dash 14s linear infinite;
}

.bubble-svg .node-ring {
  fill: none;
  stroke: hsl(var(--primary) / 0.35);
  stroke-width: 0.25;
}

.bubble-svg .node-core {
  fill: hsl(var(--primary) / 0.12);
  stroke: hsl(var(--primary) / 0.55);
  stroke-width: 0.35;
}

.bubble-svg .node-core.warning {
  fill: hsl(45 90% 55% / 0.14);
  stroke: hsl(45 90% 55% / 0.55);
}

.bubble-svg .node-core.node-core--community {
  fill: hsl(var(--primary) / 0.18);
  stroke: hsl(var(--primary) / 0.7);
}

.bubble-svg .node-core-fill {
  fill: hsl(var(--primary) / 0.08);
}

.bubble-svg .node-core-fill--community {
  fill: hsl(var(--primary) / 0.14);
}

.bubble-svg .node-ring--policy {
  stroke: hsl(45 90% 55% / 0.45);
}

.bubble-svg .pulse {
  fill: none;
  stroke: hsl(var(--primary) / 0.16);
  stroke-width: 0.22;
  animation: pulse-ring 4.6s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}

.bubble-svg .pulse--small {
  animation-duration: 5.6s;
}

.bubble-svg .pulse--policy {
  stroke: hsl(45 90% 55% / 0.14);
  animation-duration: 7.4s;
}

.bubble-svg .label {
  fill: hsl(var(--foreground));
  font-size: 2.1px;
  font-family: var(--font-sans);
  letter-spacing: 0.01em;
}

.bubble-svg .label-strong {
  font-weight: 600;
}

.bubble-svg .label-small {
  font-size: 1.7px;
  letter-spacing: 0.02em;
}

.bubble-svg .label-soft {
  fill: hsl(210 18% 82% / 0.88);
}

.bubble-svg .signal-link {
  fill: none;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-linejoin: round;
  shape-rendering: geometricPrecision;
}

.bubble-svg .signal-link-glow {
  fill: none;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.bubble-svg .signal-link-glow--exchange {
  stroke: hsl(var(--primary) / 0.12);
  stroke-width: 1.02;
}

.bubble-svg .signal-link-glow--policy {
  stroke: hsl(45 90% 55% / 0.1);
  stroke-width: 0.82;
}

.bubble-svg .signal-link--exchange {
  stroke: hsl(var(--primary) / 0.34);
  stroke-width: 0.42;
  stroke-dasharray: 1.2 1.05;
}

.bubble-svg .signal-link--policy {
  stroke: hsl(45 90% 55% / 0.24);
  stroke-width: 0.34;
  stroke-dasharray: 0.85 1.45;
}

.bubble-svg .signal-link--policy-soft {
  stroke-opacity: 0.72;
}

.bubble-svg .signal-particles {
  pointer-events: none;
}

.bubble-svg .signal-particle {
  vector-effect: non-scaling-stroke;
  transform-origin: center;
  opacity: 0.82;
}

.bubble-svg .signal-particle--indicator {
  fill: hsl(186 66% 58%);
  stroke: hsl(187 76% 86% / 0.28);
  stroke-width: 0.12;
}

.bubble-svg .signal-particle--aggregate {
  fill: hsl(192 44% 92%);
  stroke: hsl(188 62% 72% / 0.28);
  stroke-width: 0.12;
}

.bubble-svg .signal-particle--policy {
  fill: hsl(41 74% 62%);
  stroke: hsl(40 84% 88% / 0.26);
  stroke-width: 0.1;
}

.bubble-svg .signal-particle--ghost {
  opacity: 0.18;
}

.bubble-svg .bubble-hotspot-rings {
  pointer-events: none;
}

.bubble-svg .bubble-hotspot-ring {
  fill: none;
  stroke: hsl(var(--primary) / 0.42);
  stroke-width: 0.22;
  opacity: 0;
  transition: opacity 160ms ease;
}

.bubble-svg .bubble-hotspot-ring[data-bubble-highlight="public-sector"],
.bubble-svg .bubble-hotspot-ring[data-bubble-highlight="sme"] {
  stroke: hsl(45 90% 55% / 0.5);
}

.bubble-svg .bubble-hotspot-ring[data-active="true"] {
  opacity: 0.95;
}

.bubble-svg .bubble-hotspot {
  fill: transparent;
  stroke: transparent;
  stroke-width: 0.65;
  cursor: pointer;
  touch-action: manipulation;
  vector-effect: non-scaling-stroke;
}

.bubble-svg .bubble-hotspot:hover,
.bubble-svg .bubble-hotspot:focus-visible {
  fill: hsl(var(--primary) / 0.03);
  stroke: hsl(var(--primary) / 0.22);
  outline: none;
}

.bubble-svg .bubble-hotspot[data-bubble-node="public-sector"]:hover,
.bubble-svg .bubble-hotspot[data-bubble-node="public-sector"]:focus-visible,
.bubble-svg .bubble-hotspot[data-bubble-node="sme"]:hover,
.bubble-svg .bubble-hotspot[data-bubble-node="sme"]:focus-visible {
  stroke: hsl(45 90% 55% / 0.28);
}

.bubble-shell[data-caption-open="true"] {
  border-color: hsl(var(--primary) / 0.2);
}

.bubble-caption {
  position: absolute;
  left: 14px;
  right: auto;
  bottom: 14px;
  width: min(320px, calc(100% - 28px));
  border-radius: 14px;
  border: 1px solid hsl(var(--border) / 0.72);
  background: linear-gradient(180deg, hsl(var(--card) / 0.92), hsl(var(--card) / 0.86));
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 28px hsl(220 30% 3% / 0.35), inset 0 1px 0 hsl(var(--foreground) / 0.04);
  padding: 10px 12px 12px;
  z-index: 2;
}

.bubble-shell[data-caption-mode="anchored"] .bubble-caption {
  left: var(--bubble-caption-left, 12px);
  top: var(--bubble-caption-top, 12px);
  right: auto;
  bottom: auto;
  width: min(296px, calc(100% - 24px));
  margin: 0;
  border-radius: 13px;
  padding: 9px 11px 11px;
  z-index: 4;
  box-shadow: 0 14px 28px hsl(220 30% 3% / 0.28), inset 0 1px 0 hsl(var(--foreground) / 0.035);
}

.bubble-shell[data-caption-mode="compact"] .bubble-caption {
  left: var(--bubble-caption-left, 10px);
  top: var(--bubble-caption-top, 10px);
  right: auto;
  bottom: auto;
  width: min(248px, calc(100% - 20px));
  margin: 0;
  border-radius: 12px;
  padding: 8px 10px 10px;
  z-index: 4;
  box-shadow: 0 12px 24px hsl(220 30% 3% / 0.28), inset 0 1px 0 hsl(var(--foreground) / 0.035);
}

.bubble-shell[data-caption-mode="anchored"] .bubble-caption::after,
.bubble-shell[data-caption-mode="compact"] .bubble-caption::after {
  content: "";
  position: absolute;
  left: var(--bubble-caption-arrow-x, 22px);
  width: 10px;
  height: 10px;
  border-left: 1px solid hsl(var(--border) / 0.72);
  border-top: 1px solid hsl(var(--border) / 0.72);
  background: hsl(var(--card) / 0.9);
  transform: translateX(-50%) rotate(45deg);
}

.bubble-shell[data-caption-mode="anchored"][data-caption-placement="above"] .bubble-caption::after,
.bubble-shell[data-caption-mode="compact"][data-caption-placement="above"] .bubble-caption::after {
  bottom: -6px;
  top: auto;
  transform: translateX(-50%) rotate(225deg);
}

.bubble-shell[data-caption-mode="anchored"][data-caption-placement="below"] .bubble-caption::after,
.bubble-shell[data-caption-mode="compact"][data-caption-placement="below"] .bubble-caption::after {
  top: -6px;
  bottom: auto;
  transform: translateX(-50%) rotate(45deg);
}

.bubble-caption-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.bubble-caption-kicker {
  margin: 0;
  font-size: 11px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: hsl(var(--primary));
  font-weight: 700;
}

.bubble-caption-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid hsl(var(--border) / 0.8);
  background: hsl(var(--card) / 0.45);
  color: hsl(var(--muted-foreground));
  font-size: 12px;
  line-height: 1;
}

.bubble-caption-close:hover {
  color: hsl(var(--foreground));
  border-color: hsl(var(--border) / 1);
}

.bubble-caption-title {
  margin: 6px 0 4px;
  font-size: 14px;
  line-height: 1.25;
  color: hsl(var(--foreground));
}

.bubble-caption-copy {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: hsl(var(--muted-foreground));
}

.bubble-caption-hint {
  display: none;
  appearance: none;
  font: inherit;
  position: absolute;
  right: 14px;
  bottom: 14px;
  margin: 0;
  border-radius: 999px;
  border: 1px solid hsl(var(--border) / 0.65);
  background: hsl(var(--card) / 0.56);
  color: hsl(var(--muted-foreground));
  font-size: 11px;
  line-height: 1;
  padding: 8px 10px;
  z-index: 1;
  cursor: pointer;
  touch-action: manipulation;
}

.bubble-shell[data-caption-open="true"] .bubble-caption-hint {
  opacity: 0;
  pointer-events: none;
}

.bubble-shell[data-caption-mode="compact"] .bubble-caption-head {
  gap: 8px;
}

.bubble-shell[data-caption-mode="compact"] .bubble-caption-kicker {
  font-size: 10px;
  letter-spacing: 0.1em;
}

.bubble-shell[data-caption-mode="compact"] .bubble-caption-close {
  min-height: 24px;
  padding: 3px 7px;
  font-size: 11px;
}

.bubble-shell[data-caption-mode="compact"] .bubble-caption-title {
  margin: 4px 0 3px;
  font-size: 13px;
}

.bubble-shell[data-caption-mode="compact"] .bubble-caption-copy {
  font-size: 11px;
  line-height: 1.38;
  max-height: 8.8em;
  overflow: auto;
  padding-right: 2px;
}

.bubble-shell[data-caption-mode="anchored"] .bubble-caption-head {
  gap: 8px;
}

.bubble-shell[data-caption-mode="anchored"] .bubble-caption-kicker {
  font-size: 10.5px;
  letter-spacing: 0.11em;
}

.bubble-shell[data-caption-mode="anchored"] .bubble-caption-close {
  min-height: 24px;
  padding: 3px 7px;
  font-size: 11px;
}

.bubble-shell[data-caption-mode="anchored"] .bubble-caption-title {
  margin: 4px 0 3px;
  font-size: 13px;
}

.bubble-shell[data-caption-mode="anchored"] .bubble-caption-copy {
  font-size: 11.5px;
  line-height: 1.4;
}

.bubble-legend {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.bubble-brief-shell .bubble-legend {
  margin-top: 0;
}

.bubble-legend-title {
  margin: 0 0 2px;
  color: hsl(var(--foreground));
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.bubble-legend-disclosure {
  display: block;
  gap: 0;
  margin-top: 14px;
  border-radius: 14px;
  border: 1px solid hsl(var(--border) / 0.58);
  background: linear-gradient(180deg, hsl(var(--card) / 0.28), hsl(var(--card) / 0.2));
  overflow: hidden;
}

.bubble-legend-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  cursor: pointer;
  user-select: none;
}

.bubble-legend-summary-main {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.bubble-legend-summary-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid hsl(var(--primary) / 0.22);
  background: hsl(var(--primary) / 0.08);
  color: hsl(var(--primary));
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.bubble-legend-summary::-webkit-details-marker {
  display: none;
}

.bubble-legend-summary::marker {
  content: "";
}

.bubble-legend-summary .bubble-legend-title {
  margin: 0;
}

.bubble-legend-summary-copy {
  color: hsl(var(--muted-foreground));
  font-size: 11.5px;
  line-height: 1.3;
  text-align: right;
}

.bubble-brief-shell .bubble-legend-summary-copy {
  text-align: left;
}

.bubble-legend-disclosure[open] .bubble-legend-summary {
  border-bottom: 1px solid hsl(var(--border) / 0.45);
  background: hsl(var(--card) / 0.16);
}

.bubble-legend-body {
  display: grid;
  gap: 10px;
  padding: 10px;
}

.bubble-brief-shell .bubble-legend-disclosure {
  margin-top: 0;
  border-radius: 16px;
  border-color: hsl(var(--border) / 0.55);
  background: linear-gradient(180deg, hsl(var(--card) / 0.34), hsl(var(--card) / 0.22));
}

.bubble-brief-shell .bubble-legend-summary {
  padding: 11px 12px;
}

.bubble-brief-shell .bubble-legend-body {
  gap: 8px;
  padding: 10px;
}

.split-panel--bubble-module .bubble-legend-disclosure {
  margin-top: 0;
  border-radius: 14px;
}

.split-panel--bubble-module .bubble-legend-summary {
  padding: 10px 11px;
}

.split-panel--bubble-module .bubble-legend-summary-badge {
  min-height: 24px;
  padding: 3px 8px;
  font-size: 10px;
}

.split-panel--bubble-module .bubble-legend-body {
  gap: 0;
  padding: 4px 11px 10px;
}

.legend-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 12px;
  border: 1px solid hsl(var(--border) / 0.6);
  background: hsl(var(--card) / 0.34);
  padding: 10px 12px;
  font-size: 13px;
}

.legend-row .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: hsl(var(--secondary-foreground));
}

.legend-row .tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: hsl(var(--primary));
}

.legend-row.warning .tag::before {
  background: hsl(45 90% 55%);
}

.legend-row.indicator .tag::before {
  background: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.12);
}

.legend-row.aggregate .tag::before {
  background: hsl(190 90% 92%);
  border: 1px solid hsl(var(--primary) / 0.45);
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.08);
}

.legend-row.policy .tag::before {
  background: hsl(45 92% 62%);
  box-shadow: 0 0 0 3px hsl(45 92% 62% / 0.1);
}

.legend-row .detail {
  color: hsl(var(--muted-foreground));
  text-align: right;
}

.signal-legend .legend-row {
  align-items: flex-start;
}

.signal-legend .legend-row {
  gap: 10px;
  padding: 9px 10px;
}

.signal-legend .legend-row .detail {
  max-width: 24ch;
  font-size: 11.5px;
  line-height: 1.35;
}

.bubble-brief-shell .signal-legend .legend-row {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 10px 11px;
}

.split-panel--bubble-module .signal-legend .legend-row {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border: 0;
  border-top: 1px solid hsl(var(--border) / 0.32);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.split-panel--bubble-module .signal-legend .legend-row:first-child {
  border-top: 0;
}

.split-panel--bubble-module .signal-legend .legend-row .tag {
  font-weight: 600;
}

.bubble-brief-shell .signal-legend .legend-row .tag {
  font-weight: 600;
  white-space: nowrap;
}

.bubble-brief-shell .signal-legend .legend-row .flow {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid hsl(var(--border) / 0.48);
  background: hsl(var(--card) / 0.22);
  color: hsl(212 14% 74%);
  font-size: 10.5px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.split-panel--bubble-module .signal-legend .legend-row .flow {
  min-height: 20px;
  padding: 2px 7px;
  font-size: 9.8px;
  letter-spacing: 0.07em;
}

.bubble-brief-shell .legend-row.indicator .flow {
  border-color: hsl(var(--primary) / 0.2);
  background: hsl(var(--primary) / 0.06);
  color: hsl(189 46% 78%);
}

.bubble-brief-shell .legend-row.aggregate .flow {
  border-color: hsl(190 70% 88% / 0.18);
  background: hsl(190 40% 92% / 0.03);
  color: hsl(191 38% 86%);
}

.bubble-brief-shell .legend-row.policy .flow {
  border-color: hsl(45 90% 55% / 0.18);
  background: hsl(45 90% 55% / 0.05);
  color: hsl(45 72% 74%);
}

.bubble-brief-shell .signal-legend .legend-row .detail {
  max-width: none;
  text-align: left;
  color: hsl(214 13% 72%);
  font-size: 11.5px;
}

.split-panel--bubble-module .signal-legend .legend-row .detail {
  font-size: 11px;
  color: hsl(214 13% 71%);
}

.bubble-microcopy {
  margin: 2px 0 0;
  border-radius: 12px;
  border: 1px solid hsl(var(--primary) / 0.14);
  background: linear-gradient(180deg, hsl(var(--card) / 0.28), hsl(var(--card) / 0.18));
  color: hsl(var(--secondary-foreground));
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.45;
}

.bubble-brief-shell .bubble-microcopy {
  margin-top: 1px;
  border-radius: 13px;
  padding: 10px 11px;
  background:
    linear-gradient(180deg, hsl(var(--card) / 0.34), hsl(var(--card) / 0.2));
  color: hsl(212 16% 78%);
  font-size: 11.8px;
  line-height: 1.38;
}

.split-panel--bubble-module .bubble-microcopy {
  margin-top: 8px;
  border-radius: 10px;
  border-color: hsl(var(--border) / 0.32);
  background: hsl(var(--card) / 0.12);
  padding: 8px 10px;
  font-size: 11.2px;
  line-height: 1.35;
}

.split-panel--bubble-module .bubble-graph-panel > .bubble-legend-bridge {
  margin-top: 2px;
  width: 100%;
}

.split-panel--bubble-module .bubble-graph-panel > .bubble-legend-bridge .bubble-legend-summary {
  padding: 9px 10px;
  align-items: center;
}

.split-panel--bubble-module .bubble-graph-panel > .bubble-legend-bridge .bubble-legend-summary-copy {
  text-align: left;
  max-width: none;
}

.split-panel--bubble-module .bubble-graph-panel > .bubble-legend-bridge .bubble-legend-body {
  gap: 0;
  padding: 3px 10px 8px;
}

.split-panel--bubble-module .bubble-graph-panel > .bubble-legend-bridge .signal-legend .legend-row {
  display: grid;
  grid-template-columns: 176px 154px minmax(220px, 1fr);
  align-items: start;
  gap: 12px;
  padding: 8px 0;
  border: 0;
  border-top: 1px solid hsl(var(--border) / 0.32);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.split-panel--bubble-module .bubble-graph-panel > .bubble-legend-bridge .signal-legend .legend-row:first-child {
  border-top: 0;
}

.split-panel--bubble-module .bubble-graph-panel > .bubble-legend-bridge .signal-legend .legend-row.policy {
  grid-template-columns: 170px 144px minmax(300px, 1.55fr);
}

.split-panel--bubble-module .bubble-graph-panel > .bubble-legend-bridge .signal-legend .legend-row .tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  font-weight: 600;
  white-space: nowrap;
  min-width: 0;
  font-size: 12px;
  line-height: 1.2;
}

.split-panel--bubble-module .bubble-graph-panel > .bubble-legend-bridge .signal-legend .legend-row .flow {
  min-height: 20px;
  padding: 2px 7px;
  font-size: 9.8px;
  letter-spacing: 0.07em;
  justify-self: start;
  white-space: nowrap;
}

.split-panel--bubble-module .bubble-graph-panel > .bubble-legend-bridge .signal-legend .legend-row .detail {
  min-width: 0;
  max-width: none;
  text-align: left;
  font-size: 10.9px;
  line-height: 1.34;
  color: hsl(214 13% 72%);
}

.split-panel--bubble-module .bubble-graph-panel > .bubble-legend-bridge .signal-legend .legend-row.policy .detail {
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  max-width: none;
  display: inline-block;
}

.split-panel--bubble-module .bubble-graph-panel > .bubble-legend-bridge .bubble-microcopy {
  margin-top: 6px;
}

.split-panel--bubble-module .bubble-graph-panel > .bubble-legend-bridge .bubble-legend-summary-main {
  gap: 3px;
}

.split-panel--bubble-module .bubble-graph-panel > .bubble-legend-bridge .bubble-legend-title {
  font-size: 12.8px;
}

.split-panel--bubble-module .bubble-graph-panel > .bubble-legend-bridge .bubble-legend-summary-copy {
  font-size: 11px;
  line-height: 1.28;
}

.bubble-vision-footer {
  border-radius: 14px;
  border: 1px solid hsl(var(--border) / 0.48);
  background: linear-gradient(180deg, hsl(var(--card) / 0.28), hsl(var(--card) / 0.16));
  padding: 10px 11px;
  display: grid;
  gap: 5px;
}

.bubble-vision-footer-label {
  color: hsl(var(--primary));
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bubble-vision-footer p {
  margin: 0;
  color: hsl(214 14% 76%);
  font-size: 12.5px;
  line-height: 1.35;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step-card {
  text-align: center;
  padding: 24px 18px;
}

.step-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: hsl(var(--primary) / 0.08);
  border: 1px solid hsl(var(--primary) / 0.2);
  color: hsl(var(--primary));
  box-shadow: inset 0 0 18px hsl(var(--primary) / 0.08);
}

.step-index {
  display: inline-block;
  color: hsl(var(--primary));
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.step-card p {
  color: hsl(var(--muted-foreground));
  font-size: 14px;
  line-height: 1.6;
}

.icon-grid {
  display: grid;
  gap: 8px;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: hsl(var(--primary) / 0.08);
  border: 1px solid hsl(var(--primary) / 0.2);
  color: hsl(var(--primary));
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 700;
}

.card h3,
.glass-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  line-height: 1.2;
}

.card p,
.glass-card p {
  color: hsl(var(--muted-foreground));
  font-size: 14px;
  line-height: 1.6;
}

.card h3 + p,
.glass-card h3 + p,
.panel h2 + p,
.panel h3 + p {
  margin-top: 8px;
}

.card p + ul,
.glass-card p + ul,
.panel p + ul {
  margin-top: 12px;
}

.card p + .callout,
.glass-card p + .callout,
.panel p + .callout,
.card ul + .callout,
.glass-card ul + .callout {
  margin-top: 12px;
}

.card ul,
.glass-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.card ul li,
.glass-card ul li {
  color: hsl(var(--secondary-foreground));
  font-size: 14px;
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.card ul li::before,
.glass-card ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: hsl(var(--primary));
  margin-top: 7px;
  flex: 0 0 auto;
}

.visibility-module {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 28px;
  border: 1px solid hsl(var(--primary) / 0.16);
  background:
    linear-gradient(180deg, hsl(var(--card) / 0.74), hsl(var(--card) / 0.62)),
    radial-gradient(circle at 16% 18%, hsl(var(--primary) / 0.08), transparent 52%);
  box-shadow: var(--shadow-panel);
  overflow: hidden;
}

.visibility-module::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent, hsl(var(--primary) / 0.02)),
    linear-gradient(90deg, hsl(var(--border) / 0.08) 1px, transparent 1px),
    linear-gradient(0deg, hsl(var(--border) / 0.05) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
  opacity: 0.25;
  pointer-events: none;
}

.visibility-head,
.visibility-cards {
  position: relative;
  z-index: 1;
}

.visibility-head {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
  gap: 16px;
  align-items: start;
}

.visibility-head-main,
.visibility-brief {
  min-height: 100%;
  border-radius: 22px;
  border: 1px solid hsl(var(--border) / 0.72);
  background: linear-gradient(180deg, hsl(var(--card) / 0.62), hsl(var(--card) / 0.52));
  box-shadow: inset 0 1px 0 hsl(var(--foreground) / 0.03);
}

.visibility-head-main {
  padding: 18px 18px 16px;
}

.visibility-title {
  margin-top: 10px;
  font-size: clamp(1.9rem, 3.45vw, 2.85rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-wrap: normal;
  max-width: none;
}

.visibility-title-line {
  display: block;
  white-space: nowrap;
}

.visibility-lead {
  margin-top: 12px;
  max-width: 62ch;
  color: hsl(var(--muted-foreground));
  font-size: 1.03rem;
  line-height: 1.5;
}

.visibility-brief {
  padding: 15px 15px 14px;
  display: grid;
  gap: 10px;
}

.visibility-brief-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.visibility-brief-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid hsl(var(--primary) / 0.22);
  background: hsl(var(--primary) / 0.08);
  color: hsl(var(--primary));
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.visibility-brief-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.visibility-brief-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 116px) minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 10px 11px;
  border-radius: 12px;
  border: 1px solid hsl(var(--border) / 0.4);
  background:
    linear-gradient(180deg, hsl(var(--card) / 0.24), hsl(var(--card) / 0.2)),
    linear-gradient(90deg, hsl(var(--primary) / 0.04), transparent 42%);
}

.visibility-brief-list li::before {
  display: none;
}

.visibility-brief-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  margin-top: 1px;
  border-radius: 999px;
  border: 1px solid hsl(var(--primary) / 0.2);
  background: hsl(var(--primary) / 0.06);
  color: hsl(var(--primary));
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
}

.visibility-brief-label {
  color: hsl(var(--primary));
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visibility-brief-copy {
  color: hsl(var(--secondary-foreground));
  font-size: 12.5px;
  line-height: 1.38;
}

.visibility-brief-summary {
  margin-top: 2px;
  padding: 10px 11px;
  border-radius: 12px;
  border: 1px solid hsl(var(--primary) / 0.16);
  background: hsl(var(--primary) / 0.05);
  display: grid;
  gap: 4px;
}

.visibility-brief-summary-label {
  color: hsl(var(--primary));
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.visibility-brief-note {
  margin: 0;
  padding-top: 0;
  color: hsl(var(--muted-foreground));
  font-size: 12px;
  line-height: 1.4;
  max-width: none;
}

.visibility-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.visibility-card {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid hsl(var(--border) / 0.62);
  background:
    linear-gradient(180deg, hsl(var(--card) / 0.56), hsl(var(--card) / 0.46)),
    radial-gradient(circle at 18% 10%, hsl(var(--primary) / 0.06), transparent 55%);
  box-shadow: inset 0 1px 0 hsl(var(--foreground) / 0.03);
}

.visibility-card-kicker {
  color: hsl(var(--primary));
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.visibility-card h3 {
  margin: 0;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.visibility-card p {
  margin: 0;
  color: hsl(var(--secondary-foreground));
  font-size: 14px;
  line-height: 1.45;
  max-width: 30ch;
}

.visibility-card-foot {
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid hsl(var(--border) / 0.36);
  display: grid;
  gap: 4px;
}

.visibility-card-foot-label {
  color: hsl(var(--muted-foreground));
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visibility-card-foot-copy {
  color: hsl(var(--foreground) / 0.86);
  font-size: 13px;
  line-height: 1.35;
}

.problem-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.problem-stat {
  text-align: center;
  padding: 22px 14px;
}

.problem-stat .value {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  font-weight: 700;
  margin-bottom: 8px;
}

.problem-stat .copy {
  color: hsl(var(--muted-foreground));
  font-size: 13px;
  line-height: 1.45;
}

.roadmap-card {
  padding-top: 18px;
}

.roadmap-card .rail {
  height: 3px;
  border-radius: 999px;
  margin: -18px -22px 16px;
  background: linear-gradient(90deg, hsl(var(--primary) / 0.65), hsl(var(--primary) / 0.1));
}

.roadmap-card .phase {
  color: hsl(var(--primary));
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 6px;
}

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid hsl(var(--primary) / 0.18);
  background: linear-gradient(180deg, hsl(var(--card) / 0.88), hsl(var(--card) / 0.7));
  padding: 34px 24px;
  box-shadow: var(--shadow-panel);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: -40% -15% auto;
  height: 200px;
  background: radial-gradient(circle at 50% 50%, hsl(var(--primary) / 0.2), transparent 72%);
  pointer-events: none;
}

.cta-band .section-inner {
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.cta-band p {
  color: hsl(var(--muted-foreground));
  max-width: 68ch;
}

.page-hero {
  padding: 72px 0 34px;
}

.page-hero .lead {
  max-width: 74ch;
}

.page-stack {
  display: grid;
  gap: 22px;
}

.content-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.content-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.grid-top {
  margin-top: 10px;
}

.section-head {
  text-align: center;
  margin-inline: auto;
}

.section-head > .lead {
  margin: 14px auto 0;
  text-align: center;
}

.section-head .eyebrow-row {
  justify-content: center;
  margin-bottom: 10px;
}

.section-head--820 { max-width: 820px; }
.section-head--860 { max-width: 860px; }
.section-head--880 { max-width: 880px; }
.section-head--920 { max-width: 920px; }

.cybersiren-polish-shell {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 28px;
  border: 1px solid hsl(var(--primary) / 0.14);
  padding: clamp(16px, 1.6vw, 22px);
  background:
    radial-gradient(52% 56% at 18% 10%, hsl(var(--primary) / 0.07), transparent 72%),
    radial-gradient(44% 52% at 84% 12%, hsl(var(--primary) / 0.05), transparent 78%),
    linear-gradient(180deg, hsl(var(--card) / 0.76), hsl(var(--card) / 0.56));
  box-shadow:
    0 20px 52px hsl(220 38% 3% / 0.28),
    inset 0 1px 0 hsl(var(--foreground) / 0.03);
}

.cybersiren-polish-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(hsl(var(--border) / 0.24) 1px, transparent 1px),
    linear-gradient(90deg, hsl(var(--border) / 0.2) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 12%, black 8%, transparent 78%);
}

.cybersiren-polish-shell > * {
  position: relative;
  z-index: 1;
}

.cybersiren-polish-head > .lead {
  max-width: 62ch;
}

.cybersiren-polish-grid {
  align-items: stretch;
  gap: 18px;
}

.cybersiren-polish-card {
  border-radius: 20px;
  border-width: 1px;
  border-style: solid;
  border-color: hsl(var(--border) / 0.64);
  padding: 24px;
  min-height: 100%;
  box-shadow: var(--shadow-panel);
}

.cybersiren-polish-left {
  background:
    radial-gradient(circle at 14% 18%, hsl(var(--primary) / 0.06), transparent 54%),
    linear-gradient(180deg, hsl(var(--card) / 0.82), hsl(var(--card) / 0.68));
}

.cybersiren-polish-right {
  background:
    radial-gradient(circle at 86% 12%, hsl(var(--primary) / 0.04), transparent 54%),
    linear-gradient(180deg, hsl(var(--card) / 0.76), hsl(var(--card) / 0.62));
}

.cybersiren-polish-left .section-title {
  font-size: clamp(1.55rem, 0.95vw + 1.12rem, 1.95rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.cybersiren-polish-left .prose {
  font-size: 14.5px;
  line-height: 1.5;
}

.cybersiren-polish-right h3 {
  font-size: 1.55rem;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.cybersiren-polish-right-copy {
  max-width: 62ch;
}

.cybersiren-polish-list {
  gap: 11px;
}

.cybersiren-polish-right ul {
  gap: 11px;
}

.cybersiren-polish-right ul li,
.cybersiren-polish-left .timeline li {
  line-height: 1.48;
}

.cybersiren-polish-right .callout {
  border-radius: 16px;
  border-color: hsl(var(--primary) / 0.2);
  background:
    radial-gradient(circle at 10% 10%, hsl(var(--primary) / 0.06), transparent 62%),
    hsl(var(--primary) / 0.05);
  padding: 14px;
}

.cybersiren-polish-right .callout strong {
  margin-bottom: 5px;
}

.cybersiren-polish-right .callout p {
  max-width: 62ch;
  line-height: 1.45;
}

.cybersiren-polish-note {
  margin: 8px 0 0;
  color: hsl(213 14% 72%);
  font-size: 12px;
  line-height: 1.35;
}

.products-page-hero {
  padding-bottom: 26px;
}

.products-hero-head {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
  gap: 12px;
}

.products-hero-head .eyebrow-row {
  justify-content: center;
  gap: 10px;
  margin-bottom: 2px;
}

.products-hero-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid hsl(var(--border) / 0.58);
  background: hsl(var(--card) / 0.34);
  color: hsl(var(--muted-foreground));
  font-size: 10.4px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.products-hero-head .title-subpage {
  max-width: min(100%, 34ch);
  margin-inline: auto;
  line-height: 0.99;
  letter-spacing: -0.03em;
  text-wrap: initial;
}

.products-hero-title-line {
  display: block;
  white-space: nowrap;
}

.products-hero-title-break {
  display: block;
  margin-top: 0.05em;
}

.products-hero-summary {
  max-width: 46ch;
  margin-inline: auto;
  line-height: 1.34;
}

.products-hero-points {
  list-style: none;
  margin: 2px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.products-hero-points li {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid hsl(var(--border) / 0.54);
  background: linear-gradient(180deg, hsl(var(--card) / 0.34), hsl(var(--card) / 0.2));
  color: hsl(var(--secondary-foreground));
  font-size: 12.8px;
  line-height: 1.2;
  box-shadow: inset 0 1px 0 hsl(var(--foreground) / 0.03);
}

.products-hero-points li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  margin-right: 8px;
  background: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.09);
}

.products-hero-head .lead {
  max-width: 54ch;
  margin-inline: auto;
}

.products-hero-head .btn-row {
  justify-content: center;
}

.products-hero-domain {
  margin: 2px 0 0;
  color: hsl(213 14% 73%);
  font-size: 13px;
  line-height: 1.4;
}

.roadmap-hero-head .title-subpage {
  max-width: min(100%, 39ch);
}

.roadmap-hero-title-break {
  margin-top: 0.08em;
  font-size: 0.8em;
  line-height: 1.02;
  letter-spacing: -0.018em;
  font-weight: 650;
  max-width: none;
  margin-inline: auto;
  white-space: nowrap;
}

.roadmap-hero-head .products-hero-summary {
  max-width: 56ch;
}

.roadmap-hero-head .products-hero-points li {
  min-height: 30px;
  padding: 5px 10px;
  font-size: 12.2px;
}

.about-hero-head .title-subpage {
  max-width: min(100%, 37ch);
}

.about-hero-title-break {
  margin-top: 0.08em;
  font-size: 0.8em;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: hsl(var(--foreground));
  white-space: nowrap;
}

.about-showcase {
  gap: 15px;
}

.about-grid-top {
  align-items: start;
  gap: 14px;
}

.about-grid-top > .products-card,
.about-grid-top .products-side-stack > .products-card {
  min-height: 0;
}

.about-grid-top .products-card {
  padding: 22px;
}

.about-grid-top .products-capability-list li {
  padding: 12px 13px;
}

.about-grid-top .products-capability-value {
  font-size: 13.5px;
  line-height: 1.37;
}

.about-showcase .products-card--context .products-card-head > p,
.about-showcase .products-card--roadmap .products-card-head > p {
  max-width: none;
}

.about-showcase .products-why-list li {
  grid-template-columns: minmax(102px, auto) minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 10px 11px;
}

.about-showcase .products-why-label {
  font-size: 9.7px;
  letter-spacing: 0.11em;
}

.about-showcase .products-why-value {
  font-size: 12.6px;
  line-height: 1.34;
}

.about-principles-panel,
.about-partner-panel {
  padding: 18px;
}

.about-principles-grid,
.about-partner-grid {
  gap: 12px;
  margin-top: 12px;
}

.about-principles-grid .products-track-card,
.about-partner-grid .products-track-card {
  padding: 12px;
  border-radius: 14px;
}

.about-principles-grid .products-track-copy,
.about-partner-grid .products-track-copy {
  margin: 0 0 9px;
  font-size: 12.4px;
  line-height: 1.35;
}

.about-principles-grid .products-track-list,
.about-partner-grid .products-track-list {
  gap: 7px;
}

.about-principles-grid .products-track-list li,
.about-partner-grid .products-track-list li {
  font-size: 12.4px;
  line-height: 1.34;
}

.contact-hero-head .title-subpage {
  max-width: min(100%, 34ch);
}

.contact-hero-title-break {
  margin-top: 0.08em;
  font-size: 0.8em;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: hsl(var(--foreground));
  white-space: nowrap;
}

.contact-showcase {
  gap: 15px;
}

.contact-grid-top {
  align-items: start;
  gap: 14px;
}

.contact-grid-top > .products-card,
.contact-grid-top .products-side-stack > .products-card {
  min-height: 0;
}

.contact-grid-top .products-card {
  padding: 22px;
}

.contact-route-list {
  display: grid;
  gap: 10px;
}

.contact-route-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 13px;
  border-radius: 14px;
  border: 1px solid hsl(var(--border) / 0.44);
  background: linear-gradient(180deg, hsl(var(--card) / 0.18), hsl(var(--card) / 0.1));
  box-shadow: inset 0 1px 0 hsl(var(--foreground) / 0.02);
  text-decoration: none;
  color: inherit;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.contact-route-row:hover,
.contact-route-row:focus-visible {
  border-color: hsl(var(--primary) / 0.26);
  background: linear-gradient(180deg, hsl(var(--card) / 0.26), hsl(var(--card) / 0.14));
  box-shadow:
    0 10px 22px hsl(220 38% 4% / 0.18),
    inset 0 1px 0 hsl(var(--foreground) / 0.03);
}

.contact-route-row:focus-visible {
  outline: 2px solid hsl(var(--primary) / 0.35);
  outline-offset: 2px;
}

.contact-route-main {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.contact-route-label {
  color: hsl(var(--foreground));
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
}

.contact-route-meta {
  color: hsl(var(--muted-foreground));
  font-size: 12.8px;
  line-height: 1.34;
}

.contact-route-email {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid hsl(var(--primary) / 0.18);
  background: hsl(var(--primary) / 0.05);
  color: hsl(var(--primary));
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
}

.contact-response-card .products-status-box p {
  line-height: 1.38;
}

.contact-next-panel {
  padding: 18px;
}

.contact-next-grid {
  gap: 12px;
  margin-top: 12px;
}

.contact-next-grid .products-track-card {
  padding: 12px;
  border-radius: 14px;
}

.contact-next-grid .products-track-copy {
  margin: 0 0 9px;
  font-size: 12.4px;
  line-height: 1.35;
}

.contact-next-grid .products-track-list {
  gap: 7px;
}

.contact-next-grid .products-track-list li {
  font-size: 12.4px;
  line-height: 1.34;
}

.legal-hero-head .title-subpage {
  max-width: min(100%, 20ch);
}

.legal-hero-title-break {
  margin-top: 0.08em;
  font-size: 0.82em;
  line-height: 1.02;
  letter-spacing: -0.018em;
  color: hsl(var(--foreground));
  white-space: nowrap;
}

.legal-hero-head .products-hero-summary {
  max-width: 52ch;
}

.legal-showcase {
  gap: 14px;
}

.legal-meta-strip {
  display: grid;
  gap: 7px;
  padding: 16px 18px;
  border-radius: 18px;
  border-color: hsl(var(--border) / 0.6);
  background:
    radial-gradient(circle at 14% 12%, hsl(var(--primary) / 0.04), transparent 56%),
    linear-gradient(180deg, hsl(var(--card) / 0.76), hsl(var(--card) / 0.62));
}

.legal-meta-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.legal-meta-head strong {
  font-size: 14px;
  line-height: 1.1;
}

.legal-meta-strip p {
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-size: 13px;
  line-height: 1.38;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.legal-card {
  padding: 18px;
  border-radius: 18px;
}

.legal-card--wide {
  grid-column: 1 / -1;
}

.legal-card.prose h2 {
  font-size: 1.08rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.legal-card.prose p,
.legal-card.prose li {
  line-height: 1.48;
}

.technology-hero-head .title-subpage {
  max-width: min(100%, 18.8ch);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.technology-hero-title {
  display: grid;
  justify-items: center;
  gap: 1px;
}

.technology-hero-line {
  display: block;
  text-wrap: balance;
}

.technology-hero-line--brand {
  font-size: 0.72em;
  line-height: 0.98;
  letter-spacing: -0.022em;
}

.technology-hero-line--core {
  line-height: 0.97;
}

.products-grid--product-page {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: start;
}

.products-grid--product-page > .products-card,
.products-grid--product-page .products-side-stack > .products-card {
  min-height: 0;
}

.products-grid--product-page .products-card {
  padding: 22px;
}

.products-grid--product-page .products-card--context h3 {
  font-size: 1.34rem;
  line-height: 1.06;
}

.products-grid--product-page .products-card--context .products-card-head > p {
  max-width: none;
}

.products-grid--product-page .products-why-list {
  gap: 9px;
}

.products-grid--product-page .products-why-list li {
  grid-template-columns: minmax(118px, auto) minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 10px 11px;
}

.products-grid--product-page .products-why-label {
  font-size: 9.7px;
  letter-spacing: 0.11em;
}

.products-grid--product-page .products-why-value {
  font-size: 12.8px;
  line-height: 1.34;
}

.technology-hero-line--meta {
  margin-top: 4px;
  font-size: 0.78em;
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: hsl(var(--foreground));
}

.products-showcase {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 28px;
  border: 1px solid hsl(var(--primary) / 0.14);
  padding: clamp(16px, 1.6vw, 22px);
  gap: 16px;
  background:
    radial-gradient(52% 58% at 16% 12%, hsl(var(--primary) / 0.07), transparent 74%),
    radial-gradient(48% 56% at 84% 10%, hsl(var(--primary) / 0.05), transparent 80%),
    linear-gradient(180deg, hsl(var(--card) / 0.78), hsl(var(--card) / 0.58));
  box-shadow:
    0 22px 58px hsl(220 38% 3% / 0.28),
    inset 0 1px 0 hsl(var(--foreground) / 0.03);
}

.roadmap-showcase {
  gap: 14px;
}

.products-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(hsl(var(--border) / 0.22) 1px, transparent 1px),
    linear-gradient(90deg, hsl(var(--border) / 0.2) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 14%, black 12%, transparent 78%);
}

.products-showcase > * {
  position: relative;
  z-index: 1;
}

.products-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 16px;
  align-items: stretch;
}

.roadmap-grid-top {
  align-items: start;
  gap: 14px;
}

.roadmap-grid-top > .products-card,
.roadmap-grid-top .products-side-stack > .products-card {
  min-height: 0;
}

.roadmap-grid-top .products-card {
  padding: 22px;
}

.roadmap-grid-top .products-capability-list li {
  padding: 12px 13px;
}

.roadmap-grid-top .products-capability-value {
  font-size: 13.5px;
  line-height: 1.37;
}

.roadmap-showcase .products-why-list {
  gap: 9px;
}

.roadmap-showcase .products-why-list li {
  grid-template-columns: minmax(98px, auto) minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 10px 11px;
}

.roadmap-showcase .products-why-label {
  font-size: 9.7px;
  letter-spacing: 0.11em;
}

.roadmap-showcase .products-why-value {
  font-size: 12.8px;
  line-height: 1.36;
}

.roadmap-showcase .products-card--context .products-card-head > p {
  max-width: 44ch;
}

.roadmap-hero-head .products-hero-title-line {
  white-space: nowrap;
}

.about-hero-head .products-hero-title-line {
  white-space: nowrap;
}

@media (min-width: 1101px) {
  .technology-hero-line--core {
    white-space: nowrap;
  }

  .products-grid--product-page .products-card--context .products-card-head > p,
  .products-grid--product-page .products-why-value,
  .about-showcase .products-card--context .products-card-head > p,
  .about-showcase .products-why-value {
    white-space: nowrap;
  }
}

@media (max-width: 1100px) {
  .roadmap-hero-head .products-hero-title-line,
  .about-hero-head .products-hero-title-line {
    white-space: normal;
  }
}

.products-side-stack {
  display: grid;
  gap: 16px;
  align-content: start;
}

.products-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 100%;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid hsl(var(--border) / 0.62);
  box-shadow: var(--shadow-panel);
}

.products-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid hsl(var(--primary) / 0.03);
}

.products-card--primary {
  background:
    radial-gradient(circle at 14% 16%, hsl(var(--primary) / 0.06), transparent 54%),
    linear-gradient(180deg, hsl(var(--card) / 0.84), hsl(var(--card) / 0.7));
}

.products-card--context,
.products-card--roadmap {
  background:
    radial-gradient(circle at 86% 12%, hsl(var(--primary) / 0.04), transparent 56%),
    linear-gradient(180deg, hsl(var(--card) / 0.72), hsl(var(--card) / 0.58));
}

.products-card-head {
  display: grid;
  gap: 8px;
}

.products-card-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 24px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid hsl(var(--primary) / 0.16);
  background: hsl(var(--primary) / 0.05);
  color: hsl(var(--primary));
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.products-card--primary .section-title {
  font-size: clamp(1.55rem, 1vw + 1.05rem, 2rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.products-card--primary .prose {
  margin-top: -1px;
  color: hsl(214 15% 79%);
  font-size: 14.6px;
  line-height: 1.46;
}

.products-card--context h3,
.products-card--roadmap h3 {
  font-size: 1.45rem;
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.products-card--context .products-card-head > p,
.products-card--roadmap .products-card-head > p {
  max-width: 52ch;
  color: hsl(var(--muted-foreground));
  font-size: 14px;
  line-height: 1.45;
}

.products-capability-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-radius: 15px;
  border: 1px solid hsl(var(--border) / 0.44);
  background: linear-gradient(180deg, hsl(var(--card) / 0.18), hsl(var(--card) / 0.08));
  box-shadow: inset 0 1px 0 hsl(var(--foreground) / 0.02);
  overflow: hidden;
}

.products-capability-list li {
  display: grid;
  grid-template-columns: minmax(120px, auto) minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 11px 12px;
  border-top: 1px solid hsl(var(--border) / 0.34);
}

.products-card .products-capability-list li::before,
.products-card .products-why-list li::before {
  content: none;
  display: none;
}

.products-capability-list li:first-child {
  border-top: 0;
}

.products-capability-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: hsl(var(--primary));
  font-size: 10.2px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.products-capability-label::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.08);
}

.products-capability-value {
  color: hsl(var(--secondary-foreground));
  font-size: 13.2px;
  line-height: 1.34;
}

.products-card-foot {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid hsl(var(--border) / 0.32);
}

.products-mini-note {
  margin: 8px 0 0;
  color: hsl(213 14% 72%);
  font-size: 12px;
  line-height: 1.35;
}

.products-why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.products-why-list li {
  display: grid;
  grid-template-columns: minmax(146px, auto) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid hsl(var(--border) / 0.36);
  background: hsl(var(--card) / 0.14);
}

.products-why-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: hsl(190 88% 76%);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.15;
}

.products-why-label::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.08);
}

.products-why-value {
  color: hsl(var(--secondary-foreground));
  font-size: 13.2px;
  line-height: 1.42;
}

.products-roadmap-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.products-roadmap-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: hsl(var(--secondary-foreground));
  font-size: 13.6px;
  line-height: 1.42;
}

.products-card .products-roadmap-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: hsl(var(--primary));
  margin-top: 6px;
  flex: 0 0 auto;
}

.products-status-box {
  border-radius: 15px;
  border: 1px solid hsl(var(--primary) / 0.18);
  background:
    radial-gradient(circle at 10% 10%, hsl(var(--primary) / 0.06), transparent 62%),
    linear-gradient(180deg, hsl(var(--primary) / 0.05), hsl(var(--card) / 0.14));
  padding: 12px;
  display: grid;
  gap: 7px;
  box-shadow: inset 0 1px 0 hsl(var(--foreground) / 0.03);
}

.products-status-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.products-status-head strong {
  font-size: 14px;
  line-height: 1.1;
}

.products-status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid hsl(var(--primary) / 0.24);
  background: hsl(var(--primary) / 0.08);
  color: hsl(var(--primary));
  font-size: 9.8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.products-status-box p {
  margin: 0;
  color: hsl(214 15% 78%);
  font-size: 13.2px;
  line-height: 1.35;
}

.products-tracks-shell {
  padding: 22px;
  border-radius: 20px;
  border-color: hsl(var(--border) / 0.62);
  background:
    radial-gradient(circle at 14% 14%, hsl(var(--primary) / 0.04), transparent 58%),
    linear-gradient(180deg, hsl(var(--card) / 0.8), hsl(var(--card) / 0.66));
}

.roadmap-phases-panel {
  padding: 20px;
}

.products-tracks-head {
  display: grid;
  gap: 8px;
}

.products-tracks-head .section-title {
  margin: 0;
  font-size: clamp(1.45rem, 0.9vw + 1.08rem, 1.9rem);
  line-height: 1.03;
  letter-spacing: -0.02em;
}

.products-tracks-head > p {
  margin: 0;
  max-width: 52ch;
}

.products-track-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.roadmap-phases-grid {
  gap: 14px;
  margin-top: 14px;
}

.products-track-card {
  border-radius: 14px;
  border: 1px solid hsl(var(--border) / 0.48);
  background: linear-gradient(180deg, hsl(var(--card) / 0.28), hsl(var(--card) / 0.16));
  padding: 12px;
  box-shadow: inset 0 1px 0 hsl(var(--foreground) / 0.02);
}

.roadmap-phases-grid .products-track-card {
  padding: 13px;
  border-radius: 15px;
}

.products-track-card .track-label {
  margin-bottom: 7px;
}

.products-track-card .track-title {
  margin-bottom: 9px;
  font-size: 15px;
}

.products-track-copy {
  margin: -2px 0 9px;
  color: hsl(var(--muted-foreground));
  font-size: 12.6px;
  line-height: 1.36;
}

.roadmap-phases-grid .products-track-copy {
  margin: 0 0 10px;
  font-size: 12.4px;
  line-height: 1.35;
}

.products-track-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.roadmap-phases-grid .products-track-list {
  gap: 7px;
}

.roadmap-phases-grid .products-track-list li {
  font-size: 12.4px;
  line-height: 1.34;
}

.products-track-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: hsl(var(--secondary-foreground));
  font-size: 12.8px;
  line-height: 1.38;
}

.products-tracks-shell .products-track-list li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: hsl(var(--primary));
  margin-top: 6px;
  flex: 0 0 auto;
}

.technology-why-card .products-card-head > p {
  max-width: 46ch;
}

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

.kicker-alert {
  border-color: hsl(var(--destructive) / 0.25);
  background: hsl(var(--destructive) / 0.06);
  color: hsl(var(--foreground));
}

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

.note-title {
  display: block;
  margin-bottom: 6px;
  color: hsl(var(--foreground));
  font-size: 13px;
  font-weight: 600;
}

.btn-row-center {
  justify-content: center;
}

.btn-row-tight {
  margin-top: 6px;
}

.btn-row-loose {
  margin-top: 14px;
}

.btn-row-xl {
  margin-top: 18px;
}

.mt-6 { margin-top: 6px; }
.mt-10 { margin-top: 10px; }
.mt-12 { margin-top: 12px; }
.mt-14 { margin-top: 14px; }
.mt-18 { margin-top: 18px; }

.center-block {
  text-align: center;
  margin-inline: auto;
}

.max-w-58ch { max-width: 58ch; }
.max-w-760 { max-width: 760px; }

.lead-center {
  text-align: center;
  margin-inline: auto;
}

.error-panel {
  max-width: 760px;
  margin: 36px auto 0;
  text-align: center;
}

.track-label {
  display: block;
  color: hsl(var(--muted-foreground));
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.track-title {
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}

.callout {
  border-radius: 16px;
  border: 1px solid hsl(var(--primary) / 0.18);
  background: hsl(var(--primary) / 0.05);
  padding: 16px;
}

.callout strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

.callout p {
  color: hsl(var(--muted-foreground));
  font-size: 14px;
  line-height: 1.55;
}

.timeline {
  list-style: none;
  display: grid;
  gap: 14px;
}

.timeline-top {
  margin-top: 12px;
}

.timeline li {
  position: relative;
  padding-left: 20px;
  color: hsl(var(--secondary-foreground));
  font-size: 14px;
  line-height: 1.55;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: hsl(var(--primary));
}

.prose {
  color: hsl(var(--secondary-foreground));
  font-size: 15px;
  line-height: 1.75;
}

.prose > * + * {
  margin-top: 12px;
}

.prose h2,
.prose h3 {
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 18px;
  color: hsl(var(--foreground));
}

.prose ul,
.prose ol {
  margin-top: 8px;
  padding-left: 20px;
}

.prose li + li {
  margin-top: 6px;
}

.legal-draft {
  border-radius: 14px;
  border: 1px solid hsl(var(--destructive) / 0.22);
  background: hsl(var(--destructive) / 0.05);
  color: hsl(var(--secondary-foreground));
  padding: 14px;
  font-size: 14px;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.link-card {
  display: grid;
  gap: 6px;
  border-radius: 14px;
  border: 1px solid hsl(var(--border) / 0.75);
  background: hsl(var(--card) / 0.35);
  padding: 14px;
}

.link-card:hover {
  border-color: hsl(var(--primary) / 0.24);
  box-shadow: var(--shadow-glow);
}

.link-card .title {
  font-weight: 600;
  color: hsl(var(--foreground));
  line-height: 1.3;
}

.link-card .meta {
  color: hsl(var(--muted-foreground));
  font-size: 13px;
}

footer {
  margin-top: 56px;
  border-top: 1px solid hsl(var(--border) / 0.45);
  background: linear-gradient(180deg, hsl(var(--background) / 0.72), hsl(var(--background) / 0.9));
}

.site-footer {
  padding: 34px 0 22px;
}

.footer-grid {
  grid-template-columns: 1.2fr 0.9fr 0.8fr 1.05fr;
  gap: 22px;
  margin-bottom: 24px;
}

.footer-brand img {
  width: auto;
  height: 34px;
}

.footer-brand p {
  margin-top: 10px;
  color: hsl(var(--muted-foreground));
  max-width: 44ch;
  font-size: 14px;
  line-height: 1.65;
}

.footer-group h4 {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(var(--secondary-foreground));
  margin-bottom: 10px;
}

.footer-list {
  list-style: none;
  display: grid;
  gap: 9px;
}

.footer-list a,
.footer-list span {
  color: hsl(var(--muted-foreground));
  font-size: 14px;
  line-height: 1.45;
}

.footer-list a:hover {
  color: hsl(var(--foreground));
}

.footer-bottom {
  border-top: 1px solid hsl(var(--border) / 0.4);
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: hsl(var(--muted-foreground));
  font-size: 12px;
}

.footer-bottom .footer-links {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-bottom .footer-links a {
  color: hsl(var(--muted-foreground));
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
}

.footer-bottom .footer-links a:hover {
  color: hsl(var(--foreground));
  text-decoration-color: hsl(var(--primary) / 0.45);
}

/* Legacy/compat helpers */
.section-title {
  margin-bottom: 10px;
}

.card.reveal-on-scroll,
.glass-card.reveal-on-scroll {
  will-change: transform, opacity;
}

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

.reveal-on-scroll {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal-on-scroll {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--transition-med), transform var(--transition-med);
}

.js .reveal-on-scroll.reveal {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes dash {
  to {
    stroke-dashoffset: -12;
  }
}

@keyframes pulse-ring {
  0%, 100% {
    opacity: 0.25;
    transform: scale(1);
  }

  50% {
    opacity: 0.55;
    transform: scale(1.035);
  }
}

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

  .hero-copy::before {
    inset: -18px -16px auto -16px;
    height: 190px;
  }

  .hero-support {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .hero-support > *:first-child {
    grid-column: 1 / -1;
  }

  .split-panel {
    grid-template-columns: 1fr;
  }

  .split-panel--bubble-module {
    grid-template-columns: 1fr;
    grid-template-areas:
      "right"
      "left";
    gap: 14px;
    padding: 15px;
    border-radius: 22px;
  }

  .split-panel--bubble-module::after {
    display: none;
  }

  .split-panel--bubble-module > .bubble-graph-panel {
    padding-left: 0;
    min-height: 0;
  }

  .split-panel--bubble-module .bubble-brief-header .title-section {
    max-width: 100%;
    font-size: clamp(1.9rem, 5vw, 2.4rem);
  }

  .split-panel--bubble-module .bubble-brief-header .lead {
    max-width: 100%;
  }

  .split-panel--bubble-module .bubble-vision-title .bubble-title-line,
  .split-panel--bubble-module .bubble-vision-lead > span {
    white-space: normal;
  }

  .split-panel--bubble-module .bubble-module-copy-head {
    gap: 9px;
    padding: 11px 12px 12px;
  }

  .split-panel--bubble-module .bubble-vision-rails {
    display: grid;
  }

  .split-panel--bubble-module .bubble-vision-rails li {
    min-height: 0;
    border-radius: 11px;
    padding: 8px 9px;
    line-height: 1.3;
  }

  .bubble-brief-shell {
    gap: 12px;
  }

  .bubble-vision-matrix {
    grid-template-columns: 1fr;
  }

  .products-page-hero {
    padding-bottom: 22px;
  }

  .products-hero-head .title-subpage {
    max-width: 100%;
  }

  .products-hero-title-line {
    white-space: normal;
  }

  .roadmap-hero-title-break {
    white-space: normal;
  }

  .about-hero-title-break {
    white-space: normal;
  }

  .contact-hero-title-break,
  .legal-hero-title-break {
    white-space: normal;
  }

  .technology-hero-head .title-subpage {
    max-width: 100%;
  }

  .products-showcase {
    gap: 14px;
    padding: 15px;
    border-radius: 22px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .products-side-stack {
    gap: 14px;
  }

  .products-track-grid {
    grid-template-columns: 1fr;
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }

  .legal-card--wide {
    grid-column: auto;
  }

  .use-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3,
  .pillars-grid,
  .roadmap-grid,
  .steps-grid,
  .visibility-cards,
  .problem-stats {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .metric-strip {
    grid-template-columns: 1fr;
  }

  .content-grid-3 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .visibility-head {
    grid-template-columns: 1fr;
  }

  .visibility-title {
    max-width: none;
  }

  .visibility-brief-list li {
    grid-template-columns: 34px minmax(0, 108px) minmax(0, 1fr);
  }
}

@media (min-width: 1200px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.17fr) minmax(0, 0.83fr);
    gap: clamp(32px, 2.9vw, 42px);
  }

  .hero-copy {
    gap: 15px;
    padding-right: 8px;
  }

  .hero-copy::before {
    inset: 0 -4px auto -12px;
    height: 176px;
  }

  .hero-proof-list {
    width: min(100%, 640px);
  }

  .hero-support {
    gap: 12px;
    padding-top: 0;
  }

  .hero-brief-panel {
    margin-top: 0;
    padding: 19px 19px 17px;
  }

  .hero-evidence-strip {
    gap: 9px;
  }

  .hero-evidence-card {
    min-height: 118px;
    padding: 11px 11px 10px;
  }

  .hero-evidence-card::before {
    left: 11px;
    right: 11px;
  }

  .hero-evidence-card .metric-value {
    font-size: 16px;
    line-height: 1.14;
  }
}

@media (max-width: 820px) {
  .visibility-module {
    padding: 14px;
    gap: 14px;
    border-radius: 22px;
  }

  .visibility-head-main,
  .visibility-brief,
  .visibility-card {
    border-radius: 16px;
  }

  .visibility-head-main {
    padding: 14px;
  }

  .visibility-brief {
    padding: 13px;
    gap: 10px;
  }

  .visibility-title {
    font-size: clamp(1.55rem, 6.2vw, 2.15rem);
    line-height: 1.08;
    max-width: none;
  }

  .visibility-title-line {
    white-space: normal;
  }

  .visibility-lead {
    font-size: 0.97rem;
    line-height: 1.48;
  }

  .visibility-card {
    padding: 14px;
    gap: 8px;
  }
}

@media (max-width: 560px) {
  .visibility-brief-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .visibility-brief-list li {
    grid-template-columns: 32px 1fr;
    gap: 6px;
    padding: 9px 10px;
  }

  .visibility-brief-label {
    grid-column: 2;
  }

  .visibility-brief-copy {
    grid-column: 1 / -1;
  }

  .visibility-card p {
    max-width: none;
  }
}

@media (max-width: 820px) {
  .navbar {
    align-items: center;
    min-height: 72px;
    gap: 12px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    flex: 0 0 auto;
  }

  .js body[data-nav-open="true"] {
    overflow: hidden;
  }

  .js .nav-links[data-mobile-enhanced="true"] {
    position: fixed;
    top: calc(var(--mobile-nav-offset, 74px) + 10px);
    left: 16px;
    right: 16px;
    z-index: 110;
    width: auto;
    max-height: calc(100dvh - var(--mobile-nav-offset, 74px) - 26px);
    overflow: auto;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid hsl(var(--border) / 0.8);
    background: linear-gradient(180deg, hsl(var(--card) / 0.94), hsl(var(--card) / 0.88));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(0.985);
    transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
  }

  .js header[data-mobile-menu-open="true"] .nav-links[data-mobile-enhanced="true"] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
  }

  .js .nav-links[data-mobile-enhanced="true"] a {
    width: 100%;
    justify-content: space-between;
    min-height: 44px;
    padding: 11px 12px;
    font-size: 14px;
    border-radius: 12px;
    background: hsl(var(--card) / 0.22);
    border-color: hsl(var(--border) / 0.35);
  }

  .js .nav-links[data-mobile-enhanced="true"] a::after {
    display: none;
  }

  .js .nav-links[data-mobile-enhanced="true"] a.nav-cta {
    margin-top: 4px;
    justify-content: center;
    min-height: 46px;
    padding-inline: 14px;
  }

  .hero {
    padding: 64px 0 52px;
  }

  .section,
  .section-padding {
    padding: 64px 0;
  }

  .page-hero {
    padding: 56px 0 28px;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .hero-cta-row {
    width: 100%;
  }

  .bubble-svg {
    height: clamp(220px, 62vw, 320px);
    max-height: min(46vh, 360px);
  }

  .hero-proof-list {
    width: 100%;
  }

  .products-hero-head .lead {
    max-width: 58ch;
  }

  .contact-route-row {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
    padding: 11px 11px;
  }

  .contact-route-email {
    justify-self: start;
  }

  .technology-hero-title {
    gap: 0;
  }

  .technology-hero-line--brand {
    font-size: 0.74em;
  }

  .technology-hero-line--meta {
    margin-top: 3px;
    font-size: 0.8em;
  }

  .products-hero-points {
    gap: 8px;
  }

  .products-hero-points li {
    padding: 6px 10px;
    font-size: 12.4px;
  }

  .products-showcase {
    padding: 14px;
    gap: 12px;
  }

  .products-card {
    padding: 18px;
    gap: 10px;
    border-radius: 18px;
  }

  .products-card--primary .section-title {
    font-size: clamp(1.4rem, 4.4vw, 1.8rem);
  }

  .products-card--context h3,
  .products-card--roadmap h3 {
    font-size: 1.28rem;
  }

  .products-capability-list li,
  .products-why-list li {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 10px 10px;
  }

  .products-capability-label,
  .products-why-label {
    white-space: normal;
  }

  .products-tracks-shell {
    padding: 18px;
  }

  .contact-next-panel,
  .legal-meta-strip {
    padding: 14px;
  }

  .products-track-grid {
    gap: 10px;
  }

  .hero-brief-panel {
    padding: 22px 20px 20px;
  }

  .hero-evidence-strip {
    gap: 8px;
  }

  .hero-evidence-card {
    min-height: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .content-grid-2,
  .grid-2,
  .trust-grid,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .hero-support {
    grid-template-columns: 1fr;
  }

  .split-panel > .bubble-shell {
    order: -1;
  }

  .split-panel > .bubble-graph-panel {
    order: -1;
  }

  .split-panel > .page-stack {
    order: 1;
  }

  .split-panel--bubble-module {
    padding: 14px;
    gap: 12px;
  }

  .split-panel--bubble-module > .page-stack {
    border-top: 1px solid hsl(var(--border) / 0.38);
    padding-top: 12px;
    margin-top: 2px;
  }

  .split-panel--bubble-module .bubble-brief-shell {
    padding: 0;
  }

  .bubble-graph-panel {
    gap: 8px;
  }

  .bubble-graph-panel-head {
    padding: 0 0 8px;
  }

  .bubble-graph-panel-head-title strong {
    font-size: 12.5px;
  }

  .split-panel--bubble-module .bubble-svg {
    height: clamp(280px, 72vw, 420px);
    max-height: min(58vh, 420px);
  }

  .bubble-brief-shell {
    padding: 16px;
  }

  .bubble-brief-header {
    padding: 11px 12px 12px;
  }

  .bubble-brief-header .title-section {
    max-width: 100%;
  }

  .bubble-brief-eyebrow {
    align-items: flex-start;
  }

  .bubble-vision-board {
    padding: 11px;
  }

  .bubble-vision-board-head h3 {
    font-size: 17px;
  }

  .bubble-vision-cell {
    min-height: 0;
  }

  .bubble-brief-shell .bubble-legend-summary {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 8px;
  }

  .bubble-legend-summary-badge {
    min-height: 24px;
    padding: 3px 8px;
    font-size: 10px;
  }

  .bubble-caption {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .bubble-caption-hint {
    position: static;
    margin-top: 10px;
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .bubble-legend-disclosure {
    margin-top: 8px;
  }

  .bubble-legend-summary {
    align-items: flex-start;
    padding: 10px 12px;
  }

  .bubble-legend-summary-copy {
    max-width: 18ch;
    font-size: 11px;
  }

  .bubble-legend-body {
    padding: 10px;
  }

  .bubble-brief-shell .signal-legend .legend-row {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 6px;
  }

  .bubble-brief-shell .signal-legend .legend-row .flow {
    min-height: 22px;
    padding: 3px 7px;
  }

  .split-panel--bubble-module .signal-legend .legend-row {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 5px;
    padding: 8px 0;
  }

  .split-panel--bubble-module .bubble-graph-panel > .bubble-legend-bridge .signal-legend .legend-row {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 5px;
    padding: 8px 0;
  }

  .split-panel--bubble-module .signal-legend .legend-row .flow {
    min-height: 22px;
    padding: 3px 7px;
  }

  .split-panel--bubble-module .bubble-graph-panel > .bubble-legend-bridge .signal-legend .legend-row .flow {
    min-height: 22px;
    padding: 3px 7px;
  }

  .split-panel--bubble-module .bubble-graph-panel-meta {
    font-size: 10.5px;
    line-height: 1.28;
  }
}

@media (max-width: 560px) {
  .wrapper,
  .container {
    padding-inline: 16px;
  }

  .logo-label span {
    display: none;
  }

  .logo-label strong {
    font-size: 14px;
  }

  .hero-copy::before {
    inset: -14px -10px auto -10px;
    height: 154px;
  }

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

  .hero-cta-row {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    gap: 10px;
  }

  .hero-cta-row .btn {
    min-height: 46px;
  }

  .hero-proof-list {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 12px;
  }

  .products-hero-head .eyebrow-row {
    gap: 8px;
  }

  .products-hero-pill {
    min-height: 24px;
    padding: 3px 8px;
    font-size: 9.5px;
  }

  .products-hero-head .title-subpage {
    font-size: clamp(1.72rem, 8.4vw, 2.1rem);
  }

  .products-hero-head .lead {
    font-size: 0.95rem;
    line-height: 1.42;
  }

  .products-hero-summary {
    max-width: 34ch;
  }

  .products-hero-points {
    gap: 7px;
  }

  .products-hero-points li {
    min-height: 30px;
    padding: 5px 9px;
    font-size: 11.8px;
  }

  .products-hero-domain {
    font-size: 12px;
  }

  .products-showcase {
    padding: 12px;
    border-radius: 18px;
    gap: 10px;
  }

  .products-card {
    padding: 14px;
    border-radius: 15px;
    gap: 9px;
  }

  .products-card-kicker {
    min-height: 22px;
    padding: 3px 7px;
    font-size: 9.4px;
  }

  .contact-route-label {
    font-size: 13.2px;
  }

  .contact-route-meta {
    font-size: 12.2px;
  }

  .contact-route-email {
    min-height: 22px;
    padding: 3px 7px;
    font-size: 9.4px;
  }

  .legal-meta-head strong {
    font-size: 13px;
  }

  .legal-meta-strip p {
    font-size: 12.2px;
  }

  .legal-card {
    padding: 14px;
    border-radius: 15px;
  }

  .legal-card.prose h2 {
    font-size: 1rem;
  }

  .products-capability-list li,
  .products-why-list li {
    padding: 9px 9px;
  }

  .products-capability-value,
  .products-why-value {
    font-size: 12.6px;
  }

  .products-roadmap-list li,
  .products-track-list li {
    font-size: 12.4px;
  }

  .products-track-copy {
    font-size: 12.2px;
    margin-bottom: 8px;
  }

  .products-status-box,
  .products-tracks-shell {
    padding: 12px;
  }

  .products-track-card {
    padding: 10px;
  }

  .bubble-brief-shell {
    padding: 14px;
    border-radius: 18px;
    gap: 10px;
  }

  .split-panel--bubble-module {
    padding: 13px;
    border-radius: 18px;
    gap: 10px;
  }

  .split-panel--bubble-module > .page-stack {
    padding-top: 10px;
  }

  .split-panel--bubble-module .bubble-brief-shell {
    padding: 0;
    border-radius: 0;
    gap: 10px;
  }

  .split-panel--bubble-module .bubble-shell {
    padding: 10px;
    border-radius: 14px;
  }

  .split-panel--bubble-module .bubble-svg {
    height: clamp(240px, 78vw, 340px);
    max-height: min(50vh, 340px);
    border-radius: 12px;
  }

  .bubble-graph-panel-head {
    border-radius: 0;
  }

  .bubble-brief-header,
  .bubble-vision-board,
  .bubble-brief-shell .bubble-legend-disclosure,
  .bubble-vision-footer {
    border-radius: 13px;
  }

  .bubble-vision-board-head h3 {
    font-size: 16px;
  }

  .split-panel--bubble-module .bubble-brief-header .title-section {
    font-size: clamp(1.7rem, 9vw, 2.05rem);
    line-height: 0.96;
    max-width: 100%;
  }

  .split-panel--bubble-module .bubble-brief-header .lead {
    font-size: 12.5px;
    line-height: 1.38;
  }

  .bubble-vision-cell {
    padding: 9px 9px 8px;
  }

  .bubble-vision-rails li {
    padding: 8px;
    gap: 8px;
  }

  .hero-brief-panel {
    padding: 18px 16px 16px;
  }

  .hero-check-list li {
    padding: 9px 10px;
    font-size: 13px;
  }

  .hero-check-lead {
    font-size: 12px;
  }

  .hero-evidence-card {
    padding: 12px 12px 11px;
  }

  .hero-evidence-card .metric-value {
    font-size: 16px;
  }

  .hero-evidence-card .metric-copy {
    font-size: 12px;
  }

  .nav-links a {
    padding: 9px 10px;
    font-size: 13px;
  }

  .nav-links a.nav-cta {
    padding-inline: 10px;
  }

  .page-stack {
    gap: 18px;
  }

  .btn-row {
    width: 100%;
  }

  .btn-row .btn {
    width: 100%;
  }

  .panel,
  .elevated-panel,
  .card,
  .glass-card,
  .cta-band {
    padding-inline: 18px;
  }

  .panel,
  .elevated-panel {
    padding-block: 22px;
  }

  .roadmap-card .rail {
    margin-left: -16px;
    margin-right: -16px;
  }

  .legend-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .legend-row .detail {
    text-align: left;
  }

  .bubble-shell {
    padding: 14px;
  }

  .bubble-caption {
    margin-top: 10px;
    padding: 9px 10px 10px;
  }

  .bubble-caption-title {
    font-size: 13px;
  }

  .bubble-caption-copy {
    font-size: 11.5px;
  }

  .bubble-caption-hint {
    padding: 8px 9px;
    text-align: center;
    white-space: normal;
    line-height: 1.25;
  }
}

@media (hover: none), (pointer: coarse) {
  .bubble-caption-hint {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 820px) and (hover: none), (max-width: 820px) and (pointer: coarse) {
  .bubble-shell[data-caption-mode="compact"] .bubble-caption {
    position: absolute;
    width: min(248px, calc(100% - 20px));
    margin-top: 0;
  }

  .bubble-shell[data-caption-mode="compact"] .bubble-caption-hint {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: auto;
    max-width: calc(100% - 20px);
    margin-top: 0;
    padding: 8px 10px;
    text-align: left;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .js .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}
