:root {
  --bg-0: #03050a;
  --bg-1: #070b14;
  --bg-2: #0d1320;
  --bg-3: #131d2e;
  --bg-4: #1b2740;
  --surface: rgba(10, 16, 27, 0.74);
  --surface-strong: rgba(13, 21, 35, 0.9);
  --surface-soft: rgba(255, 255, 255, 0.03);
  --line: rgba(194, 212, 239, 0.11);
  --line-strong: rgba(194, 212, 239, 0.2);
  --text: #f6f8fc;
  --muted: #aab6c8;
  --muted-strong: #d3ddec;
  --ice: #deefff;
  --teal: #7ed6d1;
  --blue: #8db6ff;
  --amber: #f2c58f;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --site-width: min(1280px, calc(100% - 48px));
  --hero-width: min(2080px, calc(100% - 72px));
  --subpage-width: min(1040px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: #03050a;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background-color: #03050a;
  background:
    radial-gradient(circle at 16% 18%, rgba(126, 214, 209, 0.16), transparent 18%),
    radial-gradient(circle at 76% 10%, rgba(141, 182, 255, 0.18), transparent 22%),
    radial-gradient(circle at 72% 42%, rgba(91, 129, 255, 0.14), transparent 20%),
    radial-gradient(circle at 50% 120%, rgba(126, 214, 209, 0.08), transparent 28%),
    linear-gradient(180deg, #020409 0%, #050913 18%, #07101c 46%, #08101b 68%, #04070d 100%);
  font-family: "Avenir Next", "Neue Haas Grotesk Text", "Segoe UI", sans-serif;
}

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

body::before {
  background:
    radial-gradient(circle at 16% 82%, rgba(245, 197, 143, 0.08), transparent 18%),
    radial-gradient(circle at 82% 24%, rgba(141, 182, 255, 0.1), transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0%, transparent 38%);
  mix-blend-mode: screen;
  opacity: 0.9;
}

body::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 160px 160px;
  opacity: 0.06;
}

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

.page-shell {
  position: relative;
  overflow-x: clip;
}

.topbar,
.section,
.footer {
  width: var(--site-width);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(194, 212, 239, 0.08);
  background: linear-gradient(180deg, rgba(8, 13, 24, 0.86), rgba(6, 10, 18, 0.66));
  backdrop-filter: blur(22px);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Iowan Old Style", "Baskerville", "Palatino Linotype", serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 18px 18px 18px 6px;
  transform: rotate(45deg);
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.95), transparent 18%),
    radial-gradient(circle at 32% 32%, #f6f9ff, #9db2cc 36%, #172538 78%, #05070c 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 12px 24px rgba(0, 0, 0, 0.28);
}

.brand-word {
  transform: translateY(1px);
}

.nav {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.nav-links,
.footer-links,
.link-row,
.protocol-notes,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nav-links {
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-links a,
.nav > a,
.footer-links a {
  position: relative;
}

.nav-links a::after,
.nav > a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, rgba(126, 214, 209, 0), rgba(126, 214, 209, 0.95), rgba(141, 182, 255, 0));
  transition: transform 220ms ease;
}

.nav-links a:hover::after,
.nav > a:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
}

.nav a:hover,
.inline-link:hover,
.footer-links a:hover,
.page-backlink:hover {
  color: var(--ice);
}

.nav-utility {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(194, 212, 239, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  font-size: 0.94rem;
}

.section {
  position: relative;
  padding: 84px 0;
}

.hero {
  width: 100%;
  max-width: none;
  min-height: 100svh;
  padding: 30px 0 48px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 42%, rgba(141, 182, 255, 0.24), transparent 20%),
    radial-gradient(circle at 64% 68%, rgba(126, 214, 209, 0.12), transparent 18%),
    linear-gradient(90deg, rgba(3, 5, 10, 0) 0%, rgba(3, 5, 10, 0.08) 20%, rgba(3, 5, 10, 0.36) 100%);
  pointer-events: none;
}

