:root {
  --header-height: 82px;
  --font-body: "Segoe UI", "SF Pro Text", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --bg: #eef4f5;
  --bg-deep: #0f2025;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --surface-soft: rgba(234, 242, 244, 0.9);
  --text: #10262c;
  --muted: #4b6770;
  --line: rgba(16, 38, 44, 0.1);
  --accent: #0f766e;
  --accent-strong: #115e59;
  --accent-warm: #c97a1b;
  --accent-soft: rgba(15, 118, 110, 0.12);
  --shadow: 0 24px 80px rgba(16, 38, 44, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.14), transparent 32%),
    radial-gradient(circle at top right, rgba(201, 122, 27, 0.12), transparent 28%),
    linear-gradient(180deg, #f7fbfb 0%, var(--bg) 55%, #e9f1f2 100%);
  padding-top: var(--header-height);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 38, 44, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 38, 44, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 78%);
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(247, 251, 251, 0.8);
  border-bottom: 1px solid var(--line);
}

.site-header__inner,
.site-footer__inner,
.page-shell,
.breadcrumbs {
  width: min(calc(100% - 2.5rem), var(--content-width));
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  padding: 1rem 0;
}

.site-logo {
  min-width: 0;
}

.site-logo__link {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.site-logo__mark {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 14px;
  border: 1px solid rgba(86, 112, 255, 0.32);
  background:
    radial-gradient(circle at 30% 30%, rgba(124, 92, 255, 0.82), transparent 38%),
    radial-gradient(circle at 72% 72%, rgba(27, 179, 255, 0.86), transparent 42%),
    rgba(4, 12, 34, 0.94);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 28px rgba(34, 132, 255, 0.22);
}

.site-logo__mark::before,
.site-logo__mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.site-logo__mark::after {
  inset: 13px;
  border-radius: 9px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.18) 50%, transparent 52%),
    linear-gradient(transparent 48%, rgba(255, 255, 255, 0.18) 50%, transparent 52%);
}

.site-logo__copy {
  display: grid;
  gap: 0.08rem;
  min-width: 0;
}

.site-logo__wordmark {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.08rem;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
}

.site-logo__accent {
  color: #2894ff;
}

.site-logo__tagline {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
}

.site-nav {
  flex: 1 1 auto;
  min-width: 0;
}

.site-nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 1.4rem;
  margin: 0;
  padding: 0;
}

.site-nav__list > li {
  list-style: none;
}

.site-nav__link {
  color: var(--muted);
  font-size: 0.98rem;
  transition: color 180ms ease;
}

.site-nav__link.is-active {
  color: var(--text);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  min-height: 50px;
  padding: 0 1.25rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #227dff 0%, #6547ff 100%);
  color: #f7fbff;
  font-weight: 600;
  box-shadow: 0 14px 40px rgba(34, 125, 255, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.header-cta:hover {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 16px 44px rgba(34, 125, 255, 0.3);
  filter: saturate(1.08);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
}

.nav-toggle__icon {
  position: relative;
  width: 18px;
  height: 12px;
}

.nav-toggle__icon span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle__icon span:nth-child(1) {
  top: 0;
}

.nav-toggle__icon span:nth-child(2) {
  top: 5px;
}

.nav-toggle__icon span:nth-child(3) {
  top: 10px;
}

body.nav-open .nav-toggle__icon span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

body.nav-open .nav-toggle__icon span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle__icon span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.page-shell {
  padding: 2.5rem 0 4rem;
}

.breadcrumbs {
  margin-top: 0.6rem;
}

.breadcrumbs__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumbs__item:not(:last-child)::after {
  content: "/";
  color: rgba(75, 103, 112, 0.55);
}

.hero,
.surface-panel,
.collection-card,
.content-card,
.detail-sidebar,
.callout,
.fact-card,
.cluster {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 4rem);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -28% 30%;
  height: 240px;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.16), transparent 68%);
  pointer-events: none;
}

