:root {
  --bg: #05070a;
  --bg-alt: #0b1014;
  --panel: rgba(11, 15, 20, 0.84);
  --panel-strong: rgba(17, 22, 29, 0.96);
  --text: #f4eee5;
  --muted: rgba(226, 217, 206, 0.72);
  --faint: rgba(226, 217, 206, 0.46);
  --line: rgba(226, 217, 206, 0.12);
  --line-strong: rgba(226, 217, 206, 0.24);
  --accent: #c79a66;
  --accent-strong: #ead1ac;
  --accent-soft: rgba(199, 154, 102, 0.18);
  --accent-ink: #120c08;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
  --scroll-progress: 0%;
}

html[data-theme="light"] {
  --bg: #f7f3ea;
  --bg-alt: #fffaf3;
  --panel: rgba(255, 252, 246, 0.92);
  --panel-strong: rgba(255, 255, 255, 0.98);
  --text: #161311;
  --muted: rgba(70, 61, 53, 0.74);
  --faint: rgba(70, 61, 53, 0.48);
  --line: rgba(22, 19, 17, 0.12);
  --line-strong: rgba(22, 19, 17, 0.2);
  --accent: #8b5c34;
  --accent-strong: #6d4426;
  --accent-soft: rgba(139, 92, 52, 0.14);
  --accent-ink: #fcf7f0;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: clamp(180px, 14vw, 250px);
  background: var(--bg);
  color-scheme: dark;
}

html[data-theme="light"] {
  color-scheme: light;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background:
    radial-gradient(circle at 10% 14%, rgba(199, 154, 102, 0.16), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(118, 139, 136, 0.08), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(199, 154, 102, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 24%, transparent 76%, rgba(255, 255, 255, 0.012));
}

html[data-theme="light"] body::before {
  background:
    radial-gradient(circle at 10% 14%, rgba(139, 92, 52, 0.12), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(112, 132, 124, 0.07), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(139, 92, 52, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), transparent 26%, transparent 76%, rgba(255, 255, 255, 0.28));
}

body::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 74px 74px;
  opacity: 0.16;
}

html[data-theme="light"] body::after {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  opacity: 0.2;
}

.page-shell {
  position: relative;
  z-index: 1;
}

.page-shell::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: var(--scroll-progress, 0%);
  height: 2px;
  z-index: 30;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--accent) 20%, var(--accent-strong) 50%, transparent);
  box-shadow: 0 0 18px rgba(199, 154, 102, 0.35);
}

main,
section,
header,
footer {
  display: block;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

::selection {
  background: var(--accent);
  color: var(--accent-ink);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 50;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.18s ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
  outline-color: var(--text);
}

.section-inner {
  width: min(1220px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr) auto;
  gap: 20px;
  align-items: center;
  margin-top: 12px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(11, 15, 20, 0.88), rgba(11, 15, 20, 0.58));
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.16);
}

html[data-theme="light"] .site-header {
  background: linear-gradient(180deg, rgba(247, 243, 234, 0.95), rgba(247, 243, 234, 0.76));
  box-shadow: 0 14px 38px rgba(40, 30, 15, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  width: 54px;
  height: 54px;
  padding: 4px;
  flex: none;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--panel);
  object-fit: contain;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  line-height: 1.04;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.brand-copy span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  min-width: 0;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.site-nav a:hover::after,
.site-nav a[data-active]::after {
  transform: scaleX(1);
}

.site-nav a[data-active] {
  color: var(--text);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.theme-toggle,
.header-cta,
.btn {
  min-height: 46px;
  border-radius: 999px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease;
  box-shadow: none;
}

.theme-toggle:hover,
.header-cta:hover,
.btn:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
}

.theme-toggle:active,
.header-cta:active,
.btn:active {
  transform: translateY(0);
}

.theme-toggle {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: rgba(255, 255, 255, 0.02);
}

.theme-toggle__icon {
  position: relative;
  width: 32px;
  height: 18px;
  flex: none;
  border-radius: 999px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
}

.theme-toggle__icon::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.22);
  transition: transform 0.24s ease, background-color 0.24s ease;
  transform: translateX(14px);
}

html[data-theme="light"] .theme-toggle__icon {
  background: linear-gradient(180deg, rgba(139, 92, 52, 0.15), rgba(139, 92, 52, 0.05));
}

html[data-theme="light"] .theme-toggle__icon::before {
  transform: translateX(0);
  background: var(--bg);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12), 0 4px 10px rgba(0, 0, 0, 0.12);
}

.header-cta {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-color: rgba(199, 154, 102, 0.45);
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 12px 30px rgba(199, 154, 102, 0.16);
}

html[data-theme="light"] .header-cta {
  border-color: rgba(139, 92, 52, 0.34);
}

.header-cta:hover {
  background: var(--accent-strong);
  color: var(--bg);
}

.hero {
  padding: clamp(28px, 4vw, 48px) 0 clamp(30px, 5vw, 56px);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100svh - 156px);
}

.hero-copy {
  position: relative;
  padding-left: 20px;
  border-left: 1px solid var(--line);
  min-width: 0;
}

.eyebrow,
.section-kicker {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.hero h1 {
  margin-top: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 9.2vw, 7.8rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
  max-width: 10ch;
}

.lede {
  margin-top: 18px;
  max-width: 40ch;
  font-size: clamp(1rem, 1.45vw, 1.26rem);
  color: var(--muted);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  font-size: 0.88rem;
  font-weight: 600;
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: transparent;
  box-shadow: 0 16px 34px rgba(199, 154, 102, 0.16);
}

.btn-primary:hover {
  background: var(--accent-strong);
  color: var(--bg);
}

.btn-ghost {
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.03);
}