.hero-stage-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(440px, 0.78fr) minmax(760px, 1.22fr);
  gap: clamp(40px, 5vw, 108px);
  align-items: center;
  width: var(--hero-width);
  min-height: calc(100svh - 140px);
  margin: 0 auto;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: min(680px, 100%);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--muted-strong);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-kicker::before {
  content: "";
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, rgba(126, 214, 209, 0), rgba(126, 214, 209, 0.92));
}

.hero h1,
.section-head h2,
.subpage-hero h1,
.panel-card h2,
.panel-card h3,
.faq-item summary,
.constellation-intro h3 {
  font-family: "Iowan Old Style", "Baskerville", "Palatino Linotype", serif;
}

.hero h1 {
  margin: 0;
  max-width: 4.4ch;
  font-size: clamp(5.8rem, 8vw, 10.4rem);
  line-height: 0.86;
  letter-spacing: -0.05em;
}

.supporting,
.section-support,
.panel-card p,
.protocol-card p,
.footer-copy,
.content-meta,
.constellation-intro p {
  color: var(--muted);
}

.supporting {
  max-width: 14rem;
  margin: 10px 0 0;
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  line-height: 1.24;
  color: var(--muted-strong);
}

.hero-proofband,
.hero-status-grid,
.entry-dock,
.entry-dock-group {
  display: grid;
  gap: 14px;
}

.hero-proofband {
  grid-template-columns: repeat(3, max-content);
  margin-top: 24px;
}

.hero-proofband span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(194, 212, 239, 0.12);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted-strong);
  font-size: 0.84rem;
  backdrop-filter: blur(18px);
}

.cta-row {
  margin-top: 28px;
}

.entry-dock {
  margin-top: 22px;
  max-width: 44rem;
}

.entry-dock-group {
  padding: 14px;
  border-radius: 24px;
  border: 1px solid rgba(194, 212, 239, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(9, 15, 25, 0.68);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
}

.entry-dock-label {
  margin: 0;
  color: var(--teal);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

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

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

.entry-chip {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 2px;
  min-height: 102px;
  padding: 14px 14px;
  border-radius: 22px;
  border: 1px solid rgba(194, 212, 239, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(6, 10, 18, 0.74);
  color: var(--muted-strong);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 14px 30px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  overflow: hidden;
}

.entry-chip::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 38%);
  opacity: 0.5;
  pointer-events: none;
}

.entry-chip-icon {
  position: relative;
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: var(--ice);
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.28), transparent 26%),
    linear-gradient(160deg, rgba(141, 182, 255, 0.24), rgba(126, 214, 209, 0.12)),
    rgba(7, 12, 20, 0.82);
  border: 1px solid rgba(194, 212, 239, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 18px rgba(0, 0, 0, 0.22);
}

.entry-chip-icon svg {
  width: 24px;
  height: 24px;
}

.entry-chip strong {
  position: relative;
  z-index: 1;
  font-family: "Iowan Old Style", "Baskerville", "Palatino Linotype", serif;
  font-size: 1.12rem;
  line-height: 0.98;
  color: var(--text);
}

.entry-chip span {
  position: relative;
  z-index: 1;
  font-size: 0.78rem;
  line-height: 1.16;
}