.hero__eyebrow,
.section__eyebrow,
.detail-meta__label,
.chip,
.fact-card__label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  color: var(--accent-strong);
}

.hero h1,
.section h2,
.detail-header h1,
.card-title,
.footer-cta__title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(2.4rem, 7vw, 5rem);
}

.hero__intro,
.section__lede,
.detail-header__summary,
.card-body,
.footer-copy,
.rich-text p,
.rich-text li,
.callout p {
  color: var(--muted);
}

.hero__grid,
.section-grid,
.card-grid,
.stats-grid,
.facts-grid,
.footer-grid {
  display: grid;
  gap: 1.2rem;
}

.hero__grid {
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: 2rem;
}

.hero__points,
.plain-list,
.footer-links,
.detail-tags {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero__points li,
.plain-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.65rem;
}

.hero__points li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
}

.cta-row,
.detail-meta,
.filter-bar,
.footer-cta,
.meta-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
}

.cta-link,
.source-link,
.footer-links a {
  color: var(--accent-strong);
}

.cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.cta-link:hover {
  transform: translateY(-1px);
}

.cta-link.is-primary {
  background: var(--accent);
  color: #f6fbfb;
}

.cta-link.is-secondary {
  background: rgba(15, 118, 110, 0.08);
  color: var(--accent-strong);
}

.cta-link.is-ghost {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(8, 15, 44, 0.3);
  color: #eef4ff;
}

.section {
  margin-top: 2rem;
}

.section__header {
  margin-bottom: 1rem;
}

.section__title {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
}

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

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

.card-grid.is-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.content-card,
.collection-card,
.fact-card {
  border-radius: var(--radius-lg);
  padding: 1.35rem;
}

.content-card[data-library-card][hidden] {
  display: none;
}

.content-card__top,
.collection-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.card-title {
  font-size: 1.28rem;
}

.content-card__meta,
.collection-card__meta,
.detail-meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.chip {
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  background: var(--accent-soft);
}

.filter-bar {
  margin-top: 1.2rem;
}

.filter-btn {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  color: var(--muted);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  cursor: pointer;
}

.filter-btn.is-active,
.filter-btn:hover {
  color: var(--accent-strong);
  border-color: rgba(15, 118, 110, 0.22);
  background: rgba(15, 118, 110, 0.1);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(280px, 0.82fr);
  gap: 1.4rem;
  margin-top: 1.6rem;
}

.detail-header {
  margin-bottom: 1rem;
}

.detail-header h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.surface-panel {
  border-radius: var(--radius-xl);
  padding: clamp(1.4rem, 3vw, 2rem);
}

.detail-sidebar {
  border-radius: var(--radius-xl);
  padding: 1.2rem;
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 1rem);
}

.detail-sidebar h2 {
  font-size: 1.1rem;
  margin: 0 0 0.9rem;
}

.detail-sidebar .content-card,
.detail-sidebar .collection-card {
  box-shadow: none;
  background: var(--surface-strong);
}

.callout {
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.35rem;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.1), rgba(201, 122, 27, 0.08));
}

.rich-text h2,
.rich-text h3 {
  font-family: var(--font-heading);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-top: 1.6rem;
  margin-bottom: 0.7rem;
}

.rich-text h2 {
  font-size: 1.7rem;
}

.rich-text h3 {
  font-size: 1.25rem;
}

.rich-text p,
.rich-text ul,
.rich-text blockquote,
.rich-text pre {
  margin: 0 0 1rem;
}

.rich-text ul {
  padding-left: 1.1rem;
}

.rich-text li {
  margin-bottom: 0.45rem;
}

.rich-text code {
  font-family: Consolas, "Courier New", monospace;
  background: rgba(16, 38, 44, 0.06);
  padding: 0.12rem 0.34rem;
  border-radius: 0.35rem;
  color: var(--text);
}