html[data-theme="light"] .btn-ghost:hover {
  background: rgba(0, 0, 0, 0.03);
}

.hero-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.hero-rail__item {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}

.hero-rail__item + .hero-rail__item {
  border-left: 1px solid var(--line);
  padding-left: 14px;
}

.hero-rail__item span {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.hero-rail__item strong {
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero-sigil {
  position: relative;
  width: min(100%, 620px);
  justify-self: end;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 50%, var(--accent-soft) 0, rgba(0, 0, 0, 0) 52%),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.08), transparent 28%),
    radial-gradient(circle at 82% 78%, rgba(255, 255, 255, 0.05), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
}

html[data-theme="light"] .hero-sigil {
  background:
    radial-gradient(circle at 50% 50%, rgba(139, 92, 52, 0.12) 0, rgba(0, 0, 0, 0) 54%),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.56), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.28));
}

.hero-sigil__graphic {
  position: absolute;
  inset: 17%;
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
  animation: graphic-rotate 72s linear infinite;
  transform-origin: center;
}

.hero-sigil__graphic svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-sigil__graphic-ring {
  fill: none;
  stroke: var(--line-strong);
  stroke-width: 1.25;
  opacity: 0.72;
}

.hero-sigil__graphic-ring--inner {
  opacity: 0.45;
}

.hero-sigil__graphic-route {
  fill: none;
  stroke: var(--accent-strong);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 12 14;
  opacity: 0.72;
  animation: route-flow 28s linear infinite;
}

.hero-sigil__graphic-route--b {
  animation-duration: 34s;
  opacity: 0.55;
}

.hero-sigil__graphic-route--c {
  animation-duration: 42s;
  opacity: 0.38;
}

.hero-sigil__graphic-node {
  fill: var(--accent);
  filter: drop-shadow(0 0 10px rgba(199, 154, 102, 0.25));
  transform-origin: center;
  animation: node-pulse 4.8s ease-in-out infinite;
}

.hero-sigil__graphic-node--b {
  animation-delay: 0.8s;
}

.hero-sigil__graphic-node--c {
  animation-delay: 1.6s;
}

.hero-sigil::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 0deg, rgba(255, 255, 255, 0.08) 0 2.5deg, transparent 2.5deg 12deg),
    radial-gradient(circle at center, transparent 0 63.5%, var(--line-strong) 64% 64.8%, transparent 65% 100%);
  opacity: 0.7;
  animation: sigil-spin 90s linear infinite;
}

html[data-theme="light"] .hero-sigil::before {
  background:
    repeating-conic-gradient(from 0deg, rgba(0, 0, 0, 0.08) 0 2.5deg, transparent 2.5deg 12deg),
    radial-gradient(circle at center, transparent 0 63.5%, rgba(22, 19, 17, 0.22) 64% 64.8%, transparent 65% 100%);
}

.hero-sigil::after {
  content: "";
  position: absolute;
  inset: -12%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(199, 154, 102, 0.18), transparent 56%);
  filter: blur(10px);
  opacity: 0.7;
}

.hero-sigil__logo,
.not-found-orbit__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  pointer-events: none;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

.hero-sigil__logo {
  width: 78%;
  height: 78%;
  filter: drop-shadow(0 20px 34px rgba(0, 0, 0, 0.18));
}

.not-found-orbit__logo {
  width: 74%;
  height: 74%;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.16));
}

.hero-sigil__ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-sigil__ring--outer {
  inset: 13%;
  border: 1px solid var(--line-strong);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.hero-sigil__ring--inner {
  inset: 28%;
  border: 1px solid var(--line);
}

.hero-sigil__axis {
  position: absolute;
  left: 50%;
  top: 50%;
  background: linear-gradient(90deg, transparent 0 5%, var(--line-strong) 5% 95%, transparent 95% 100%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-sigil__axis--horizontal {
  width: 70%;
  height: 1px;
}

.hero-sigil__axis--vertical {
  width: 1px;
  height: 70%;
  background: linear-gradient(180deg, transparent 0 5%, var(--line-strong) 5% 95%, transparent 95% 100%);
}

.hero-sigil__core {
  position: absolute;
  inset: 42%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-align: center;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  border: 1px solid var(--line-strong);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  animation: core-breathe 12s ease-in-out infinite;
}

.hero-sigil__core span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  letter-spacing: -0.06em;
  line-height: 1;
}

.hero-sigil__core small {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.hero-sigil__pin {
  position: absolute;
  max-width: 180px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  line-height: 1.2;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.hero-sigil__pin--a {
  top: 14%;
  right: 6%;
}

.hero-sigil__pin--b {
  bottom: 13%;
  left: 10%;
}

.hero-sigil__pin--c {
  left: 3%;
  top: 54%;
  transform: translateY(-50%);
}

html[data-theme="light"] .hero-sigil__pin {
  box-shadow: 0 14px 24px rgba(39, 30, 17, 0.08);
}

html[data-theme="light"] .hero-sigil__graphic-ring {
  stroke: rgba(22, 19, 17, 0.18);
}

html[data-theme="light"] .hero-sigil__graphic-route {
  stroke: var(--accent);
}

html[data-theme="light"] .hero-sigil__graphic-node {
  fill: var(--accent-strong);
  filter: drop-shadow(0 0 8px rgba(139, 92, 52, 0.18));
}

.section {
  padding: clamp(48px, 6vw, 88px) 0;
  position: relative;
}

.section:not(.hero) {
  border-top: 1px solid var(--line);
}

.section h2 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

.section-body {
  margin-top: 18px;
  max-width: 42ch;
  color: var(--muted);
  font-size: 1rem;
}

.manifest-grid,
.lanes-grid,
.protocol-grid,
.contact-grid {
  display: grid;
  gap: 28px;
  align-items: start;
}

.manifest-grid {
  grid-template-columns: minmax(220px, 0.84fr) minmax(0, 1.16fr);
}

.lanes-grid,
.protocol-grid,
.contact-grid {
  grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1.18fr);
}

.manifest-list,
.lane-table,
.protocol-table,
.contact-panel {
  min-width: 0;
}

.manifest-list,
.lane-table,
.protocol-table {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.manifest-row,
.lane-row,
.scope-row,
.contact-line {
  display: grid;
  gap: 18px;
  align-items: start;
}

.manifest-row {
  grid-template-columns: 58px minmax(0, 1fr);
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.manifest-row:last-child,
.lane-row:last-child,
.scope-row:last-child,
.contact-line:last-child {
  border-bottom: 0;
}

.manifest-row span,
.lane-row span,
.scope-row span,
.contact-line span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 700;
  padding-top: 3px;
}

.manifest-row h3 {
  margin-bottom: 6px;
  font-size: 1.08rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.manifest-row p {
  color: var(--muted);
}

.lane-row,
.scope-row {
  grid-template-columns: minmax(170px, 220px) minmax(0, 1fr);
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.lane-row strong,
.scope-row strong,
.contact-line strong {
  font-weight: 500;
}

.contact-line a {
  color: var(--text);
  font-weight: 650;
  overflow-wrap: anywhere;
}

.contact-line a:hover {
  color: var(--accent-strong);
}

.lane-row:hover strong,
.scope-row:hover strong {
  color: var(--accent-strong);
}

.contact-panel {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  box-shadow: var(--shadow);
}

html[data-theme="light"] .contact-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78));
  box-shadow: 0 16px 36px rgba(27, 20, 12, 0.08);
}

.contact-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  border-radius: 28px 28px 0 0;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.9;
}

.contact-panel__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.contact-line {
  grid-template-columns: 96px minmax(0, 1fr);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  text-decoration: none;
  color: var(--text);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 2px;
}

.site-footer__links {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

code {
  padding: 0.16rem 0.42rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--accent-soft);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9em;
}

.policy-hero {
  padding-top: clamp(32px, 5vw, 60px);
}

.policy-hero__grid,
.policy-grid {
  display: grid;
  gap: 28px;
  align-items: start;
}

.policy-hero__grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.78fr);
}

