/* [project]/apps/web/app/globals.css [app-client] (css) */
:root {
  --cosmic-void: #0f0820;
  --cosmic-deep: #1a0b2e;
  --cosmic-soft: #251440;
  --royal-purple: #4a1d8e;
  --amethyst: #8b5cf6;
  --magenta: #ec4899;
  --magenta-deep: #be185d;
  --cyan: #22d3ee;
  --emerald: #10b981;
  --amber: #f59e0b;
  --rose: #f472b6;
  --pale-lavender: #e9e2ff;
  --lavender: #c4b5fd;
  --subtle: #7c6bad;
  --muted: #4a3f6b;
  --hairline: #c4b5fd1f;
  --hairline-strong: #c4b5fd38;
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "IBM Plex Sans", -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", "Menlo", monospace;
  --max-w: 1320px;
  --gutter: clamp(1.25rem, 3vw, 2.5rem);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--cosmic-void);
  color: var(--pale-lavender);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  overflow-x: hidden;
}

body:before {
  content: "";
  pointer-events: none;
  z-index: 200;
  opacity: .035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  position: fixed;
  inset: 0;
}

.starfield {
  pointer-events: none;
  z-index: 0;
  opacity: .5;
  background-image: radial-gradient(1px 1px at 12% 18%, #c4b5fd99 50%, #0000), radial-gradient(1px 1px at 27% 73%, #ec489980 50%, #0000), radial-gradient(1px 1px at 48% 32%, #22d3ee80 50%, #0000), radial-gradient(1px 1px at 67% 88%, #c4b5fd66 50%, #0000), radial-gradient(1px 1px at 81% 14%, #c4b5fdb3 50%, #0000), radial-gradient(1px 1px at 93% 64%, #f59e0b66 50%, #0000), radial-gradient(2px 2px at 36%, #8b5cf666 50%, #0000), radial-gradient(1px 1px at 55% 12%, #c4b5fd80 50%, #0000), radial-gradient(1px 1px at 8% 85%, #8b5cf699 50%, #0000);
  background-repeat: repeat;
  background-size: 800px 800px;
  position: fixed;
  inset: 0;
}

.nav {
  z-index: 100;
  padding: 1rem var(--gutter);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--hairline);
  background: #0f0820c7;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.nav-inner {
  max-width: var(--max-w);
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin: 0 auto;
  display: flex;
}

.brand-mark {
  color: var(--pale-lavender);
  font-family: var(--font-display);
  letter-spacing: -.01em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  align-items: center;
  gap: .6rem;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
}

.brand-orb {
  -o-object-fit: contain;
  object-fit: contain;
  filter: drop-shadow(0 0 8px #8b5cf680) drop-shadow(0 0 16px #ec489938);
  width: 28px;
  height: 28px;
}

.nav-links {
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  display: flex;
}

.nav-links > li {
  position: relative;
}

.nav-links a {
  color: var(--lavender);
  letter-spacing: .01em;
  align-items: center;
  gap: .3rem;
  padding: .5rem 0;
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
  display: inline-flex;
  position: relative;
}

.nav-links a:hover {
  color: var(--pale-lavender);
}

.nav-links a.current {
  color: var(--magenta);
}

.nav-links .caret {
  opacity: .6;
  margin-top: 2px;
  font-size: .65rem;
}

.dropdown {
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid var(--hairline-strong);
  opacity: 0;
  visibility: hidden;
  background: #0f0820f2;
  border-radius: 4px;
  min-width: 260px;
  margin-top: .5rem;
  padding: .6rem;
  transition: all .2s;
  position: absolute;
  top: 100%;
  left: -1rem;
  transform: translateY(-8px);
  box-shadow: 0 20px 50px #00000080;
}

.dropdown.wide {
  min-width: 480px;
  left: -2rem;
}

.nav-links > li:hover > .dropdown, .nav-links > li:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  color: var(--lavender);
  border-radius: 2px;
  padding: .7rem .85rem;
  font-size: .88rem;
  line-height: 1.3;
  transition: all .18s;
  display: block;
}

.dropdown a strong {
  color: var(--pale-lavender);
  margin-bottom: .15rem;
  font-size: .92rem;
  font-weight: 600;
  display: block;
}

.dropdown a span {
  color: var(--subtle);
  font-size: .78rem;
  display: block;
}

.dropdown a:hover {
  color: var(--pale-lavender);
  background: #ec489914;
}

.dropdown a:hover strong {
  color: var(--magenta);
}

.dropdown.wide .dd-grid {
  grid-template-columns: 1fr 1fr;
  gap: .15rem;
  display: grid;
}

.nav-cta {
  background: var(--magenta);
  color: #fff;
  letter-spacing: .02em;
  border: 1px solid var(--magenta);
  border-radius: 2px;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1.1rem;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s;
  display: inline-flex;
}

.nav-cta:hover {
  background: var(--magenta-deep);
  border-color: var(--magenta-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px #ec489966;
}

.nav-toggle {
  border: 1px solid var(--hairline-strong);
  width: 38px;
  height: 38px;
  color: var(--pale-lavender);
  cursor: pointer;
  background: none;
  border-radius: 2px;
  font-size: 1.1rem;
  display: none;
}

.mobile-menu {
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  z-index: 99;
  padding: 2rem var(--gutter);
  background: #0f0820fa;
  display: none;
  position: fixed;
  inset: 64px 0 0;
  overflow-y: auto;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu h6 {
  font-family: var(--font-mono);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--subtle);
  margin: 1.5rem 0 .75rem;
  font-size: .72rem;
}

.mobile-menu a {
  color: var(--lavender);
  border-bottom: 1px solid var(--hairline);
  padding: .55rem 0;
  font-size: .95rem;
  text-decoration: none;
  display: block;
}

.mobile-menu a:hover {
  color: var(--magenta);
}

@media (max-width: 1100px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    justify-content: center;
    align-items: center;
    display: flex;
  }
}

section {
  z-index: 1;
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  position: relative;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}

.container-narrow {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}

.section-label {
  font-family: var(--font-mono);
  color: var(--magenta);
  letter-spacing: .18em;
  text-transform: uppercase;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: .75rem;
  font-weight: 500;
  display: flex;
}

.section-label:before {
  content: "";
  background: var(--magenta);
  width: 30px;
  height: 1px;
}

.section-number {
  top: -2rem;
  right: var(--gutter);
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: #8b5cf612;
  pointer-events: none;
  z-index: -1;
  font-size: clamp(5rem, 12vw, 10rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1;
  position: absolute;
}

.h-display {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -.025em;
  color: var(--pale-lavender);
  font-weight: 400;
  line-height: 1.05;
}

.h-display em {
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--amethyst);
  font-style: italic;
}

.h-display .magenta {
  color: var(--magenta);
  font-style: italic;
}

.eyebrow {
  font-family: var(--font-mono);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--subtle);
  font-size: .72rem;
  font-weight: 500;
}

.lead {
  color: var(--lavender);
  max-width: 720px;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 300;
  line-height: 1.5;
}

.section-divider {
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  display: flex;
}

.section-divider .line {
  background: var(--hairline);
  flex: 1;
  height: 1px;
}

.section-divider .marker {
  font-family: var(--font-mono);
  letter-spacing: .2em;
  color: var(--subtle);
  text-transform: uppercase;
  font-size: .75rem;
}

.btn {
  font-family: var(--font-body);
  letter-spacing: .01em;
  cursor: pointer;
  border: 1px solid #0000;
  border-radius: 2px;
  align-items: center;
  gap: .55rem;
  padding: .95rem 1.6rem;
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s cubic-bezier(.16, 1, .3, 1);
  display: inline-flex;
}

.btn-primary {
  background: var(--magenta);
  color: #fff;
  border-color: var(--magenta);
}