.rich-text pre {
  overflow-x: auto;
  background: #10262c;
  color: #f2f9fa;
  padding: 1rem;
  border-radius: var(--radius-md);
}

.rich-text pre code {
  background: transparent;
  padding: 0;
  color: inherit;
}

.rich-text blockquote {
  margin-left: 0;
  padding-left: 1rem;
  border-left: 3px solid rgba(15, 118, 110, 0.3);
}

.cluster {
  border-radius: var(--radius-xl);
  padding: 1rem 1.1rem;
  margin-bottom: 1rem;
}

.cluster summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
}

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

.cluster__meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.cluster__body {
  margin-top: 1rem;
}

.fact-card__value {
  margin-top: 0.45rem;
  color: var(--text);
  font-weight: 600;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.detail-tags li {
  border-radius: 999px;
  background: rgba(16, 38, 44, 0.06);
  color: var(--muted);
  padding: 0.35rem 0.7rem;
  font-size: 0.88rem;
}

.footer-cta {
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.35rem 0 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer {
  margin-top: 4rem;
  color: rgba(233, 244, 246, 0.88);
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.35), transparent 32%),
    linear-gradient(180deg, #10262c 0%, #08161a 100%);
}

.site-footer__inner {
  padding: 2.2rem 0 2rem;
}

.footer-grid {
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  padding-top: 1.5rem;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  font-weight: 300;
  letter-spacing: -0.02em;
}

.footer-links li {
  margin-bottom: 0.45rem;
}

.footer-links a {
  color: rgba(233, 244, 246, 0.78);
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.6rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(233, 244, 246, 0.62);
  font-size: 0.92rem;
}

.page-home {
  color: #edf4ff;
  background:
    radial-gradient(circle at 15% 18%, rgba(80, 61, 255, 0.22), transparent 24%),
    radial-gradient(circle at 88% 16%, rgba(20, 181, 255, 0.18), transparent 20%),
    radial-gradient(circle at 50% 76%, rgba(28, 88, 255, 0.14), transparent 26%),
    linear-gradient(180deg, #030714 0%, #060c20 48%, #081022 100%);
}

.page-home::before {
  background-image:
    linear-gradient(rgba(91, 123, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 123, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.3));
}

.page-home .site-header {
  background: rgba(3, 8, 28, 0.72);
  border-bottom-color: rgba(102, 132, 255, 0.16);
}

.page-home .site-header__inner {
  gap: 1.5rem;
}

.page-home .site-nav {
  display: flex;
  align-items: center;
  margin-left: 0;
}

.page-home .site-nav__link {
  color: rgba(235, 242, 255, 0.72);
}

.page-home .site-nav__link:hover,
.page-home .site-nav__link.is-active {
  color: #ffffff;
}

.page-home .page-shell {
  width: min(calc(100% - 3rem), 1480px);
  padding-top: 1.5rem;
  padding-bottom: 4rem;
}

.home-hero {
  position: relative;
  padding-top: 1rem;
}

.home-hero__grid,
.feature-rail,
.home-panel-grid,
.home-metric-grid,
.layer-grid,
.service-grid,
.constellation-grid,
.trust-band__logos {
  display: grid;
  gap: 1.25rem;
}

.home-hero__grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: 2rem;
}

.home-hero__content {
  position: relative;
  z-index: 2;
}

.home-kicker,
.home-proof__label,
.home-panel__eyebrow,
.trust-band__label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #7e76ff;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.92rem;
}

