:root {
  --bg: #000;
  --bg-soft: #050505;
  --surface: #0b0b0b;
  --surface-2: #111;
  --line: rgba(255, 255, 255, 0.14);
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #fff;
  --muted: #b9b9b9;
  --dim: #737373;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
  --premium-glow: 0 0 34px rgba(255, 255, 255, 0.16), 0 0 92px rgba(255, 255, 255, 0.08);
  --signal-blue: rgba(135, 190, 255, 0.22);
  --signal-amber: rgba(255, 188, 92, 0.2);
  --signal-green: rgba(118, 255, 184, 0.18);
  --radius: 26px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.1), transparent 34%),
    var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  width: min(calc(100% - 32px), var(--max));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 18px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(18px);
  padding: 14px 20px;
}

.brand {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 8px;
}

.nav-links a,
.nav-cta {
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  justify-self: end;
  background: #fff;
  color: #000;
}

.section {
  padding: 132px 0;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), transparent),
    var(--bg-soft);
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 160px;
  overflow: clip;
}

.hero-grid,
.split-grid,
.final-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 36px;
  align-items: center;
}

.hero-copy,
.section-head,
.final-copy {
  display: grid;
  gap: 22px;
}

.hero-copy {
  position: relative;
  z-index: 0;
}

.system-panel {
  z-index: 2;
}

.hero-funnel-cta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
}

.hero-funnel-cta .button {
  min-width: min(100%, 360px);
}

.pill {
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  padding: 9px 13px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 900px;
  font-size: clamp(48px, 6.2vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

h2 {
  max-width: 820px;
  font-size: clamp(38px, 5.6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h3 {
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  border: 0;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 800;
  font-family: inherit;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.inert-button {
  cursor: default;
  pointer-events: none;
  user-select: none;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: #fff;
  color: #000;
  box-shadow:
    0 0 42px rgba(255, 255, 255, 0.24),
    inset 0 -10px 22px rgba(0, 0, 0, 0.12);
}

.button-primary:hover {
  box-shadow:
    0 0 54px rgba(255, 255, 255, 0.34),
    0 0 120px rgba(255, 255, 255, 0.12),
    inset 0 -10px 22px rgba(0, 0, 0, 0.16);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span {
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 10px 13px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.system-panel,
.compass-card,
.final-panel,
.info-card,
.route article,
.status-row article,
.access-stack article {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.01)),
    var(--surface);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.terminal-grid article,
.ecosystem-flow strong,
.compass-card,
.status-row article,
.route article,
.info-card,
.access-stack article {
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.012)),
    #010101;
  background-size: 24px 24px, 24px 24px, 100% 100%, 100% 100%;
}

.system-panel {
  position: relative;
  border-radius: 8px;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.012)),
    #030303;
}

.system-panel::before,
.system-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.system-panel::before {
  inset: -20%;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.18), transparent 24%),
    radial-gradient(circle at 50% 50%, transparent 0 31%, rgba(255, 255, 255, 0.11) 32%, transparent 34%),
    radial-gradient(circle at 50% 50%, transparent 0 42%, rgba(255, 255, 255, 0.075) 43%, transparent 45%);
  opacity: 0.7;
}

.system-panel::after {
  inset: 0;
  z-index: 4;
  border-radius: inherit;
  background:
    linear-gradient(120deg, transparent 0 36%, rgba(255, 255, 255, 0.08), transparent 64%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.22));
  mix-blend-mode: screen;
}

.panel-top {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.star-system {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: 390px;
  margin: 18px 0 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.12), transparent 42%),
    #010101;
  background-size: 28px 28px, 28px 28px, 100% 100%, 100% 100%;
}

.star-system::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 34%, rgba(0, 0, 0, 0.3)),
    radial-gradient(circle at 50% 50%, transparent 0 36%, rgba(0, 0, 0, 0.28) 74%);
  pointer-events: none;
}