.policy-grid {
  grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1.18fr);
}

.policy-copy {
  min-width: 0;
}

.policy-copy .section-body {
  max-width: 48ch;
}

.policy-summary .contact-line {
  grid-template-columns: 110px minmax(0, 1fr);
}

.policy-list {
  min-width: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.policy-item {
  display: grid;
  grid-template-columns: minmax(140px, 188px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.policy-item:last-child {
  border-bottom: 0;
}

.policy-item span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 700;
  padding-top: 3px;
}

.policy-item strong,
.policy-item p {
  color: var(--text);
  font-weight: 500;
}

.policy-item p {
  color: var(--muted);
  font-weight: 400;
}

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

.policy-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  box-shadow: var(--shadow);
}

html[data-theme="light"] .policy-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.8));
  box-shadow: 0 16px 36px rgba(27, 20, 12, 0.08);
}

.policy-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.policy-card p {
  color: var(--muted);
}

.policy-card p + p {
  margin-top: 12px;
}

.policy-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.policy-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.policy-card li + li {
  margin-top: 14px;
}

.policy-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.policy-card li strong {
  color: var(--text);
  font-weight: 500;
}

body.page-404 {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.page-404 .not-found {
  flex: 1;
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.82fr);
  align-items: center;
  gap: clamp(30px, 6vw, 84px);
  padding-block: 28px 44px;
}

.not-found-copy {
  max-width: 560px;
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.not-found-copy .brand {
  margin-bottom: 30px;
}

.not-found-copy .eyebrow {
  margin-bottom: 12px;
}

.not-found-copy h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  max-width: 8ch;
}

.not-found-copy p {
  margin-top: 16px;
  max-width: 36ch;
  color: var(--muted);
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.not-found-orbit {
  position: relative;
  width: min(100%, 440px);
  aspect-ratio: 1;
  justify-self: end;
  border-radius: 50%;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 50%, var(--accent-soft) 0, rgba(0, 0, 0, 0) 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  box-shadow: var(--shadow);
  overflow: hidden;
}

html[data-theme="light"] .not-found-orbit {
  background:
    radial-gradient(circle at 50% 50%, rgba(139, 92, 52, 0.12) 0, rgba(0, 0, 0, 0) 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.28));
}

.not-found-orbit::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, rgba(255, 255, 255, 0.08) 0 2.5deg, transparent 2.5deg 14deg);
  animation: sigil-spin 90s linear infinite;
  opacity: 0.65;
}

html[data-theme="light"] .not-found-orbit::before {
  background: repeating-conic-gradient(from 0deg, rgba(0, 0, 0, 0.08) 0 2.5deg, transparent 2.5deg 14deg);
}

.not-found-orbit::after {
  content: "";
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(199, 154, 102, 0.18), transparent 58%);
  filter: blur(10px);
  opacity: 0.75;
}

.not-found-orbit__ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.not-found-orbit__ring--outer {
  inset: 14%;
  border: 1px solid var(--line-strong);
}

.not-found-orbit__ring--inner {
  inset: 29%;
  border: 1px solid var(--line);
}