.btn-primary:hover {
  background: var(--magenta-deep);
  border-color: var(--magenta-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px #ec489959;
}

.btn-ghost {
  color: var(--pale-lavender);
  border-color: var(--hairline-strong);
  background: none;
}

.btn-ghost:hover {
  border-color: var(--amethyst);
  color: #fff;
  background: #8b5cf614;
}

.btn-sm {
  padding: .55rem 1.05rem;
  font-size: .85rem;
}

.btn-arrow {
  transition: transform .25s;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.page-hero {
  padding-top: 9rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero .container {
  z-index: 2;
  position: relative;
}

.page-hero .breadcrumb {
  font-family: var(--font-mono);
  color: var(--subtle);
  letter-spacing: .12em;
  text-transform: uppercase;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.5rem;
  font-size: .72rem;
  display: flex;
}

.page-hero .breadcrumb a {
  color: var(--subtle);
  text-decoration: none;
  transition: color .2s;
}

.page-hero .breadcrumb a:hover {
  color: var(--magenta);
}

.page-hero .breadcrumb .sep {
  color: var(--muted);
}

.page-hero h1 {
  font-family: var(--font-display);
  letter-spacing: -.03em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  max-width: 14ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 350;
  line-height: 1.02;
}

.page-hero h1 em {
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--magenta);
  font-style: italic;
  font-weight: 400;
}

.page-hero p.lead {
  margin-bottom: 2.5rem;
}

.page-hero-cta {
  flex-wrap: wrap;
  gap: 1rem;
  display: flex;
}

.footer {
  background: var(--cosmic-void);
  border-top: 1px solid var(--hairline-strong);
  padding: 5rem var(--gutter) 2rem;
  z-index: 1;
  position: relative;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-top {
  border-bottom: 1px solid var(--hairline);
  grid-template-columns: 1.6fr repeat(5, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  display: grid;
}

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

  .footer-col.fc-extra {
    display: none;
  }
}

@media (max-width: 800px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-col.fc-extra {
    display: block;
  }

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

.footer-brand {
  flex-direction: column;
  gap: 1rem;
  display: flex;
}

.footer-brand .brand-mark {
  margin-bottom: .5rem;
}

.footer-brand p {
  color: var(--lavender);
  max-width: 320px;
  font-size: .88rem;
  font-weight: 300;
  line-height: 1.5;
}

.footer-brand .tagline {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--magenta);
  margin-top: 1rem;
  font-size: 1.05rem;
  font-style: italic;
}

.footer-col h5 {
  font-family: var(--font-mono);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 1.25rem;
  font-size: .72rem;
  font-weight: 500;
}

.footer-col ul {
  flex-direction: column;
  gap: .65rem;
  list-style: none;
  display: flex;
}

.footer-col a {
  color: var(--lavender);
  font-size: .88rem;
  text-decoration: none;
  transition: color .2s;
}

.footer-col a:hover {
  color: var(--magenta);
}

.footer-newsletter {
  border-top: 1px solid var(--hairline);
  grid-template-columns: 1fr 1.5fr;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  display: grid;
}

@media (max-width: 800px) {
  .footer-newsletter {
    grid-template-columns: 1fr;
  }
}

.footer-newsletter h4 {
  font-family: var(--font-display);
  color: var(--pale-lavender);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin-bottom: .4rem;
  font-size: 1.4rem;
  font-weight: 500;
}

.footer-newsletter p {
  color: var(--lavender);
  font-size: .88rem;
}

.newsletter-form {
  gap: .5rem;
  display: flex;
}

.newsletter-form input {
  border: 1px solid var(--hairline-strong);
  color: var(--pale-lavender);
  font-family: var(--font-body);
  background: #8b5cf60d;
  border-radius: 2px;
  outline: none;
  flex: 1;
  padding: .75rem 1rem;
  font-size: .9rem;
  transition: border-color .2s;
}

.newsletter-form input:focus {
  border-color: var(--magenta);
}

.newsletter-form button {
  background: var(--magenta);
  color: #fff;
  border: 1px solid var(--magenta);
  font-family: var(--font-body);
  cursor: pointer;
  border-radius: 2px;
  padding: .75rem 1.5rem;
  font-size: .9rem;
  font-weight: 600;
  transition: all .2s;
}

.newsletter-form button:hover {
  background: var(--magenta-deep);
}

.footer-bottom {
  font-family: var(--font-mono);
  color: var(--subtle);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
  font-size: .75rem;
  display: flex;
}

.footer-bottom .legal {
  flex-wrap: wrap;
  gap: 1.5rem;
  display: flex;
}

.footer-bottom a {
  color: var(--subtle);
  text-decoration: none;
  transition: color .2s;
}

.footer-bottom a:hover {
  color: var(--magenta);
}

.footer-status {
  align-items: center;
  gap: .5rem;
  display: inline-flex;
}

.footer-status .dot {
  background: var(--emerald);
  width: 7px;
  height: 7px;
  box-shadow: 0 0 8px var(--emerald);
  border-radius: 50%;
  animation: 2s ease-in-out infinite pulse;
}

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

  50% {
    opacity: .6;
    transform: scale(1.2);
  }
}

.card {
  background: var(--cosmic-deep);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 2rem;
  transition: all .3s;
}

.card:hover {
  border-color: var(--magenta);
  background: var(--cosmic-soft);
  transform: translateY(-3px);
}

.card h3 {
  font-family: var(--font-display);
  color: var(--pale-lavender);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -.015em;
  margin-bottom: .75rem;
  font-size: 1.55rem;
  font-weight: 500;
}

.card h3 em {
  color: var(--magenta);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-style: italic;
}

.card p {
  color: var(--lavender);
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.55;
}

.pillar {
  border-top: 1px solid var(--magenta);
  background: #0f082080;
  padding: 1.75rem 1.5rem;
  transition: all .3s;
  position: relative;
}

.pillar:hover {
  background: #4a1d8e26;
  transform: translateY(-4px);
}

.pillar .p-num {
  font-family: var(--font-mono);
  color: var(--magenta);
  letter-spacing: .15em;
  margin-bottom: .75rem;
  font-size: .7rem;
}

.pillar h4 {
  font-family: var(--font-display);
  color: var(--pale-lavender);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -.01em;
  margin-bottom: .6rem;
  font-size: 1.4rem;
  font-weight: 500;
}

.pillar p {
  color: var(--lavender);
  font-size: .88rem;
  font-weight: 300;
  line-height: 1.55;
}

.code-window {
  border: 1px solid var(--hairline-strong);
  background: #06030f;
  border-radius: 6px;
  margin: 2rem 0;
  overflow: hidden;
  box-shadow: 0 30px 70px #00000080;
}

.code-window-header {
  border-bottom: 1px solid var(--hairline);
  font-family: var(--font-mono);
  color: var(--lavender);
  background: #8b5cf60f;
  align-items: center;
  gap: .75rem;
  padding: .8rem 1.25rem;
  font-size: .78rem;
  display: flex;
}

.code-window-header .dots {
  gap: .4rem;
  display: flex;
}

.code-window-header .dots span {
  background: var(--muted);
  border-radius: 50%;
  width: 10px;
  height: 10px;
}

.code-window-header .file {
  color: var(--subtle);
  letter-spacing: .05em;
  margin-left: auto;
}

.code-window pre {
  font-family: var(--font-mono);
  color: var(--lavender);
  white-space: pre-wrap;
  word-wrap: break-word;
  margin: 0;
  padding: 1.5rem;
  font-size: .82rem;
  line-height: 1.65;
  overflow-x: auto;
}

.code-window .kw {
  color: var(--magenta);
  font-weight: 500;
}

.code-window .fn {
  color: var(--cyan);
}

.code-window .str {
  color: var(--emerald);
}

.code-window .num {
  color: var(--amber);
}

.code-window .com {
  color: var(--subtle);
  font-style: italic;
}

.code-window .var {
  color: var(--pale-lavender);
}

.code-window .ty {
  color: var(--amethyst);
}

.code-window .key {
  color: var(--cyan);
}

.code-window .brace {
  color: var(--magenta);
}

.stats-row {
  border-top: 1px solid var(--hairline);
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-top: 2.5rem;
  display: grid;
}

@media (max-width: 700px) {
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat .stat-num {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  color: var(--pale-lavender);
  letter-spacing: -.02em;
  margin-bottom: .4rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1;
}

.stat .stat-num em {
  color: var(--magenta);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-style: italic;
}

.stat .stat-label {
  font-family: var(--font-mono);
  color: var(--subtle);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .72rem;
}

.dl {
  grid-template-columns: 200px 1fr;
  gap: 1.25rem 2rem;
  margin: 2rem 0;
  display: grid;
}

@media (max-width: 700px) {
  .dl {
    grid-template-columns: 1fr;
    gap: .5rem 0;
  }
}

.dl dt {
  font-family: var(--font-mono);
  color: var(--magenta);
  letter-spacing: .1em;
  text-transform: uppercase;
  padding-top: .2rem;
  font-size: .78rem;
}

.dl dd {
  color: var(--lavender);
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.55;
}

.dl dd strong {
  color: var(--pale-lavender);
  font-weight: 500;
}

@media (max-width: 700px) {
  .dl dd {
    border-bottom: 1px solid var(--hairline);
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
  }
}

.pullquote {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--pale-lavender);
  border: 1px solid var(--royal-purple);
  text-align: center;
  background: linear-gradient(135deg, #4a1d8e26, #ec48990d);
  border-radius: 4px;
  margin: 3rem 0;
  padding: 2.5rem;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
  position: relative;
}

.pullquote:before, .pullquote:after {
  content: "\"";
  color: var(--magenta);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  vertical-align: -.2em;
  opacity: .5;
  font-size: 4rem;
  font-style: normal;
  line-height: 0;
}

.prose {
  max-width: 720px;
  margin: 0 auto;
}

.prose p {
  color: var(--lavender);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.65;
}

.prose p strong {
  color: var(--pale-lavender);
  font-weight: 500;
}

.prose h2 {
  font-family: var(--font-display);
  color: var(--pale-lavender);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -.02em;
  margin: 3rem 0 1.5rem;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 500;
}

.prose h2 em {
  color: var(--magenta);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-style: italic;
}

.prose h3 {
  font-family: var(--font-display);
  color: var(--pale-lavender);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin: 2rem 0 1rem;
  font-size: 1.4rem;
  font-weight: 500;
}

.prose ul, .prose ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.prose li {
  color: var(--lavender);
  margin-bottom: .5rem;
  font-size: 1rem;
  font-weight: 300;
}

.prose a {
  color: var(--magenta);
  border-bottom: 1px solid var(--magenta-deep);
  text-decoration: none;
  transition: all .2s;
}

.prose a:hover {
  color: var(--pale-lavender);
  border-bottom-color: var(--pale-lavender);
}

.prose blockquote {
  border-left: 2px solid var(--magenta);
  font-family: var(--font-display);
  color: var(--pale-lavender);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  margin: 2rem 0;
  padding: .5rem 0 .5rem 1.5rem;
  font-size: 1.15rem;
  font-style: italic;
}

.cta-section {
  background: radial-gradient(ellipse at center, #ec489926 0%, transparent 50%), var(--cosmic-void);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section:before, .cta-section:after {
  content: "";
  pointer-events: none;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta-section:before {
  border: 1px solid #8b5cf61a;
  width: 600px;
  height: 600px;
}

.cta-section:after {
  border: 1px dashed #ec48990f;
  width: 1000px;
  height: 1000px;
}

.cta-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.cta-inner h2 {
  font-family: var(--font-display);
  letter-spacing: -.03em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  color: var(--pale-lavender);
  margin-bottom: 1.5rem;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 350;
  line-height: 1.05;
}

.cta-inner h2 em {
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--magenta);
  font-style: italic;
}

.cta-inner > p {
  color: var(--lavender);
  max-width: 600px;
  margin-bottom: 2.5rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  font-weight: 300;
}

.cta-actions {
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  display: flex;
}

.status-pill {
  font-family: var(--font-mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  vertical-align: middle;
  border: 1px solid;
  border-radius: 2px;
  margin-left: .5rem;
  padding: .25rem .7rem;
  font-size: .7rem;
  font-weight: 500;
  display: inline-block;
}

.status-pill.live {
  color: var(--emerald);
  border-color: var(--emerald);
  background: #10b98114;
}

.status-pill.beta {
  color: var(--amber);
  border-color: var(--amber);
  background: #f59e0b14;
}

.status-pill.soon {
  color: var(--cyan);
  border-color: var(--cyan);
  background: #22d3ee14;
}

.status-pill.alpha {
  color: var(--rose);
  border-color: var(--rose);
  background: #f472b614;
}

.text-magenta {
  color: var(--magenta);
}

.text-amethyst {
  color: var(--amethyst);
}

.mb-0 {
  margin-bottom: 0;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

.fade-up {
  opacity: 0;
  transition: all .8s cubic-bezier(.16, 1, .3, 1);
  transform: translateY(20px);
}

.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}

.legal-section {
  border-bottom: 1px solid var(--hairline);
  max-width: 880px;
  margin: 0 auto;
  padding-bottom: 3rem;
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-num {
  font-family: var(--font-mono);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 1rem;
  font-size: .78rem;
}

.legal-section h2 {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  color: var(--pale-lavender);
  letter-spacing: -.015em;
  margin-bottom: 1.75rem;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 500;
  line-height: 1.15;
}

.legal-section p {
  color: var(--lavender);
  margin-bottom: 1.25rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.65;
}

.legal-section p strong {
  color: var(--pale-lavender);
  font-weight: 500;
}

.legal-section a {
  color: var(--magenta);
  text-underline-offset: 3px;
  -webkit-text-decoration: underline #ec489966;
  text-decoration: underline #ec489966;
  transition: text-decoration-color .2s;
}

.legal-section a:hover {
  -webkit-text-decoration-color: var(--magenta);
  text-decoration-color: var(--magenta);
}

.legal-h3 {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  color: var(--pale-lavender);
  letter-spacing: -.01em;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 500;
}

.legal-list {
  margin-bottom: 1.5rem;
  padding-left: 0;
  list-style: none;
}

.legal-list li {
  border-bottom: 1px solid var(--hairline);
  color: var(--lavender);
  padding: .5rem 0 .5rem 1.5rem;
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.6;
  position: relative;
}

.legal-list li:before {
  content: "→";
  color: var(--magenta);
  font-weight: 600;
  font-family: var(--font-mono);
  position: absolute;
  top: .55rem;
  left: 0;
}

.legal-list li:last-child {
  border-bottom: none;
}

.legal-list li strong {
  color: var(--pale-lavender);
  font-weight: 500;
}

.legal-list-prohibited li:before {
  content: "✗";
  color: var(--magenta-deep);
  font-weight: 700;
}

.legal-list-prohibited li {
  border-left: 2px solid var(--magenta-deep);
  background: #be185d0a;
  border-bottom: none;
  margin-bottom: .6rem;
  padding-top: .75rem;
  padding-bottom: .75rem;
  padding-left: 1.5rem;
}

.legal-list-prohibited li:before {
  top: .75rem;
  left: .5rem;
}

.enterprise-form {
  flex-direction: column;
  gap: 1.1rem;
  display: flex;
}

.enterprise-form label {
  font-family: var(--font-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--subtle);
  flex-direction: column;
  gap: .4rem;
  font-size: .72rem;
  display: flex;
}

.enterprise-form input, .enterprise-form select, .enterprise-form textarea {
  border: 1px solid var(--hairline-strong);
  font-family: var(--font-body);
  color: var(--pale-lavender);
  letter-spacing: normal;
  text-transform: none;
  background: #0f082099;
  border-radius: 2px;
  padding: .7rem .9rem;
  font-size: .92rem;
  transition: all .2s;
}

.enterprise-form input:focus, .enterprise-form select:focus, .enterprise-form textarea:focus {
  border-color: var(--magenta);
  box-shadow: 0 0 0 1px var(--magenta);
  background: #ec48990a;
  outline: none;
}

.enterprise-form textarea {
  resize: vertical;
  min-height: 80px;
  font-family: var(--font-body);
}

.enterprise-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23EC4899' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-position: right .9rem center;
  background-repeat: no-repeat;
  padding-right: 2.2rem;
}

.enterprise-form button[type="submit"] {
  font-family: var(--font-body);
  cursor: pointer;
  border: 1px solid var(--magenta);
  margin-top: .5rem;
  font-size: .92rem;
}

.sdk-features {
  list-style: none;
}

.sdk-features li {
  border-bottom: 1px solid var(--hairline);
  color: var(--lavender);
  align-items: flex-start;
  gap: .6rem;
  padding: .55rem 0;
  font-size: .9rem;
  font-weight: 300;
  display: flex;
}

.sdk-features li:last-child {
  border-bottom: none;
}

.sdk-features li:before {
  content: "✓";
  color: var(--magenta);
  font-weight: 700;
  font-family: var(--font-mono);
  flex-shrink: 0;
}

@keyframes orb-float {
  0%, 100% {
    transform: translateY(0)rotate(0);
  }

  50% {
    transform: translateY(-15px)rotate(2deg);
  }
}

@media (max-width: 900px) {
  .hero-grid-resp {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }

  .pillars-resp, .prod-grid-resp {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .prod-head-resp {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .grid-resp {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .prod-grid-resp, .grid-resp {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 500px) {
  .pillars-resp {
    grid-template-columns: 1fr !important;
  }
}

.alt-bg {
  background: var(--cosmic-deep);
}

.section-h2-center {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3.5rem;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
}

.docs-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
  display: grid;
}

@media (max-width: 900px) {
  .docs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.doc-card {
  border: 1px solid var(--hairline);
  background: var(--cosmic-deep);
  color: inherit;
  flex-direction: column;
  padding: 2rem 1.75rem;
  text-decoration: none;
  transition: border-color .25s, transform .25s, background .25s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.doc-card:hover {
  border-color: var(--magenta);
  background: #ec48990a;
  transform: translateY(-3px);
}

.dc-num {
  font-family: var(--font-mono);
  letter-spacing: .18em;
  color: var(--subtle);
  margin-bottom: 1rem;
  font-size: .72rem;
}

.doc-card h3 {
  font-family: var(--font-display);
  color: var(--pale-lavender);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin-bottom: .75rem;
  font-size: 1.4rem;
  font-weight: 400;
}

.doc-card p {
  color: var(--lavender);
  flex: 1;
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.55;
}

.dc-arrow {
  font-family: var(--font-mono);
  color: var(--magenta);
  margin-top: 1.25rem;
  font-size: 1.1rem;
  transition: transform .25s;
}

.doc-card:hover .dc-arrow {
  transform: translateX(4px);
}

.qs-steps {
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 3rem;
  display: flex;
}

.qs-step {
  border-left: 1px solid var(--hairline-strong);
  padding-left: 2rem;
  position: relative;
}

.qs-num {
  font-family: var(--font-mono);
  letter-spacing: .18em;
  color: var(--magenta);
  margin-bottom: .75rem;
  font-size: .72rem;
}

.qs-step h3 {
  font-family: var(--font-display);
  color: var(--pale-lavender);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 400;
}

.qs-step p {
  color: var(--lavender);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
}

.qs-step p a {
  color: var(--magenta);
  border-bottom: 1px solid;
  text-decoration: none;
}

.qs-step p a:hover {
  color: var(--pale-lavender);
}

.code-tabs {
  border-bottom: 1px solid var(--hairline);
  background: #0006;
  gap: .25rem;
  padding: 0 1rem;
  display: flex;
}

.code-tab {
  color: var(--subtle);
  font-family: var(--font-mono);
  cursor: pointer;
  background: none;
  border: 0;
  border-bottom: 2px solid #0000;
  padding: .7rem 1rem;
  font-size: .78rem;
  transition: color .2s, border-color .2s;
}

.code-tab:hover {
  color: var(--lavender);
}

.code-tab.active {
  color: var(--magenta);
  border-bottom-color: var(--magenta);
}

.code-body {
  font-family: var(--font-mono);
  color: var(--pale-lavender);
  background: var(--cosmic-void);
  padding: 1.5rem;
  font-size: .85rem;
  line-height: 1.65;
  overflow-x: auto;
}

.code-panel {
  display: none;
}

.code-panel.active {
  display: block;
}

.code-window.compact .code-body {
  padding: 1.25rem;
  font-size: .8rem;
}

.workflow-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
  display: grid;
}

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

.workflow {
  border: 1px solid var(--hairline);
  background: var(--cosmic-deep);
  padding: 1.75rem;
}

.workflow h3 {
  font-family: var(--font-display);
  color: var(--pale-lavender);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin-bottom: .75rem;
  font-size: 1.25rem;
  font-weight: 400;
}

.workflow p {
  color: var(--lavender);
  margin-bottom: 1rem;
  font-size: .93rem;
  font-weight: 300;
  line-height: 1.55;
}

.workflow a {
  color: var(--magenta);
  font-family: var(--font-mono);
  letter-spacing: .05em;
  font-size: .78rem;
  text-decoration: none;
}

.workflow a:hover {
  color: var(--pale-lavender);
}

.api-block {
  margin-top: 2.5rem;
}

.api-block h3 {
  font-family: var(--font-display);
  color: var(--pale-lavender);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin-bottom: .75rem;
  font-size: 1.4rem;
  font-weight: 400;
}

.api-block p {
  color: var(--lavender);
  margin-bottom: 1.25rem;
  font-size: .98rem;
  font-weight: 300;
  line-height: 1.6;
}

.api-block code, .endpoint code, .conv code, .prose code, .rfc-section code, .regmap-table code {
  font-family: var(--font-mono);
  border: 1px solid var(--hairline);
  color: var(--pale-lavender);
  background: #8b5cf61a;
  border-radius: 3px;
  padding: .1rem .4rem;
  font-size: .85em;
}

.endpoint {
  border-top: 1px solid var(--hairline);
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0 1.5rem;
  padding: 2rem 0;
  display: grid;
}

.endpoint:last-child {
  border-bottom: 1px solid var(--hairline);
}

@media (max-width: 800px) {
  .endpoint {
    grid-template-columns: 1fr;
    gap: .75rem;
  }
}

.ep-method {
  font-family: var(--font-mono);
  letter-spacing: .12em;
  text-align: center;
  border-radius: 4px;
  min-width: 60px;
  padding: .35rem .7rem;
  font-size: .7rem;
  font-weight: 600;
  display: inline-block;
}

.ep-method.get {
  color: var(--cyan);
  border: 1px solid var(--cyan);
  background: #22d3ee1a;
}

.ep-method.post {
  color: var(--emerald);
  border: 1px solid var(--emerald);
  background: #10b9811a;
}

.ep-path {
  font-family: var(--font-mono);
  color: var(--pale-lavender);
  grid-column: 2;
  padding-top: .35rem;
  font-size: .95rem;
}

@media (max-width: 800px) {
  .ep-path {
    grid-column: 1;
    padding-top: 0;
  }
}

.ep-desc {
  grid-column: 2;
  margin-top: 1rem;
}

@media (max-width: 800px) {
  .ep-desc {
    grid-column: 1;
  }
}

.ep-desc h3 {
  font-family: var(--font-display);
  color: var(--pale-lavender);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin-bottom: .5rem;
  font-size: 1.25rem;
  font-weight: 400;
}

.ep-desc p {
  color: var(--lavender);
  margin-bottom: 1rem;
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.55;
}

.ep-desc details {
  border: 1px solid var(--hairline);
  background: #0003;
  margin-top: 1rem;
  padding: .75rem 1rem;
}

.ep-desc summary {
  font-family: var(--font-mono);
  letter-spacing: .08em;
  color: var(--magenta);
  cursor: pointer;
  padding: .25rem 0;
  font-size: .78rem;
  list-style: none;
}

.ep-desc summary::-webkit-details-marker {
  display: none;
}

.ep-desc summary:before {
  content: "▸ ";
  transition: transform .2s;
  display: inline-block;
}

.ep-desc details[open] summary:before {
  content: "▾ ";
}

.ep-desc details .code-window {
  margin-top: .75rem;
}

.conv-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
  display: grid;
}

@media (max-width: 900px) {
  .conv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.conv {
  border: 1px solid var(--hairline);
  background: var(--cosmic-deep);
  padding: 1.5rem;
}

.conv h4 {
  font-family: var(--font-display);
  color: var(--pale-lavender);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin-bottom: .6rem;
  font-size: 1.15rem;
  font-weight: 400;
}

.conv p {
  color: var(--lavender);
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.55;
}

.sdk-cards {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  display: grid;
}

@media (max-width: 1000px) {
  .sdk-cards {
    grid-template-columns: 1fr;
  }
}

.sdk-card {
  border: 1px solid var(--hairline);
  background: var(--cosmic-deep);
  flex-direction: column;
  padding: 2rem 1.75rem;
  display: flex;
  position: relative;
}

.sdk-card:hover {
  border-color: var(--hairline-strong);
}

.sdk-badge {
  font-family: var(--font-mono);
  letter-spacing: .1em;
  color: var(--emerald);
  border: 1px solid var(--emerald);
  background: #10b98114;
  border-radius: 4px;
  align-items: center;
  gap: .4rem;
  padding: .25rem .6rem;
  font-size: .7rem;
  display: inline-flex;
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
}

.sdk-badge .dot {
  background: var(--emerald);
  width: 6px;
  height: 6px;
  box-shadow: 0 0 6px var(--emerald);
  border-radius: 50%;
}

.sdk-lang-icon {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  line-height: 1;
}

.sdk-card h3 {
  font-family: var(--font-display);
  color: var(--pale-lavender);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin-bottom: .3rem;
  font-size: 1.7rem;
  font-weight: 400;
}

.sdk-min {
  font-family: var(--font-mono);
  color: var(--subtle);
  margin-bottom: 1.25rem;
  font-size: .78rem;
}

.sdk-features-list {
  margin: 1.25rem 0;
  padding: 0;
  list-style: none;
}

.sdk-features-list li {
  border-bottom: 1px solid var(--hairline);
  color: var(--lavender);
  align-items: flex-start;
  gap: .6rem;
  padding: .5rem 0;
  font-size: .88rem;
  font-weight: 300;
  display: flex;
}

.sdk-features-list li:last-child {
  border-bottom: none;
}

.sdk-features-list li:before {
  content: "✓";
  color: var(--magenta);
  font-family: var(--font-mono);
  flex-shrink: 0;
  font-weight: 700;
}

.sdk-features-list li code {
  font-family: var(--font-mono);
  border: 1px solid var(--hairline);
  color: var(--pale-lavender);
  background: #8b5cf61a;
  border-radius: 3px;
  padding: .05rem .35rem;
  font-size: .85em;
}

.sdk-links {
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.25rem;
  display: flex;
}

.sdk-links a {
  font-family: var(--font-mono);
  color: var(--magenta);
  letter-spacing: .05em;
  font-size: .8rem;
  text-decoration: none;
}

.sdk-links a:hover {
  color: var(--pale-lavender);
}

.pattern-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
  display: grid;
}

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

.pattern {
  border: 1px solid var(--hairline);
  background: var(--cosmic-deep);
  padding: 1.75rem;
}

.pattern h4 {
  font-family: var(--font-display);
  color: var(--pale-lavender);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin-bottom: .7rem;
  font-size: 1.25rem;
  font-weight: 400;
}

.pattern p {
  color: var(--lavender);
  font-size: .93rem;
  font-weight: 300;
  line-height: 1.55;
}

.arch-diagram {
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
  display: flex;
}

.arch-layer {
  border: 1px solid var(--hairline);
  background: var(--cosmic-deep);
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  padding: 1.75rem;
  display: grid;
}

@media (max-width: 900px) {
  .arch-layer {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.arch-layer-info {
  flex-direction: column;
  gap: .5rem;
  display: flex;
}

.arch-layer-num {
  font-family: var(--font-mono);
  letter-spacing: .15em;
  color: var(--subtle);
  font-size: .72rem;
}

.arch-layer-name {
  font-family: var(--font-display);
  color: var(--pale-lavender);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: 1.85rem;
  font-weight: 400;
  line-height: 1.1;
}

.arch-layer-name em {
  color: var(--magenta);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-style: italic;
}

.arch-layer-desc {
  color: var(--lavender);
  margin-top: .4rem;
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.55;
}

.arch-crates {
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
  display: grid;
}

@media (max-width: 700px) {
  .arch-crates {
    grid-template-columns: 1fr;
  }
}

.crate-detail {
  border: 1px solid var(--hairline);
  background: #00000040;
  border-left-width: 3px;
  flex-direction: column;
  gap: .25rem;
  padding: .85rem 1rem;
  display: flex;
}

.crate-detail strong {
  font-family: var(--font-mono);
  color: var(--pale-lavender);
  font-size: .88rem;
  font-weight: 600;
}

.crate-detail span {
  color: var(--lavender);
  font-size: .83rem;
  font-weight: 300;
  line-height: 1.45;
}

.crate-detail.customer {
  border-left-color: var(--magenta);
}

.crate-detail.cognition {
  border-left-color: var(--amethyst);
}

.crate-detail.gnl {
  border-left-color: var(--cyan);
}

.crate-detail.infra {
  border-left-color: var(--emerald);
}

.manifest-vis-wrap {
  margin-top: 2rem;
}

.manifest-vis {
  border: 1px solid var(--hairline-strong);
  background: var(--cosmic-void);
  border-radius: 6px;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 20px 80px #00000073;
}

.mv-header {
  border-bottom: 1px solid var(--hairline);
  background: #00000080;
  align-items: center;
  gap: 1rem;
  padding: .75rem 1rem;
  display: flex;
}

.mv-header .dots {
  gap: .4rem;
  display: inline-flex;
}

.mv-header .dots span {
  background: var(--hairline-strong);
  border-radius: 50%;
  width: 11px;
  height: 11px;
}

.mv-header .file {
  font-family: var(--font-mono);
  color: var(--subtle);
  font-size: .78rem;
}

.mv-body {
  font-family: var(--font-mono);
  color: var(--pale-lavender);
  padding: 1.5rem;
  font-size: .85rem;
  line-height: 1.7;
  overflow-x: auto;
}

.mv-body .kw {
  color: var(--magenta);
  font-weight: 500;
}

.mv-body .fn {
  color: var(--cyan);
}

.mv-body .str {
  color: var(--emerald);
}

.mv-body .num {
  color: var(--amber);
}

.mv-body .com {
  color: var(--subtle);
  font-style: italic;
}

.mv-body .var {
  color: var(--pale-lavender);
}

.mv-body .ty {
  color: var(--amethyst);
}

.mv-body .key {
  color: var(--cyan);
}

.mv-body .brace {
  color: var(--magenta);
}

.rfc-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  display: grid;
}

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

.rfc-section {
  border: 1px solid var(--hairline);
  background: var(--cosmic-deep);
  padding: 1.5rem;
}

.rfc-section h4 {
  font-family: var(--font-display);
  color: var(--pale-lavender);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin-bottom: .6rem;
  font-size: 1.15rem;
  font-weight: 400;
}

.rfc-section p {
  color: var(--lavender);
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.55;
}

.regmap-table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 2.5rem;
  font-size: .9rem;
}

.regmap-table th {
  font-family: var(--font-mono);
  letter-spacing: .15em;
  color: var(--subtle);
  text-align: left;
  text-transform: uppercase;
  border-bottom: 1px solid var(--hairline-strong);
  padding: .85rem 1rem;
  font-size: .72rem;
  font-weight: 500;
}

.regmap-table td {
  border-bottom: 1px solid var(--hairline);
  color: var(--lavender);
  vertical-align: top;
  padding: .95rem 1rem;
  font-weight: 300;
  line-height: 1.5;
}

.regmap-table td:first-child {
  color: var(--pale-lavender);
  white-space: nowrap;
  font-weight: 400;
}

@media (max-width: 700px) {
  .regmap-table {
    font-size: .85rem;
  }

  .regmap-table th, .regmap-table td {
    padding: .6rem .5rem;
  }

  .regmap-table td:first-child {
    white-space: normal;
  }
}

.lead-foot {
  color: var(--subtle);
  text-align: center;
  max-width: 700px;
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.55;
}

.blog-featured {
  margin-top: 2rem;
}

.blog-feat {
  border: 1px solid var(--royal-purple);
  background: linear-gradient(135deg, #4a1d8e2e, #ec48990f);
  border-radius: 4px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.blog-feat .bf-tag {
  font-family: var(--font-mono);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 1.25rem;
  font-size: .72rem;
}

.blog-feat h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
}

.blog-feat p {
  color: var(--lavender);
  max-width: 720px;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.6;
}

.blog-feat .bf-meta {
  font-family: var(--font-mono);
  color: var(--subtle);
  letter-spacing: .08em;
  font-size: .78rem;
}

.blog-pillars {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  display: grid;
}

.blog-pillars .bp {
  border-top: 1px solid var(--magenta);
  background: #0f082080;
  padding: 1.75rem 1.5rem;
  transition: all .3s;
}

.blog-pillars .bp:hover {
  background: #4a1d8e26;
  transform: translateY(-4px);
}

.blog-pillars .bp-num {
  font-family: var(--font-mono);
  color: var(--magenta);
  letter-spacing: .15em;
  margin-bottom: .75rem;
  font-size: .7rem;
}

.blog-pillars .bp h3 {
  font-family: var(--font-display);
  color: var(--pale-lavender);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -.01em;
  margin-bottom: .6rem;
  font-size: 1.3rem;
  font-weight: 500;
}

.blog-pillars .bp p {
  color: var(--lavender);
  font-size: .88rem;
  font-weight: 300;
  line-height: 1.55;
}

.blog-list {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  display: grid;
}

.post-item {
  background: var(--cosmic-deep);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 1.75rem;
  transition: all .3s;
}

.post-item:hover {
  border-color: var(--magenta);
  background: var(--cosmic-soft);
  transform: translateY(-3px);
}

.post-item .pi-tag {
  font-family: var(--font-mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: .85rem;
  font-size: .7rem;
  display: inline-block;
}

.post-item h3 {
  font-family: var(--font-display);
  color: var(--pale-lavender);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -.01em;
  margin-bottom: .6rem;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.2;
}

.post-item p {
  color: var(--lavender);
  margin-bottom: 1rem;
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.55;
}

.post-item .pi-meta {
  font-family: var(--font-mono);
  color: var(--subtle);
  letter-spacing: .08em;
  font-size: .74rem;
}

@media (max-width: 900px) {
  .blog-pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-list {
    grid-template-columns: 1fr;
  }

  .blog-feat {
    padding: 2rem;
  }
}

@media (max-width: 500px) {
  .blog-pillars {
    grid-template-columns: 1fr;
  }
}

.usecase-vert-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  display: grid;
}

.usecase-vert-grid .uv {
  background: var(--cosmic-deep);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 2rem;
  transition: all .3s;
}

.usecase-vert-grid .uv:hover {
  border-color: var(--magenta);
  background: var(--cosmic-soft);
  transform: translateY(-3px);
}

.usecase-vert-grid .uv-num {
  font-family: var(--font-mono);
  letter-spacing: .16em;
  color: var(--magenta);
  margin-bottom: 1rem;
  font-size: .72rem;
}

.usecase-vert-grid .uv h3 {
  font-family: var(--font-display);
  color: var(--pale-lavender);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -.015em;
  margin-bottom: .85rem;
  font-size: 1.45rem;
  font-weight: 500;
}

.usecase-vert-grid .uv p {
  color: var(--lavender);
  margin-bottom: 1.25rem;
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.55;
}

.usecase-vert-grid .uv ul {
  flex-direction: column;
  gap: .55rem;
  list-style: none;
  display: flex;
}

.usecase-vert-grid .uv ul li {
  color: var(--lavender);
  padding-left: 1.25rem;
  font-size: .88rem;
  font-weight: 300;
  line-height: 1.5;
  position: relative;
}

.usecase-vert-grid .uv ul li:before {
  content: "—";
  color: var(--magenta);
  font-family: var(--font-mono);
  position: absolute;
  left: 0;
}

@media (max-width: 900px) {
  .usecase-vert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .usecase-vert-grid {
    grid-template-columns: 1fr;
  }
}

.customer-stories {
  flex-direction: column;
  gap: 2rem;
  display: flex;
}

.cust-story {
  background: var(--cosmic-deep);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 3rem;
  position: relative;
}

.cust-story .cs-tag {
  font-family: var(--font-mono);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 1.25rem;
  font-size: .72rem;
}

.cust-story h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.cust-story .cs-lead {
  color: var(--lavender);
  max-width: 820px;
  margin-bottom: 2rem;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.6;
}

.cust-story .cs-metrics {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  grid-template-columns: 220px 1fr;
  gap: 1rem 2rem;
  margin: 1.5rem 0;
  padding: 1.75rem 0;
  display: grid;
}

.cust-story .cs-metrics dt {
  font-family: var(--font-mono);
  color: var(--magenta);
  letter-spacing: .1em;
  text-transform: uppercase;
  padding-top: .2rem;
  font-size: .74rem;
}

.cust-story .cs-metrics dd {
  color: var(--lavender);
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.55;
}

.cust-story .cs-metrics dd strong {
  color: var(--pale-lavender);
  font-weight: 500;
}

.cust-story blockquote {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--pale-lavender);
  border-left: 3px solid var(--magenta);
  margin: 1.5rem 0;
  padding: 1.5rem 0 1.5rem 1.5rem;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-style: italic;
  line-height: 1.4;
}

.cust-story blockquote cite {
  font-style: normal;
  font-family: var(--font-mono);
  letter-spacing: .08em;
  color: var(--subtle);
  margin-top: .85rem;
  font-size: .78rem;
  display: block;
}

.cust-story .cs-meta {
  font-family: var(--font-mono);
  color: var(--subtle);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 1.25rem;
  font-size: .74rem;
}

@media (max-width: 700px) {
  .cust-story {
    padding: 2rem;
  }

  .cust-story .cs-metrics {
    grid-template-columns: 1fr;
    gap: .4rem 0;
  }

  .cust-story .cs-metrics dd {
    border-bottom: 1px solid var(--hairline);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }
}

.press-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  display: grid;
}

.press-grid .pf {
  background: var(--cosmic-deep);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 1.5rem;
}

.press-grid .pf h4 {
  font-family: var(--font-mono);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: .85rem;
  font-size: .72rem;
  font-weight: 500;
}

.press-grid .pf p {
  color: var(--lavender);
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.55;
}

.founder-press-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  display: grid;
}

.founder-press {
  background: var(--cosmic-deep);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 2.25rem;
}

.founder-press .founder-avatar {
  background: radial-gradient(circle at 35% 35%, var(--amethyst), var(--royal-purple) 70%, var(--cosmic-deep));
  width: 60px;
  height: 60px;
  color: var(--pale-lavender);
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.25rem;
  font-size: 1.85rem;
  font-style: italic;
  display: flex;
  box-shadow: 0 0 25px #8b5cf659;
}

.founder-press h3 {
  font-family: var(--font-display);
  color: var(--pale-lavender);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -.015em;
  margin-bottom: .35rem;
  font-size: 1.6rem;
  font-weight: 500;
}

.founder-press .f-role {
  font-family: var(--font-mono);
  color: var(--magenta);
  letter-spacing: .12em;
  margin-bottom: 1.25rem;
  font-size: .78rem;
}

.founder-press p {
  color: var(--lavender);
  margin-bottom: 1rem;
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.6;
}

.founder-press p strong {
  color: var(--pale-lavender);
  font-weight: 500;
}

.assets-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  display: grid;
}

.assets-grid .asset {
  background: var(--cosmic-deep);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 1.5rem;
}

.assets-grid .asset h4 {
  font-family: var(--font-display);
  color: var(--pale-lavender);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin-bottom: .85rem;
  font-size: 1.15rem;
  font-weight: 500;
}

.assets-grid .asset ul {
  flex-direction: column;
  gap: .4rem;
  list-style: none;
  display: flex;
}

.assets-grid .asset ul li {
  color: var(--lavender);
  padding-left: 1.1rem;
  font-size: .85rem;
  font-weight: 300;
  line-height: 1.5;
  position: relative;
}

.assets-grid .asset ul li:before {
  content: "·";
  color: var(--magenta);
  font-weight: 700;
  position: absolute;
  left: 0;
}

.assets-note {
  color: var(--lavender);
  margin-top: 1.75rem;
  font-size: .9rem;
  font-weight: 300;
}

.assets-note a {
  color: var(--magenta);
  border-bottom: 1px dotted var(--magenta);
  text-decoration: none;
}

.assets-note a:hover {
  color: var(--pale-lavender);
}

.faq {
  grid-template-columns: 1fr;
  gap: 0;
  display: grid;
}

.faq dt {
  font-family: var(--font-display);
  color: var(--pale-lavender);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  border-top: 1px solid var(--hairline);
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  font-size: 1.2rem;
  font-weight: 500;
}

.faq dt:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

.faq dd {
  color: var(--lavender);
  max-width: 880px;
  margin-top: .85rem;
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .press-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .founder-press-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 500px) {
  .press-grid, .assets-grid {
    grid-template-columns: 1fr;
  }
}

.changelog {
  flex-direction: column;
  gap: 0;
  display: flex;
}

.cl-entry {
  border-bottom: 1px solid var(--hairline);
  padding: 2rem 0;
}

.cl-entry:first-child {
  padding-top: 0;
}

.cl-entry:last-child {
  border-bottom: none;
}

.cl-entry .cl-date {
  font-family: var(--font-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: .85rem;
  font-size: .74rem;
}

.cl-entry h3 {
  font-family: var(--font-display);
  color: var(--pale-lavender);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -.015em;
  margin-bottom: .75rem;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.2;
}

.cl-entry h3 code {
  font-family: var(--font-mono);
  color: var(--amethyst);
  border: 1px solid var(--hairline);
  background: #8b5cf614;
  border-radius: 3px;
  padding: .1rem .45rem;
  font-size: .95rem;
}

.cl-entry p {
  color: var(--lavender);
  max-width: 880px;
  margin-bottom: 1rem;
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.6;
}

.cl-entry p code {
  font-family: var(--font-mono);
  color: var(--amethyst);
  border: 1px solid var(--hairline);
  background: #8b5cf614;
  border-radius: 3px;
  padding: .05rem .4rem;
  font-size: .85em;
}

.cl-entry p strong {
  color: var(--pale-lavender);
  font-weight: 500;
}

.cl-entry p a {
  color: var(--magenta);
  border-bottom: 1px dotted var(--magenta);
  text-decoration: none;
}

.cl-entry p a:hover {
  color: var(--pale-lavender);
}

.cl-entry .cl-tags {
  flex-wrap: wrap;
  gap: .5rem;
  display: flex;
}

.cl-tag {
  font-family: var(--font-mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid;
  border-radius: 2px;
  padding: .2rem .55rem;
  font-size: .66rem;
  display: inline-block;
}

.cl-tag.major {
  color: var(--magenta);
  border-color: var(--magenta);
  background: #ec489914;
}

.cl-tag.stable {
  color: var(--emerald);
  border-color: var(--emerald);
  background: #10b98114;
}

.cl-tag.perf, .cl-tag.performance {
  color: var(--cyan);
  border-color: var(--cyan);
  background: #22d3ee14;
}

.cl-tag.security {
  color: var(--rose);
  border-color: var(--rose);
  background: #f472b614;
}

.cl-tag.breaking {
  color: var(--amber);
  border-color: var(--amber);
  background: #f59e0b14;
}

.cl-tag.sdk {
  color: var(--amethyst);
  border-color: var(--amethyst);
  background: #8b5cf614;
}

.cl-tag.feature {
  color: var(--emerald);
  border-color: var(--emerald);
  background: #10b98114;
}

.cl-tag.compliance {
  color: var(--magenta);
  border-color: var(--magenta);
  background: #ec489914;
}

.compare-table-wrap {
  border: 1px solid var(--hairline-strong);
  background: var(--cosmic-deep);
  overflow-x: auto;
}

.compare-table {
  border-collapse: collapse;
  width: 100%;
  font-family: var(--font-body);
  color: var(--lavender);
  font-size: .92rem;
  font-weight: 300;
}

.compare-table thead th {
  font-family: var(--font-mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pale-lavender);
  text-align: left;
  border-bottom: 1px solid var(--hairline-strong);
  white-space: nowrap;
  background: #8b5cf60d;
  padding: 1.1rem 1.25rem;
  font-size: .72rem;
  font-weight: 500;
}

.compare-table thead th.deino-col {
  color: var(--magenta);
  background: #ec48990f;
}

.compare-table tbody td {
  border-bottom: 1px solid var(--hairline);
  vertical-align: middle;
  padding: .95rem 1.25rem;
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody td:first-child {
  color: var(--pale-lavender);
  font-weight: 400;
}

.compare-table td.deino-cell {
  color: var(--pale-lavender);
  background: #ec48990a;
}

.compare-table td.price {
  font-family: var(--font-mono);
  color: var(--pale-lavender);
  font-size: .88rem;
}

.compare-table .yes {
  color: var(--emerald);
  margin-right: .4rem;
  font-weight: 700;
}

.compare-table .no {
  color: var(--muted);
  margin-right: .4rem;
  font-weight: 700;
}

.compare-table .partial {
  color: var(--amber);
  margin-right: .4rem;
  font-weight: 700;
}

.muted {
  color: var(--subtle);
  font-weight: 300;
}

.pillars-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
  display: grid;
}

@media (max-width: 1100px) {
  .pillars-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pillars-4 {
    grid-template-columns: 1fr;
  }
}

.solutions-hub-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  display: grid;
}

@media (max-width: 800px) {
  .solutions-hub-grid {
    grid-template-columns: 1fr;
  }
}

.solution-card {
  color: inherit;
  border: 1px solid var(--hairline-strong);
  background: #0f08208c;
  border-radius: 4px;
  flex-direction: column;
  padding: 2.25rem;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.solution-card:before {
  content: "";
  background: linear-gradient(90deg, transparent, var(--magenta), transparent);
  opacity: 0;
  height: 1px;
  transition: opacity .3s;
  position: absolute;
  inset: 0 0 auto;
}

.solution-card:hover {
  border-color: var(--magenta-deep);
  background: #4a1d8e1f;
  transform: translateY(-4px);
}

.solution-card:hover:before {
  opacity: 1;
}

.sc-role {
  font-family: var(--font-mono);
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 1.25rem;
  font-size: .72rem;
}

.solution-card h3 {
  font-family: var(--font-display);
  letter-spacing: -.02em;
  color: var(--pale-lavender);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin-bottom: .9rem;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  font-weight: 400;
  line-height: 1.1;
}

.solution-card h3 em {
  color: var(--magenta);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-style: italic;
}

.solution-card p {
  color: var(--lavender);
  margin-bottom: 1.5rem;
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.55;
}

.sc-arrow {
  font-family: var(--font-mono);
  color: var(--magenta);
  letter-spacing: .05em;
  margin-top: auto;
  font-size: .78rem;
}

.bind-list {
  gap: 1rem;
  margin: 1.75rem 0;
  display: grid;
}

.bind-list dt {
  font-family: var(--font-display);
  color: var(--pale-lavender);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin-top: .5rem;
  font-size: 1.05rem;
  font-weight: 500;
}

.bind-list dd {
  border-left: 1px solid var(--magenta-deep);
  color: var(--lavender);
  margin: 0 0 .25rem;
  padding-left: 1rem;
  font-size: .98rem;
  font-weight: 300;
  line-height: 1.6;
}

.outcome-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
  display: grid;
}

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

.outcome {
  border: 1px solid var(--hairline-strong);
  background: #0f08208c;
  border-radius: 4px;
  padding: 1.75rem 1.5rem;
  transition: all .3s;
  position: relative;
}

.outcome:hover {
  border-color: var(--magenta-deep);
  background: #4a1d8e1f;
  transform: translateY(-3px);
}

.o-num {
  font-family: var(--font-mono);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: .85rem;
  font-size: .7rem;
}

.outcome h3 {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  color: var(--pale-lavender);
  letter-spacing: -.01em;
  margin-bottom: .6rem;
  font-size: 1.3rem;
  font-weight: 500;
}

.outcome p {
  color: var(--lavender);
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.55;
}

.usecase-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
  display: grid;
}

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

.usecase {
  border-top: 1px solid var(--magenta);
  background: #0f08208c;
  border-radius: 0 0 4px 4px;
  padding: 1.75rem 1.5rem;
  transition: all .3s;
  position: relative;
}

.usecase:hover {
  background: #4a1d8e26;
  transform: translateY(-3px);
}

.uc-num {
  font-family: var(--font-mono);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: .85rem;
  font-size: .7rem;
}

.usecase h3 {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  color: var(--pale-lavender);
  letter-spacing: -.01em;
  margin-bottom: .6rem;
  font-size: 1.3rem;
  font-weight: 500;
}

.usecase p {
  color: var(--lavender);
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.55;
}

.steps {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
  display: grid;
  position: relative;
}

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

.step {
  border: 1px solid var(--hairline-strong);
  border-left: 2px solid var(--magenta);
  background: #0f08208c;
  border-radius: 0 4px 4px 0;
  padding: 1.75rem 1.5rem;
  transition: all .3s;
  position: relative;
}

.step:hover {
  background: #4a1d8e1f;
  transform: translateX(2px);
}

.s-num {
  font-family: var(--font-mono);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: .85rem;
  font-size: .7rem;
}

.step h3 {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  color: var(--pale-lavender);
  letter-spacing: -.01em;
  margin-bottom: .6rem;
  font-size: 1.25rem;
  font-weight: 500;
}

.step p {
  color: var(--lavender);
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.55;
}

.compare-build {
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0 1.5rem;
  display: grid;
}

@media (max-width: 800px) {
  .compare-build {
    grid-template-columns: 1fr;
  }
}

.cb-col {
  border: 1px solid var(--hairline-strong);
  background: #0f08208c;
  border-radius: 4px;
  padding: 2rem 1.75rem;
}

.cb-col h3 {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  color: var(--pale-lavender);
  letter-spacing: -.01em;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  font-size: 1.35rem;
  font-weight: 500;
}

.cb-col dl {
  gap: .85rem;
  display: grid;
}

.cb-col dt {
  font-family: var(--font-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: .2rem;
  font-size: .72rem;
}

.cb-col dt strong {
  color: var(--pale-lavender);
  font-weight: 600;
}

.cb-col dd {
  color: var(--lavender);
  border-bottom: 1px dashed var(--hairline);
  margin: 0 0 .4rem;
  padding-bottom: .6rem;
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.5;
}

.cb-col dd:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cb-col dd strong {
  color: var(--pale-lavender);
  font-weight: 600;
}

.cb-deino {
  border-color: var(--magenta-deep);
  background: linear-gradient(135deg, #ec48990f, #4a1d8e1a);
}

.cb-deino h3 {
  color: var(--magenta);
}

.pullquote cite {
  font-style: normal;
  font-family: var(--font-mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-top: 1.5rem;
  font-size: .78rem;
  display: block;
}

.prose.centered {
  text-align: center;
  max-width: 820px;
}

.founder-deep {
  border-bottom: 1px solid var(--hairline);
  padding: 3.5rem 0;
}

.founder-deep:last-child {
  border-bottom: none;
}

.fd-grid {
  grid-template-columns: 220px 1fr;
  align-items: start;
  gap: 3rem;
  display: grid;
}

.fd-grid.reverse {
  grid-template-columns: 1fr 220px;
}

.fd-grid.reverse .fd-avatar {
  order: 2;
}

.fd-grid.reverse .fd-content {
  order: 1;
}

.fd-avatar {
  background: radial-gradient(circle at 35% 35%, #ece2fff2 0%, var(--amethyst) 30%, var(--royal-purple) 65%, var(--cosmic-deep) 100%);
  width: 220px;
  height: 220px;
  font-family: var(--font-display);
  color: #ffffff8c;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 5.5rem;
  font-style: italic;
  display: flex;
  box-shadow: 0 0 50px #8b5cf666, inset -18px -18px 40px #00000073, inset 10px 10px 25px #ffffff26;
}

.fd-role {
  font-family: var(--font-mono);
  color: var(--magenta);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-size: .72rem;
}

.fd-content h2 {
  margin-bottom: .75rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.fd-tagline {
  font-family: var(--font-display);
  color: var(--lavender);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-style: italic;
}

.fd-content h4 {
  font-family: var(--font-mono);
  color: var(--cyan);
  letter-spacing: .16em;
  text-transform: uppercase;
  margin: 1.75rem 0 .6rem;
  font-size: .72rem;
}

.fd-content p {
  color: var(--lavender);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.65;
}

.fd-content ul {
  margin: .75rem 0 0;
  padding-left: 1.25rem;
}

.fd-content ul li {
  color: var(--lavender);
  margin-bottom: .4rem;
  font-size: .95rem;
  font-weight: 300;
}

.fd-contact {
  border-top: 1px solid var(--hairline);
  font-family: var(--font-mono);
  color: var(--subtle);
  margin-top: 2rem;
  padding-top: 1.5rem;
  font-size: .85rem;
}

.fd-contact a {
  color: var(--magenta);
  text-decoration: none;
  transition: color .2s;
}

.fd-contact a:hover {
  color: var(--pale-lavender);
}

@media (max-width: 800px) {
  .fd-grid, .fd-grid.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .fd-grid.reverse .fd-avatar, .fd-grid.reverse .fd-content {
    order: 0;
  }

  .fd-avatar {
    width: 160px;
    height: 160px;
    font-size: 4rem;
  }
}

.role {
  border-bottom: 1px solid var(--hairline);
  padding: 2.5rem 0;
}

.role:last-child {
  border-bottom: none;
}

.role-meta {
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  display: flex;
}

.r-tag {
  font-family: var(--font-mono);
  letter-spacing: .15em;
  text-transform: uppercase;
  border: 1px solid var(--hairline-strong);
  border-radius: 100px;
  padding: .3rem .7rem;
  font-size: .7rem;
}

.r-tag.eng {
  color: var(--cyan);
  border-color: #22d3ee59;
}

.r-tag.gtm {
  color: var(--magenta);
  border-color: #ec489959;
}

.r-tag.infra {
  color: var(--amber);
  border-color: #f59e0b59;
}

.r-loc {
  font-family: var(--font-mono);
  color: var(--subtle);
  letter-spacing: .08em;
  font-size: .72rem;
}

.role h2 {
  margin-bottom: .75rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.role-lead {
  color: var(--lavender);
  max-width: 820px;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.6;
}

.role-lead code {
  font-family: var(--font-mono);
  color: var(--magenta);
  background: #ec489914;
  border-radius: 3px;
  padding: .05em .4em;
  font-size: .85em;
}

.role details {
  border-top: 1px solid var(--hairline);
  margin-top: .5rem;
  padding-top: 1rem;
}

.role details summary {
  cursor: pointer;
  font-family: var(--font-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: .5rem;
  font-size: .78rem;
  list-style: none;
}

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

.role details[open] summary {
  margin-bottom: 1.5rem;
}

.role details h4 {
  font-family: var(--font-mono);
  color: var(--cyan);
  letter-spacing: .16em;
  text-transform: uppercase;
  margin: 1.25rem 0 .6rem;
  font-size: .72rem;
}

.role details p, .role details li {
  color: var(--lavender);
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.6;
}

.role details ul {
  margin-top: .4rem;
  padding-left: 1.25rem;
}

.role details ul li {
  margin-bottom: .35rem;
}

.role details code {
  font-family: var(--font-mono);
  color: var(--magenta);
  background: #ec489914;
  border-radius: 3px;
  padding: .05em .4em;
  font-size: .85em;
}

.role-apply {
  font-family: var(--font-mono);
  letter-spacing: .08em;
  color: var(--magenta);
  border-bottom: 1px solid var(--magenta-deep);
  align-items: center;
  gap: .4rem;
  margin-top: 1.5rem;
  padding-bottom: .15rem;
  font-size: .85rem;
  text-decoration: none;
  transition: color .2s;
  display: inline-flex;
}

.role-apply:hover {
  color: var(--pale-lavender);
  border-bottom-color: var(--pale-lavender);
}

.how-we-work {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  display: grid;
}

.hw {
  border: 1px solid var(--hairline);
  background: #0f082080;
  padding: 1.5rem;
}

.hw h4 {
  font-family: var(--font-display);
  color: var(--pale-lavender);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin-bottom: .55rem;
  font-size: 1.15rem;
  font-weight: 500;
}

.hw p {
  color: var(--lavender);
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .how-we-work {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .how-we-work {
    grid-template-columns: 1fr;
  }
}

.contact-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  display: grid;
}

.cc {
  border: 1px solid var(--hairline);
  background: #0f082080;
  padding: 1.75rem;
}

.cc h3 {
  font-family: var(--font-display);
  color: var(--pale-lavender);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin-bottom: .55rem;
  font-size: 1.35rem;
  font-weight: 500;
}

.cc > p {
  color: var(--lavender);
  margin-bottom: 1rem;
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.55;
}

.cc-email {
  font-family: var(--font-mono);
  color: var(--magenta);
  border-bottom: 1px solid var(--magenta-deep);
  margin-bottom: .85rem;
  padding-bottom: .15rem;
  font-size: 1rem;
  text-decoration: none;
  transition: color .2s;
  display: inline-block;
}

.cc-email:hover {
  color: var(--pale-lavender);
  border-bottom-color: var(--pale-lavender);
}

.cc-meta {
  color: var(--subtle);
  font-size: .85rem;
  font-weight: 300;
  line-height: 1.5;
}

.cc-meta a {
  color: var(--magenta);
  border-bottom: 1px solid var(--magenta-deep);
  text-decoration: none;
}

.cc-meta a:hover {
  color: var(--pale-lavender);
}

.locations {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  display: grid;
}

.loc {
  border-top: 1px solid var(--magenta);
  padding: 1.5rem 0;
}

.loc h4 {
  font-family: var(--font-display);
  color: var(--pale-lavender);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin-bottom: .5rem;
  font-size: 1.3rem;
  font-weight: 500;
}

.loc p {
  color: var(--lavender);
  margin-bottom: .35rem;
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.55;
}

.loc-tz {
  font-family: var(--font-mono);
  color: var(--cyan);
  letter-spacing: .08em;
  font-size: .78rem;
}

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

  .locations {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.trust-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  display: grid;
}

.trust-item {
  border: 1px solid var(--hairline);
  background: #0f082080;
  flex-direction: column;
  gap: .85rem;
  padding: 1.75rem 1.5rem;
  display: flex;
}

.t-icon {
  width: 36px;
  height: 36px;
  color: var(--magenta);
}

.trust-item h4 {
  font-family: var(--font-display);
  color: var(--pale-lavender);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: 1.2rem;
  font-weight: 500;
}

.trust-item p {
  color: var(--lavender);
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.55;
}

.why-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  display: grid;
}

.why-card {
  border-top: 1px solid var(--cyan);
  background: #0f082080;
  padding: 1.75rem;
}

.w-num {
  font-family: var(--font-mono);
  color: var(--cyan);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: .75rem;
  font-size: .78rem;
}

.why-card h4 {
  font-family: var(--font-display);
  color: var(--pale-lavender);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin-bottom: .6rem;
  font-size: 1.3rem;
  font-weight: 500;
}

.why-card p {
  color: var(--lavender);
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.55;
}

.manifest-grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 2.5rem;
  display: grid;
}

.manifest-content p {
  color: var(--lavender);
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.65;
}

.manifest-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.manifest-list li {
  border-bottom: 1px solid var(--hairline);
  gap: 1rem;
  padding: 1rem 0;
  display: flex;
}

.manifest-list li:last-child {
  border-bottom: none;
}

.ml-num {
  font-family: var(--font-mono);
  color: var(--magenta);
  letter-spacing: .14em;
  flex-shrink: 0;
  padding-top: .15rem;
  font-size: .78rem;
}

.manifest-list strong {
  color: var(--pale-lavender);
  font-weight: 500;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin-bottom: .2rem;
  font-size: 1.05rem;
  display: block;
}

.manifest-list span {
  color: var(--lavender);
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .trust-grid, .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 600px) {
  .trust-grid, .why-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes cone-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes idx-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes idx-shimmer {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.idx-hero {
  padding: 9.5rem var(--gutter) 5rem;
  position: relative;
  overflow: hidden;
}

.idx-hero:before {
  content: "";
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(80% 60% at 15% 30%, #8b5cf62e 0%, #0000 60%), radial-gradient(60% 50% at 90% 70%, #ec489914 0%, #0000 55%);
  position: absolute;
  inset: 0;
}

.idx-hero .container {
  z-index: 1;
  position: relative;
}

.idx-hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2.5rem, 4vw, 4.5rem);
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
}

.idx-hero-text {
  max-width: 36rem;
}

.idx-hero-art {
  justify-content: center;
  align-items: center;
  min-width: 0;
  display: flex;
}

.idx-eyebrow {
  border: 1px solid var(--hairline-strong);
  font-family: var(--font-mono);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pale-lavender);
  background: linear-gradient(120deg, #8b5cf612, #ec48990d);
  border-radius: 100px;
  align-items: center;
  gap: .85rem;
  margin-bottom: 2.25rem;
  padding: .45rem 1rem;
  font-size: .7rem;
  font-weight: 500;
  animation: 1s cubic-bezier(.16, 1, .3, 1) both idx-rise;
  display: inline-flex;
  position: relative;
}

.idx-eyebrow .pulse {
  background: var(--magenta);
  width: 6px;
  height: 6px;
  box-shadow: 0 0 12px var(--magenta);
  border-radius: 50%;
  animation: 2s ease-in-out infinite pulse;
}

.idx-eyebrow .sep {
  background: var(--hairline-strong);
  width: 1px;
  height: 10px;
}

.idx-eyebrow .deadline {
  color: var(--magenta);
  font-weight: 600;
}

.idx-headline {
  font-family: var(--font-display);
  letter-spacing: -.038em;
  color: var(--pale-lavender);
  font-variation-settings: "opsz" 144, "SOFT" 25;
  max-width: 14ch;
  margin-bottom: 2rem;
  font-size: clamp(2.85rem, 5.4vw, 5rem);
  font-weight: 320;
  line-height: .96;
  animation: 1.1s cubic-bezier(.16, 1, .3, 1) .1s both idx-rise;
}

.idx-headline .drop {
  float: left;
  color: var(--magenta);
  font-variation-settings: "opsz" 144, "SOFT" 60;
  margin-top: .04em;
  padding-right: .08em;
  font-size: 1.18em;
  line-height: .86;
}

.idx-deck {
  font-family: var(--font-body);
  color: var(--lavender);
  max-width: 38rem;
  margin-bottom: 2.5rem;
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  font-weight: 300;
  line-height: 1.55;
  animation: 1.1s cubic-bezier(.16, 1, .3, 1) .25s both idx-rise;
}

.idx-deck strong {
  color: var(--pale-lavender);
  font-weight: 500;
}

.idx-cta {
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: 1.1s cubic-bezier(.16, 1, .3, 1) .4s both idx-rise;
  display: flex;
}

.cone-wrap {
  aspect-ratio: 760 / 520;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  animation: 1.4s cubic-bezier(.16, 1, .3, 1) .3s both idx-rise;
  position: relative;
}

.cone-svg {
  width: 100%;
  height: auto;
  display: block;
}

.cone-corner {
  font-family: var(--font-mono);
  letter-spacing: .18em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 2;
  flex-direction: column;
  gap: .2rem;
  font-size: .62rem;
  display: inline-flex;
  position: absolute;
}

.cone-corner.top-left {
  top: 0;
  left: 0;
}

.cone-corner.top-right {
  text-align: right;
  align-items: flex-end;
  top: 0;
  right: 0;
}

.cone-corner.bottom-left {
  bottom: 3.5rem;
  left: 0;
}

.cone-corner.bottom-right {
  text-align: right;
  align-items: flex-end;
  bottom: 3.5rem;
  right: 0;
}

.cone-corner .cc-tag {
  color: var(--subtle);
}

.cone-corner .cc-id {
  color: var(--lavender);
  letter-spacing: .08em;
  text-transform: none;
  font-size: .7rem;
}

.cone-detail {
  border: 1px solid var(--hairline);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  font-family: var(--font-mono);
  color: var(--lavender);
  background: #0f0820c7;
  border-radius: 4px;
  align-items: stretch;
  gap: 1rem;
  padding: .75rem 1rem;
  font-size: .78rem;
  transition: border-color .3s, background .3s;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.cone-detail.on {
  border-color: var(--hairline-strong);
  background: #0f0820eb;
}

.cone-detail .cd-prob {
  border: 1px solid var(--hairline-strong);
  min-width: 3.6rem;
  font-family: var(--font-mono);
  color: var(--pale-lavender);
  letter-spacing: .04em;
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  padding: .35rem .7rem;
  font-size: .85rem;
  font-weight: 600;
  display: inline-flex;
}

.cone-detail .cd-prob.ghost {
  color: var(--subtle);
  border-color: var(--hairline);
}

.cone-detail .cd-text {
  flex-direction: column;
  gap: .1rem;
  display: flex;
}

.cone-detail .cd-text strong {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 90;
  color: var(--pale-lavender);
  font-size: .95rem;
  font-style: italic;
  font-weight: 500;
}

.cone-detail .cd-text.ghost strong {
  color: var(--lavender);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-style: normal;
  font-family: var(--font-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
}

.cone-detail .cd-text > span:last-child {
  color: var(--subtle);
}

.ledger-ticker {
  border: 1px solid var(--hairline);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-family: var(--font-mono);
  background: linear-gradient(120deg, #0f0820a6, #1a0b2e73);
  border-radius: 4px;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: stretch;
  gap: 1.5rem;
  max-width: 36rem;
  padding: .85rem 1.1rem;
  font-size: .78rem;
  display: grid;
  overflow: hidden;
}

.ledger-ticker .lt-rail {
  border-right: 1px solid var(--hairline);
  color: var(--subtle);
  letter-spacing: .18em;
  align-items: center;
  gap: .6rem;
  padding-right: 1.25rem;
  display: flex;
}

.ledger-ticker .lt-pulse {
  background: var(--emerald);
  width: 8px;
  height: 8px;
  box-shadow: 0 0 10px var(--emerald);
  border-radius: 50%;
  animation: 1.8s ease-in-out infinite pulse;
}

.ledger-ticker .lt-rail-label {
  font-family: var(--font-mono);
  color: var(--lavender);
  font-size: .7rem;
  font-weight: 500;
}

.ledger-ticker .lt-stream {
  min-width: 0;
  height: 1.5rem;
  display: block;
  position: relative;
}

.ledger-ticker .lt-row {
  opacity: 0;
  pointer-events: none;
  align-items: center;
  gap: .85rem;
  min-width: 0;
  transition: opacity .5s cubic-bezier(.16, 1, .3, 1), transform .5s cubic-bezier(.16, 1, .3, 1);
  display: flex;
  position: absolute;
  inset: 0;
  transform: translateY(8px);
}

.ledger-ticker .lt-row.on {
  opacity: 1;
  transform: translateY(0);
}

.ledger-ticker .lt-t {
  color: var(--subtle);
  white-space: nowrap;
  flex: none;
}

.ledger-ticker .lt-kind {
  letter-spacing: .12em;
  text-align: center;
  white-space: nowrap;
  border: 1px solid;
  border-radius: 2px;
  flex: none;
  padding: .1rem .45rem;
  font-size: .68rem;
  font-weight: 600;
  display: inline-block;
}

.ledger-ticker .lt-actor {
  color: var(--pale-lavender);
  white-space: nowrap;
  text-overflow: ellipsis;
  flex: 0 auto;
  overflow: hidden;
}

.ledger-ticker .lt-meta {
  min-width: 0;
  color: var(--lavender);
  white-space: nowrap;
  text-overflow: ellipsis;
  flex: auto;
  overflow: hidden;
}

.ledger-ticker .lt-meta:before {
  content: "·";
  color: var(--subtle);
  margin-right: .55rem;
}

.stat-counter {
  border-top: 1px solid var(--hairline);
  flex-direction: column;
  gap: .55rem;
  min-width: 0;
  padding: 1.5rem 0 0;
  display: flex;
}

.stat-counter .sc-num {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 35;
  color: var(--pale-lavender);
  letter-spacing: -.025em;
  font-size: clamp(2.4rem, 4.8vw, 3.6rem);
  font-weight: 350;
  line-height: 1;
}

.stat-counter .sc-num.italic {
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--magenta);
  font-style: italic;
}

.stat-counter .sc-label {
  font-family: var(--font-mono);
  color: var(--subtle);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .7rem;
  font-weight: 500;
}

.idx-stat-band {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  display: grid;
}

.idx-products-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  display: grid;
}

.pc {
  border: 1px solid var(--hairline);
  color: inherit;
  background: #1a0b2e8c;
  border-radius: 4px;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
  text-decoration: none;
  transition: border-color .35s, background .35s, transform .35s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.pc:after {
  content: "";
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(135deg, #8b5cf600, #ec48991f);
  border-radius: 4px;
  transition: opacity .35s;
  position: absolute;
  inset: -1px;
}

.pc:hover, .pc:focus-visible {
  border-color: var(--magenta);
  background: #1a0b2ed9;
  transform: translateY(-4px);
}

.pc:hover:after, .pc:focus-visible:after {
  opacity: 1;
}

.pc-head {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.pc-stage {
  font-family: var(--font-mono);
  letter-spacing: .14em;
  border: 1px solid;
  border-radius: 2px;
  padding: .18rem .55rem;
  font-size: .62rem;
  font-weight: 600;
  display: inline-block;
}

.pc-arrow {
  font-family: var(--font-mono);
  color: var(--subtle);
  font-size: 1.1rem;
  transition: color .3s, transform .3s;
}

.pc:hover .pc-arrow, .pc:focus-visible .pc-arrow {
  color: var(--magenta);
  transform: translateX(4px);
}

.pc-title {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -.015em;
  color: var(--pale-lavender);
  font-size: 1.6rem;
  font-weight: 450;
  line-height: 1.1;
}

.pc-body {
  color: var(--lavender);
  flex: 1;
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.55;
}

.pc-preview {
  border-top: 1px solid var(--hairline);
  opacity: 0;
  background: linear-gradient(#0f082000, #0f08208c);
  height: 110px;
  margin: 0 -1.75rem -1.75rem;
  padding: .5rem 1.75rem 1.25rem;
  transition: opacity .4s, transform .4s cubic-bezier(.16, 1, .3, 1);
  transform: translateY(8px);
}

.pc-preview.on {
  opacity: 1;
  transform: translateY(0);
}

.pc-preview .pp-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.idx-choice-grid {
  border: 1px solid var(--hairline-strong);
  background: var(--hairline);
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  display: grid;
}

.idx-choice {
  background: var(--cosmic-deep);
  flex-direction: column;
  gap: 1.1rem;
  padding: 2.5rem 2.25rem;
  transition: background .4s;
  display: flex;
  position: relative;
}

.idx-choice:before {
  content: "";
  background: var(--magenta);
  width: 30px;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
}

.idx-choice:hover {
  background: var(--cosmic-soft);
}

.idx-choice .ch-num {
  font-family: var(--font-mono);
  color: var(--subtle);
  letter-spacing: .18em;
  font-size: .72rem;
}

.idx-choice .ch-title {
  font-family: var(--font-display);
  color: var(--pale-lavender);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -.018em;
  font-size: 1.7rem;
  font-weight: 420;
  line-height: 1.1;
}

.idx-choice .ch-title em {
  color: var(--magenta);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-style: italic;
  font-weight: 460;
}

.idx-choice .ch-body {
  color: var(--lavender);
  font-size: .93rem;
  font-weight: 300;
  line-height: 1.55;
}

.idx-choice .ch-flaws {
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: auto;
  padding-top: .75rem;
  display: flex;
}

.idx-choice .ch-flaw {
  border: 1px solid var(--hairline-strong);
  font-family: var(--font-mono);
  letter-spacing: .1em;
  color: var(--subtle);
  text-transform: uppercase;
  border-radius: 2px;
  padding: .18rem .5rem;
  font-size: .66rem;
  display: inline-block;
}

.idx-pullquote {
  border-top: 1px solid var(--hairline-strong);
  border-bottom: 1px solid var(--hairline-strong);
  margin: 5rem 0 3rem;
  padding: 4rem 0 4rem 5rem;
  position: relative;
}

.idx-pullquote:before {
  content: "“";
  font-family: var(--font-display);
  color: var(--magenta);
  font-variation-settings: "opsz" 144, "SOFT" 70;
  font-size: 12rem;
  font-style: italic;
  font-weight: 380;
  line-height: 1;
  position: absolute;
  top: -2.5rem;
  left: 0;
}

.idx-pullquote p {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 95;
  color: var(--pale-lavender);
  letter-spacing: -.012em;
  max-width: 50rem;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.28;
}

.idx-pullquote p em {
  color: var(--magenta);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.idx-pullquote .pq-attr {
  font-family: var(--font-mono);
  color: var(--subtle);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 1.5rem;
  font-size: .78rem;
  font-style: normal;
  display: block;
}

.idx-pillars {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  display: grid;
}

.idx-pillar {
  border-right: 1px solid var(--hairline);
  flex-direction: column;
  gap: .85rem;
  padding: 2.25rem 2rem;
  transition: background .4s;
  display: flex;
  position: relative;
}

.idx-pillar:last-child {
  border-right: none;
}

.idx-pillar:hover {
  background: #4a1d8e14;
}

.idx-pillar .pl-num {
  font-family: var(--font-mono);
  letter-spacing: .18em;
  color: var(--magenta);
  font-size: .7rem;
  font-weight: 600;
}

.idx-pillar .pl-title {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 35;
  letter-spacing: -.022em;
  color: var(--pale-lavender);
  font-size: 1.85rem;
  font-weight: 380;
  line-height: 1;
}

.idx-pillar .pl-body {
  color: var(--lavender);
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.55;
}

.trust-section .container > h3 {
  font-family: var(--font-mono);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--subtle);
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: .74rem;
  font-weight: 500;
}

.idx-trust-grid {
  background: var(--hairline);
  border: 1px solid var(--hairline);
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  display: grid;
}

.trust-card {
  background: var(--cosmic-deep);
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  padding: 1.6rem .75rem;
  transition: background .35s;
  display: flex;
}

.trust-card:hover {
  background: var(--cosmic-soft);
}

.trust-card .tc-glyph {
  opacity: .78;
  width: 60px;
  height: 60px;
  transition: opacity .35s;
}

.trust-card .tc-glyph svg {
  width: 100%;
  height: 100%;
}

.trust-card:hover .tc-glyph {
  opacity: 1;
}

.trust-card .tc-meta {
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: .15rem;
  display: flex;
}

.trust-card .tc-name {
  font-family: var(--font-display);
  color: var(--pale-lavender);
  font-variation-settings: "opsz" 144, "SOFT" 25;
  font-size: .95rem;
  font-weight: 460;
}

.trust-card .tc-sector {
  font-family: var(--font-mono);
  letter-spacing: .14em;
  color: var(--subtle);
  text-transform: uppercase;
  font-size: .62rem;
}

.idx-section-head {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: end;
  gap: clamp(2rem, 4vw, 4rem);
  max-width: 1100px;
  margin-bottom: 4rem;
  display: grid;
}

.idx-section-head h2 {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -.028em;
  color: var(--pale-lavender);
  max-width: 18ch;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 360;
  line-height: 1.02;
}

.idx-section-head h2 em {
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--magenta);
  font-style: italic;
}

.idx-section-head p {
  color: var(--lavender);
  max-width: 32rem;
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  font-weight: 300;
  line-height: 1.55;
}

.idx-section-marker {
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
  display: flex;
}

.idx-section-marker .num {
  font-family: var(--font-display);
  color: var(--magenta);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: 1.6rem;
  font-style: italic;
}

.idx-section-marker .label {
  font-family: var(--font-mono);
  letter-spacing: .22em;
  color: var(--subtle);
  text-transform: uppercase;
  font-size: .74rem;
}

.idx-section-marker .line {
  background: var(--hairline);
  flex: 1;
  height: 1px;
}

.idx-cta-final {
  text-align: center;
  padding: 7rem var(--gutter);
  background: var(--cosmic-void);
  position: relative;
  overflow: hidden;
}

.idx-cta-final:before, .idx-cta-final:after {
  content: "";
  pointer-events: none;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.idx-cta-final:before {
  background: radial-gradient(circle, #ec48992e 0%, #0000 65%);
  width: 520px;
  height: 520px;
}

.idx-cta-final:after {
  border: 1px dashed #ec489914;
  width: 920px;
  height: 920px;
}

.idx-cta-final .cta-inner {
  max-width: 44rem;
  margin: 0 auto;
  position: relative;
}

.idx-cta-final h2 {
  font-family: var(--font-display);
  letter-spacing: -.032em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  color: var(--pale-lavender);
  margin-bottom: 1.75rem;
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  font-weight: 350;
  line-height: 1.02;
}

.idx-cta-final h2 em {
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--magenta);
  font-style: italic;
}

.idx-cta-final p {
  color: var(--lavender);
  max-width: 36rem;
  margin-bottom: 2.5rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
  font-weight: 300;
}

.idx-cta-final .cta-actions {
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  display: flex;
}

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

  .idx-section-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.5rem;
  }

  .idx-trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cone-corner.bottom-left, .cone-corner.bottom-right {
    bottom: 4.5rem;
  }
}

@media (max-width: 800px) {
  .idx-pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .idx-pillar {
    border-right: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
  }

  .idx-pillar:nth-child(2n) {
    border-right: none;
  }

  .idx-stat-band, .idx-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .idx-choice-grid {
    grid-template-columns: 1fr;
  }

  .idx-pullquote {
    padding: 3rem 0 3rem 3.5rem;
  }

  .idx-pullquote:before {
    font-size: 8rem;
    top: -1.5rem;
  }

  .ledger-ticker {
    grid-template-columns: 1fr;
    gap: .75rem;
    font-size: .72rem;
  }

  .ledger-ticker .lt-rail {
    border-right: none;
    border-bottom: 1px solid var(--hairline);
    padding-bottom: .75rem;
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .ledger-ticker .lt-meta {
    display: none;
  }
}

@media (max-width: 560px) {
  .idx-pillars {
    grid-template-columns: 1fr;
  }

  .idx-pillar {
    border-right: none;
  }

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

  .idx-stat-band {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

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

  .idx-hero {
    padding-top: 7.5rem;
  }
}

.prod-hero-grid {
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  margin-top: 1.5rem;
  display: grid;
}

.prod-hero-text {
  max-width: 34rem;
}

.prod-hero-art {
  justify-content: center;
  min-width: 0;
  display: flex;
}

.prod-readout {
  border-top: 1px solid var(--hairline);
  grid-template-columns: repeat(4, auto);
  gap: 2.25rem;
  width: fit-content;
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  display: grid;
}

.prod-readout .pr-cell {
  flex-direction: column;
  gap: .3rem;
  display: flex;
}

.prod-readout .pr-v {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 35;
  color: var(--pale-lavender);
  font-size: 2.1rem;
  font-weight: 360;
  line-height: 1;
}

.prod-readout .pr-k {
  font-family: var(--font-mono);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--subtle);
  font-size: .66rem;
}

.stack-wrap {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  animation: 1.4s cubic-bezier(.16, 1, .3, 1) .25s both idx-rise;
}

.stack-svg {
  width: 100%;
  height: auto;
  display: block;
}

.stack-hint {
  border: 1px solid var(--hairline);
  font-family: var(--font-mono);
  color: var(--lavender);
  background: #0f082099;
  border-radius: 4px;
  align-items: center;
  min-height: 3.2rem;
  margin-top: .75rem;
  padding: .7rem 1rem;
  font-size: .76rem;
  line-height: 1.45;
  display: flex;
}

.stack-hint strong {
  font-weight: 600;
}

.stack-hint em {
  font-family: var(--font-display);
  color: var(--magenta);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-style: italic;
}

.roster-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  display: grid;
}

.roster-card {
  --card-accent: var(--magenta);
  color: inherit;
  border: 1px solid var(--hairline);
  background: #1a0b2e80;
  border-radius: 5px;
  flex-direction: column;
  text-decoration: none;
  transition: border-color .35s, transform .35s, background .35s;
  display: flex;
  overflow: hidden;
}

.roster-card:hover, .roster-card:focus-visible {
  border-color: var(--card-accent);
  background: #1a0b2ed9;
  transform: translateY(-5px);
}

.rc-specimen {
  background: radial-gradient(ellipse 70% 80% at 50% 0%, var(--card-accent) 0%, transparent 70%), #06030f;
  height: 128px;
  padding: .75rem 1rem 0;
  position: relative;
}

@supports (color: color-mix(in lab, red, red)) {
  .rc-specimen {
    background: radial-gradient(ellipse 70% 80% at 50% 0%, color-mix(in srgb, var(--card-accent) 12%, transparent) 0%, transparent 70%), #06030f;
  }
}

.rc-specimen {
  border-bottom: 1px solid var(--hairline);
  justify-content: center;
  align-items: center;
  display: flex;
}

.rc-specimen .spec-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.rc-body {
  flex-direction: column;
  flex: 1;
  gap: .85rem;
  padding: 1.5rem;
  display: flex;
}

.rc-head {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.rc-stage {
  font-family: var(--font-mono);
  letter-spacing: .14em;
  border: 1px solid;
  border-radius: 2px;
  padding: .18rem .55rem;
  font-size: .62rem;
  font-weight: 600;
  display: inline-block;
}

.rc-arrow {
  font-family: var(--font-mono);
  color: var(--subtle);
  font-size: 1.05rem;
  transition: color .3s, transform .3s;
}

.roster-card:hover .rc-arrow, .roster-card:focus-visible .rc-arrow {
  color: var(--card-accent);
  transform: translateX(4px);
}

.rc-title {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -.015em;
  color: var(--pale-lavender);
  font-size: 1.55rem;
  font-weight: 460;
  line-height: 1.05;
}

.rc-text {
  color: var(--lavender);
  flex: 1;
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.55;
}

.rc-specs {
  border-top: 1px solid var(--hairline);
  flex-direction: column;
  display: flex;
}

.rc-spec {
  border-bottom: 1px dashed var(--hairline);
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: .5rem 0;
  display: flex;
}

.rc-spec dt {
  font-family: var(--font-mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--subtle);
  font-size: .68rem;
}

.rc-spec dd {
  font-family: var(--font-mono);
  color: var(--pale-lavender);
  text-align: right;
  font-size: .74rem;
}

.rc-link {
  font-family: var(--font-mono);
  color: var(--card-accent);
  margin-top: .35rem;
  font-size: .76rem;
}

.cap-matrix-wrap {
  border: 1px solid var(--hairline);
  border-radius: 5px;
  overflow-x: auto;
}

.cap-matrix {
  border-collapse: collapse;
  width: 100%;
  font-family: var(--font-mono);
  min-width: 760px;
}

.cap-matrix th, .cap-matrix td {
  text-align: center;
  border-bottom: 1px solid var(--hairline);
  border-right: 1px solid var(--hairline);
  padding: .85rem .9rem;
}

.cap-matrix th:last-child, .cap-matrix td:last-child {
  border-right: none;
}

.cap-matrix tbody tr:last-child td {
  border-bottom: none;
}

.cap-matrix thead th {
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--lavender);
  vertical-align: bottom;
  background: #8b5cf60f;
  font-size: .66rem;
  font-weight: 600;
}

.cap-matrix .cap-feature-h, .cap-matrix .cap-feature {
  text-align: left;
  background: var(--cosmic-deep);
  z-index: 1;
  position: sticky;
  left: 0;
}

.cap-matrix .cap-feature {
  font-family: var(--font-body);
  color: var(--pale-lavender);
  white-space: nowrap;
  font-size: .85rem;
  font-weight: 300;
}

.cap-matrix tbody tr:hover td {
  background: #8b5cf60d;
}

.cap-matrix tbody tr:hover .cap-feature {
  background: var(--cosmic-soft);
}

.cap-mark {
  font-size: .95rem;
  line-height: 1;
}

.cap-mark.yes {
  color: var(--emerald);
}

.cap-mark.partial {
  color: var(--amber);
}

.cap-mark.no {
  color: var(--muted);
}

.cap-legend {
  font-family: var(--font-mono);
  color: var(--subtle);
  flex-wrap: wrap;
  gap: 1.75rem;
  margin-top: 1.25rem;
  font-size: .72rem;
  display: flex;
}

.cap-legend span {
  align-items: center;
  gap: .45rem;
  display: inline-flex;
}

.compose-flow {
  border: 1px solid var(--hairline);
  border-radius: 5px;
  align-items: stretch;
  gap: 0;
  display: flex;
  overflow: hidden;
}

.compose-step {
  --step-accent: var(--magenta);
  border-left: 3px solid var(--step-accent);
  background: #1a0b2e66;
  flex-direction: column;
  flex: 1;
  gap: .5rem;
  padding: 2rem 2.25rem;
  transition: background .35s;
  display: flex;
  position: relative;
}

.compose-step:first-child {
  border-left-width: 3px;
}

.compose-step:not(:first-child) {
  border-left: 1px solid var(--hairline);
  box-shadow: inset 3px 0 0 var(--step-accent);
}

.compose-step:hover {
  background: #4a1d8e24;
}

.compose-step .cs-index {
  font-family: var(--font-mono);
  letter-spacing: .18em;
  color: var(--step-accent);
  font-size: .72rem;
}

.compose-step .cs-label {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -.015em;
  color: var(--pale-lavender);
  font-size: 1.5rem;
  font-weight: 460;
  line-height: 1;
}

.compose-step .cs-role {
  color: var(--lavender);
  font-size: .85rem;
  font-weight: 300;
}

.compose-step .cs-arrow {
  z-index: 2;
  background: var(--cosmic-void);
  border: 1px solid var(--hairline-strong);
  width: 1.4rem;
  height: 1.4rem;
  font-family: var(--font-mono);
  color: var(--magenta);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: .8rem;
  display: flex;
  position: absolute;
  top: 50%;
  right: -.7rem;
  transform: translateY(-50%);
}

.compose-caption {
  max-width: 52rem;
  color: var(--lavender);
  margin-top: 2rem;
  font-size: .98rem;
  font-weight: 300;
  line-height: 1.6;
}

.compose-caption strong {
  color: var(--pale-lavender);
  font-weight: 500;
}

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

  .prod-hero-art {
    order: -1;
  }

  .stack-wrap {
    max-width: 560px;
  }
}

@media (max-width: 900px) {
  .roster-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .compose-flow {
    flex-direction: column;
  }

  .compose-step {
    border-left: 3px solid var(--step-accent) !important;
    box-shadow: none !important;
  }

  .compose-step .cs-arrow {
    top: auto;
    bottom: -.7rem;
    right: 50%;
    transform: translateX(50%)rotate(90deg);
  }
}

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

  .prod-readout {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 2rem;
    width: 100%;
  }
}

.pd-hero-grid {
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-top: 1.5rem;
  display: grid;
}

.pd-hero-text {
  max-width: 34rem;
}

.pd-hero-art {
  min-width: 0;
}

.pd-art-caption {
  font-family: var(--font-mono);
  letter-spacing: .06em;
  color: var(--subtle);
  text-align: center;
  margin-top: .85rem;
  font-size: .72rem;
}

.lm-console {
  border: 1px solid var(--hairline-strong);
  background: #06030f;
  border-radius: 6px;
  animation: 1.4s cubic-bezier(.16, 1, .3, 1) .25s both idx-rise;
  overflow: hidden;
  box-shadow: 0 30px 70px #00000080;
}

.lm-console-bar {
  border-bottom: 1px solid var(--hairline);
  font-family: var(--font-mono);
  background: #8b5cf60f;
  align-items: center;
  gap: .7rem;
  padding: .6rem .95rem;
  font-size: .72rem;
  display: flex;
}

.lm-console-bar .lm-dot {
  background: var(--emerald);
  width: 8px;
  height: 8px;
  box-shadow: 0 0 8px var(--emerald);
  border-radius: 50%;
  animation: 1.8s ease-in-out infinite pulse;
}

.lm-bar-title {
  color: var(--pale-lavender);
  font-weight: 500;
}

.lm-bar-meta {
  color: var(--subtle);
  margin-left: auto;
}

.lm-console-body {
  grid-template-columns: 1.25fr 1fr;
  display: grid;
}

.lm-graph {
  border-right: 1px solid var(--hairline);
  min-width: 0;
  position: relative;
}

.lm-graph-svg {
  width: 100%;
  height: auto;
  display: block;
}

.lm-legend {
  flex-wrap: wrap;
  gap: .7rem;
  display: flex;
  position: absolute;
  bottom: .6rem;
  left: .8rem;
}

.lm-legend-item {
  font-family: var(--font-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--subtle);
  align-items: center;
  gap: .3rem;
  font-size: .64rem;
  display: inline-flex;
}

.lm-legend-dot {
  border-radius: 50%;
  width: 7px;
  height: 7px;
}

.lm-inspector {
  font-family: var(--font-mono);
  flex-direction: column;
  gap: .55rem;
  min-width: 0;
  padding: 1.1rem 1.2rem;
  display: flex;
}

.lm-insp-head {
  justify-content: space-between;
  align-items: baseline;
  gap: .5rem;
  display: flex;
}

.lm-insp-id {
  letter-spacing: .02em;
  font-size: .88rem;
  font-weight: 600;
}

.lm-insp-layer {
  color: var(--subtle);
  letter-spacing: .16em;
  font-size: .6rem;
}

.lm-insp-label {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 80;
  color: var(--pale-lavender);
  margin-bottom: .2rem;
  font-size: 1.05rem;
  font-style: italic;
}

.lm-insp-row {
  align-items: center;
  display: flex;
}

.lm-conf {
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  gap: .5rem;
  display: flex;
}

.lm-conf-bar {
  background: var(--hairline-strong);
  border-radius: 3px;
  flex: 1;
  max-width: 9rem;
  height: 5px;
  overflow: hidden;
}

.lm-conf-fill {
  border-radius: 3px;
  height: 100%;
  transition: width .4s;
  display: block;
}

.lm-conf-v {
  color: var(--pale-lavender);
  font-size: .78rem;
}

.lm-insp-section {
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-top: .35rem;
  font-size: .64rem;
}

.lm-attrs {
  grid-template-columns: 1fr 1fr;
  gap: .2rem .9rem;
  display: grid;
}

.lm-attr {
  border-bottom: 1px solid var(--hairline);
  justify-content: space-between;
  gap: .5rem;
  padding: .18rem 0;
  font-size: .76rem;
  display: flex;
}

.lm-k {
  color: var(--subtle);
}

.lm-v {
  color: var(--pale-lavender);
}

.lm-version {
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  display: flex;
}

.lm-ver-old {
  color: var(--subtle);
  text-decoration: line-through;
}

.lm-ver-arrow {
  color: var(--magenta);
}

.lm-ver-new {
  color: var(--emerald);
  font-weight: 600;
}

.lm-ver-meta {
  color: var(--subtle);
  margin-left: auto;
  font-size: .68rem;
}

.lm-sources {
  flex-direction: column;
  gap: .15rem;
  list-style: none;
  display: flex;
}

.lm-sources li {
  color: var(--lavender);
  padding-left: .9rem;
  font-size: .72rem;
  position: relative;
}

.lm-sources li:before {
  content: "·";
  color: var(--magenta);
  position: absolute;
  left: .2rem;
}

.lm-insp-foot {
  border-top: 1px solid var(--hairline);
  color: var(--subtle);
  margin-top: auto;
  padding-top: .6rem;
  font-size: .68rem;
}

.lm-foot-hash {
  color: var(--cyan);
}

.pd-usecases {
  background: var(--hairline);
  border: 1px solid var(--hairline);
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  display: grid;
}

.pd-usecase {
  background: var(--cosmic-void);
  padding: 2rem 2.25rem;
  transition: background .35s;
}

.pd-usecase:hover {
  background: var(--cosmic-deep);
}

.pd-usecase h4 {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  color: var(--pale-lavender);
  letter-spacing: -.012em;
  margin-bottom: .6rem;
  font-size: 1.3rem;
  font-weight: 460;
}

.pd-usecase p {
  color: var(--lavender);
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.55;
}

.pd-connects {
  border: 1px solid var(--hairline);
  border-radius: 5px;
  flex-direction: column;
  display: flex;
  overflow: hidden;
}

.pd-connect {
  --connect-accent: var(--magenta);
  color: inherit;
  border-bottom: 1px solid var(--hairline);
  border-left: 3px solid #0000;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1.4rem 1.75rem;
  text-decoration: none;
  transition: background .3s, border-left-color .3s;
  display: grid;
}

.pd-connect:last-child {
  border-bottom: none;
}

.pd-connect:hover, .pd-connect:focus-visible {
  border-left-color: var(--connect-accent);
  background: #1a0b2e99;
}

.pd-connect-dot {
  background: var(--connect-accent);
  width: 9px;
  height: 9px;
  box-shadow: 0 0 10px var(--connect-accent);
  border-radius: 50%;
}

.pd-connect-label {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  color: var(--pale-lavender);
  white-space: nowrap;
  font-size: 1.25rem;
  font-weight: 460;
}

.pd-connect-role {
  color: var(--lavender);
  font-size: .9rem;
  font-weight: 300;
}

.pd-connect-arrow {
  font-family: var(--font-mono);
  color: var(--subtle);
  transition: color .3s, transform .3s;
}

.pd-connect:hover .pd-connect-arrow, .pd-connect:focus-visible .pd-connect-arrow {
  color: var(--connect-accent);
  transform: translateX(4px);
}

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

  .pd-hero-art {
    order: -1;
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .lm-console-body {
    grid-template-columns: 1fr;
  }

  .lm-graph {
    border-right: none;
    border-bottom: 1px solid var(--hairline);
  }

  .pd-usecases {
    grid-template-columns: 1fr;
  }

  .pd-connect {
    grid-template-columns: auto 1fr auto;
    gap: .85rem;
  }

  .pd-connect-role {
    grid-column: 2 / -1;
  }
}

.dm-console {
  border: 1px solid var(--hairline-strong);
  background: #06030f;
  border-radius: 6px;
  animation: 1.4s cubic-bezier(.16, 1, .3, 1) .25s both idx-rise;
  overflow: hidden;
  box-shadow: 0 30px 70px #00000080;
}

.dm-bar {
  border-bottom: 1px solid var(--hairline);
  font-family: var(--font-mono);
  background: #ec48990f;
  align-items: center;
  gap: .7rem;
  padding: .6rem .95rem;
  font-size: .72rem;
  display: flex;
}

.dm-status {
  letter-spacing: .08em;
  border: 1px solid;
  border-radius: 2px;
  padding: .1rem .45rem;
  font-weight: 600;
}

.dm-status.fired {
  color: var(--magenta);
  border-color: var(--magenta);
  background: #ec48991a;
}

.dm-status.armed {
  color: var(--subtle);
  border-color: var(--hairline-strong);
}

.dm-bar-title {
  color: var(--pale-lavender);
  font-weight: 500;
}

.dm-bar-meta {
  color: var(--subtle);
  margin-left: auto;
}

.dm-body {
  grid-template-columns: 1.4fr 1fr;
  display: grid;
}

.dm-chart {
  border-right: 1px solid var(--hairline);
  flex-direction: column;
  min-width: 0;
  display: flex;
}

.dm-svg {
  width: 100%;
  height: auto;
  display: block;
}

.dm-control {
  border-top: 1px solid var(--hairline);
  align-items: center;
  gap: .85rem;
  padding: .7rem 1rem .9rem;
  display: flex;
}

.dm-control-label {
  font-family: var(--font-mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--subtle);
  font-size: .68rem;
}

.dm-range {
  appearance: none;
  background: linear-gradient(90deg, var(--royal-purple), var(--magenta));
  cursor: pointer;
  border-radius: 3px;
  outline: none;
  flex: 1;
  height: 4px;
}

.dm-range::-webkit-slider-thumb {
  appearance: none;
  background: var(--pale-lavender);
  border: 2px solid var(--magenta);
  cursor: pointer;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  box-shadow: 0 0 10px #ec489999;
}

.dm-range::-moz-range-thumb {
  background: var(--pale-lavender);
  border: 2px solid var(--magenta);
  cursor: pointer;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  box-shadow: 0 0 10px #ec489999;
}

.dm-control-val {
  font-family: var(--font-mono);
  color: var(--magenta);
  text-align: right;
  min-width: 2.6rem;
  font-size: .82rem;
}

.dm-inspector {
  flex-direction: column;
  gap: .6rem;
  min-width: 0;
  padding: 1rem 1.15rem;
  display: flex;
}

.dm-insp-section {
  font-family: var(--font-mono);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--subtle);
  font-size: .64rem;
}

.dm-payload {
  font-family: var(--font-mono);
  color: var(--lavender);
  white-space: pre;
  margin: 0;
  font-size: .74rem;
  line-height: 1.55;
  overflow-x: auto;
}

.dm-payload .k {
  color: var(--cyan);
}

.dm-payload .s {
  color: var(--emerald);
}

.dm-payload .n {
  color: var(--amber);
}

.dm-noop {
  font-family: var(--font-mono);
  color: var(--subtle);
  border: 1px dashed var(--hairline-strong);
  border-radius: 3px;
  padding: .6rem .75rem;
  font-size: .76rem;
  line-height: 1.5;
}

.dm-noop-mark {
  color: var(--amber);
  margin-right: .4rem;
}

.dm-deliveries {
  flex-direction: column;
  gap: .25rem;
  display: flex;
}

.dm-delivery {
  border: 1px solid var(--hairline);
  font-family: var(--font-mono);
  border-radius: 3px;
  grid-template-columns: 2.6rem 1fr auto;
  align-items: center;
  gap: .6rem;
  padding: .3rem .5rem;
  font-size: .72rem;
  transition: opacity .3s, border-color .3s;
  display: grid;
}

.dm-delivery.on {
  border-color: #10b9814d;
}

.dm-delivery.off {
  opacity: .45;
}

.dm-d-code {
  color: var(--emerald);
  font-weight: 600;
}

.dm-delivery.off .dm-d-code {
  color: var(--subtle);
}

.dm-d-ep {
  color: var(--pale-lavender);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.dm-d-ms {
  color: var(--subtle);
}

@media (max-width: 720px) {
  .dm-body {
    grid-template-columns: 1fr;
  }

  .dm-chart {
    border-right: none;
    border-bottom: 1px solid var(--hairline);
  }
}

.fr-console {
  border: 1px solid var(--hairline-strong);
  background: #06030f;
  border-radius: 6px;
  animation: 1.4s cubic-bezier(.16, 1, .3, 1) .25s both idx-rise;
  overflow: hidden;
  box-shadow: 0 30px 70px #00000080;
}

.fr-bar {
  border-bottom: 1px solid var(--hairline);
  font-family: var(--font-mono);
  background: #10b9810d;
  align-items: center;
  gap: .7rem;
  padding: .55rem .95rem;
  font-size: .72rem;
  display: flex;
}

.fr-status {
  letter-spacing: .08em;
  border: 1px solid;
  border-radius: 2px;
  padding: .1rem .45rem;
  font-weight: 600;
}

.fr-status.idle {
  color: var(--subtle);
  border-color: var(--hairline-strong);
}

.fr-status.run {
  color: var(--amber);
  border-color: var(--amber);
  background: #f59e0b14;
}

.fr-status.done {
  color: var(--emerald);
  border-color: var(--emerald);
  background: #10b9811a;
}

.fr-bar-title {
  color: var(--pale-lavender);
  font-weight: 500;
}

.fr-run {
  font-family: var(--font-mono);
  color: var(--pale-lavender);
  background: var(--magenta);
  border: 1px solid var(--magenta);
  cursor: pointer;
  border-radius: 2px;
  margin-left: auto;
  padding: .25rem .7rem;
  font-size: .72rem;
  font-weight: 600;
  transition: background .2s, opacity .2s;
}

.fr-run:hover:not(:disabled) {
  background: var(--magenta-deep);
}

.fr-run:disabled {
  opacity: .55;
  cursor: default;
}

.fr-body {
  grid-template-columns: 1.05fr 1fr;
  display: grid;
}

.fr-chain {
  border-right: 1px solid var(--hairline);
  flex-direction: column;
  gap: .1rem;
  min-width: 0;
  padding: .5rem;
  display: flex;
}

.fr-step {
  text-align: left;
  cursor: pointer;
  font-family: var(--font-mono);
  background: none;
  border: 1px solid #0000;
  border-radius: 3px;
  grid-template-columns: 1.4rem 1fr auto;
  align-items: center;
  gap: .6rem;
  padding: .5rem .6rem;
  transition: background .25s, border-color .25s, opacity .25s;
  display: grid;
}

.fr-step:disabled {
  cursor: default;
}

.fr-step.pending {
  opacity: .4;
}

.fr-step.active {
  opacity: 1;
  background: #f59e0b14;
  border-color: #f59e0b4d;
}

.fr-step.past {
  opacity: 1;
}

.fr-step.sel {
  border-color: var(--hairline-strong);
  background: #8b5cf61a;
}

.fr-step-rail {
  justify-content: center;
  align-items: center;
  display: flex;
}

.fr-step-dot {
  border: 1.5px solid var(--subtle);
  background: none;
  border-radius: 50%;
  width: 9px;
  height: 9px;
  transition: background .25s, border-color .25s;
}

.fr-step.active .fr-step-dot {
  border-color: var(--amber);
  background: var(--amber);
  box-shadow: 0 0 8px var(--amber);
}

.fr-step.past .fr-step-dot {
  border-color: var(--emerald);
  background: var(--emerald);
}

.fr-step-text {
  flex-direction: column;
  gap: .05rem;
  min-width: 0;
  display: flex;
}

.fr-step-verb {
  color: var(--pale-lavender);
  font-size: .82rem;
  font-weight: 500;
}

.fr-step.pending .fr-step-verb {
  color: var(--lavender);
}

.fr-step-obj {
  color: var(--subtle);
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: .68rem;
  overflow: hidden;
}

.fr-step-idx {
  color: var(--subtle);
  font-size: .66rem;
}

.fr-inspector {
  min-width: 0;
  font-family: var(--font-mono);
  flex-direction: column;
  gap: .6rem;
  padding: 1rem 1.15rem;
  display: flex;
}

.fr-insp-section {
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--subtle);
  font-size: .64rem;
}

.fr-detail, .fr-verify {
  flex-direction: column;
  gap: .2rem;
  display: flex;
}

.fr-detail-row, .fr-verify-row {
  border-bottom: 1px solid var(--hairline);
  justify-content: space-between;
  gap: .75rem;
  padding: .28rem 0;
  font-size: .76rem;
  display: flex;
}

.fr-dk, .fr-vk {
  color: var(--subtle);
}

.fr-dv, .fr-vv {
  color: var(--pale-lavender);
  text-align: right;
}

.fr-vv.ok {
  color: var(--emerald);
}

.fr-vv.hash {
  color: var(--cyan);
}

.fr-dist {
  flex-direction: column;
  gap: .4rem;
  display: flex;
}

.fr-dist-row {
  grid-template-columns: 4.6rem 1fr 2.4rem;
  align-items: center;
  gap: .6rem;
  display: grid;
}

.fr-dist-label {
  color: var(--lavender);
  font-size: .7rem;
}

.fr-dist-bar {
  background: var(--hairline-strong);
  border-radius: 4px;
  height: 7px;
  overflow: hidden;
}

.fr-dist-fill {
  border-radius: 4px;
  height: 100%;
  transition: width .5s cubic-bezier(.16, 1, .3, 1);
  display: block;
}

.fr-dist-v {
  color: var(--pale-lavender);
  text-align: right;
  font-size: .74rem;
}

.fr-insp-foot {
  border-top: 1px solid var(--hairline);
  color: var(--subtle);
  margin-top: auto;
  padding-top: .5rem;
  font-size: .68rem;
  line-height: 1.4;
}

.fr-idle {
  flex-direction: column;
  justify-content: center;
  gap: .85rem;
  height: 100%;
  display: flex;
}

.fr-idle-mark {
  color: var(--magenta);
  font-size: 1.6rem;
}

.fr-idle p {
  color: var(--lavender);
  font-size: .82rem;
  line-height: 1.55;
  font-family: var(--font-body);
  font-weight: 300;
}

.fr-idle strong {
  color: var(--pale-lavender);
  font-weight: 500;
}

.fr-options {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  display: grid;
}

.fr-option {
  border: 1px solid var(--hairline);
  border-top: 2px solid var(--subtle);
  background: #1a0b2e73;
  border-radius: 4px;
  flex-direction: column;
  gap: .9rem;
  padding: 2rem 1.85rem;
  transition: transform .35s, border-color .35s;
  display: flex;
}

.fr-option.win {
  border-top-color: var(--emerald);
  background: #10b9810d;
}

.fr-option.win:hover {
  transform: translateY(-4px);
}

.fr-opt-num {
  font-family: var(--font-mono);
  letter-spacing: .16em;
  color: var(--subtle);
  font-size: .7rem;
}

.fr-opt-title {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -.015em;
  color: var(--pale-lavender);
  font-size: 1.5rem;
  font-weight: 460;
  line-height: 1.1;
}

.fr-opt-body {
  color: var(--lavender);
  flex: 1;
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.55;
}

.fr-opt-body code {
  font-family: var(--font-mono);
  color: var(--magenta);
  background: #ec489914;
  border-radius: 2px;
  padding: .05rem .3rem;
  font-size: .84rem;
}

.fr-opt-verdict {
  font-family: var(--font-mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  border-top: 1px solid var(--hairline);
  padding-top: .6rem;
  font-size: .72rem;
  font-weight: 600;
}

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

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

  .fr-chain {
    border-right: none;
    border-bottom: 1px solid var(--hairline);
  }
}

.px-console {
  border: 1px solid var(--hairline-strong);
  background: #06030f;
  border-radius: 6px;
  animation: 1.4s cubic-bezier(.16, 1, .3, 1) .25s both idx-rise;
  overflow: hidden;
  box-shadow: 0 30px 70px #00000080;
}

.px-bar {
  border-bottom: 1px solid var(--hairline);
  font-family: var(--font-mono);
  background: #f59e0b0d;
  align-items: center;
  gap: .7rem;
  padding: .55rem .95rem;
  font-size: .72rem;
  display: flex;
}

.px-status {
  letter-spacing: .08em;
  border: 1px solid;
  border-radius: 2px;
  padding: .1rem .45rem;
  font-weight: 600;
}

.px-status.run {
  color: var(--amber);
  border-color: var(--amber);
  background: #f59e0b14;
}

.px-status.done {
  color: var(--magenta);
  border-color: var(--magenta);
  background: #ec48991a;
}

.px-bar-title {
  color: var(--pale-lavender);
  font-weight: 500;
}

.px-bar-meta {
  color: var(--subtle);
  margin-left: auto;
}

.px-tabs {
  border-bottom: 1px solid var(--hairline);
  flex-wrap: wrap;
  gap: .4rem;
  padding: .6rem .7rem;
  display: flex;
}

.px-tab {
  font-family: var(--font-mono);
  color: var(--lavender);
  border: 1px solid var(--hairline-strong);
  cursor: pointer;
  background: #8b5cf60d;
  border-radius: 2px;
  padding: .3rem .65rem;
  font-size: .7rem;
  transition: background .2s, color .2s, border-color .2s;
}

.px-tab:hover {
  color: var(--pale-lavender);
}

.px-tab.on {
  color: var(--pale-lavender);
  border-color: var(--magenta);
  background: #ec48991a;
}

.px-body {
  grid-template-columns: 1.35fr 1fr;
  display: grid;
}

.px-graph {
  border-right: 1px solid var(--hairline);
  min-width: 0;
  position: relative;
}

.px-svg {
  width: 100%;
  height: auto;
  display: block;
}

.px-legend {
  flex-wrap: wrap;
  gap: .65rem;
  display: flex;
  position: absolute;
  bottom: .55rem;
  left: .7rem;
}

.px-legend-item {
  font-family: var(--font-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--subtle);
  align-items: center;
  gap: .3rem;
  font-size: .62rem;
  display: inline-flex;
}

.px-legend-dot {
  border-radius: 50%;
  width: 7px;
  height: 7px;
}

.px-inspector {
  min-width: 0;
  font-family: var(--font-mono);
  flex-direction: column;
  gap: .65rem;
  padding: 1rem 1.15rem;
  display: flex;
}

.px-ask {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 80;
  color: var(--pale-lavender);
  font-size: .95rem;
  font-style: italic;
  line-height: 1.4;
}

.px-insp-section {
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--subtle);
  font-size: .64rem;
}

.px-hops {
  flex-direction: column;
  gap: .1rem;
  display: flex;
}

.px-hop {
  opacity: .4;
  flex-direction: column;
  gap: .05rem;
  padding: .25rem 0;
  transition: opacity .4s;
  display: flex;
}

.px-hop.on {
  opacity: 1;
}

.px-hop-node {
  font-size: .82rem;
  font-weight: 500;
}

.px-hop-edge {
  color: var(--subtle);
  padding-left: .4rem;
  font-size: .66rem;
}

.px-result {
  border-top: 1px solid var(--hairline);
  flex-direction: column;
  gap: .2rem;
  margin-top: auto;
  padding-top: .55rem;
  display: flex;
}

.px-result-row {
  justify-content: space-between;
  gap: .75rem;
  font-size: .74rem;
  display: flex;
}

.px-rk {
  color: var(--subtle);
}

.px-rv {
  color: var(--pale-lavender);
  text-align: right;
}

.px-rv.hash {
  color: var(--cyan);
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 11rem;
  overflow: hidden;
}

.pd-roadmap-note {
  border: 1px solid var(--royal-purple);
  background: linear-gradient(120deg, #4a1d8e2e, #ec48990d);
  border-radius: 5px;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  padding: 1.6rem 2rem;
  display: flex;
}

.pd-roadmap-badge {
  font-family: var(--font-mono);
  letter-spacing: .12em;
  color: var(--amber);
  border: 1px solid var(--amber);
  white-space: nowrap;
  border-radius: 2px;
  padding: .3rem .7rem;
  font-size: .72rem;
  font-weight: 600;
}

.pd-roadmap-note p {
  min-width: 16rem;
  color: var(--lavender);
  flex: 1;
  font-size: .98rem;
  font-weight: 300;
  line-height: 1.55;
}

.pd-roadmap-note a {
  color: var(--magenta);
  border-bottom: 1px solid var(--magenta-deep);
}

.pd-roadmap-note a:hover {
  color: var(--pale-lavender);
}

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

  .px-graph {
    border-right: none;
    border-bottom: 1px solid var(--hairline);
  }
}

.ax-console {
  --ax-accent: var(--amethyst);
  border: 1px solid var(--hairline-strong);
  background: #06030f;
  border-radius: 6px;
  animation: 1.4s cubic-bezier(.16, 1, .3, 1) .25s both idx-rise;
  overflow: hidden;
  box-shadow: 0 30px 70px #00000080;
}

.ax-bar {
  border-bottom: 1px solid var(--hairline);
  font-family: var(--font-mono);
  background: #8b5cf60f;
  align-items: center;
  gap: .7rem;
  padding: .55rem .95rem;
  font-size: .72rem;
  display: flex;
}

.ax-dot {
  background: var(--ax-accent);
  width: 8px;
  height: 8px;
  box-shadow: 0 0 8px var(--ax-accent);
  border-radius: 50%;
}

.ax-bar-title {
  color: var(--pale-lavender);
  font-weight: 500;
}

.ax-bar-meta {
  color: var(--subtle);
  margin-left: auto;
}

.ax-tabs {
  border-bottom: 1px solid var(--hairline);
  flex-wrap: wrap;
  gap: .4rem;
  padding: .6rem .7rem;
  display: flex;
}

.ax-tab {
  font-family: var(--font-mono);
  color: var(--lavender);
  border: 1px solid var(--hairline-strong);
  cursor: pointer;
  background: #8b5cf60d;
  border-radius: 2px;
  padding: .3rem .65rem;
  font-size: .7rem;
  transition: background .2s, color .2s, border-color .2s;
}

.ax-tab:hover {
  color: var(--pale-lavender);
}

.ax-tab.on {
  color: var(--pale-lavender);
  border-color: var(--ax-accent);
  background: var(--ax-accent);
}

@supports (color: color-mix(in lab, red, red)) {
  .ax-tab.on {
    background: color-mix(in srgb, var(--ax-accent) 14%, transparent);
  }
}

.ax-stages {
  border-bottom: 1px solid var(--hairline);
  display: flex;
}

.ax-stage {
  border: none;
  border-right: 1px solid var(--hairline);
  font-family: var(--font-mono);
  color: var(--subtle);
  cursor: pointer;
  background: none;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: .45rem;
  padding: .6rem .4rem;
  font-size: .72rem;
  transition: color .2s, background .2s;
  display: inline-flex;
}

.ax-stage:last-child {
  border-right: none;
}

.ax-stage:hover, .ax-stage.past {
  color: var(--lavender);
}

.ax-stage.on {
  color: var(--pale-lavender);
  background: var(--ax-accent);
}

@supports (color: color-mix(in lab, red, red)) {
  .ax-stage.on {
    background: color-mix(in srgb, var(--ax-accent) 8%, transparent);
  }
}

.ax-stage-n {
  border: 1px solid var(--hairline-strong);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  font-size: .62rem;
  display: inline-flex;
}

.ax-stage.on .ax-stage-n {
  border-color: var(--ax-accent);
  color: var(--ax-accent);
}

.ax-stage.past .ax-stage-n {
  border-color: var(--emerald);
  color: var(--emerald);
}

.ax-body {
  min-height: 13rem;
  font-family: var(--font-mono);
  padding: 1.1rem 1.2rem;
}

.ax-note {
  font-family: var(--font-body);
  color: var(--subtle);
  margin-top: .9rem;
  font-size: .8rem;
  font-weight: 300;
  line-height: 1.5;
}

.ax-note strong {
  color: var(--pale-lavender);
  font-weight: 500;
}

.ax-note-lock {
  color: var(--lavender);
}

.ax-lock {
  margin-right: .35rem;
}

.ax-define {
  flex-direction: column;
  display: flex;
}

.ax-def-row {
  border-bottom: 1px solid var(--hairline);
  justify-content: space-between;
  gap: 1rem;
  padding: .5rem 0;
  display: flex;
}

.ax-def-row dt {
  color: var(--subtle);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .72rem;
}

.ax-def-row dd {
  color: var(--pale-lavender);
  text-align: right;
  font-size: .82rem;
}

.ax-code {
  color: var(--lavender);
  white-space: pre;
  border: 1px solid var(--hairline);
  background: #0f08208c;
  border-radius: 4px;
  margin: 0;
  padding: .6rem .75rem;
  font-size: .74rem;
  line-height: 1.55;
  overflow-x: auto;
}

.ax-code-line {
  display: inline;
}

.ax-insp-section {
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: .5rem;
  font-size: .64rem;
}

.ax-metric {
  grid-template-columns: 8rem 1fr 4rem;
  align-items: center;
  gap: .6rem;
  padding: .32rem 0;
  display: grid;
}

.ax-metric-k {
  color: var(--lavender);
  font-size: .74rem;
}

.ax-metric-bar {
  background: var(--hairline-strong);
  border-radius: 4px;
  height: 7px;
  overflow: hidden;
}

.ax-metric-fill {
  border-radius: 4px;
  height: 100%;
  transition: width .5s cubic-bezier(.16, 1, .3, 1);
  display: block;
}

.ax-metric-v {
  text-align: right;
  font-size: .74rem;
}

.ax-deploy-head {
  color: var(--pale-lavender);
  align-items: center;
  gap: .7rem;
  margin-bottom: .9rem;
  font-size: .8rem;
  display: flex;
}

.ax-live {
  letter-spacing: .08em;
  color: var(--emerald);
  border: 1px solid var(--emerald);
  background: #10b9811a;
  border-radius: 2px;
  padding: .1rem .45rem;
  font-weight: 600;
}

.ax-surfaces {
  flex-direction: column;
  gap: .3rem;
  display: flex;
}

.ax-surface {
  border: 1px solid var(--hairline);
  border-left: 2px solid var(--ax-accent);
  border-radius: 3px;
  justify-content: space-between;
  align-items: center;
  padding: .5rem .7rem;
  display: flex;
}

.ax-surface-name {
  color: var(--pale-lavender);
  font-size: .8rem;
}

.ax-surface-verb {
  color: var(--emerald);
  font-size: .72rem;
}

@media (max-width: 720px) {
  .ax-metric {
    grid-template-columns: 6.5rem 1fr 3.4rem;
  }
}

.rm-console {
  border: 1px solid var(--hairline-strong);
  background: #06030f;
  border-radius: 6px;
  animation: 1.4s cubic-bezier(.16, 1, .3, 1) .25s both idx-rise;
  overflow: hidden;
  box-shadow: 0 30px 70px #00000080;
}

.rm-bar {
  border-bottom: 1px solid var(--hairline);
  font-family: var(--font-mono);
  background: #f472b60d;
  align-items: center;
  gap: .7rem;
  padding: .55rem .95rem;
  font-size: .72rem;
  display: flex;
}

.rm-dot {
  background: var(--rose);
  width: 8px;
  height: 8px;
  box-shadow: 0 0 8px var(--rose);
  border-radius: 50%;
  animation: 1.8s ease-in-out infinite pulse;
}

.rm-bar-title {
  color: var(--pale-lavender);
  font-weight: 500;
}

.rm-overlay-toggle {
  font-family: var(--font-mono);
  color: var(--lavender);
  border: 1px solid var(--hairline-strong);
  cursor: pointer;
  background: #8b5cf60f;
  border-radius: 2px;
  margin-left: auto;
  padding: .2rem .55rem;
  font-size: .68rem;
  transition: color .2s, border-color .2s, background .2s;
}

.rm-overlay-toggle.on {
  color: var(--cyan);
  border-color: var(--cyan);
  background: #22d3ee14;
}

.rm-body {
  grid-template-columns: 1.25fr 1fr;
  display: grid;
}

.rm-grid-wrap {
  border-right: 1px solid var(--hairline);
  min-width: 0;
  padding: .9rem;
}

.rm-grid {
  font-family: var(--font-mono);
  grid-template-columns: 5.1rem repeat(5, minmax(0, 1fr));
  gap: 3px;
  display: grid;
}

.rm-col-head, .rm-row-head {
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--subtle);
  white-space: nowrap;
  text-overflow: ellipsis;
  align-items: center;
  min-width: 0;
  font-size: .58rem;
  display: flex;
  overflow: hidden;
}

.rm-col-head {
  justify-content: center;
  padding-bottom: .2rem;
}

.rm-row-head {
  padding-right: .45rem;
}

.rm-cell {
  aspect-ratio: 1.5;
  cursor: pointer;
  border: 1px solid #0000;
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  min-height: 2.1rem;
  transition: transform .18s, border-color .18s, box-shadow .18s;
  display: flex;
  position: relative;
}

.rm-cell:hover {
  border-color: var(--pale-lavender);
  transform: scale(1.06);
}

.rm-cell.sel {
  border-color: var(--pale-lavender);
  box-shadow: 0 0 0 1px var(--pale-lavender), 0 4px 14px #0006;
  transform: scale(1.04);
}

.rm-cell.hot {
  box-shadow: inset 0 0 0 1px #ffffff59;
}

.rm-cell-v {
  color: var(--pale-lavender);
  text-shadow: 0 1px 2px #000000d9;
  font-size: .68rem;
  font-weight: 600;
}

.rm-cell-reg {
  background: var(--cyan);
  width: 6px;
  height: 6px;
  box-shadow: 0 0 5px var(--cyan);
  border-radius: 50%;
  position: absolute;
  top: 2px;
  right: 2px;
}

.rm-control {
  border-top: 1px solid var(--hairline);
  align-items: center;
  gap: .75rem;
  margin-top: .9rem;
  padding-top: .8rem;
  display: flex;
}

.rm-control-label {
  font-family: var(--font-mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--subtle);
  white-space: nowrap;
  font-size: .68rem;
}

.rm-range {
  appearance: none;
  background: linear-gradient(90deg, var(--royal-purple), var(--magenta), var(--rose));
  cursor: pointer;
  border-radius: 3px;
  outline: none;
  flex: 1;
  height: 4px;
}

.rm-range::-webkit-slider-thumb {
  appearance: none;
  background: var(--pale-lavender);
  border: 2px solid var(--rose);
  cursor: pointer;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  box-shadow: 0 0 10px #f472b699;
}

.rm-range::-moz-range-thumb {
  background: var(--pale-lavender);
  border: 2px solid var(--rose);
  cursor: pointer;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  box-shadow: 0 0 10px #f472b699;
}

.rm-control-val {
  font-family: var(--font-mono);
  color: var(--rose);
  text-align: right;
  min-width: 2.4rem;
  font-size: .78rem;
}

.rm-hot {
  font-family: var(--font-mono);
  color: var(--rose);
  border: 1px solid var(--rose);
  white-space: nowrap;
  border-radius: 2px;
  padding: .1rem .4rem;
  font-size: .66rem;
}

.rm-inspector {
  min-width: 0;
  font-family: var(--font-mono);
  flex-direction: column;
  gap: .65rem;
  padding: 1rem 1.15rem;
  display: flex;
}

.rm-insp-head {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
  display: flex;
}

.rm-insp-cell {
  color: var(--pale-lavender);
  font-size: .92rem;
  font-weight: 500;
}

.rm-x {
  color: var(--subtle);
}

.rm-regime {
  color: var(--cyan);
  border: 1px solid var(--cyan);
  background: #22d3ee14;
  border-radius: 2px;
  padding: .1rem .4rem;
  font-size: .62rem;
}

.rm-insp-row {
  justify-content: space-between;
  align-items: center;
  gap: .6rem;
  display: flex;
}

.rm-expo {
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  gap: .5rem;
  display: flex;
}

.rm-expo-bar {
  background: var(--hairline-strong);
  border-radius: 4px;
  flex: 1;
  max-width: 8rem;
  height: 6px;
  overflow: hidden;
}

.rm-expo-fill {
  border-radius: 4px;
  height: 100%;
  transition: width .4s, background .4s;
  display: block;
}

.rm-expo-v {
  color: var(--pale-lavender);
  font-size: .78rem;
}

.rm-insp-section {
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--subtle);
  font-size: .64rem;
}

.rm-entities {
  flex-direction: column;
  gap: .55rem;
  display: flex;
}

.rm-entity {
  flex-direction: column;
  gap: .3rem;
  display: flex;
}

.rm-ent-top {
  justify-content: space-between;
  align-items: baseline;
  gap: .75rem;
  display: flex;
}

.rm-ent-name {
  color: var(--pale-lavender);
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  font-size: .76rem;
  overflow: hidden;
}

.rm-ent-bar {
  background: var(--hairline-strong);
  border-radius: 3px;
  height: 5px;
  overflow: hidden;
}

.rm-ent-fill {
  border-radius: 3px;
  height: 100%;
  transition: width .4s, background .4s;
  display: block;
}

.rm-ent-drift {
  flex-shrink: 0;
  font-size: .72rem;
}

.rm-ent-drift.up {
  color: var(--rose);
}

.rm-ent-drift.down {
  color: var(--emerald);
}

.rm-insp-foot {
  border-top: 1px solid var(--hairline);
  color: var(--subtle);
  margin-top: auto;
  padding-top: .55rem;
  font-size: .66rem;
  line-height: 1.4;
}

@media (max-width: 720px) {
  .rm-body {
    grid-template-columns: 1fr;
  }

  .rm-grid-wrap {
    border-right: none;
    border-bottom: 1px solid var(--hairline);
  }
}

.mx-console {
  --mx-accent: var(--cyan);
  border: 1px solid var(--hairline-strong);
  background: #06030f;
  border-radius: 6px;
  animation: 1.4s cubic-bezier(.16, 1, .3, 1) .25s both idx-rise;
  overflow: hidden;
  box-shadow: 0 30px 70px #00000080;
}

.mx-bar {
  border-bottom: 1px solid var(--hairline);
  font-family: var(--font-mono);
  background: #8b5cf60f;
  align-items: center;
  gap: .7rem;
  padding: .55rem .95rem;
  font-size: .72rem;
  display: flex;
}

.mx-dot {
  background: var(--emerald);
  width: 8px;
  height: 8px;
  box-shadow: 0 0 8px var(--emerald);
  border-radius: 50%;
  animation: 1.8s ease-in-out infinite pulse;
}

.mx-bar-title {
  color: var(--pale-lavender);
  font-weight: 500;
}

.mx-verified {
  color: var(--emerald);
  margin-left: auto;
  font-weight: 600;
}

.mx-tabs {
  border-bottom: 1px solid var(--hairline);
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem;
  padding: .55rem .7rem;
  display: flex;
}

.mx-tabs-label {
  font-family: var(--font-mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-right: .2rem;
  font-size: .66rem;
}

.mx-tab {
  font-family: var(--font-mono);
  color: var(--lavender);
  border: 1px solid var(--hairline-strong);
  cursor: pointer;
  background: #8b5cf60d;
  border-radius: 2px;
  padding: .28rem .6rem;
  font-size: .7rem;
  transition: background .2s, color .2s, border-color .2s;
}

.mx-tab:hover {
  color: var(--pale-lavender);
}

.mx-tab.on {
  color: var(--pale-lavender);
  border-color: var(--mx-accent);
  background: var(--mx-accent);
}

@supports (color: color-mix(in lab, red, red)) {
  .mx-tab.on {
    background: color-mix(in srgb, var(--mx-accent) 14%, transparent);
  }
}

.mx-body {
  grid-template-columns: 1.15fr 1fr;
  display: grid;
}

.mx-manifest {
  border-right: 1px solid var(--hairline);
  font-family: var(--font-mono);
  color: var(--lavender);
  white-space: pre;
  min-width: 0;
  margin: 0;
  padding: .9rem .5rem .9rem .9rem;
  font-size: .72rem;
  line-height: 1.7;
  overflow-x: auto;
}

.mx-line {
  border-radius: 2px;
  margin-left: -.35rem;
  padding-left: .35rem;
  transition: background .3s, color .3s, box-shadow .3s;
  display: block;
}

.mx-line.lit {
  background: var(--lit);
}

@supports (color: color-mix(in lab, red, red)) {
  .mx-line.lit {
    background: color-mix(in srgb, var(--lit) 14%, transparent);
  }
}

.mx-line.lit {
  color: var(--pale-lavender);
  box-shadow: inset 2px 0 0 var(--lit);
}

.mx-crosswalk {
  flex-direction: column;
  gap: .6rem;
  min-width: 0;
  padding: .9rem 1rem;
  display: flex;
}

.mx-cw-head {
  font-family: var(--font-mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mx-accent);
  font-size: .64rem;
}

.mx-reqs {
  flex-direction: column;
  gap: .3rem;
  display: flex;
}

.mx-req {
  border: 1px solid var(--hairline);
  text-align: left;
  cursor: pointer;
  background: none;
  border-radius: 3px;
  align-items: flex-start;
  gap: .6rem;
  padding: .55rem .65rem;
  transition: background .2s, border-color .2s;
  display: flex;
}

.mx-req:hover, .mx-req.on {
  border-color: var(--mx-accent);
  background: var(--mx-accent);
}

@supports (color: color-mix(in lab, red, red)) {
  .mx-req:hover, .mx-req.on {
    background: color-mix(in srgb, var(--mx-accent) 8%, transparent);
  }
}

.mx-req-check {
  font-family: var(--font-mono);
  color: var(--emerald);
  font-size: .8rem;
  line-height: 1.3;
}

.mx-req-text {
  flex-direction: column;
  gap: .1rem;
  min-width: 0;
  display: flex;
}

.mx-req-clause {
  font-family: var(--font-mono);
  color: var(--pale-lavender);
  font-size: .72rem;
  font-weight: 600;
}

.mx-req-desc {
  color: var(--lavender);
  font-size: .78rem;
  font-weight: 300;
  line-height: 1.4;
}

.mx-cw-foot {
  border-top: 1px solid var(--hairline);
  font-family: var(--font-body);
  color: var(--subtle);
  margin-top: auto;
  padding-top: .55rem;
  font-size: .78rem;
  font-weight: 300;
  line-height: 1.5;
}

@media (max-width: 720px) {
  .mx-body {
    grid-template-columns: 1fr;
  }

  .mx-manifest {
    border-right: none;
    border-bottom: 1px solid var(--hairline);
  }
}

.rk-console {
  --rk-accent: var(--emerald);
  border: 1px solid var(--hairline-strong);
  background: #06030f;
  border-radius: 6px;
  animation: 1.4s cubic-bezier(.16, 1, .3, 1) .25s both idx-rise;
  overflow: hidden;
  box-shadow: 0 30px 70px #00000080;
}

.rk-bar {
  border-bottom: 1px solid var(--hairline);
  font-family: var(--font-mono);
  background: #8b5cf60f;
  align-items: center;
  gap: .7rem;
  padding: .55rem .95rem;
  font-size: .72rem;
  display: flex;
}

.rk-dot {
  background: var(--rk-accent);
  width: 8px;
  height: 8px;
  box-shadow: 0 0 8px var(--rk-accent);
  border-radius: 50%;
  transition: background .3s, box-shadow .3s;
}

.rk-bar-title {
  color: var(--pale-lavender);
  font-weight: 500;
}

.rk-view-toggle {
  border: 1px solid var(--hairline-strong);
  border-radius: 3px;
  margin-left: auto;
  display: flex;
  overflow: hidden;
}

.rk-view-toggle button {
  font-family: var(--font-mono);
  color: var(--lavender);
  cursor: pointer;
  background: none;
  border: none;
  padding: .22rem .6rem;
  font-size: .68rem;
  transition: background .2s, color .2s;
}

.rk-view-toggle button.on {
  color: var(--pale-lavender);
  background: #8b5cf629;
}

.rk-scenarios {
  border-bottom: 1px solid var(--hairline);
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem;
  padding: .55rem .7rem;
  display: flex;
}

.rk-scn-label {
  font-family: var(--font-mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-right: .2rem;
  font-size: .66rem;
}

.rk-scn {
  font-family: var(--font-mono);
  color: var(--lavender);
  border: 1px solid var(--hairline-strong);
  cursor: pointer;
  background: #8b5cf60d;
  border-radius: 2px;
  padding: .26rem .6rem;
  font-size: .7rem;
  transition: background .2s, color .2s, border-color .2s;
}

.rk-scn:hover {
  color: var(--pale-lavender);
}

.rk-scn.on {
  color: var(--pale-lavender);
  border-color: var(--scn);
  background: var(--scn);
}

@supports (color: color-mix(in lab, red, red)) {
  .rk-scn.on {
    background: color-mix(in srgb, var(--scn) 14%, transparent);
  }
}

.rk-body {
  grid-template-columns: 1.5fr 1fr;
  display: grid;
}

.rk-chart {
  border-right: 1px solid var(--hairline);
  min-width: 0;
}

.rk-svg {
  width: 100%;
  height: auto;
  display: block;
}

.rk-inspector {
  min-width: 0;
  font-family: var(--font-mono);
  flex-direction: column;
  gap: .7rem;
  padding: 1rem 1.15rem;
  display: flex;
}

.rk-insp-section {
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--subtle);
  font-size: .64rem;
}

.rk-stats {
  flex-direction: column;
  gap: .25rem;
  display: flex;
}

.rk-stat {
  border-bottom: 1px solid var(--hairline);
  justify-content: space-between;
  align-items: baseline;
  gap: .75rem;
  padding: .34rem 0;
  display: flex;
}

.rk-k {
  color: var(--subtle);
  font-size: .74rem;
}

.rk-v {
  color: var(--pale-lavender);
  font-size: .82rem;
  font-weight: 600;
}

.rk-insp-foot {
  border-top: 1px solid var(--hairline);
  font-family: var(--font-body);
  color: var(--subtle);
  margin-top: auto;
  padding-top: .55rem;
  font-size: .78rem;
  font-weight: 300;
  line-height: 1.5;
}

.rk-insp-foot strong {
  color: var(--pale-lavender);
  font-weight: 500;
}

@media (max-width: 720px) {
  .rk-body {
    grid-template-columns: 1fr;
  }

  .rk-chart {
    border-right: none;
    border-bottom: 1px solid var(--hairline);
  }
}

.bc-console {
  border: 1px solid var(--hairline-strong);
  background: #06030f;
  border-radius: 6px;
  animation: 1.4s cubic-bezier(.16, 1, .3, 1) .25s both idx-rise;
  overflow: hidden;
  box-shadow: 0 30px 70px #00000080;
}

.bc-bar {
  border-bottom: 1px solid var(--hairline);
  font-family: var(--font-mono);
  background: #8b5cf60f;
  align-items: center;
  gap: .7rem;
  padding: .55rem .95rem;
  font-size: .72rem;
  display: flex;
}

.bc-dot {
  background: var(--amethyst);
  width: 8px;
  height: 8px;
  box-shadow: 0 0 8px var(--amethyst);
  border-radius: 50%;
}

.bc-bar-title {
  color: var(--pale-lavender);
  font-weight: 500;
}

.bc-ratio {
  color: var(--rose);
  margin-left: auto;
  font-weight: 600;
}

.bc-body {
  flex-direction: column;
  gap: 1.1rem;
  padding: 1.15rem 1.2rem;
  display: flex;
}

.bc-compare {
  flex-direction: column;
  gap: 1.1rem;
  display: flex;
}

.bc-row {
  flex-direction: column;
  gap: .4rem;
  display: flex;
}

.bc-row-head {
  font-family: var(--font-mono);
  justify-content: space-between;
  align-items: baseline;
  gap: .75rem;
  display: flex;
}

.bc-row-label {
  color: var(--pale-lavender);
  font-size: .82rem;
}

.bc-row-total {
  font-size: 1.05rem;
  font-weight: 600;
}

.bc-track {
  background: var(--hairline);
  border-radius: 4px;
  height: 12px;
  overflow: hidden;
}

.bc-fill {
  border-radius: 4px;
  height: 100%;
  transition: width .45s cubic-bezier(.16, 1, .3, 1);
  display: block;
}

.bc-fill.internal {
  background: linear-gradient(90deg, var(--magenta-deep), var(--rose));
}

.bc-fill.deino {
  background: linear-gradient(90deg, var(--royal-purple), var(--emerald));
}

.bc-row-meta {
  font-family: var(--font-mono);
  color: var(--subtle);
  font-size: .68rem;
  line-height: 1.4;
}

.bc-controls {
  border-top: 1px solid var(--hairline);
  flex-direction: column;
  gap: .7rem;
  padding-top: .9rem;
  display: flex;
}

.bc-control {
  align-items: center;
  gap: .85rem;
  display: flex;
}

.bc-control label {
  font-family: var(--font-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--subtle);
  flex-shrink: 0;
  width: 8.5rem;
  font-size: .68rem;
}

.bc-range {
  appearance: none;
  background: linear-gradient(90deg, var(--royal-purple), var(--amethyst));
  cursor: pointer;
  border-radius: 3px;
  outline: none;
  flex: 1;
  height: 4px;
}

.bc-range::-webkit-slider-thumb {
  appearance: none;
  background: var(--pale-lavender);
  border: 2px solid var(--amethyst);
  cursor: pointer;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  box-shadow: 0 0 10px #8b5cf699;
}

.bc-range::-moz-range-thumb {
  background: var(--pale-lavender);
  border: 2px solid var(--amethyst);
  cursor: pointer;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  box-shadow: 0 0 10px #8b5cf699;
}

.bc-val {
  font-family: var(--font-mono);
  color: var(--pale-lavender);
  text-align: right;
  min-width: 3.4rem;
  font-size: .82rem;
}

.bc-foot {
  font-family: var(--font-body);
  color: var(--subtle);
  border-top: 1px solid var(--hairline);
  padding-top: .85rem;
  font-size: .78rem;
  font-weight: 300;
  line-height: 1.5;
}

.bc-foot strong {
  color: var(--pale-lavender);
  font-weight: 500;
}

.rc-console {
  border: 1px solid var(--hairline-strong);
  background: #06030f;
  border-radius: 6px;
  animation: 1.4s cubic-bezier(.16, 1, .3, 1) .25s both idx-rise;
  overflow: hidden;
  box-shadow: 0 30px 70px #00000080;
}

.rc-bar {
  border-bottom: 1px solid var(--hairline);
  font-family: var(--font-mono);
  background: #8b5cf60f;
  align-items: center;
  gap: .7rem;
  padding: .55rem .95rem;
  font-size: .72rem;
  display: flex;
}

.rc-dot {
  background: var(--emerald);
  width: 8px;
  height: 8px;
  box-shadow: 0 0 8px var(--emerald);
  border-radius: 50%;
  animation: 1.8s ease-in-out infinite pulse;
}

.rc-bar-title {
  color: var(--pale-lavender);
  font-weight: 500;
}

.rc-run {
  font-family: var(--font-mono);
  color: var(--pale-lavender);
  background: var(--magenta);
  border: 1px solid var(--magenta);
  cursor: pointer;
  border-radius: 2px;
  margin-left: auto;
  padding: .24rem .7rem;
  font-size: .7rem;
  font-weight: 600;
  transition: background .2s, opacity .2s;
}

.rc-run:hover:not(:disabled) {
  background: var(--magenta-deep);
}

.rc-run:disabled {
  opacity: .55;
  cursor: default;
}

.rc-headline {
  border-bottom: 1px solid var(--hairline);
  background: #0f082066;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem;
  display: flex;
}

.rc-h-side {
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  display: flex;
}

.rc-h-label {
  font-family: var(--font-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--subtle);
  font-size: .64rem;
}

.rc-h-value {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 40;
  font-size: 1.9rem;
  font-weight: 360;
  line-height: 1;
}

.rc-h-side.desk .rc-h-value {
  color: var(--subtle);
  text-decoration: line-through;
  -webkit-text-decoration-color: var(--muted);
  text-decoration-color: var(--muted);
}

.rc-h-arrow {
  font-family: var(--font-mono);
  color: var(--magenta);
  font-size: 1.3rem;
}

.rc-steps {
  flex-direction: column;
  gap: .7rem;
  padding: .9rem 1.1rem;
  display: flex;
}

.rc-step {
  opacity: .5;
  flex-direction: column;
  gap: .32rem;
  transition: opacity .4s;
  display: flex;
}

.rc-step.active, .rc-step.done {
  opacity: 1;
}

.rc-step-top {
  font-family: var(--font-mono);
  align-items: center;
  gap: .55rem;
  display: flex;
}

.rc-step-dot {
  border: 1.5px solid var(--subtle);
  background: none;
  border-radius: 50%;
  width: 9px;
  height: 9px;
  transition: background .3s, border-color .3s;
}

.rc-step.active .rc-step-dot {
  border-color: var(--amber);
  background: var(--amber);
  box-shadow: 0 0 8px var(--amber);
}

.rc-step.done .rc-step-dot {
  border-color: var(--emerald);
  background: var(--emerald);
}

.rc-step-label {
  color: var(--pale-lavender);
  font-size: .82rem;
  font-weight: 500;
}

.rc-step-product {
  color: var(--subtle);
  margin-left: auto;
  font-size: .66rem;
}

.rc-step-track {
  background: var(--hairline);
  border-radius: 4px;
  height: 6px;
  overflow: hidden;
}

.rc-step-fill {
  background: linear-gradient(90deg, var(--amethyst), var(--emerald));
  border-radius: 4px;
  height: 100%;
  transition: width .55s cubic-bezier(.16, 1, .3, 1);
  display: block;
}

.rc-step-times {
  font-family: var(--font-mono);
  justify-content: space-between;
  gap: .75rem;
  font-size: .7rem;
  display: flex;
}

.rc-t-desk {
  color: var(--subtle);
}

.rc-t-deino {
  color: var(--lavender);
}

.rc-t-deino.on {
  color: var(--emerald);
}

.rc-foot {
  border-top: 1px solid var(--hairline);
  font-family: var(--font-body);
  color: var(--subtle);
  padding: .85rem 1.1rem;
  font-size: .78rem;
  font-weight: 300;
  line-height: 1.5;
}

@media (max-width: 720px) {
  .bc-control label {
    width: 6.5rem;
    font-size: .62rem;
  }
}

.qc-console, .ee-console, .sk-console {
  border: 1px solid var(--hairline-strong);
  background: #06030f;
  border-radius: 6px;
  animation: 1.4s cubic-bezier(.16, 1, .3, 1) .25s both idx-rise;
  overflow: hidden;
  box-shadow: 0 30px 70px #00000080;
}

.qc-dots {
  gap: .4rem;
  display: flex;
}

.qc-dots span {
  background: var(--muted);
  border-radius: 50%;
  width: 9px;
  height: 9px;
}

.qc-bar {
  border-bottom: 1px solid var(--hairline);
  font-family: var(--font-mono);
  background: #8b5cf60f;
  align-items: center;
  gap: .75rem;
  padding: .6rem .95rem;
  font-size: .72rem;
  display: flex;
}

.qc-file {
  color: var(--subtle);
  letter-spacing: .05em;
}

.qc-run, .ee-send {
  font-family: var(--font-mono);
  color: var(--pale-lavender);
  background: var(--magenta);
  border: 1px solid var(--magenta);
  cursor: pointer;
  border-radius: 2px;
  margin-left: auto;
  padding: .22rem .7rem;
  font-size: .7rem;
  font-weight: 600;
  transition: background .2s, opacity .2s;
}

.qc-run:hover:not(:disabled), .ee-send:hover:not(:disabled) {
  background: var(--magenta-deep);
}

.qc-run:disabled, .ee-send:disabled {
  opacity: .55;
  cursor: default;
}

.qc-tabs, .sk-tabs {
  border-bottom: 1px solid var(--hairline);
  flex-wrap: wrap;
  gap: .4rem;
  padding: .55rem .7rem;
  display: flex;
}

.qc-tab, .sk-tab {
  font-family: var(--font-mono);
  color: var(--lavender);
  border: 1px solid var(--hairline-strong);
  cursor: pointer;
  background: #8b5cf60d;
  border-radius: 2px;
  align-items: center;
  gap: .35rem;
  padding: .26rem .6rem;
  font-size: .7rem;
  transition: background .2s, color .2s, border-color .2s;
  display: inline-flex;
}

.qc-tab:hover, .sk-tab:hover {
  color: var(--pale-lavender);
}

.qc-tab.on, .sk-tab.on {
  color: var(--pale-lavender);
  border-color: var(--magenta);
  background: #ec48991a;
}

.sk-tab-icon {
  font-size: .85rem;
}

.qc-install, .sk-install {
  border-bottom: 1px solid var(--hairline);
  font-family: var(--font-mono);
  align-items: center;
  gap: .7rem;
  padding: .55rem .95rem;
  font-size: .74rem;
  display: flex;
}

.qc-install-label, .sk-install-label {
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--subtle);
  font-size: .62rem;
}

.qc-install code, .sk-install code {
  color: var(--emerald);
}

.qc-code, .sk-code {
  font-family: var(--font-mono);
  color: var(--lavender);
  white-space: pre;
  margin: 0;
  padding: .85rem .95rem;
  font-size: .74rem;
  line-height: 1.6;
  overflow-x: auto;
}

.qc-response {
  border-top: 1px solid var(--hairline);
  min-height: 6.5rem;
  font-family: var(--font-mono);
  background: #0f082073;
  padding: .85rem .95rem;
  transition: background .3s;
}

.qc-response.done {
  background: #10b9810a;
}

.qc-resp-head {
  justify-content: space-between;
  align-items: center;
  margin-bottom: .6rem;
  display: flex;
}

.qc-resp-status {
  color: var(--emerald);
  letter-spacing: .06em;
  font-size: .7rem;
  font-weight: 600;
}

.qc-response.idle .qc-resp-status, .qc-response.running .qc-resp-status {
  color: var(--subtle);
}

.qc-resp-latency {
  color: var(--subtle);
  font-size: .68rem;
}

.qc-resp-idle {
  color: var(--subtle);
  padding: .6rem 0;
  font-size: .74rem;
}

.qc-dist {
  flex-direction: column;
  gap: .3rem;
  margin-bottom: .6rem;
  display: flex;
}

.qc-dist-row {
  grid-template-columns: 4.6rem 1fr 2.4rem;
  align-items: center;
  gap: .6rem;
  display: grid;
}

.qc-dist-label {
  color: var(--lavender);
  font-size: .7rem;
}

.qc-dist-bar {
  background: var(--hairline-strong);
  border-radius: 4px;
  height: 7px;
  overflow: hidden;
}

.qc-dist-fill {
  border-radius: 4px;
  height: 100%;
  transition: width .5s cubic-bezier(.16, 1, .3, 1);
  display: block;
}

.qc-dist-v {
  color: var(--pale-lavender);
  text-align: right;
  font-size: .72rem;
}

.qc-manifest {
  border-top: 1px solid var(--hairline);
  justify-content: space-between;
  gap: .75rem;
  padding-top: .55rem;
  font-size: .72rem;
  display: flex;
}

.qc-m-k {
  color: var(--subtle);
}

.qc-m-v {
  color: var(--cyan);
}

.ee-bar {
  border-bottom: 1px solid var(--hairline);
  font-family: var(--font-mono);
  background: #8b5cf60f;
  align-items: center;
  gap: .7rem;
  padding: .55rem .95rem;
  font-size: .72rem;
  display: flex;
}

.ee-dot {
  background: var(--emerald);
  width: 8px;
  height: 8px;
  box-shadow: 0 0 8px var(--emerald);
  border-radius: 50%;
  animation: 1.8s ease-in-out infinite pulse;
}

.ee-bar-title {
  color: var(--pale-lavender);
  font-weight: 500;
}

.ee-bar-meta {
  color: var(--subtle);
  margin-left: auto;
}

.ee-body {
  grid-template-columns: .85fr 1.15fr;
  display: grid;
}

.ee-list {
  border-right: 1px solid var(--hairline);
  flex-direction: column;
  gap: .2rem;
  min-width: 0;
  padding: .5rem;
  display: flex;
}

.ee-ep {
  cursor: pointer;
  text-align: left;
  background: none;
  border: 1px solid #0000;
  border-radius: 3px;
  align-items: center;
  gap: .5rem;
  min-width: 0;
  padding: .45rem .55rem;
  transition: background .2s, border-color .2s;
  display: flex;
}

.ee-ep:hover {
  background: #8b5cf60f;
}

.ee-ep.on {
  border-color: var(--hairline-strong);
  background: #8b5cf61f;
}

.ee-method {
  font-family: var(--font-mono);
  letter-spacing: .06em;
  border-radius: 2px;
  flex-shrink: 0;
  padding: .12rem .35rem;
  font-size: .6rem;
  font-weight: 700;
}

.ee-method.post {
  color: var(--emerald);
  background: #10b9811f;
}

.ee-method.get {
  color: var(--cyan);
  background: #22d3ee1f;
}

.ee-path {
  font-family: var(--font-mono);
  color: var(--pale-lavender);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: .68rem;
  overflow: hidden;
}

.ee-detail {
  flex-direction: column;
  gap: .6rem;
  min-width: 0;
  padding: .9rem 1rem;
  display: flex;
}

.ee-detail-head {
  align-items: center;
  gap: .55rem;
  display: flex;
}

.ee-detail-path {
  font-family: var(--font-mono);
  color: var(--pale-lavender);
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  font-size: .8rem;
  overflow: hidden;
}

.ee-desc {
  color: var(--lavender);
  font-size: .82rem;
  font-weight: 300;
  line-height: 1.5;
}

.ee-section {
  font-family: var(--font-mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--subtle);
  align-items: center;
  gap: .5rem;
  font-size: .62rem;
  display: flex;
}

.ee-200 {
  color: var(--emerald);
  letter-spacing: .04em;
  font-weight: 600;
}

.ee-code {
  font-family: var(--font-mono);
  white-space: pre;
  border-radius: 3px;
  margin: 0;
  padding: .6rem .75rem;
  font-size: .72rem;
  line-height: 1.5;
  overflow-x: auto;
}

.ee-code.req {
  border: 1px solid var(--hairline);
  color: var(--lavender);
  background: #0f082099;
}

.ee-code.res {
  color: var(--pale-lavender);
  background: #10b9810d;
  border: 1px solid #10b9812e;
}

.ee-res-idle {
  font-family: var(--font-mono);
  color: var(--subtle);
  padding: .5rem 0;
  font-size: .74rem;
}

.sk-bar {
  border-bottom: 1px solid var(--hairline);
  font-family: var(--font-mono);
  background: #8b5cf60f;
  align-items: center;
  gap: .75rem;
  padding: .6rem .95rem;
  font-size: .72rem;
  display: flex;
}

.sk-bar-title {
  color: var(--pale-lavender);
  font-weight: 500;
}

.sk-status {
  color: var(--emerald);
  margin-left: auto;
  font-weight: 600;
}

.sk-min {
  border-bottom: 1px solid var(--hairline);
  font-family: var(--font-mono);
  color: var(--subtle);
  padding: .55rem .95rem;
  font-size: .68rem;
}

.sk-out {
  border-top: 1px solid var(--hairline);
  font-family: var(--font-mono);
  background: #10b9810a;
  justify-content: space-between;
  gap: .75rem;
  padding: .55rem .95rem;
  font-size: .74rem;
  display: flex;
}

.sk-out-k {
  color: var(--subtle);
}

.sk-out-v {
  color: var(--emerald);
}

.sk-features {
  border-top: 1px solid var(--hairline);
  flex-wrap: wrap;
  gap: .4rem;
  padding: .75rem .95rem;
  display: flex;
}

.sk-feature {
  font-family: var(--font-mono);
  color: var(--lavender);
  border: 1px solid var(--hairline);
  border-radius: 2px;
  padding: .18rem .45rem;
  font-size: .66rem;
}

.sk-links {
  border-top: 1px solid var(--hairline);
  gap: 1rem;
  padding: .6rem .95rem .85rem;
  display: flex;
}

.sk-links a {
  font-family: var(--font-mono);
  color: var(--magenta);
  font-size: .72rem;
}

.sk-links a:hover {
  color: var(--pale-lavender);
}

@media (max-width: 720px) {
  .ee-body {
    grid-template-columns: 1fr;
  }

  .ee-list {
    border-right: none;
    border-bottom: 1px solid var(--hairline);
    flex-flow: wrap;
  }
}

.cm-console {
  border: 1px solid var(--hairline-strong);
  background: #06030f;
  border-radius: 6px;
  animation: 1.4s cubic-bezier(.16, 1, .3, 1) .25s both idx-rise;
  overflow: hidden;
  box-shadow: 0 30px 70px #00000080;
}

.cm-bar {
  border-bottom: 1px solid var(--hairline);
  font-family: var(--font-mono);
  background: #8b5cf60f;
  align-items: center;
  gap: .7rem;
  padding: .55rem .95rem;
  font-size: .72rem;
  display: flex;
}

.cm-dot {
  background: var(--magenta);
  width: 8px;
  height: 8px;
  box-shadow: 0 0 8px var(--magenta);
  border-radius: 50%;
}

.cm-bar-title {
  color: var(--pale-lavender);
  font-weight: 500;
}

.cm-bar-meta {
  color: var(--subtle);
  margin-left: auto;
}

.cm-layers {
  flex-direction: column;
  display: flex;
}

.cm-layer {
  --cm-tone: var(--lavender);
  border-bottom: 1px solid var(--hairline);
  border-left: 2px solid var(--cm-tone);
  flex-direction: column;
  gap: .35rem;
  padding: .6rem .85rem;
  display: flex;
}

.cm-layer-label {
  font-family: var(--font-mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--subtle);
  font-size: .62rem;
}

.cm-crates {
  flex-wrap: wrap;
  gap: .3rem;
  display: flex;
}

.cm-crate {
  --c-tone: var(--lavender);
  font-family: var(--font-mono);
  color: var(--lavender);
  border: 1px solid var(--hairline-strong);
  cursor: pointer;
  background: #0f082099;
  border-radius: 2px;
  padding: .2rem .45rem;
  font-size: .64rem;
  transition: background .2s, color .2s, border-color .2s, opacity .2s;
}

.cm-crate:hover {
  color: var(--pale-lavender);
}

.cm-crate.sel {
  color: #06030f;
  background: var(--c-tone);
  border-color: var(--c-tone);
  font-weight: 600;
}

.cm-crate.dep {
  color: var(--pale-lavender);
  border-color: var(--c-tone);
  background: var(--c-tone);
}

@supports (color: color-mix(in lab, red, red)) {
  .cm-crate.dep {
    background: color-mix(in srgb, var(--c-tone) 16%, transparent);
  }
}

.cm-crate.dependent {
  color: var(--pale-lavender);
  border-color: var(--hairline-strong);
  box-shadow: inset 0 -2px 0 var(--c-tone);
}

.cm-inspector {
  border-top: 1px solid var(--hairline);
  min-height: 6rem;
  font-family: var(--font-mono);
  background: #0f082073;
  flex-direction: column;
  gap: .5rem;
  padding: .85rem .95rem;
  display: flex;
}

.cm-insp-head {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: .5rem;
  display: flex;
}

.cm-insp-id {
  font-size: .88rem;
  font-weight: 600;
}

.cm-insp-meta {
  color: var(--subtle);
  font-size: .66rem;
}

.cm-insp-desc {
  font-family: var(--font-body);
  color: var(--lavender);
  font-size: .82rem;
  font-weight: 300;
  line-height: 1.5;
}

.cm-insp-deps {
  flex-wrap: wrap;
  gap: .3rem;
  display: flex;
}

.cm-dep-chip {
  --c-tone: var(--lavender);
  color: var(--lavender);
  border: 1px solid var(--c-tone);
  cursor: pointer;
  background: var(--c-tone);
  border-radius: 2px;
  padding: .12rem .4rem;
  font-size: .62rem;
}

@supports (color: color-mix(in lab, red, red)) {
  .cm-dep-chip {
    background: color-mix(in srgb, var(--c-tone) 10%, transparent);
  }
}

.cm-dep-chip {
  transition: background .2s;
}

.cm-dep-chip:hover {
  background: var(--c-tone);
}

@supports (color: color-mix(in lab, red, red)) {
  .cm-dep-chip:hover {
    background: color-mix(in srgb, var(--c-tone) 22%, transparent);
  }
}

.cm-dep-chip:hover {
  color: var(--pale-lavender);
}

.am-console {
  border: 1px solid var(--hairline-strong);
  background: #06030f;
  border-radius: 6px;
  animation: 1.4s cubic-bezier(.16, 1, .3, 1) .25s both idx-rise;
  overflow: hidden;
  box-shadow: 0 30px 70px #00000080;
}

.am-bar {
  border-bottom: 1px solid var(--hairline);
  font-family: var(--font-mono);
  background: #8b5cf60f;
  align-items: center;
  gap: .75rem;
  padding: .6rem .95rem;
  font-size: .72rem;
  display: flex;
}

.am-file {
  color: var(--subtle);
  letter-spacing: .04em;
}

.am-verified {
  color: var(--emerald);
  margin-left: auto;
  font-weight: 600;
}

.am-body {
  grid-template-columns: 1.2fr 1fr;
  display: grid;
}

.am-manifest {
  border-right: 1px solid var(--hairline);
  font-family: var(--font-mono);
  color: var(--lavender);
  white-space: pre;
  min-width: 0;
  margin: 0;
  padding: .9rem .5rem .9rem .9rem;
  font-size: .7rem;
  line-height: 1.7;
  overflow-x: auto;
}

.am-line {
  border-radius: 2px;
  margin-left: -.35rem;
  padding-left: .35rem;
  transition: background .3s, color .3s, box-shadow .3s;
  display: block;
}

.am-line.lit {
  color: var(--pale-lavender);
  box-shadow: inset 2px 0 0 var(--magenta);
  background: #ec489924;
}

.am-rfc {
  flex-direction: column;
  gap: .55rem;
  min-width: 0;
  padding: .9rem 1rem;
  display: flex;
}

.am-rfc-head {
  font-family: var(--font-mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--magenta);
  font-size: .62rem;
}

.am-sections {
  flex-direction: column;
  gap: .18rem;
  display: flex;
}

.am-section {
  cursor: pointer;
  text-align: left;
  background: none;
  border: 1px solid #0000;
  border-radius: 3px;
  align-items: center;
  gap: .55rem;
  padding: .34rem .55rem;
  transition: background .2s, border-color .2s;
  display: flex;
}

.am-section:hover, .am-section.on {
  border-color: var(--magenta);
  background: #ec489914;
}

.am-sec-n {
  font-family: var(--font-mono);
  color: var(--magenta);
  flex-shrink: 0;
  font-size: .68rem;
  font-weight: 600;
}

.am-sec-title {
  font-family: var(--font-mono);
  color: var(--pale-lavender);
  font-size: .74rem;
}

.am-why {
  border-top: 1px solid var(--hairline);
  font-family: var(--font-body);
  color: var(--lavender);
  margin-top: auto;
  padding-top: .6rem;
  font-size: .8rem;
  font-weight: 300;
  line-height: 1.5;
}

.am-regmap .cap-feature {
  white-space: nowrap;
}

.am-field {
  font-family: var(--font-mono);
  color: var(--cyan);
  font-size: .78rem;
}

@media (max-width: 720px) {
  .am-body {
    grid-template-columns: 1fr;
  }

  .am-manifest {
    border-right: none;
    border-bottom: 1px solid var(--hairline);
  }
}

.blog-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  margin-top: 1.5rem;
  display: grid;
}

.blog-hero-text {
  max-width: 34rem;
}

.blog-feature-card {
  border: 1px solid var(--hairline-strong);
  background: linear-gradient(135deg, #4a1d8e29, #ec48990d);
  border-radius: 6px;
  flex-direction: column;
  gap: .85rem;
  padding: 2rem 2.1rem;
  animation: 1.4s cubic-bezier(.16, 1, .3, 1) .25s both idx-rise;
  display: flex;
  box-shadow: 0 30px 70px #00000073;
}

.bfc-tag {
  font-family: var(--font-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--magenta);
  font-size: .68rem;
}

.bfc-title {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -.02em;
  color: var(--pale-lavender);
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  font-weight: 400;
  line-height: 1.1;
}

.bfc-title em {
  color: var(--magenta);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-style: italic;
}

.bfc-body {
  color: var(--lavender);
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.6;
}

.bfc-meta {
  font-family: var(--font-mono);
  color: var(--subtle);
  border-top: 1px solid var(--hairline);
  justify-content: space-between;
  gap: 1rem;
  padding-top: .6rem;
  font-size: .72rem;
  display: flex;
}

.bfc-mins {
  color: var(--magenta);
}

.pb-wrap {
  flex-direction: column;
  gap: 1.75rem;
  display: flex;
}

.pb-tabs {
  flex-wrap: wrap;
  gap: .5rem;
  display: flex;
}

.pb-tab {
  font-family: var(--font-mono);
  color: var(--lavender);
  border: 1px solid var(--hairline-strong);
  cursor: pointer;
  background: #8b5cf60d;
  border-radius: 100px;
  align-items: center;
  gap: .4rem;
  padding: .35rem .9rem;
  font-size: .76rem;
  transition: background .2s, color .2s, border-color .2s;
  display: inline-flex;
}

.pb-tab:hover {
  color: var(--pale-lavender);
}

.pb-tab.on {
  color: var(--pale-lavender);
  border-color: var(--magenta);
  background: #ec48991a;
}

.pb-tab-count {
  color: var(--subtle);
  font-size: .62rem;
}

.pb-tab.on .pb-tab-count {
  color: var(--magenta);
}

.pb-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  display: grid;
}

.pb-card {
  --pb-tone: var(--cyan);
  border: 1px solid var(--hairline);
  border-top: 2px solid var(--pb-tone);
  background: #1a0b2e80;
  border-radius: 4px;
  flex-direction: column;
  gap: .7rem;
  padding: 1.6rem 1.6rem 1.4rem;
  transition: transform .3s, border-color .3s, background .3s;
  display: flex;
}

.pb-card:hover {
  background: #1a0b2ed9;
  transform: translateY(-4px);
}

.pb-card-tag {
  font-family: var(--font-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pb-tone);
  font-size: .64rem;
}

.pb-card-title {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -.012em;
  color: var(--pale-lavender);
  font-size: 1.3rem;
  font-weight: 450;
  line-height: 1.15;
}

.pb-card-body {
  color: var(--lavender);
  flex: 1;
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.55;
}

.pb-card-meta {
  font-family: var(--font-mono);
  color: var(--subtle);
  border-top: 1px solid var(--hairline);
  justify-content: space-between;
  gap: .75rem;
  padding-top: .7rem;
  font-size: .68rem;
  display: flex;
}

.pb-card-mins {
  color: var(--lavender);
}

.blog-sub {
  border: 1px solid var(--hairline-strong);
  background: var(--cosmic-void);
  border-radius: 6px;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 2.5rem;
  padding: 2.5rem;
  display: grid;
}

.blog-sub-text h2 {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -.02em;
  color: var(--pale-lavender);
  margin-bottom: .6rem;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 360;
}

.blog-sub-text h2 em {
  color: var(--magenta);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-style: italic;
}

.blog-sub-text p {
  color: var(--lavender);
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.55;
}

.ve-wrap {
  border: 1px solid var(--hairline-strong);
  background: #06030f;
  border-radius: 6px;
  grid-template-columns: .85fr 1.15fr;
  animation: 1.4s cubic-bezier(.16, 1, .3, 1) .25s both idx-rise;
  display: grid;
  overflow: hidden;
  box-shadow: 0 30px 70px #00000080;
}

.ve-list {
  border-right: 1px solid var(--hairline);
  flex-direction: column;
  gap: .15rem;
  min-width: 0;
  padding: .5rem;
  display: flex;
}

.ve-item {
  text-align: left;
  cursor: pointer;
  background: none;
  border: 1px solid #0000;
  border-radius: 3px;
  grid-template-columns: 1.6rem 1fr auto;
  align-items: center;
  gap: .6rem;
  padding: .6rem;
  transition: background .2s, border-color .2s;
  display: grid;
}

.ve-item:hover {
  background: #8b5cf60f;
}

.ve-item.on {
  border-color: var(--hairline-strong);
  background: #ec48991a;
}

.ve-item-num {
  font-family: var(--font-mono);
  color: var(--subtle);
  font-size: .66rem;
}

.ve-item-title {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  color: var(--pale-lavender);
  font-size: .98rem;
  font-weight: 460;
  line-height: 1.1;
}

.ve-item-arrow {
  font-family: var(--font-mono);
  color: var(--subtle);
  opacity: 0;
  transition: opacity .2s;
}

.ve-item.on .ve-item-arrow {
  opacity: 1;
  color: var(--magenta);
}

.ve-detail {
  flex-direction: column;
  gap: .75rem;
  min-width: 0;
  padding: 1.5rem 1.6rem;
  display: flex;
}

.ve-detail-tag {
  font-family: var(--font-mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--magenta);
  font-size: .64rem;
}

.ve-detail-title {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -.015em;
  color: var(--pale-lavender);
  font-size: 1.6rem;
  font-weight: 460;
  line-height: 1.1;
}

.ve-detail-summary {
  color: var(--lavender);
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.55;
}

.ve-items {
  flex-direction: column;
  gap: .4rem;
  list-style: none;
  display: flex;
}

.ve-items li {
  color: var(--lavender);
  padding-left: 1.1rem;
  font-size: .88rem;
  font-weight: 300;
  line-height: 1.5;
  position: relative;
}

.ve-items li:before {
  content: "→";
  color: var(--magenta);
  font-family: var(--font-mono);
  font-size: .8rem;
  position: absolute;
  left: 0;
}

.ve-products {
  border-top: 1px solid var(--hairline);
  margin-top: auto;
  padding-top: .85rem;
}

.ve-products-label {
  font-family: var(--font-mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--subtle);
  font-size: .62rem;
}

.ve-product-chips {
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .5rem;
  display: flex;
}

.ve-chip {
  font-family: var(--font-mono);
  color: var(--magenta);
  border: 1px solid var(--hairline-strong);
  border-radius: 2px;
  padding: .2rem .5rem;
  font-size: .7rem;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}

.ve-chip:hover {
  border-color: var(--magenta);
  color: var(--pale-lavender);
  background: #ec48991a;
}

.ms-strip {
  border-top: 1px solid var(--hairline);
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 1.75rem 0 0;
  display: grid;
}

.ms-cell {
  flex-direction: column;
  gap: .4rem;
  display: flex;
}

.ms-num {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 40;
  color: var(--magenta);
  letter-spacing: -.025em;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight: 360;
  line-height: 1;
}

.ms-label {
  font-family: var(--font-mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--subtle);
  font-size: .68rem;
}

.cust-stories {
  flex-direction: column;
  gap: 1.5rem;
  display: flex;
}

.cust-story-card {
  --cs-accent: var(--cyan);
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--cs-accent);
  background: #1a0b2e80;
  border-radius: 5px;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  padding: 2.25rem 2.4rem;
  display: grid;
}

.csc-tag {
  font-family: var(--font-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cs-accent);
  grid-column: 1 / -1;
  font-size: .68rem;
}

.csc-headline {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -.02em;
  color: var(--pale-lavender);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 380;
  line-height: 1.1;
}

.csc-headline em {
  color: var(--magenta);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-style: italic;
}

.csc-lead {
  color: var(--lavender);
  font-size: .98rem;
  font-weight: 300;
  line-height: 1.6;
}

.csc-quote {
  border-left: 2px solid var(--magenta);
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 90;
  color: var(--pale-lavender);
  grid-column: 1 / 2;
  margin: 0;
  padding: 1rem 0 0 1.25rem;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.4;
}

.csc-quote cite {
  font-family: var(--font-mono);
  letter-spacing: .08em;
  color: var(--subtle);
  text-transform: uppercase;
  margin-top: .6rem;
  font-size: .7rem;
  font-style: normal;
  display: block;
}

.csc-metrics {
  flex-direction: column;
  grid-area: 2 / 2 / 4 / 3;
  align-self: start;
  gap: .5rem;
  display: flex;
}

.csc-metric {
  border-bottom: 1px solid var(--hairline);
  flex-direction: column;
  gap: .15rem;
  padding: .55rem 0;
  display: flex;
}

.csc-m-k {
  font-family: var(--font-mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--subtle);
  font-size: .64rem;
}

.csc-m-v {
  color: var(--pale-lavender);
  font-size: .85rem;
  line-height: 1.4;
}

.csc-meta {
  border-top: 1px solid var(--hairline);
  font-family: var(--font-mono);
  letter-spacing: .06em;
  color: var(--subtle);
  grid-column: 1 / -1;
  padding-top: .85rem;
  font-size: .68rem;
}

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

@media (max-width: 900px) {
  .pb-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ms-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 2rem;
  }

  .blog-sub {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cust-story-card {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .csc-quote, .csc-metrics {
    grid-area: auto / 1 / auto / -1;
  }
}

@media (max-width: 720px) {
  .ve-wrap {
    grid-template-columns: 1fr;
  }

  .ve-list {
    border-right: none;
    border-bottom: 1px solid var(--hairline);
  }
}

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

.ps-console {
  border: 1px solid var(--hairline-strong);
  background: #06030f;
  border-radius: 6px;
  animation: 1.4s cubic-bezier(.16, 1, .3, 1) .25s both idx-rise;
  overflow: hidden;
  box-shadow: 0 30px 70px #00000080;
}

.ps-bar {
  border-bottom: 1px solid var(--hairline);
  font-family: var(--font-mono);
  background: #8b5cf60f;
  align-items: center;
  gap: .75rem;
  padding: .6rem .95rem;
  font-size: .72rem;
  display: flex;
}

.ps-file {
  color: var(--subtle);
  letter-spacing: .04em;
}

.ps-copy {
  font-family: var(--font-mono);
  color: var(--pale-lavender);
  background: var(--magenta);
  border: 1px solid var(--magenta);
  cursor: pointer;
  border-radius: 2px;
  margin-left: auto;
  padding: .22rem .7rem;
  font-size: .7rem;
  font-weight: 600;
  transition: background .2s;
}

.ps-copy:hover {
  background: var(--magenta-deep);
}

.ps-sheet {
  padding: 1.4rem 1.5rem;
}

.ps-sheet-head {
  border-bottom: 1px solid var(--hairline);
  align-items: center;
  gap: .7rem;
  margin-bottom: .5rem;
  padding-bottom: .9rem;
  display: flex;
}

.ps-orb {
  background: radial-gradient(circle at 35% 35%, #ece2ff 0%, var(--amethyst) 35%, var(--royal-purple) 65%, var(--cosmic-deep) 100%);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  box-shadow: 0 0 12px #8b5cf68c;
}

.ps-sheet-title {
  font-family: var(--font-mono);
  letter-spacing: .18em;
  color: var(--pale-lavender);
  font-size: .74rem;
  font-weight: 600;
}

.ps-sheet-rev {
  font-family: var(--font-mono);
  color: var(--subtle);
  margin-left: auto;
  font-size: .66rem;
}

.ps-facts {
  flex-direction: column;
  display: flex;
}

.ps-fact {
  border-bottom: 1px solid var(--hairline);
  grid-template-columns: 5.5rem 1fr;
  gap: .85rem;
  padding: .5rem 0;
  display: grid;
}

.ps-fact dt {
  font-family: var(--font-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--magenta);
  padding-top: .1rem;
  font-size: .66rem;
}

.ps-fact dd {
  color: var(--pale-lavender);
  font-size: .84rem;
  font-weight: 300;
  line-height: 1.45;
}

.ps-sheet-foot {
  font-family: var(--font-mono);
  color: var(--subtle);
  justify-content: space-between;
  gap: 1rem;
  padding-top: .85rem;
  font-size: .68rem;
  display: flex;
}

.press-founder {
  background: var(--cosmic-void);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  flex-direction: column;
  gap: .85rem;
  padding: 2rem 2.1rem;
  display: flex;
}

.pf-head {
  align-items: center;
  gap: .85rem;
  display: flex;
}

.pf-avatar {
  width: 44px;
  height: 44px;
  font-family: var(--font-display);
  color: var(--pale-lavender);
  background: radial-gradient(circle at 35% 35%, var(--amethyst), var(--royal-purple));
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  display: flex;
  box-shadow: 0 0 14px #8b5cf666;
}

.pf-id {
  flex-direction: column;
  gap: .1rem;
  display: flex;
}

.pf-name {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  color: var(--pale-lavender);
  font-size: 1.35rem;
  font-weight: 460;
  line-height: 1.05;
}

.pf-role {
  font-family: var(--font-mono);
  letter-spacing: .08em;
  color: var(--magenta);
  font-size: .7rem;
}

.pf-bio {
  color: var(--lavender);
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.55;
}

.pf-topics {
  color: var(--subtle);
  font-size: .85rem;
  font-weight: 300;
  line-height: 1.5;
}

.pf-topics strong {
  color: var(--pale-lavender);
  font-weight: 500;
}

.press-assets {
  background: var(--hairline);
  border: 1px solid var(--hairline);
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  display: grid;
}

.press-asset {
  background: var(--cosmic-deep);
  padding: 1.5rem 1.6rem;
}

.press-asset h4 {
  font-family: var(--font-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: .85rem;
  font-size: .72rem;
}

.press-asset ul {
  flex-direction: column;
  gap: .4rem;
  list-style: none;
  display: flex;
}

.press-asset li {
  color: var(--lavender);
  padding-left: 1rem;
  font-size: .82rem;
  font-weight: 300;
  line-height: 1.4;
  position: relative;
}

.press-asset li:before {
  content: "↓";
  color: var(--magenta);
  font-family: var(--font-mono);
  font-size: .74rem;
  position: absolute;
  left: 0;
}

.press-assets-note {
  color: var(--subtle);
  margin-top: 1.5rem;
  font-size: .88rem;
  font-weight: 300;
}

.press-assets-note a {
  color: var(--magenta);
  border-bottom: 1px solid var(--magenta-deep);
}

.press-assets-note a:hover {
  color: var(--pale-lavender);
}

.press-faq {
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
  display: grid;
}

.press-faq dt {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  color: var(--pale-lavender);
  margin: 1.25rem 0 .5rem;
  font-size: 1.15rem;
  font-weight: 460;
}

.press-faq dd {
  color: var(--lavender);
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 1.25rem;
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.6;
}

.cl-wrap {
  flex-direction: column;
  gap: 2rem;
  display: flex;
}

.cl-filters {
  flex-wrap: wrap;
  gap: .5rem;
  display: flex;
}

.cl-filter {
  font-family: var(--font-mono);
  color: var(--lavender);
  border: 1px solid var(--hairline-strong);
  cursor: pointer;
  text-transform: capitalize;
  background: #8b5cf60d;
  border-radius: 100px;
  padding: .32rem .85rem;
  font-size: .74rem;
  transition: background .2s, color .2s, border-color .2s;
}

.cl-filter:hover {
  color: var(--pale-lavender);
}

.cl-filter.on {
  color: var(--pale-lavender);
  border-color: var(--magenta);
  background: #ec48991a;
}

.cl-timeline {
  flex-direction: column;
  display: flex;
}

.cl-item {
  grid-template-columns: 1.5rem 1fr;
  gap: 1.1rem;
  display: grid;
}

.cl-rail {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.cl-rail-dot {
  border-radius: 50%;
  flex-shrink: 0;
  width: 11px;
  height: 11px;
  margin-top: .35rem;
  box-shadow: 0 0 8px;
}

.cl-item:not(:last-child) .cl-rail:after {
  content: "";
  background: var(--hairline);
  flex: 1;
  width: 1px;
  margin-top: .4rem;
}

.cl-content {
  min-width: 0;
  padding-bottom: 2rem;
}

.cl-content-head {
  align-items: baseline;
  gap: .85rem;
  margin-bottom: .4rem;
  display: flex;
}

.cl-wrap .cl-date {
  font-family: var(--font-mono);
  color: var(--subtle);
  font-size: .72rem;
}

.cl-version {
  font-family: var(--font-mono);
  color: var(--magenta);
  font-size: .72rem;
  font-weight: 600;
}

.cl-title {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -.015em;
  color: var(--pale-lavender);
  margin-bottom: .45rem;
  font-size: 1.35rem;
  font-weight: 460;
  line-height: 1.15;
}

.cl-title code, .cl-body code {
  font-family: var(--font-mono);
  color: var(--cyan);
  background: #22d3ee14;
  border-radius: 2px;
  padding: .05rem .3rem;
  font-size: .85em;
}

.cl-body {
  color: var(--lavender);
  margin-bottom: .7rem;
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.6;
}

.cl-body strong {
  color: var(--pale-lavender);
  font-weight: 500;
}

.cl-body a {
  color: var(--magenta);
  border-bottom: 1px solid var(--magenta-deep);
}

.cl-body a:hover {
  color: var(--pale-lavender);
}

.cl-wrap .cl-tags {
  flex-wrap: wrap;
  gap: .4rem;
  display: flex;
}

.cl-wrap .cl-tag {
  font-family: var(--font-mono);
  letter-spacing: .06em;
  text-transform: lowercase;
  background: #0f082066;
  border: 1px solid;
  border-radius: 2px;
  padding: .12rem .45rem;
  font-size: .64rem;
  font-weight: 600;
}

.cl-empty {
  font-family: var(--font-mono);
  color: var(--subtle);
  padding: 1rem 0;
  font-size: .82rem;
}

@media (max-width: 900px) {
  .press-assets {
    grid-template-columns: repeat(2, 1fr);
  }

  .press-faq {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 560px) {
  .press-assets {
    grid-template-columns: 1fr;
  }

  .ps-fact {
    grid-template-columns: 4.5rem 1fr;
    gap: .6rem;
  }
}

.se-wrap {
  border: 1px solid var(--hairline-strong);
  background: #06030f;
  border-radius: 6px;
  padding-top: .5rem;
  animation: 1.4s cubic-bezier(.16, 1, .3, 1) .25s both idx-rise;
  overflow: hidden;
  box-shadow: 0 30px 70px #00000080;
}

.se-svg {
  width: 100%;
  max-width: 420px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.se-detail {
  border: 1px solid var(--hairline);
  background: #0f082099;
  border-radius: 4px;
  flex-direction: column;
  gap: .2rem;
  min-height: 4rem;
  margin: 0 .9rem .9rem;
  padding: .75rem .9rem;
  transition: border-color .3s;
  display: flex;
}

.se-detail.on {
  border-color: var(--hairline-strong);
}

.se-d-label {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 90;
  color: var(--pale-lavender);
  font-size: 1.05rem;
  font-style: italic;
}

.se-d-role {
  font-family: var(--font-body);
  color: var(--lavender);
  font-size: .84rem;
  font-weight: 300;
  line-height: 1.5;
}

.fdz-console {
  border: 1px solid var(--hairline-strong);
  background: #06030f;
  border-radius: 6px;
  animation: 1.4s cubic-bezier(.16, 1, .3, 1) .25s both idx-rise;
  overflow: hidden;
  box-shadow: 0 30px 70px #00000080;
}

.fdz-bar {
  border-bottom: 1px solid var(--hairline);
  font-family: var(--font-mono);
  background: #8b5cf60f;
  align-items: center;
  gap: .7rem;
  padding: .55rem .95rem;
  font-size: .72rem;
  display: flex;
}

.fdz-dot {
  background: var(--magenta);
  width: 8px;
  height: 8px;
  box-shadow: 0 0 8px var(--magenta);
  border-radius: 50%;
}

.fdz-bar-title {
  color: var(--pale-lavender);
  font-weight: 500;
}

.fdz-bar-meta {
  color: var(--subtle);
  margin-left: auto;
}

.fdz-pair {
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 2.25rem 1.5rem 1.75rem;
  display: flex;
}

.fdz-person {
  flex-direction: column;
  flex: 1;
  align-items: center;
  gap: .4rem;
  display: flex;
}

.fdz-avatar {
  width: 64px;
  height: 64px;
  font-family: var(--font-display);
  color: var(--pale-lavender);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  display: flex;
}

.fdz-avatar.carlos {
  background: radial-gradient(circle at 35% 35%, var(--cyan), var(--royal-purple));
  box-shadow: 0 0 18px #22d3ee59;
}

.fdz-avatar.carolina {
  background: radial-gradient(circle at 35% 35%, var(--magenta), var(--royal-purple));
  box-shadow: 0 0 18px #ec489959;
}

.fdz-name {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  color: var(--pale-lavender);
  font-size: 1.15rem;
  font-weight: 460;
}

.fdz-role {
  font-family: var(--font-mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--subtle);
  font-size: .66rem;
}

.fdz-link {
  flex-direction: column;
  flex-shrink: 0;
  align-items: center;
  gap: .3rem;
  display: flex;
}

.fdz-link-line {
  background: var(--hairline-strong);
  width: 1px;
  height: 18px;
}

.fdz-link-amp {
  font-family: var(--font-display);
  color: var(--magenta);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: 1.3rem;
  font-style: italic;
}

.fdz-stats {
  border-top: 1px solid var(--hairline);
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

.fdz-stat {
  border-right: 1px solid var(--hairline);
  flex-direction: column;
  gap: .25rem;
  padding: 1rem .9rem;
  display: flex;
}

.fdz-stat:last-child {
  border-right: none;
}

.fdz-stat-v {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 40;
  color: var(--pale-lavender);
  font-size: 1.4rem;
  font-weight: 360;
  line-height: 1;
}

.fdz-stat-k {
  font-family: var(--font-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--subtle);
  font-size: .6rem;
}

.fd2 {
  grid-template-columns: .7fr 1.3fr;
  align-items: start;
  gap: 3rem;
  display: grid;
}

.fd2-aside {
  flex-direction: column;
  gap: .7rem;
  display: flex;
  position: sticky;
  top: 6rem;
}

.fd2-avatar {
  width: 72px;
  height: 72px;
  font-family: var(--font-display);
  color: var(--pale-lavender);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin-bottom: .3rem;
  font-size: 2rem;
  display: flex;
}

.fd2-avatar.carlos {
  background: radial-gradient(circle at 35% 35%, var(--cyan), var(--royal-purple));
  box-shadow: 0 0 20px #22d3ee59;
}

.fd2-avatar.carolina {
  background: radial-gradient(circle at 35% 35%, var(--magenta), var(--royal-purple));
  box-shadow: 0 0 20px #ec489959;
}

.fd2-name {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -.02em;
  color: var(--pale-lavender);
  font-size: 1.85rem;
  font-weight: 400;
  line-height: 1.05;
}

.fd2-tagline {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 90;
  color: var(--magenta);
  font-size: 1rem;
  font-style: italic;
}

.fd2-email {
  font-family: var(--font-mono);
  color: var(--lavender);
  border-bottom: 1px solid var(--hairline-strong);
  width: fit-content;
  font-size: .78rem;
}

.fd2-email:hover {
  color: var(--magenta);
}

.fd2-body {
  flex-direction: column;
  gap: 1.5rem;
  display: flex;
}

.fd2-block h4 {
  font-family: var(--font-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: .6rem;
  font-size: .72rem;
}

.fd2-block p {
  color: var(--lavender);
  font-size: .98rem;
  font-weight: 300;
  line-height: 1.65;
}

.fd2-avail {
  flex-direction: column;
  gap: .45rem;
  list-style: none;
  display: flex;
}

.fd2-avail li {
  color: var(--lavender);
  padding-left: 1.2rem;
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.5;
  position: relative;
}

.fd2-avail li:before {
  content: "→";
  color: var(--magenta);
  font-family: var(--font-mono);
  position: absolute;
  left: 0;
}

@media (max-width: 900px) {
  .fd2 {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .fd2-aside {
    position: static;
  }
}

.lg-shell {
  grid-template-columns: 15rem minmax(0, 1fr);
  align-items: start;
  gap: clamp(2rem, 4vw, 4rem);
  max-width: 1060px;
  display: grid;
}

.lg-toc {
  flex-direction: column;
  gap: .5rem;
  max-height: calc(100vh - 8rem);
  display: flex;
  position: sticky;
  top: 6rem;
  overflow-y: auto;
}

.lg-toc-title {
  font-family: var(--font-mono);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--subtle);
  border-bottom: 1px solid var(--hairline);
  padding-bottom: .5rem;
  font-size: .66rem;
}

.lg-toc ul {
  flex-direction: column;
  gap: .1rem;
  list-style: none;
  display: flex;
}

.lg-toc-item {
  color: var(--lavender);
  border-left: 2px solid #0000;
  border-radius: 0 2px 2px 0;
  gap: .55rem;
  padding: .4rem .6rem;
  font-size: .82rem;
  line-height: 1.35;
  text-decoration: none;
  transition: color .2s, border-color .2s, background .2s;
  display: flex;
}

.lg-toc-item:hover {
  color: var(--pale-lavender);
  background: #8b5cf60d;
}

.lg-toc-item.on {
  color: var(--pale-lavender);
  border-left-color: var(--magenta);
  background: #ec489912;
}

.lg-toc-num {
  font-family: var(--font-mono);
  color: var(--subtle);
  flex-shrink: 0;
  font-size: .7rem;
}

.lg-toc-item.on .lg-toc-num {
  color: var(--magenta);
}

.lg-main {
  flex-direction: column;
  gap: 2.5rem;
  min-width: 0;
  display: flex;
}

.lg-main .legal-section {
  max-width: none;
  margin: 0;
  padding-bottom: 2.5rem;
  scroll-margin-top: 6rem;
}

.lg-main .legal-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.lg-updated {
  border: 1px solid var(--hairline-strong);
  font-family: var(--font-mono);
  color: var(--lavender);
  border-radius: 100px;
  align-items: center;
  gap: .6rem;
  margin-top: 1.25rem;
  padding: .4rem .85rem;
  font-size: .72rem;
  display: inline-flex;
}

.lg-updated .dot {
  background: var(--emerald);
  width: 6px;
  height: 6px;
  box-shadow: 0 0 8px var(--emerald);
  border-radius: 50%;
}

@media (max-width: 880px) {
  .lg-shell {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .lg-toc {
    border-bottom: 1px solid var(--hairline);
    flex-flow: wrap;
    gap: .3rem;
    max-height: none;
    padding-bottom: 1rem;
    position: static;
  }

  .lg-toc-title {
    border-bottom: none;
    width: 100%;
    padding-bottom: .25rem;
  }

  .lg-toc ul {
    flex-flow: wrap;
    gap: .3rem;
  }

  .lg-toc-item {
    border-left: none;
    border: 1px solid var(--hairline-strong);
    border-radius: 100px;
    padding: .25rem .6rem;
  }

  .lg-toc-item.on {
    border-color: var(--magenta);
  }

  .lg-toc-label {
    display: none;
  }
}

/*# sourceMappingURL=apps_web_app_globals_0xyo3ls.css.map*/