.home-display {
  display: grid;
  gap: 0.25rem;
  margin: 1.35rem 0 0;
  font-family: var(--font-heading);
  font-size: clamp(3.4rem, 6.8vw, 7rem);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.home-display__line {
  display: block;
  color: #fbfdff;
}

.home-display__line.is-accent {
  background: linear-gradient(90deg, #ffffff 0%, #2ba0ff 56%, #7e57ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-lede {
  max-width: 38rem;
  margin: 1.5rem 0 0;
  color: rgba(232, 239, 255, 0.82);
  font-size: clamp(1.12rem, 1.8vw, 1.52rem);
  line-height: 1.78;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.page-home .cta-link {
  min-height: 62px;
  padding: 0 1.6rem;
  border-radius: 18px;
  font-size: 1.02rem;
}

.page-home .cta-link.is-primary {
  background: linear-gradient(135deg, #2286ff 0%, #6f49ff 100%);
  box-shadow: 0 16px 44px rgba(36, 129, 255, 0.28);
}

.page-home .cta-link.is-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #eef4ff;
}

.page-home .cta-link.is-ghost:hover,
.page-home .cta-link.is-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.home-pulse {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.85rem;
}

.home-pulse__item,
.home-proof,
.home-panel,
.metric-card,
.layer-card,
.service-card,
.constellation-card,
.home-final__panel,
.feature-rail,
.trust-band {
  border: 1px solid rgba(93, 123, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(10, 18, 44, 0.92) 0%, rgba(8, 14, 34, 0.88) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 28px 80px rgba(0, 0, 0, 0.28);
}

.home-pulse__item {
  min-width: 150px;
  padding: 1rem 1.1rem;
  border-radius: 18px;
}

.home-pulse__item strong {
  display: block;
  color: #ffffff;
  font-size: 1.55rem;
  font-weight: 600;
}

.home-pulse__item span {
  color: rgba(226, 235, 255, 0.68);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.home-proof {
  max-width: 34rem;
  margin-top: 1.15rem;
  padding: 1.15rem 1.25rem 1rem;
  border-radius: 24px;
}

.page-home .hero__points li,
.page-home .plain-list li {
  color: rgba(235, 242, 255, 0.78);
}

.page-home .hero__points li::before,
.page-home .plain-list li::before {
  background: linear-gradient(180deg, #35d5ff 0%, #7d57ff 100%);
}

.network-stage {
  position: relative;
  min-height: 700px;
  isolation: isolate;
}

.network-stage::before {
  content: "";
  position: absolute;
  inset: 12% 5% 0 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40, 132, 255, 0.18), transparent 64%);
  filter: blur(24px);
}

.network-stage__orbital {
  position: absolute;
  border: 1px solid rgba(56, 140, 255, 0.32);
  border-radius: 50%;
  opacity: 0.78;
}

.network-stage__orbital--one {
  inset: 12% 5% 16% 10%;
}

.network-stage__orbital--two {
  inset: 18% 14% 22% 4%;
}

.network-stage__orbital--three {
  inset: 8% 0 10% 18%;
}

.network-stage__planet {
  position: absolute;
  inset: 8% 0 2% 12%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(125, 210, 255, 0.94), transparent 12%),
    radial-gradient(circle at 62% 42%, rgba(86, 147, 255, 0.94), transparent 12%),
    radial-gradient(circle at 48% 54%, rgba(48, 120, 255, 0.96), transparent 14%),
    radial-gradient(circle at 54% 50%, rgba(11, 42, 122, 0.84), rgba(6, 16, 42, 0.98) 58%, rgba(3, 9, 28, 0.98) 76%);
  box-shadow:
    inset 0 0 110px rgba(56, 179, 255, 0.22),
    0 0 80px rgba(37, 111, 255, 0.2);
  overflow: visible;
}

.network-stage__planet::before,
.network-stage__planet::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.network-stage__planet::before {
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.3), transparent 16%),
    radial-gradient(circle at 70% 68%, rgba(61, 188, 255, 0.12), transparent 22%);
}

.network-stage__planet::after {
  background:
    repeating-linear-gradient(0deg, rgba(88, 177, 255, 0.16) 0 2px, transparent 2px 46px),
    repeating-linear-gradient(90deg, rgba(88, 177, 255, 0.12) 0 2px, transparent 2px 46px);
  mix-blend-mode: screen;
  opacity: 0.34;
}

.network-stage__grid {
  position: absolute;
  inset: 10% 12%;
  border: 1px solid rgba(90, 170, 255, 0.28);
  border-radius: 50%;
}

.network-stage__grid--a {
  transform: rotate(26deg);
}

.network-stage__grid--b {
  inset: 18% 4%;
  transform: rotate(-22deg);
}

.network-stage__core {
  position: absolute;
  top: 50%;
  left: 51%;
  transform: translate(-50%, -50%);
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  width: 180px;
  padding: 1.5rem 1rem;
  border-radius: 28px;
  border: 1px solid rgba(47, 145, 255, 0.52);
  background: linear-gradient(180deg, rgba(8, 18, 54, 0.96) 0%, rgba(5, 13, 34, 0.96) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 0 44px rgba(46, 133, 255, 0.24);
}

.network-stage__core-mark {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(59, 171, 255, 0.44);
}

.network-stage__core-mark::before,
.network-stage__core-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: linear-gradient(180deg, #31d4ff 0%, #5796ff 100%);
  transform: translate(-50%, -50%);
}

.network-stage__core-mark::before {
  width: 22px;
  height: 3px;
  box-shadow:
    0 -11px 0 0 rgba(49, 212, 255, 0.88),
    0 11px 0 0 rgba(49, 212, 255, 0.88);
}

.network-stage__core-mark::after {
  width: 3px;
  height: 22px;
  box-shadow:
    -11px 0 0 0 rgba(87, 150, 255, 0.88),
    11px 0 0 0 rgba(87, 150, 255, 0.88);
}

.network-stage__core-label {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.72rem;
  font-weight: 300;
  letter-spacing: -0.03em;
  text-align: center;
}

.orbit-card {
  position: absolute;
  display: grid;
  justify-items: center;
  gap: 0.6rem;
  width: 132px;
  padding: 1rem 0.85rem;
  border-radius: 24px;
  border: 1px solid rgba(72, 154, 255, 0.42);
  background: rgba(6, 15, 42, 0.92);
  color: #ffffff;
  text-align: center;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 32px rgba(47, 132, 255, 0.16);
}

.orbit-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 46px;
  padding: 0 0.5rem;
  border-radius: 14px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.04);
}