.system-star-logo,
.system-star-fill {
  position: relative;
  grid-area: 1 / 1;
  width: min(100%, 430px);
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.system-star-logo {
  z-index: 2;
  filter:
    brightness(1.72)
    contrast(1.16)
    drop-shadow(0 0 16px rgba(255, 255, 255, 0.82))
    drop-shadow(0 0 60px rgba(255, 255, 255, 0.42))
    drop-shadow(0 0 120px rgba(255, 255, 255, 0.18));
}

.system-star-fill {
  z-index: 3;
  opacity: 0.52;
  mix-blend-mode: screen;
  filter:
    brightness(1.9)
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.86))
    drop-shadow(0 0 26px rgba(255, 255, 255, 0.62))
    drop-shadow(0 0 62px rgba(255, 255, 255, 0.36));
  animation: star-signal-pulse 1s ease-in-out infinite;
}

.terminal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.terminal-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 16px;
}

.terminal-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.16), transparent 46%);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.terminal-grid article:hover::after {
  opacity: 1;
}

.terminal-grid span,
.status-row span,
.route span,
.info-card span,
.process-card span {
  display: block;
  color: var(--dim);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.terminal-grid strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: clamp(20px, 3vw, 31px);
  font-variant-numeric: tabular-nums;
  line-height: 0.92;
  text-shadow: 0 0 22px rgba(255, 255, 255, 0.18);
}

.section-head {
  max-width: 880px;
  margin: 0 auto 46px;
  text-align: center;
  justify-items: center;
}

.section-head-left {
  margin: 0;
  text-align: left;
  justify-items: start;
}

.status-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.status-row article,
.route article,
.access-stack article {
  border-radius: 22px;
  padding: 20px;
}

.status-row strong {
  display: block;
  margin-top: 12px;
  font-size: 18px;
}

.route {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.route article {
  min-height: 142px;
  position: relative;
}

.route article::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  width: 16px;
  height: 1px;
  background: rgba(255, 255, 255, 0.32);
}

.route article:last-child::after {
  display: none;
}

.route strong {
  display: block;
  margin-top: 28px;
  font-size: 18px;
}

.route small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.section-closing {
  max-width: 680px;
  margin: 34px auto 0;
  color: var(--text);
  font-size: clamp(20px, 4vw, 34px);
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
}

.ecosystem-subtitle {
  max-width: 640px;
  margin: 0 auto 28px;
  color: var(--text);
  font-size: clamp(22px, 4.6vw, 38px);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-align: center;
}

.ecosystem-flow {
  display: grid;
  max-width: 520px;
  margin: 0 auto;
  justify-items: center;
  gap: 12px;
}

.ecosystem-flow strong {
  position: relative;
  overflow: hidden;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  text-align: center;
  box-shadow:
    var(--shadow),
    0 0 34px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.ecosystem-flow strong::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 16px rgba(255, 255, 255, 0.8),
    0 0 38px rgba(255, 255, 255, 0.24);
  transform: translateY(-50%);
}

.ecosystem-flow strong::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: translateX(-120%);
  animation: station-scan 5.6s ease-in-out infinite;
  pointer-events: none;
}

.ecosystem-flow span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
  line-height: 1;
  animation: flow-arrow-pulse 2.8s ease-in-out infinite;
}

.signal-layout {
  display: grid;
  min-height: auto;
  margin-bottom: 42px;
  align-content: center;
  justify-items: center;
  gap: 0;
  text-align: center;
}

.process-flow-bottom {
  margin-top: 34px;
}

.signal-closing {
  max-width: 620px;
  margin: 28px auto 0;
  color: var(--text);
  font-size: clamp(22px, 4.4vw, 38px);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-align: center;
}

.compass-card {
  --compass-orbit: 68%;
  --compass-radius: 34%;
  --outer-x: 41%;
  --outer-y: 10%;
  --axis-star-half: 34px;
  position: relative;
  display: grid;
  min-height: 480px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    var(--shadow),
    0 0 80px rgba(255, 255, 255, 0.08),
    inset 0 0 68px rgba(255, 255, 255, 0.045);
}

.compass-card::before,
.compass-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  pointer-events: none;
}

.compass-card::before {
  width: var(--compass-orbit);
  aspect-ratio: 1;
}