.entry-chip:hover {
  transform: translateY(-3px);
  border-color: rgba(126, 214, 209, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(10, 16, 28, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 34px rgba(0, 0, 0, 0.28);
}

.entry-chip-strong {
  background:
    linear-gradient(135deg, rgba(126, 214, 209, 0.18), rgba(141, 182, 255, 0.1)),
    rgba(8, 13, 24, 0.76);
}

.hero-status-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.hero-status-card {
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  border-radius: 24px;
  border: 1px solid rgba(194, 212, 239, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(9, 15, 25, 0.68);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(20px);
}

.hero-status-card strong {
  font-family: "Iowan Old Style", "Baskerville", "Palatino Linotype", serif;
  font-size: 1.22rem;
  line-height: 1.04;
}

.hero-status-card span,
.scene-label-copy {
  color: var(--muted);
  line-height: 1.5;
}

.hero-status-label,
.scene-label-title {
  color: var(--teal);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.button,
.inline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.inline-link:hover,
.nav-utility:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #04060b;
  background: linear-gradient(135deg, #e7f0ff, #7ed6d1);
  box-shadow: 0 18px 28px rgba(126, 214, 209, 0.22);
}

.button-secondary {
  color: var(--ice);
  background: rgba(126, 214, 209, 0.08);
  border-color: rgba(126, 214, 209, 0.18);
}

.inline-link {
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(194, 212, 239, 0.12);
}

.hero-visual {
  position: relative;
  min-height: clamp(580px, 56vw, 1040px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.orb-panel {
  position: relative;
  width: min(1080px, 100%);
  aspect-ratio: 1.08 / 1;
  margin-inline: auto;
  border-radius: var(--radius-xl);
  overflow: visible;
  background:
    linear-gradient(180deg, rgba(8, 13, 23, 0.5), rgba(8, 15, 27, 0.08)),
    radial-gradient(circle at 58% 50%, rgba(141, 182, 255, 0.12), transparent 46%),
    radial-gradient(circle at 46% 54%, rgba(126, 214, 209, 0.08), transparent 38%);
}

.orb-panel::before,
.orb-panel::after {
  content: "";
  position: absolute;
  inset: -4%;
  border-radius: 50%;
  pointer-events: none;
}

.orb-panel::before {
  background:
    radial-gradient(circle at 52% 46%, rgba(141, 182, 255, 0.12), transparent 52%),
    radial-gradient(circle at 44% 52%, rgba(126, 214, 209, 0.08), transparent 56%);
  filter: blur(48px);
}

.orb-panel::after {
  inset: auto 8% 0;
  height: 22%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.3), transparent 68%);
  filter: blur(32px);
}

.orb-canvas,
.orb-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.visual-satellite {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: var(--ice);
  background:
    radial-gradient(circle at 30% 26%, rgba(255, 255, 255, 0.2), transparent 26%),
    linear-gradient(160deg, rgba(141, 182, 255, 0.18), rgba(126, 214, 209, 0.1)),
    rgba(7, 12, 20, 0.78);
  border: 1px solid rgba(194, 212, 239, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 38px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.visual-satellite svg {
  width: 24px;
  height: 24px;
}

.visual-satellite-top {
  top: 12%;
  right: 21%;
}

.visual-satellite-left {
  left: 11%;
  top: 35%;
}

.visual-satellite-right {
  right: 10%;
  top: 40%;
}

.hero-nebula-glow {
  position: absolute;
  inset: 4% 6%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 12%),
    radial-gradient(circle at 38% 44%, rgba(126, 214, 209, 0.18), transparent 24%),
    radial-gradient(circle at 66% 36%, rgba(141, 182, 255, 0.18), transparent 28%),
    radial-gradient(circle at 56% 66%, rgba(93, 127, 211, 0.22), transparent 32%);
  filter: blur(46px);
  opacity: 0.9;
  pointer-events: none;
}

.mirror-sculpture {
  position: absolute;
  inset: 14% 12% 16%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.mirror-drop {
  position: absolute;
  border-radius: 48% 52% 46% 54% / 38% 34% 66% 62%;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.22) 18%, rgba(255, 255, 255, 0) 34%),
    radial-gradient(circle at 62% 38%, rgba(199, 223, 255, 0.56), rgba(199, 223, 255, 0.04) 28%, rgba(199, 223, 255, 0) 48%),
    linear-gradient(155deg, rgba(230, 241, 255, 0.92), rgba(145, 176, 215, 0.42) 30%, rgba(35, 57, 95, 0.94) 72%, rgba(8, 14, 26, 0.98));
  border: 1px solid rgba(225, 236, 255, 0.22);
  box-shadow:
    inset -24px -30px 56px rgba(4, 9, 18, 0.7),
    inset 18px 18px 42px rgba(255, 255, 255, 0.14),
    0 26px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
}

.mirror-drop::before,
.mirror-drop::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.mirror-drop::before {
  inset: 9% 14% 48% 18%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 74%);
  filter: blur(8px);
}

.orb-fallback {
  background: transparent;
  opacity: 1;
}

.orb-panel.orb-ready .orb-fallback {
  opacity: 1;
}

.mirror-drop::after {
  inset: 56% 20% 16% 52%;
  background: radial-gradient(circle at 50% 50%, rgba(170, 201, 244, 0.34), rgba(170, 201, 244, 0) 74%);
  filter: blur(10px);
}

.mirror-drop-main {
  z-index: 3;
  width: min(360px, 52%);
  aspect-ratio: 0.98 / 1.16;
  transform: translateY(4%) rotate(6deg);
}

.mirror-drop-back {
  z-index: 1;
  width: min(220px, 34%);
  aspect-ratio: 0.94 / 1.12;
  transform: translate(-28%, 18%) rotate(-18deg);
  opacity: 0.88;
  filter: saturate(0.92);
}

.mirror-drop-front {
  z-index: 2;
  width: min(178px, 28%);
  aspect-ratio: 0.9 / 1.08;
  transform: translate(34%, 28%) rotate(20deg);
  opacity: 0.96;
}

.orb-icon-rack {
  position: absolute;
  left: 50%;
  bottom: 7%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(7, 11, 18, 0.74);
  border: 1px solid rgba(194, 212, 239, 0.12);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
  color: var(--muted-strong);
  backdrop-filter: blur(16px);
}

.orb-icon-token {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.14), transparent 24%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(194, 212, 239, 0.12);
}

.orb-icon-token svg {
  width: 18px;
  height: 18px;
}

.eyebrow,
.section-kicker,
.card-index,
.state-pill,
.device-echo {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
}

.eyebrow,
.section-kicker,
.card-index,
.device-echo {
  color: var(--teal);
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
  max-width: 40rem;
}

.section-head h2,
.subpage-hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.section-support {
  max-width: 30rem;
  line-height: 1.55;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.entry-section {
  padding-top: 28px;
}

.entry-groups {
  display: grid;
  gap: 28px;
}

.entry-group {
  display: grid;
  gap: 14px;
}

.entry-group-label {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

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

.entry-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 220px;
}

.entry-card h3 {
  margin: 0;
}

.entry-card p {
  margin: 0;
  color: var(--muted-strong);
}

.entry-card .button {
  justify-self: start;
  margin-top: auto;
}

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

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

.panel-card,
.protocol-card,
.faq-item,
.subpage-hero,
.constellation-node {
  position: relative;
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.panel-card,
.constellation-node,
.faq-item {
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.panel-card:hover,
.constellation-node:hover,
.faq-item:hover {
  border-color: rgba(194, 212, 239, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
}

.panel-card::after,
.protocol-card::after,
.subpage-hero::after,
.constellation-node::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%);
  opacity: 0.45;
  pointer-events: none;
}

.panel-card h2,
.panel-card h3,
.protocol-card h3,
.constellation-intro h3 {
  margin: 10px 0 0;
  font-size: 1.44rem;
  line-height: 1.06;
}

.panel-card p,
.protocol-card p,
.constellation-intro p,
.footer-copy {
  line-height: 1.55;
}

.boundary-card p:last-child,
.trust-card p:last-child,
.tier-card p:last-child {
  color: var(--muted-strong);
}

.constellation-panel {
  padding: 34px;
}

.constellation-shell {
  display: grid;
  grid-template-columns: minmax(250px, 0.76fr) minmax(0, 1.24fr);
  gap: 28px;
  align-items: center;
}

.constellation-intro {
  display: grid;
  gap: 12px;
  max-width: 20rem;
}

.constellation-intro h3 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.device-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.device-row::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(126, 214, 209, 0), rgba(126, 214, 209, 0.18), rgba(126, 214, 209, 0));
  pointer-events: none;
}

.constellation-node {
  min-height: 156px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(10, 15, 26, 0.82);
}

.node-name,
.tier-symbol {
  color: var(--muted-strong);
  font-weight: 700;
}

.node-name {
  font-size: 1.02rem;
}

.device-echo {
  color: var(--muted);
}

.link-row {
  margin-top: 18px;
}

.details-strip {
  padding-top: 12px;
}

.section-head.narrow {
  margin-bottom: 18px;
}

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

.protocol-card {
  display: grid;
  gap: 18px;
  min-height: 100%;
}

.node-top,
.tier-top,
.protocol-head,
.channel-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.state-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-weight: 700;
}

.state-pill-beta {
  color: var(--teal);
  background: rgba(126, 214, 209, 0.12);
}

.protocol-notes span {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(194, 212, 239, 0.1);
  font-size: 0.84rem;
}

.tier-card-pro {
  background:
    linear-gradient(180deg, rgba(126, 214, 209, 0.12), rgba(255, 255, 255, 0.015)),
    rgba(10, 15, 26, 0.84);
}

.tier-card-max {
  background:
    linear-gradient(180deg, rgba(141, 182, 255, 0.12), rgba(255, 255, 255, 0.015)),
    rgba(10, 15, 26, 0.84);
}

.tier-symbol {
  font-size: 1.16rem;
  opacity: 0.8;
}

.faq-grid {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: 1.24rem;
  line-height: 1.1;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 26px;
  top: 24px;
  color: var(--teal);
  font-size: 1.3rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 16px 0 0;
  max-width: 56rem;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 44px;
}

.footer-copy {
  max-width: 36rem;
}

.subpage-shell {
  width: var(--subpage-width);
  margin: 0 auto;
  padding: 54px 0 72px;
}

.subpage-hero {
  display: grid;
  gap: 14px;
  overflow: hidden;
}

.subpage-hero::before {
  content: "";
  position: absolute;
  inset: auto -12% -44% auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141, 182, 255, 0.2), transparent 68%);
  filter: blur(14px);
  pointer-events: none;
}