.orbit-card__label {
  font-size: 0.88rem;
  line-height: 1.35;
  text-transform: uppercase;
}

.orbit-card--violet {
  border-color: rgba(140, 96, 255, 0.5);
  box-shadow: 0 0 32px rgba(125, 87, 255, 0.2);
}

.orbit-card--violet .orbit-card__icon {
  color: #c9bbff;
  box-shadow: inset 0 0 0 1px rgba(147, 114, 255, 0.28);
}

.orbit-card--blue {
  border-color: rgba(61, 154, 255, 0.52);
}

.orbit-card--blue .orbit-card__icon {
  color: #a7d4ff;
  box-shadow: inset 0 0 0 1px rgba(63, 161, 255, 0.28);
}

.orbit-card--teal {
  border-color: rgba(56, 224, 214, 0.5);
  box-shadow: 0 0 32px rgba(42, 198, 199, 0.16);
}

.orbit-card--teal .orbit-card__icon {
  color: #89fff4;
  box-shadow: inset 0 0 0 1px rgba(56, 224, 214, 0.24);
}

.orbit-card--cyan {
  border-color: rgba(75, 208, 255, 0.46);
  box-shadow: 0 0 32px rgba(37, 154, 255, 0.16);
}

.orbit-card--cyan .orbit-card__icon {
  color: #a9eaff;
  box-shadow: inset 0 0 0 1px rgba(75, 208, 255, 0.24);
}

.orbit-card--north-west {
  top: 9%;
  left: 24%;
}

.orbit-card--north-east {
  top: 16%;
  right: 8%;
}

.orbit-card--west {
  top: 43%;
  left: 2%;
}

.orbit-card--east {
  top: 48%;
  right: -1%;
}

.orbit-card--south-west {
  bottom: 16%;
  left: 14%;
}