.not-found-orbit__core {
  position: absolute;
  inset: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  border: 1px solid var(--line-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  letter-spacing: -0.06em;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

html[data-theme="light"] .hero-sigil__core,
html[data-theme="light"] .not-found-orbit__core {
  box-shadow: 0 16px 32px rgba(27, 20, 12, 0.12);
}

@keyframes sigil-spin {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes core-breathe {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.015);
  }
}

@keyframes graphic-rotate {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes route-flow {
  to {
    stroke-dashoffset: -180;
  }
}

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

  50% {
    transform: scale(1.24);
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand actions"
      "nav nav";
    row-gap: 12px;
  }

  .brand {
    grid-area: brand;
  }

  .site-nav {
    grid-area: nav;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .header-actions {
    grid-area: actions;
  }

  .hero-grid,
  .manifest-grid,
  .lanes-grid,
  .protocol-grid,
  .contact-grid,
  .policy-grid,
  .policy-hero__grid,
  .page-404 .not-found {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-areas:
      "sigil"
      "copy";
  }

  .hero-copy {
    grid-area: copy;
  }

  .hero-sigil {
    grid-area: sigil;
    justify-self: center;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy,
  .not-found-copy {
    padding-left: 16px;
  }

  .hero-sigil,
  .not-found-orbit {
    justify-self: start;
    width: min(100%, 560px);
  }
}

@media (max-width: 760px) {
  .section-inner,
  .page-404 .not-found {
    width: min(100% - 28px, 1220px);
  }

  .site-header {
    top: 8px;
    padding: 12px 14px 13px;
    border-radius: 22px;
  }

  .brand-copy strong {
    font-size: 0.95rem;
  }

  .brand-copy span {
    font-size: 0.64rem;
    letter-spacing: 0.16em;
    white-space: normal;
  }

  .header-actions {
    gap: 8px;
  }

  .theme-toggle,
  .header-cta,
  .btn {
    min-height: 42px;
    padding-inline: 14px;
  }

  .hero {
    padding-top: 20px;
  }

  .hero-copy,
  .not-found-copy {
    padding-left: 0;
    border-left: 0;
  }

  .hero h1,
  .not-found-copy h1 {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 14vw, 4.45rem);
  }

  .hero-sigil {
    display: block;
    justify-self: center;
    width: min(100%, 320px);
  }

  .hero-sigil__graphic {
    inset: 16%;
  }

  .hero-sigil__pin {
    display: none;
  }

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

  .hero-rail__item + .hero-rail__item {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 14px;
    margin-top: 2px;
  }

  .manifest-row,
  .lane-row,
  .scope-row,
  .contact-line {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__links {
    gap: 14px;
  }

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

  .policy-item,
  .policy-summary .contact-line {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-sigil,
  .not-found-orbit {
    width: min(100%, 300px);
  }
}

@media (max-width: 520px) {
  body::after {
    background-size: 56px 56px;
    opacity: 0.08;
  }

  .site-header {
    position: static;
    top: auto;
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "actions"
      "nav";
    justify-items: stretch;
    gap: 10px;
    margin-top: 0;
    padding: 12px 12px 14px;
    border-radius: 18px;
  }

  .brand,
  .header-actions,
  .site-nav {
    width: 100%;
  }

  .brand {
    align-items: flex-start;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    padding: 3px;
  }

  .brand-copy strong {
    font-size: 0.84rem;
    line-height: 1.15;
    overflow-wrap: normal;
    word-break: normal;
    white-space: normal;
  }

  .brand-copy span {
    display: none;
  }

  .header-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .site-nav {
    gap: 14px;
  }

  .hero-sigil,
  .not-found-orbit {
    width: min(100%, 300px);
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Global 2026 refresh: built only with local assets and CSS. */
:root {
  --bg: #070816;
  --bg-alt: #0d1030;
  --panel: rgba(18, 21, 57, 0.76);
  --panel-strong: rgba(19, 23, 65, 0.96);
  --text: #f7f7ff;
  --muted: rgba(223, 224, 255, 0.7);
  --faint: rgba(223, 224, 255, 0.45);
  --line: rgba(224, 226, 255, 0.14);
  --line-strong: rgba(224, 226, 255, 0.3);
  --accent: #c7ff4f;
  --accent-strong: #e1ff9b;
  --accent-soft: rgba(199, 255, 79, 0.18);
  --accent-ink: #0a0d13;
  --violet: #9566ff;
  --pink: #ff82ce;
  --shadow: 0 28px 74px rgba(0, 0, 0, 0.38);
}

html[data-theme="light"] {
  --bg: #f7f5ff;
  --bg-alt: #edebff;
  --panel: rgba(255, 255, 255, 0.86);
  --panel-strong: rgba(255, 255, 255, 0.98);
  --text: #11132a;
  --muted: rgba(31, 35, 82, 0.72);
  --faint: rgba(31, 35, 82, 0.48);
  --line: rgba(30, 34, 82, 0.14);
  --line-strong: rgba(30, 34, 82, 0.28);
  --accent: #5c36dc;
  --accent-strong: #4520b6;
  --accent-soft: rgba(92, 54, 220, 0.15);
  --accent-ink: #fff;
  --violet: #6e48e8;
  --pink: #dd4eaa;
  --shadow: 0 28px 74px rgba(52, 43, 112, 0.16);
}

body::before {
  background:
    radial-gradient(circle at 78% 12%, rgba(149, 102, 255, 0.31), transparent 30%),
    radial-gradient(circle at 9% 42%, rgba(199, 255, 79, 0.14), transparent 27%),
    radial-gradient(circle at 82% 86%, rgba(255, 130, 206, 0.16), transparent 28%),
    linear-gradient(160deg, #070816 0%, #0b0d27 46%, #10113a 100%);
}

html[data-theme="light"] body::before {
  background:
    radial-gradient(circle at 78% 12%, rgba(111, 77, 225, 0.18), transparent 30%),
    radial-gradient(circle at 9% 42%, rgba(125, 214, 32, 0.12), transparent 27%),
    radial-gradient(circle at 82% 86%, rgba(255, 128, 196, 0.13), transparent 28%),
    linear-gradient(160deg, #f7f5ff 0%, #efeeff 46%, #fbf4ff 100%);
}

body::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.26;
}

html[data-theme="light"] body::after {
  background-image:
    linear-gradient(rgba(31, 35, 82, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 35, 82, 0.065) 1px, transparent 1px);
  opacity: 0.24;
}

.page-shell::before {
  height: 3px;
  background: linear-gradient(90deg, var(--violet), var(--pink) 50%, var(--accent));
  box-shadow: 0 0 20px rgba(199, 255, 79, 0.55);
}

.site-header {
  border-radius: 20px;
  background: rgba(12, 14, 40, 0.68);
  border-color: rgba(222, 225, 255, 0.16);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.23);
}

html[data-theme="light"] .site-header {
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 42px rgba(46, 36, 109, 0.1);
}

.brand-mark {
  border-radius: 13px;
  border-color: rgba(199, 255, 79, 0.35);
  background: linear-gradient(145deg, rgba(149, 102, 255, 0.26), rgba(199, 255, 79, 0.12));
}

.brand-copy strong,
.section h2,
.hero h1,
.signal-card h3,
.flow-step strong {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.brand-copy strong {
  font-size: 0.96rem;
  font-weight: 760;
  letter-spacing: -0.04em;
}

.brand-copy span,
.site-nav a {
  letter-spacing: 0.14em;
}

.header-cta,
.btn-primary {
  border-color: transparent;
  background: var(--accent);
  box-shadow: 0 14px 28px rgba(199, 255, 79, 0.16);
}

.header-cta:hover,
.btn-primary:hover {
  color: #080b10;
  background: var(--accent-strong);
  box-shadow: 0 17px 32px rgba(199, 255, 79, 0.27);
}

.global-hero-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  min-height: min(730px, calc(100svh - 136px));
}

.global-hero-copy {
  padding: clamp(20px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(18, 21, 57, 0.68), rgba(11, 13, 42, 0.3));
  box-shadow: var(--shadow);
}

html[data-theme="light"] .global-hero-copy {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(238, 237, 255, 0.52));
}

.global-hero-copy::before {
  content: "LIVE / GLOBAL";
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(199, 255, 79, 0.12);
  border: 1px solid rgba(199, 255, 79, 0.3);
  color: var(--accent);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.global-hero-copy .eyebrow {
  color: var(--pink);
}

.global-hero-copy h1 {
  max-width: 9ch;
  margin-top: 10px;
  font-size: clamp(3.45rem, 7vw, 7.1rem);
  font-weight: 850;
  line-height: 0.84;
  letter-spacing: -0.09em;
}

.global-hero-copy .lede {
  max-width: 43ch;
  font-size: clamp(1.02rem, 1.55vw, 1.23rem);
}

.hero-rail--global {
  gap: 0;
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.hero-rail--global .hero-rail__item strong {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.95rem;
  letter-spacing: -0.04em;
}

.world-stage {
  position: relative;
  width: min(100%, 600px);
  justify-self: end;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(149, 102, 255, 0.26), rgba(12, 14, 49, 0.84) 46%, rgba(199, 255, 79, 0.1)),
    var(--panel);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.world-stage__glow,
.world-stage__grid,
.world-stage__orbit,
.world-stage__logo,
.world-stage__node,
.world-stage__caption {
  position: absolute;
}

.world-stage__glow {
  inset: 20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 255, 79, 0.5), rgba(149, 102, 255, 0.22) 38%, transparent 68%);
  filter: blur(12px);
  animation: world-breathe 7s ease-in-out infinite alternate;
}

.world-stage__grid {
  inset: -5%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.17) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.17) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at 50% 50%, black 0 50%, transparent 78%);
  opacity: 0.46;
  transform: rotate(-12deg) scale(1.2);
}

.world-stage__orbit {
  inset: 14%;
  border: 1px solid rgba(235, 236, 255, 0.4);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.world-stage__orbit--two {
  inset: 26%;
  border-color: rgba(199, 255, 79, 0.54);
  transform: rotate(32deg) scaleX(1.45);
  animation: world-spin 20s linear infinite;
}

.world-stage__logo {
  z-index: 2;
  inset: 29%;
  width: 42%;
  height: 42%;
  padding: 14px;
  border: 1px solid rgba(240, 241, 255, 0.28);
  border-radius: 28px;
  background: rgba(8, 10, 32, 0.54);
  box-shadow: 0 22px 55px rgba(2, 3, 17, 0.48);
  object-fit: contain;
}

.world-stage__node {
  z-index: 3;
  display: grid;
  width: 42px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(199, 255, 79, 0.68);
  border-radius: 50%;
  background: rgba(199, 255, 79, 0.15);
  color: var(--accent);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: 0 0 0 8px rgba(199, 255, 79, 0.055);
}

.world-stage__node--a { top: 19%; left: 16%; }
.world-stage__node--b { top: 24%; right: 15%; border-color: rgba(255, 130, 206, 0.72); color: var(--pink); background: rgba(255, 130, 206, 0.11); }
.world-stage__node--c { bottom: 18%; left: 22%; border-color: rgba(176, 150, 255, 0.8); color: #c9b8ff; background: rgba(149, 102, 255, 0.15); }

.world-stage__caption {
  right: 22px;
  bottom: 21px;
  z-index: 3;
  display: grid;
  gap: 3px;
  text-align: right;
}

.world-stage__caption span,
.signal-card__number {
  color: var(--faint);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.world-stage__caption strong {
  font-size: 0.78rem;
  letter-spacing: 0.11em;
}

.section-network,
.section-flow,
.section-protocol,
.section-contact {
  padding-top: clamp(66px, 10vw, 140px);
}

.network-intro,
.flow-copy,
.protocol-copy,
.contact-copy {
  position: relative;
}

.section-network h2,
.section-flow h2,
.section-protocol h2,
.section-contact h2 {
  margin-top: 12px;
  font-size: clamp(2.55rem, 6vw, 6.1rem);
  font-weight: 830;
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.section-network h2 em {
  color: var(--accent);
  font-style: normal;
}

.network-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.45fr);
  gap: clamp(26px, 7vw, 110px);
  align-items: end;
}

.network-intro .section-body {
  margin: 0 0 8px;
  max-width: 34ch;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(26px, 5vw, 58px);
}

.signal-card {
  min-height: 278px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(22px, 3.4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.signal-card::before {
  content: "";
  position: absolute;
  inset: -24% 38% auto -24%;
  width: 82%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(199, 255, 79, 0.16);
  filter: blur(2px);
}

.signal-card--sample::before { background: rgba(255, 130, 206, 0.18); }
.signal-card--move::before { background: rgba(149, 102, 255, 0.22); }
.signal-card--verify::before { background: rgba(74, 204, 255, 0.18); }
.signal-card--quality::before { background: rgba(255, 184, 89, 0.19); }
.signal-card--custom::before { background: rgba(255, 117, 163, 0.18); }

.signal-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  border-color: rgba(199, 255, 79, 0.48);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035));
}

.signal-card > * { position: relative; z-index: 1; }

.signal-card h3 {
  margin-top: auto;
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  font-weight: 780;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.signal-card p {
  margin-top: 14px;
  color: var(--muted);
}

.flow-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(390px, 0.9fr);
  gap: clamp(36px, 8vw, 138px);
  align-items: start;
}

.flow-copy {
  position: sticky;
  top: 152px;
}

.flow-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

.flow-step {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.flow-step > span {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.flow-step strong {
  font-size: clamp(1.45rem, 2.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.flow-step p {
  max-width: 34ch;
  margin-top: 8px;
  color: var(--muted);
}

.global-scope-grid,
.contact-grid--global {
  gap: clamp(36px, 7vw, 110px);
}

.contact-panel--global {
  border-color: rgba(199, 255, 79, 0.3);
  background:
    linear-gradient(145deg, rgba(199, 255, 79, 0.12), rgba(149, 102, 255, 0.18)),
    var(--panel);
}

.contact-panel--global::before {
  background: radial-gradient(circle at 72% 18%, rgba(255, 130, 206, 0.38), transparent 42%);
}

@keyframes world-spin {
  to { transform: rotate(392deg) scaleX(1.45); }
}

@keyframes world-breathe {
  to { transform: scale(1.12); filter: blur(18px); }
}

@media (max-width: 1080px) {
  .global-hero-grid {
    grid-template-areas: "world" "copy";
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .global-hero-copy { grid-area: copy; }
  .world-stage { grid-area: world; justify-self: center; width: min(100%, 570px); }
  .network-intro,
  .flow-layout { grid-template-columns: 1fr; }
  .flow-copy { position: static; }
  .signal-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .global-hero-copy { padding: 24px; border-radius: 25px; }
  .global-hero-copy h1 { font-size: clamp(3.15rem, 16vw, 5.1rem); }
  .world-stage { width: 100%; border-radius: 25px; }
  .world-stage__logo { border-radius: 22px; }
  .signal-grid { grid-template-columns: 1fr; }
  .signal-card { min-height: 232px; }
  .flow-step { grid-template-columns: 52px minmax(0, 1fr); }
  .section-network h2,
  .section-flow h2,
  .section-protocol h2,
  .section-contact h2 { font-size: clamp(2.7rem, 13vw, 4.4rem); }
}

@media (prefers-reduced-motion: reduce) {
  .world-stage__glow,
  .world-stage__orbit--two { animation: none; }
  .signal-card:hover { transform: none; }
}

/* User-supplied Universal Global Link wordmark and hero art. */
.site-header {
  color: #0d1030;
  border-color: rgba(174, 167, 245, 0.38);
  background: linear-gradient(110deg, rgba(250, 251, 255, 0.98), rgba(235, 233, 255, 0.93));
  box-shadow: 0 18px 42px rgba(5, 6, 29, 0.32);
}

html[data-theme="light"] .site-header {
  color: #0d1030;
  border-color: rgba(92, 54, 220, 0.2);
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.98), rgba(238, 236, 255, 0.94));
}

.brand-wordmark {
  display: block;
  width: clamp(188px, 20vw, 256px);
  height: auto;
  filter: saturate(1.06) contrast(1.06);
}

.site-nav a {
  color: rgba(13, 16, 48, 0.66);
  font-weight: 720;
}

.site-nav a[data-active] {
  color: #0d1030;
}

.site-nav a::after {
  background: #5c36dc;
}

.theme-toggle {
  color: #161938;
  border-color: rgba(13, 16, 48, 0.16);
  background: rgba(255, 255, 255, 0.52);
}

.theme-toggle__icon {
  border-color: rgba(13, 16, 48, 0.2);
  background: rgba(92, 54, 220, 0.08);
}

.world-stage {
  aspect-ratio: 1.16;
  background: #090b2a;
}

.world-stage__art {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}

.world-stage::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(7, 8, 22, 0.2), transparent 48%, rgba(7, 8, 22, 0.1));
}

.world-stage__glow {
  z-index: 1;
  mix-blend-mode: screen;
  opacity: 0.3;
}

.world-stage__grid {
  z-index: 2;
  opacity: 0.18;
}

.world-stage__orbit {
  z-index: 2;
  border-color: rgba(235, 236, 255, 0.24);
}

.world-stage__orbit--two {
  border-color: rgba(199, 255, 79, 0.36);
}

.world-stage__node,
.world-stage__caption {
  z-index: 3;
}

.world-stage__caption {
  padding: 8px 10px;
  border: 1px solid rgba(235, 236, 255, 0.18);
  border-radius: 12px;
  background: rgba(7, 8, 22, 0.5);
  backdrop-filter: blur(10px);
}

@media (max-width: 760px) {
  .brand-wordmark {
    width: min(230px, 72vw);
  }

  .world-stage {
    aspect-ratio: 1;
  }

  .world-stage__art {
    object-position: 67% center;
  }
}

/* Professional buyer and supplier routes. */
.site-header .site-nav {
  gap: clamp(12px, 1.7vw, 20px);
}

@media (min-width: 1081px) {
  .site-header {
    grid-template-columns: minmax(220px, 0.72fr) minmax(385px, 1.28fr) auto;
  }

  .site-header .site-nav {
    flex-wrap: nowrap;
  }
}

.section-buyers,
.section-partners {
  padding-top: clamp(66px, 10vw, 140px);
}

.audience-layout,
.partner-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(390px, 0.98fr);
  gap: clamp(36px, 7vw, 118px);
  align-items: center;
}

.audience-copy,
.partner-signal {
  position: relative;
}

.section-buyers h2,
.section-partners h2 {
  margin-top: 12px;
  font-size: clamp(2.55rem, 5.6vw, 5.8rem);
  font-weight: 830;
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.audience-copy .section-body,
.partner-signal .section-body {
  max-width: 37ch;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link:hover {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.brief-card,
.partner-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(149, 102, 255, 0.18), rgba(11, 13, 42, 0.78) 62%);
  box-shadow: var(--shadow);
}

.brief-card {
  padding: clamp(24px, 4vw, 44px);
}

.brief-card::before,
.partner-panel::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(8px);
}

.brief-card::before {
  top: -155px;
  right: -120px;
  background: rgba(199, 255, 79, 0.18);
}

.brief-card__eyebrow,
.partner-panel__title {
  position: relative;
  z-index: 1;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.brief-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.brief-list li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.brief-list li > span {
  color: var(--pink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.brief-list strong {
  font-size: 1.15rem;
  letter-spacing: -0.035em;
}

.brief-list p,
.brief-card__note,
.partner-panel__note {
  color: var(--muted);
}

.brief-list p {
  margin-top: 5px;
}

.brief-card__note {
  position: relative;
  z-index: 1;
  margin: 20px 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.partner-panel {
  padding: clamp(24px, 4vw, 42px);
  background: linear-gradient(145deg, rgba(255, 130, 206, 0.14), rgba(18, 21, 57, 0.8) 52%, rgba(149, 102, 255, 0.18));
}

.partner-panel::before {
  right: -145px;
  bottom: -165px;
  background: rgba(199, 255, 79, 0.16);
}

.partner-line {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(120px, 0.36fr) minmax(0, 1fr);
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.partner-line:first-of-type {
  margin-top: 22px;
  border-top: 1px solid var(--line);
}

.partner-line span {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.partner-line strong {
  font-size: 0.98rem;
  line-height: 1.45;
}

.partner-panel__note {
  position: relative;
  z-index: 1;
  margin: 20px 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
}

.text-link--panel {
  position: relative;
  z-index: 1;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(30px, 5vw, 58px);
}

.principle-card {
  display: grid;
  gap: 14px;
  min-height: 184px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
}

.principle-card:nth-child(2) {
  background: rgba(149, 102, 255, 0.1);
}

.principle-card:nth-child(3) {
  background: rgba(199, 255, 79, 0.075);
}

.principle-card span {
  align-self: start;
  color: rgba(239, 241, 255, 0.82);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

html[data-theme="light"] .principle-card span {
  color: rgba(17, 19, 42, 0.76);
}

.principle-card strong {
  align-self: end;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  letter-spacing: -0.04em;
  line-height: 1.04;
}

html[data-theme="light"] .brief-card,
html[data-theme="light"] .partner-panel {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.93), rgba(239, 237, 255, 0.84));
}

html[data-theme="light"] .principle-card {
  background: rgba(255, 255, 255, 0.66);
}

.section-trust {
  padding-top: clamp(66px, 10vw, 140px);
}

.trust-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.45fr);
  gap: clamp(26px, 7vw, 110px);
  align-items: end;
}

.section-trust h2 {
  margin-top: 12px;
  font-size: clamp(2.55rem, 6vw, 6.1rem);
  font-weight: 830;
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.section-trust h2 em {
  color: var(--accent);
  font-style: normal;
}

.trust-intro .section-body {
  margin: 0 0 8px;
  max-width: 34ch;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(26px, 5vw, 58px);
}

.trust-card {
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
}

.trust-card:nth-child(2) { background: rgba(74, 204, 255, 0.08); }
.trust-card:nth-child(3) { background: rgba(149, 102, 255, 0.1); }
.trust-card:nth-child(4) { background: rgba(199, 255, 79, 0.075); }

.trust-card span {
  color: var(--accent);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.trust-card strong {
  margin-top: auto;
  font-size: clamp(1.08rem, 1.6vw, 1.38rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.quote-form {
  margin-top: 28px;
  scroll-margin-top: clamp(180px, 14vw, 250px);
  padding: clamp(20px, 3.5vw, 30px);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.quote-form__heading h3 {
  font-size: 1.35rem;
  letter-spacing: -0.045em;
}

.quote-form__heading p,
.quote-form__note,
.quote-field__hint,
.quote-form__status {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.quote-form__heading p,
.quote-form__note,
.quote-form__status {
  margin: 7px 0 0;
}

.quote-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.quote-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.quote-field--full {
  grid-column: 1 / -1;
}

.quote-field > span {
  color: var(--text);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-field > span small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 650;
}

.quote-field input {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(4, 7, 25, 0.48);
  color: var(--text);
  font: inherit;
}

.quote-field input[type="file"] {
  padding: 9px;
  font-size: 0.83rem;
}

.quote-field input::file-selector-button {
  margin-right: 10px;
  padding: 6px 9px;
  border: 0;
  border-radius: 7px;
  background: var(--accent);
  color: #10142c;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
}

.quote-field input:focus-visible {
  outline: 3px solid rgba(199, 255, 79, 0.35);
  outline-offset: 2px;
  border-color: var(--accent);
}

.quote-image-preview {
  width: min(100%, 250px);
  max-height: 172px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  object-fit: cover;
}

.quote-image-preview[hidden] {
  display: none !important;
}

.quote-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.quote-form__actions .btn {
  cursor: pointer;
  font: inherit;
}

.quote-form__status:not(:empty) {
  margin-top: 12px;
}

html[data-theme="light"] .quote-form,
html[data-theme="light"] .trust-card {
  background: rgba(255, 255, 255, 0.66);
}

html[data-theme="light"] .quote-field input {
  background: rgba(255, 255, 255, 0.88);
}

/* Dedicated SEO pages. */
.subpage .site-header {
  margin-bottom: 0;
}

.subpage-hero {
  padding: clamp(54px, 8vw, 104px) 0 clamp(48px, 7vw, 88px);
}

.subpage-hero__grid,
.quote-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.66fr);
  gap: clamp(30px, 7vw, 110px);
  align-items: start;
}

.subpage-hero__grid {
  align-items: end;
}

.subpage-copy h1 {
  margin-top: 14px;
  font-size: clamp(3.25rem, 7vw, 7.2rem);
  font-weight: 850;
  line-height: 0.85;
  letter-spacing: -0.085em;
}

.subpage-copy h2 {
  margin-top: 12px;
  font-size: clamp(2.45rem, 5.4vw, 5.45rem);
  font-weight: 830;
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.subpage-copy .lede {
  max-width: 48ch;
}

.subpage-panel {
  min-height: 0;
}

.subpage-section {
  padding-top: clamp(54px, 8vw, 112px);
}

.subpage-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.8fr);
  gap: clamp(30px, 7vw, 110px);
  align-items: start;
}

.detail-list {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.detail-row {
  display: grid;
  grid-template-columns: minmax(145px, 0.37fr) minmax(0, 1fr);
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.detail-row:last-child {
  border-bottom: 0;
}

.detail-row span {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail-row strong {
  font-size: 0.98rem;
  font-weight: 580;
  line-height: 1.5;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
}

.service-card:nth-child(2),
.service-card:nth-child(5) { background: rgba(74, 204, 255, 0.08); }
.service-card:nth-child(3),
.service-card:nth-child(6) { background: rgba(149, 102, 255, 0.10); }
.service-card:nth-child(4) { background: rgba(255, 184, 89, 0.10); }

.service-card > span {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.service-card h2 {
  margin-top: auto;
  font-size: clamp(1.55rem, 2.45vw, 2.2rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.service-card p {
  margin-top: 13px;
  color: var(--muted);
}

.service-card a {
  margin-top: 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.service-card a:hover,
.scope-row a:hover {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.workflow-cards {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-cards li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  column-gap: 16px;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.workflow-cards li > span {
  grid-row: span 2;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.workflow-cards strong {
  font-size: 1.2rem;
  letter-spacing: -0.04em;
}

.workflow-cards p {
  margin-top: 8px;
  color: var(--muted);
}

.subpage-cta {
  padding-top: clamp(50px, 8vw, 104px);
}

.cta-band {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(26px, 5vw, 58px);
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(149, 102, 255, 0.19), rgba(199, 255, 79, 0.12));
}

.cta-band h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 4.8vw, 4.65rem);
  font-weight: 830;
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.contact-detail-list {
  margin-top: 28px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

.faq-list details {
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.faq-list summary {
  padding: 19px 30px 19px 0;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 720;
  letter-spacing: -0.02em;
}

.faq-list p {
  max-width: 75ch;
  margin: 0 0 19px;
  color: var(--muted);
}

html[data-theme="light"] .service-card,
html[data-theme="light"] .workflow-cards li,
html[data-theme="light"] .faq-list details {
  background: rgba(255, 255, 255, 0.66);
}

@media (max-width: 1080px) {
  .audience-layout,
  .partner-layout,
  .trust-intro,
  .subpage-hero__grid,
  .subpage-grid,
  .quote-page-layout {
    grid-template-columns: 1fr;
  }

  .audience-copy .section-body,
  .partner-signal .section-body {
    max-width: 48ch;
  }
}

@media (max-width: 760px) {
  .section-buyers h2,
  .section-partners h2 {
    font-size: clamp(2.7rem, 13vw, 4.4rem);
  }

  .partner-line {
    grid-template-columns: 1fr;
    gap: 7px;
  }

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

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

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

  .principle-card {
    min-height: 142px;
  }

  .section-trust h2 {
    font-size: clamp(2.7rem, 13vw, 4.4rem);
  }

  .quote-form__grid,
  .trust-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .subpage-copy h1 {
    font-size: clamp(3.1rem, 15vw, 5.1rem);
  }

  .subpage-copy h2 {
    font-size: clamp(2.7rem, 13vw, 4.4rem);
  }

  .detail-row,
  .workflow-cards li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .workflow-cards li > span {
    grid-row: auto;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
}