.page-backlink {
  color: var(--teal);
  font-weight: 600;
}

.content-meta {
  font-size: 0.92rem;
}

.subpage-section {
  margin-top: 24px;
}

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

.compact-list h3 {
  margin: 0 0 8px;
  font-size: 1.14rem;
}

.channel-card .inline-link {
  margin-top: 12px;
}

.pricing-grid,
.checkout-grid,
.checkout-footer {
  display: grid;
  gap: 20px;
}

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

.pricing-card {
  position: relative;
  overflow: hidden;
}

.pricing-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(141, 182, 255, 0.34), transparent);
}

.pricing-badge,
.checkout-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(194, 212, 239, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.pricing-badge {
  margin-bottom: 18px;
}

.price-display {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 16px 0 10px;
}

.price-display strong {
  font-family: "Iowan Old Style", "Baskerville", "Palatino Linotype", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.04em;
}

.price-display span {
  color: var(--muted);
}

.feature-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted-strong);
}

.feature-list li {
  position: relative;
  padding-left: 18px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.64em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  box-shadow: 0 0 16px rgba(126, 214, 209, 0.45);
}

.pricing-card-muted {
  border-color: rgba(194, 212, 239, 0.08);
  background: rgba(255, 255, 255, 0.02);
  opacity: 0.72;
}