.compass-card::after {
  width: 84%;
  aspect-ratio: 1 / 0.46;
  transform: rotate(-13deg);
  animation: compass-ellipse-spin 34s linear infinite;
}

.compass-star-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: min(49%, 286px);
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
}

.compass-star-main,
.compass-star-main-fill {
  grid-area: 1 / 1;
  width: 100%;
}

.compass-star-main {
  filter:
    brightness(1.72)
    contrast(1.14)
    drop-shadow(0 0 12px rgba(255, 255, 255, 0.72))
    drop-shadow(0 0 48px rgba(255, 255, 255, 0.28));
}

.compass-star-main-fill {
  opacity: 0.48;
  mix-blend-mode: screen;
  filter:
    brightness(1.9)
    drop-shadow(0 0 10px rgba(255, 255, 255, 0.76))
    drop-shadow(0 0 42px rgba(255, 255, 255, 0.38));
  animation: compass-star-pulse 1.08s ease-in-out infinite;
}

.compass-orbit-points {
  position: absolute;
  inset: 0;
  z-index: 3;
  transform-origin: 50% 50%;
  animation: compass-orbit-spin 34s linear infinite;
  will-change: transform;
}

.axis {
  position: absolute;
  z-index: 1;
  width: 0;
  height: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.axis-content {
  position: absolute;
  transform-origin: 50% 50%;
  will-change: transform;
}

.axis-balance {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  animation: compass-orbit-counter 34s linear infinite;
  transform-box: border-box;
  will-change: transform;
}

.axis-star {
  position: relative;
  display: grid;
  width: 68px;
  aspect-ratio: 1;
  place-items: center;
  flex: 0 0 auto;
}

.compass-star-small,
.compass-star-small-fill {
  grid-area: 1 / 1;
  width: 100%;
}

.compass-star-small {
  filter:
    brightness(1.65)
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.72))
    drop-shadow(0 0 22px rgba(255, 255, 255, 0.28));
  pointer-events: none;
  user-select: none;
}

.compass-star-small-fill {
  opacity: 0.48;
  mix-blend-mode: screen;
  filter:
    brightness(1.9)
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.7))
    drop-shadow(0 0 22px rgba(255, 255, 255, 0.34));
  animation: compass-star-pulse 1.08s ease-in-out infinite;
}

.axis-n {
  top: calc(50% - var(--compass-radius));
  left: 50%;
  transform: translate(-50%, -50%);
}

.axis-n .axis-content {
  transform: translate(-50%, calc(var(--axis-star-half) * -1));
}

.axis-n .axis-balance {
  flex-direction: column;
  transform-origin: 50% var(--axis-star-half);
}

.axis-n .axis-star {
  transform: rotate(-8deg);
}

.axis-s {
  top: calc(50% + var(--compass-radius));
  left: 50%;
  transform: translate(-50%, -50%);
}

.axis-s .axis-content {
  transform: translate(-50%, calc(-100% + var(--axis-star-half)));
}

.axis-s .axis-balance {
  flex-direction: column-reverse;
  transform-origin: 50% calc(100% - var(--axis-star-half));
}

.axis-s .axis-star {
  transform: rotate(9deg);
}

.axis-w {
  left: calc(50% - var(--outer-x));
  top: calc(50% + var(--outer-y));
  transform: translate(-50%, -50%);
}

.axis-w .axis-content {
  transform: translate(calc(var(--axis-star-half) * -1), -50%);
}

.axis-w .axis-star {
  transform: rotate(-18deg);
}

.axis-w .axis-balance {
  transform-origin: var(--axis-star-half) 50%;
}

.axis-e {
  left: calc(50% + var(--outer-x));
  top: calc(50% - var(--outer-y));
  transform: translate(-50%, -50%);
}

.axis-e .axis-content {
  transform: translate(calc(-100% + var(--axis-star-half)), -50%);
}

.axis-e .axis-balance {
  flex-direction: row-reverse;
  transform-origin: calc(100% - var(--axis-star-half)) 50%;
}

.axis-e .axis-star {
  transform: rotate(16deg);
}

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

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

.card-grid.five {
  grid-template-columns: repeat(5, 1fr);
}