.orbit-card--south-east {
  bottom: 10%;
  right: 16%;
}

.network-stage__node {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7ce4ff;
  box-shadow: 0 0 18px rgba(70, 205, 255, 0.84);
}

.network-stage__node--one {
  top: 18%;
  left: 38%;
}

.network-stage__node--two {
  top: 24%;
  right: 30%;
}

.network-stage__node--three {
  top: 38%;
  left: 26%;
}

.network-stage__node--four {
  top: 41%;
  right: 18%;
}

.network-stage__node--five {
  bottom: 28%;
  left: 34%;
}

.network-stage__node--six {
  bottom: 22%;
  right: 24%;
}

.network-stage__node--seven {
  bottom: 13%;
  left: 48%;
}

.network-stage__node--eight {
  top: 52%;
  left: 58%;
}

.home-feature-rail {
  margin-top: 1rem;
}

.feature-rail {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 1.15rem;
  border-radius: 30px;
}

.signal-card {
  padding: 1rem 1.05rem 1.05rem;
}

.signal-card:not(:last-child) {
  border-right: 1px solid rgba(96, 120, 255, 0.12);
}

.signal-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.04);
  color: #d7dcff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.signal-card--violet .signal-card__icon {
  color: #d8c6ff;
  box-shadow: inset 0 0 0 1px rgba(138, 98, 255, 0.24);
}

.signal-card--blue .signal-card__icon {
  color: #bbdbff;
  box-shadow: inset 0 0 0 1px rgba(54, 150, 255, 0.22);
}

.signal-card--teal .signal-card__icon {
  color: #aefdf3;
  box-shadow: inset 0 0 0 1px rgba(38, 225, 215, 0.2);
}

.signal-card__title,
.home-panel__title,
.home-list-card__title,
.service-card__title,
.constellation-card__title {
  margin: 1rem 0 0;
  font-family: var(--font-heading);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #ffffff;
}

.signal-card__title {
  font-size: 1.44rem;
}

.signal-card__body,
.home-panel__body,
.metric-card__body,
.home-list-card__body,
.service-card__body,
.constellation-card__body {
  color: rgba(229, 236, 255, 0.72);
}

.trust-band {
  margin-top: 1.3rem;
  padding: 1.5rem 1.6rem 1.75rem;
  border-radius: 30px;
  text-align: center;
}

.trust-band__label {
  justify-content: center;
  color: rgba(232, 239, 255, 0.78);
}

.trust-band__logos {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  gap: 1rem;
  margin-top: 1.4rem;
}