.pricing-card-muted::after {
  background: linear-gradient(90deg, transparent, rgba(194, 212, 239, 0.12), transparent);
}

.checkout-grid {
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.8fr);
  align-items: start;
}

.checkout-stack {
  display: grid;
  gap: 18px;
}

.checkout-form {
  display: grid;
  gap: 16px;
}

.checkout-form label {
  display: grid;
  gap: 8px;
  color: var(--muted-strong);
  font-size: 0.94rem;
}

.checkout-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(194, 212, 239, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
}

.checkout-form input:focus {
  outline: none;
  border-color: rgba(126, 214, 209, 0.5);
  box-shadow: 0 0 0 3px rgba(126, 214, 209, 0.12);
}

.checkout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button[disabled] {
  cursor: not-allowed;
  opacity: 0.45;
}

.checkout-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.checkout-status {
  display: none;
}

.checkout-status.is-visible {
  display: inline-flex;
}

.checkout-status-success {
  border-color: rgba(126, 214, 209, 0.28);
  background: rgba(126, 214, 209, 0.08);
  color: #dff7f3;
}

.checkout-status-warning {
  border-color: rgba(242, 197, 143, 0.24);
  background: rgba(242, 197, 143, 0.08);
  color: #ffe6c3;
}

.checkout-meta {
  display: grid;
  gap: 14px;
}