.info-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-radius: var(--radius);
  padding: 24px;
}

.info-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 255, 255, 0.11), transparent 34%),
    linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.045));
  pointer-events: none;
}

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

.compass-summary .info-card {
  position: relative;
  overflow: hidden;
  min-height: auto;
  border-radius: 14px;
  padding: 18px;
}

.compass-summary .info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.14), transparent 44%);
  pointer-events: none;
}

.compass-summary .info-card h3 {
  margin-top: 18px;
  color: #fff;
  font-size: 22px;
}

.compass-summary .info-card p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.45;
}

.compass-summary .info-card:nth-child(3) {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    var(--shadow),
    0 0 48px rgba(255, 255, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.info-card h3 {
  margin-top: 34px;
}

.info-card p {
  margin-top: 14px;
  font-size: 16px;
}

.territory {
  min-height: 250px;
}

.territory:nth-child(1) {
  box-shadow: var(--shadow), 0 0 46px var(--signal-green);
}

.territory:nth-child(2) {
  box-shadow: var(--shadow), 0 0 46px rgba(206, 168, 255, 0.16);
}

.territory:nth-child(3) {
  box-shadow: var(--shadow), 0 0 46px var(--signal-amber);
}

.territory:nth-child(4) {
  box-shadow: var(--shadow), 0 0 46px rgba(255, 255, 255, 0.13);
}

.territory-platform {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow:
    var(--shadow),
    0 0 54px var(--signal-blue),
    inset 0 0 44px rgba(255, 255, 255, 0.035);
}

.process-card {
  display: grid;
  width: min(100%, 560px);
  margin: 0 auto;
  justify-items: center;
  gap: 12px;
  padding: 0;
}

.process-card strong {
  position: relative;
  overflow: hidden;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.012)),
    #010101;
  background-size: 24px 24px, 24px 24px, 100% 100%, 100% 100%;
  padding: 22px 20px;
  color: #fff;
  font-size: clamp(24px, 5vw, 34px);
  line-height: 1;
  text-align: center;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.36);
}

.process-card strong::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 14px rgba(255, 255, 255, 0.8),
    0 0 34px rgba(255, 255, 255, 0.24);
  transform: translateY(-50%);
}

.process-card strong::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-120%);
  animation: station-scan 6.4s ease-in-out infinite;
  pointer-events: none;
}

.process-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  animation: flow-arrow-pulse 2.8s ease-in-out infinite;
}

.decision {
  min-height: 260px;
}

.decision:nth-child(1) {
  border-color: rgba(118, 255, 184, 0.28);
  box-shadow: var(--shadow), 0 0 44px var(--signal-green);
}

.decision:nth-child(2) {
  border-color: rgba(255, 188, 92, 0.32);
  box-shadow: var(--shadow), 0 0 44px var(--signal-amber);
}

.decision:nth-child(3) {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: var(--shadow), 0 0 44px rgba(255, 255, 255, 0.13);
}

.final-section {
  padding-bottom: 56px;
}

.final-panel {
  border-radius: 38px;
  padding: 54px;
}

.final-panel-minimal {
  grid-template-columns: 1fr;
  justify-items: center;
  min-height: min(760px, 84svh);
  align-content: center;
  gap: 22px;
  text-align: center;
  box-shadow:
    var(--shadow),
    0 0 96px rgba(255, 255, 255, 0.1),
    inset 0 0 82px rgba(255, 255, 255, 0.04);
}

.final-panel-minimal p {
  max-width: 620px;
}

.club-intro {
  color: var(--text);
  font-size: clamp(19px, 3vw, 28px);
  font-weight: 780;
  line-height: 1.22;
  letter-spacing: -0.035em;
}

.club-subtitle {
  color: var(--muted);
  font-size: clamp(17px, 2.4vw, 22px);
}

.final-panel-minimal .button {
  min-width: min(100%, 320px);
  min-height: 58px;
  font-size: 16px;
}