.trust-band__logos span {
  color: rgba(244, 247, 255, 0.9);
  font-size: clamp(1.05rem, 1.6vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.home-section,
.home-final {
  margin-top: 2rem;
}

.home-section__header {
  margin-bottom: 1rem;
}

.page-home .section__title,
.page-home .section h2 {
  color: #ffffff;
}

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

.home-panel,
.home-final__panel {
  padding: 1.45rem;
  border-radius: 28px;
}

.home-panel__title {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
}

.home-metric-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.25rem;
}

.metric-card {
  padding: 1.4rem;
  border-radius: 24px;
}

.metric-card__value {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 300;
  letter-spacing: -0.05em;
}

.metric-card__label,
.home-list-card__meta {
  margin-top: 0.2rem;
  color: #77bcff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}

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

.layer-card {
  padding: 1.25rem;
  border-radius: 24px;
}

.layer-card__index {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.58rem;
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.layer-card__body {
  color: rgba(229, 236, 255, 0.72);
}

.home-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.home-card-grid--stack {
  grid-template-columns: 1fr;
}

.home-list-card,
.service-card,
.constellation-card {
  padding: 1.15rem 1.2rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.home-list-card__title,
.service-card__title,
.constellation-card__title {
  font-size: 1.34rem;
}

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

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

.home-final__panel {
  padding: 1.8rem;
  text-align: center;
}

.home-final .home-actions {
  justify-content: center;
}

.page-home .site-footer {
  margin-top: 2rem;
  background:
    radial-gradient(circle at top left, rgba(70, 89, 255, 0.28), transparent 32%),
    linear-gradient(180deg, #081121 0%, #050b16 100%);
}

@media (max-width: 980px) {
  .hero__grid,
  .home-hero__grid,
  .detail-layout,
  .footer-grid,
  .section-grid.is-two,
  .stats-grid,
  .card-grid.is-three,
  .card-grid.is-four,
  .facts-grid,
  .feature-rail,
  .home-panel-grid--two,
  .home-metric-grid,
  .layer-grid,
  .service-grid,
  .constellation-grid,
  .trust-band__logos,
  .home-card-grid {
    grid-template-columns: 1fr;
  }

  .detail-sidebar {
    position: static;
  }

  .network-stage {
    min-height: 620px;
  }

  .network-stage__planet {
    inset: 10% 0 2% 5%;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    padding: 1rem 1.25rem 1.5rem;
    background: rgba(247, 251, 251, 0.95);
    border-bottom: 1px solid var(--line);
    transform: translateY(-0.75rem);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease, visibility 180ms ease;
  }

  .page-home .site-nav {
    background: rgba(4, 10, 28, 0.96);
    border-bottom-color: rgba(96, 120, 255, 0.16);
  }

  body.nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav__list {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.9rem;
  }

  .site-logo__wordmark {
    font-size: 1.72rem;
  }

  .site-logo__tagline {
    white-space: normal;
  }
}

@media (max-width: 720px) {
  .site-header__inner,
  .site-footer__inner,
  .page-shell,
  .breadcrumbs {
    width: min(calc(100% - 1.4rem), var(--content-width));
  }

  .hero,
  .surface-panel,
  .content-card,
  .collection-card,
  .fact-card,
  .cluster,
  .detail-sidebar,
  .home-proof,
  .home-panel,
  .metric-card,
  .layer-card,
  .feature-rail,
  .trust-band,
  .home-final__panel {
    border-radius: 22px;
  }

  .hero h1 {
    max-width: none;
  }

  .site-logo__link {
    gap: 0.7rem;
  }

  .site-logo__mark {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .site-logo__wordmark {
    font-size: 1.4rem;
  }

  .site-logo__tagline {
    font-size: 0.72rem;
  }

  .page-home .page-shell {
    width: min(calc(100% - 1.4rem), 1480px);
    padding-top: 1rem;
  }

  .home-display {
    font-size: clamp(2.7rem, 16vw, 4.4rem);
  }

  .home-lede {
    font-size: 1.04rem;
  }

  .home-pulse__item {
    min-width: 0;
    flex: 1 1 0;
  }

  .network-stage {
    min-height: 620px;
  }

  .network-stage__planet {
    inset: 18% 2% 6% 2%;
  }

  .network-stage__core {
    width: 144px;
    padding: 1.1rem 0.8rem;
  }

  .network-stage__core-label {
    font-size: 1.3rem;
  }

  .orbit-card {
    width: 100px;
    padding: 0.74rem 0.62rem;
    border-radius: 18px;
  }

  .orbit-card__icon {
    min-width: 38px;
    min-height: 38px;
    font-size: 0.74rem;
  }

  .orbit-card__label {
    font-size: 0.66rem;
  }

  .orbit-card--north-west {
    top: 12%;
    left: 7%;
  }

  .orbit-card--north-east {
    top: 14%;
    right: 7%;
  }

  .orbit-card--west {
    top: 48%;
    left: 1%;
  }

  .orbit-card--east {
    top: 48%;
    right: 1%;
  }

  .orbit-card--south-west {
    bottom: 13%;
    left: 6%;
  }

  .orbit-card--south-east {
    bottom: 12%;
    right: 6%;
  }

  .trust-band__logos span {
    font-size: 1.18rem;
  }
}