.meta-row {
  display: grid;
  gap: 6px;
}

.meta-label {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.meta-value {
  color: var(--text);
  word-break: break-all;
}

.checkout-footer {
  margin-top: 16px;
}

[data-motion="ok"] .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

@keyframes drift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (max-width: 1240px) {
  .hero-stage-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: auto;
    padding-top: 34px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero h1 {
    max-width: 5ch;
  }

  .hero-proofband {
    grid-template-columns: repeat(2, max-content);
  }

  .hero-visual {
    min-height: 480px;
  }

  .orb-panel {
    width: min(920px, 100%);
  }

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

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

  .constellation-shell,
  .details-band {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 980px) {
  .three-up,
  .compact-list,
  .pricing-grid,
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .two-up {
    grid-template-columns: 1fr;
  }

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

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

  .entry-dock-grid,
  .entry-dock-grid-apps,
  .entry-dock-grid-secondary {
    grid-template-columns: 1fr;
  }

  .visual-satellite {
    width: 46px;
    height: 46px;
  }

  .visual-satellite svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 780px) {
  .topbar,
  .section,
  .footer,
  .subpage-shell {
    width: min(100% - 28px, 1280px);
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 28px;
  }

  .nav {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding-top: 20px;
  }

  .hero-kicker::before {
    width: 28px;
  }

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

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

  .visual-satellite-top {
    top: 9%;
    right: 16%;
  }

  .visual-satellite-left {
    left: 6%;
    top: 38%;
  }

  .visual-satellite-right {
    right: 6%;
    top: 44%;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    max-width: 6ch;
    font-size: clamp(4rem, 15vw, 6rem);
  }

  .section-head h2,
  .subpage-hero h1,
  .constellation-intro h3 {
    font-size: clamp(1.9rem, 10vw, 2.9rem);
  }

  .panel-card,
  .protocol-card,
  .faq-item,
  .subpage-hero,
  .constellation-node {
    padding: 22px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .orb-panel {
    aspect-ratio: 1 / 1.08;
  }

  .mirror-sculpture {
    inset: 18% 10% 18%;
  }

  .mirror-drop-main {
    width: min(260px, 58%);
  }

  .mirror-drop-back {
    width: min(170px, 38%);
    transform: translate(-26%, 18%) rotate(-18deg);
  }

  .mirror-drop-front {
    width: min(134px, 28%);
    transform: translate(30%, 26%) rotate(18deg);
  }

  .entry-dock-group {
    padding: 14px;
  }

  .entry-chip {
    min-height: 92px;
    padding: 14px 16px;
  }

  .entry-chip-icon {
    width: 44px;
    height: 44px;
  }

  .orb-icon-rack {
    gap: 8px;
    padding: 10px 12px;
    bottom: 6%;
  }

  .orb-icon-token {
    width: 34px;
    height: 34px;
  }

  .visual-satellite {
    display: none;
  }

  .device-row {
    grid-template-columns: 1fr;
  }

  .device-row::before {
    display: none;
  }
}