.membership-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.085), transparent 32%),
    var(--bg);
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.membership-card {
  position: relative;
  display: grid;
  grid-template-rows: 74px 176px minmax(76px, auto) minmax(64px, auto) 1fr 88px 58px;
  min-height: 790px;
  height: 100%;
  gap: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 78% 8%, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.012)),
    #010101;
  background-size: 24px 24px, 24px 24px, 100% 100%, 100% 100%, 100% 100%;
  padding: clamp(24px, 4vw, 38px);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.membership-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent 0 40%, rgba(255, 255, 255, 0.07), transparent 62%);
  opacity: 0.6;
  pointer-events: none;
}

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

.membership-card-featured {
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow:
    var(--shadow),
    0 0 72px rgba(255, 255, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.membership-card-top {
  display: flex;
  min-height: 74px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.membership-card-top span,
.membership-best small {
  color: var(--dim);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.membership-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.membership-badges em {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 7px 9px;
  color: #000;
  background: #fff;
  font-size: 10px;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 0 34px rgba(255, 255, 255, 0.24);
}

.membership-price {
  display: grid;
  gap: 7px;
  align-content: start;
  min-height: 176px;
}

.membership-price del {
  width: fit-content;
  color: var(--dim);
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 850;
  line-height: 1;
  text-decoration-color: rgba(255, 255, 255, 0.62);
  text-decoration-thickness: 2px;
}

.membership-price strong {
  color: #fff;
  font-size: clamp(72px, 9.2vw, 118px);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: -0.075em;
  text-shadow:
    0 0 28px rgba(255, 255, 255, 0.18),
    0 0 76px rgba(255, 255, 255, 0.08);
}

.membership-price small {
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-disclaimer {
  max-width: 280px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

.membership-card > p {
  max-width: 440px;
  color: var(--text);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 780;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.membership-card > .membership-support {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0;
  align-self: start;
}

.membership-list {
  display: grid;
  align-content: start;
  gap: 9px;
}

.membership-list span {
  position: relative;
  display: flex;
  min-height: 34px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.32);
  padding: 9px 12px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.2;
}

.membership-list span::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 12px rgba(255, 255, 255, 0.78),
    0 0 28px rgba(255, 255, 255, 0.22);
}

.membership-best {
  display: grid;
  gap: 8px;
  align-content: start;
}

.membership-best p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.4;
}

.membership-card .button {
  width: 100%;
  height: 58px;
  min-height: 58px;
  align-self: end;
  margin-top: 0;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-align: center;
}

.membership-trust-message {
  max-width: 680px;
  margin: 34px auto 0;
  color: var(--muted);
  font-size: clamp(18px, 3vw, 27px);
  font-weight: 760;
  line-height: 1.18;
  letter-spacing: -0.035em;
  text-align: center;
}

.membership-closing {
  max-width: 620px;
  margin: 34px auto 0;
  color: var(--text);
  font-size: clamp(22px, 4vw, 38px);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-align: center;
}

.access-stack {
  display: grid;
  gap: 14px;
}

.access-stack article {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: space-between;
}

.access-stack strong {
  font-size: 22px;
}

.access-stack span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.access-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 50% -12%, rgba(255, 255, 255, 0.12), transparent 34%),
    #000;
}

.access-shell {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 42px 0;
}

.access-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 76% 12%, rgba(255, 255, 255, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
    #030303;
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.access-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 34px;
  align-items: center;
  min-height: calc(100svh - 84px);
  padding: clamp(72px, 8vw, 112px) 0 clamp(42px, 6vw, 72px);
}

.access-copy {
  display: grid;
  gap: 18px;
}

.access-copy h1 {
  max-width: 720px;
}

.access-copy p {
  max-width: 640px;
}

.access-lead {
  color: #fff;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.access-actions .button {
  min-width: min(100%, 230px);
  min-height: 58px;
  padding: 0 24px;
}

.access-system-panel {
  align-self: center;
  justify-self: end;
  display: grid;
  align-content: center;
  width: min(100%, 520px);
  min-height: auto;
  aspect-ratio: 1;
}

.access-system-panel .panel-top {
  justify-content: center;
}

.access-system-panel .panel-top span {
  color: #fff;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: none;
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.62),
    0 0 52px rgba(255, 255, 255, 0.28);
}

.access-star-system {
  margin-bottom: 0;
}

.access-star-system .system-star-logo,
.access-star-system .system-star-fill {
  width: min(88%, 360px);
}

.access-star-system .system-star-logo {
  filter:
    brightness(1.58)
    contrast(1.08)
    drop-shadow(0 0 12px rgba(255, 255, 255, 0.66))
    drop-shadow(0 0 44px rgba(255, 255, 255, 0.25));
}

.access-star-system .system-star-fill {
  opacity: 0.36;
  filter:
    brightness(1.72)
    drop-shadow(0 0 9px rgba(255, 255, 255, 0.64))
    drop-shadow(0 0 30px rgba(255, 255, 255, 0.32));
  animation: access-star-soft-pulse 2.35s ease-in-out infinite;
}

.access-section {
  margin-top: 18px;
  padding: clamp(24px, 5vw, 46px);
}

.access-section .section-head {
  margin-bottom: 26px;
}

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

.access-resource-card {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 190px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.052) 1px, transparent 1px),
    radial-gradient(circle at 80% 8%, rgba(255, 255, 255, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
    rgba(0, 0, 0, 0.35);
  background-size: 22px 22px, 22px 22px, 100% 100%, 100% 100%, 100% 100%;
  padding: 22px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.access-resource-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 8%, rgba(255, 255, 255, 0.12), transparent 38%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.access-resource-card:hover {
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: 0 0 42px rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.access-resource-card:hover::after {
  opacity: 1;
}

.access-resource-card span {
  color: var(--dim);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.access-resource-card strong {
  color: #fff;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.access-resource-card p {
  font-size: 15px;
}

.access-note {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.access-note h2 {
  max-width: 720px;
}

.access-note p {
  max-width: 560px;
}

.access-note-copy {
  color: var(--muted);
  font-size: clamp(17px, 2.4vw, 22px);
  line-height: 1.55;
}

.access-final-line {
  color: #fff;
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.access-footer {
  padding: 28px 0 8px;
  color: var(--dim);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.45;
  text-align: center;
}

@keyframes star-signal-pulse {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(0.992);
  }
  50% {
    opacity: 0.96;
    transform: scale(1.015);
  }
}

@keyframes access-star-soft-pulse {
  0%,
  100% {
    opacity: 0.28;
    transform: scale(0.998);
  }
  50% {
    opacity: 0.62;
    transform: scale(1.006);
  }
}

@keyframes station-scan {
  0%,
  58% {
    transform: translateX(-120%);
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

@keyframes flow-arrow-pulse {
  0%,
  100% {
    opacity: 0.46;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(2px);
  }
}

@keyframes compass-star-pulse {
  0%,
  100% {
    opacity: 0.32;
    transform: scale(0.98);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.04);
  }
}

@keyframes compass-orbit-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes compass-orbit-counter {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

@keyframes compass-ellipse-spin {
  from {
    transform: rotate(-13deg);
  }
  to {
    transform: rotate(347deg);
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .split-grid,
  .final-panel,
  .route,
  .card-grid.five,
  .membership-grid {
    grid-template-columns: 1fr;
  }

  .route article::after {
    display: none;
  }

  .card-grid.three,
  .status-row {
    grid-template-columns: 1fr;
  }

  .membership-card-featured {
    transform: none;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 12px;
    width: calc(100% - 20px);
    padding: 13px 18px;
  }

  .section {
    padding: 84px 0;
  }

  .hero {
    min-height: 100svh;
    align-items: flex-start;
    padding-top: 86px;
    padding-bottom: 26px;
  }

  .hero-grid {
    position: relative;
    min-height: calc(100svh - 112px);
    gap: 16px;
    align-content: start;
  }

  .hero-copy {
    position: relative;
    z-index: 1;
    gap: 0;
    margin-bottom: 10px;
  }

  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  h1 {
    font-size: 36px;
    line-height: 1.02;
    letter-spacing: -0.052em;
  }

  h2 {
    font-size: 36px;
  }

  p {
    font-size: 16px;
  }

  .button,
  .action-row {
    width: 100%;
  }

  .system-panel {
    position: relative;
    z-index: 2;
    margin-top: 0;
    padding: 14px;
    border-radius: 8px;
  }

  .final-panel {
    padding: 20px;
    border-radius: 22px;
  }

  .final-panel-minimal {
    min-height: calc(100svh - 112px);
    gap: 18px;
  }

  .final-panel-minimal .button {
    width: 100%;
  }

  .membership-card {
    min-height: auto;
    grid-template-rows: auto auto auto auto auto auto 58px;
    gap: 20px;
    padding: 22px;
  }

  .membership-card-top {
    display: grid;
    min-height: auto;
    align-items: start;
  }

  .membership-badges {
    justify-content: flex-start;
  }

  .membership-price strong {
    font-size: 78px;
  }

  .star-system {
    min-height: 226px;
    margin: 12px 0 0;
  }

  .system-star-logo,
  .system-star-fill {
    width: min(100%, 276px);
  }

  .hero-funnel-cta .button {
    width: 100%;
  }

  .hero-funnel-cta {
    align-self: end;
    margin-top: auto;
    padding-top: 14px;
  }

  .terminal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .terminal-grid article {
    display: grid;
    min-height: 66px;
    align-content: center;
    justify-items: center;
    border-radius: 12px;
    padding: 11px 10px;
    text-align: center;
  }

  .terminal-grid strong {
    margin-top: 6px;
    font-size: 18px;
  }

  .ecosystem-flow {
    gap: 10px;
  }

  .ecosystem-flow strong {
    padding: 16px 18px;
    font-size: 21px;
  }

  .signal-layout {
    min-height: auto;
    margin-bottom: 28px;
    gap: 0;
  }

  .process-flow-bottom {
    margin-top: 26px;
  }

  .process-card {
    width: 100%;
    gap: 10px;
    padding: 14px;
  }

  .process-card strong {
    padding: 18px;
  }

  .compass-card {
    --compass-orbit: 70%;
    --compass-radius: 35%;
    --outer-x: 39%;
    --outer-y: 9%;
    --axis-star-half: 24px;
    min-height: 340px;
  }

  .compass-star-core {
    width: min(49.4%, 179px);
  }

  .axis-balance {
    gap: 3px;
  }

  .axis {
    font-size: 9.5px;
    letter-spacing: 0.075em;
  }

  .axis-star {
    width: 48px;
  }

  .compass-summary .info-card {
    padding: 15px;
  }

  .access-stack article {
    display: grid;
    gap: 8px;
    justify-content: stretch;
  }
}

@media (max-width: 900px) {
  .access-hero-panel,
  .access-card-list {
    grid-template-columns: 1fr;
  }

  .access-hero-panel {
    min-height: auto;
  }

  .access-system-panel {
    justify-self: stretch;
    width: 100%;
    aspect-ratio: auto;
  }
}

@media (max-width: 720px) {
  .access-shell {
    width: min(calc(100% - 28px), 1080px);
    padding: 18px 0;
  }

  .access-hero-panel {
    gap: 22px;
    padding: 52px 0 18px;
  }

  .access-copy {
    gap: 14px;
  }

  .access-copy h1 {
    font-size: 36px;
  }

  .access-actions .button {
    width: 100%;
  }

  .access-system-panel {
    padding: 14px;
  }

  .access-star-system {
    min-height: 250px;
    margin: 12px 0 0;
  }

  .access-star-system .system-star-logo,
  .access-star-system .system-star-fill {
    width: min(100%, 280px);
  }

  .access-section {
    padding: 20px;
  }

  .access-resource-card {
    min-height: 150px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .terminal-grid article,
  .ecosystem-flow strong,
  .compass-card,
  .status-row article,
  .route article,
  .info-card,
  .process-card,
  .access-stack article,
  .star-system {
    animation: none;
  }

  .ecosystem-flow strong::after,
  .ecosystem-flow span,
  .process-card strong::after,
  .process-card span,
  .compass-orbit-points,
  .axis-balance,
  .compass-card::after,
  .system-star-fill,
  .compass-star-main-fill,
  .compass-star-small-fill {
    animation: none;
  }
}
