@font-face {
  font-family: "StationFont";
  src:
    local("Nebula Regular"),
    local("Nebula"),
    url("../assets/fonts/StationFont-Regular.ttf") format("truetype") ;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "StationFont";
  src:
    local("Nebula Bold"),
    local("Nebula-Bold"),
    url("../assets/fonts/StationFont-Bold.ttf") format("truetype") ;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "StationFont Hollow";
  src:
    local("Nebula Hollow"),
    local("Nebula-Hollow"),
    url("../assets/fonts/StationFont-Hollow.ttf") format("truetype") ;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nebula";
  src:
    url("../assets/fonts/StationFont-Regular.ttf") format("truetype") ;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nebula";
  src:
    url("../assets/fonts/StationFont-Bold.ttf") format("truetype") ;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nebula Hollow";
  src:
    url("../assets/fonts/StationFont-Hollow.ttf") format("truetype") ;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #08090b;
  --panel: rgba(18, 20, 24, 0.78);
  --panel-solid: #111419;
  --line: rgba(219, 226, 224, 0.14);
  --text: #f2f0e8;
  --muted: #a9b0ad;
  --teal: #a9c86d;
  --amber: #9fb7ff;
  --plum: #b78ce8;
  --sky-blue: #0b78b6;
  --sky-blue-bright: #6ccdf5;
  --sky-blue-soft: rgba(11, 120, 182, 0.18);
  --smoke: rgba(242, 240, 232, 0.07);
  --shadow: rgba(0, 0, 0, 0.55);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -20%, rgba(169, 200, 109, 0.14), transparent 36rem),
    linear-gradient(135deg, #08090b 0%, #101114 48%, #08090b 100%);
}

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

button {
  cursor: pointer;
}

a {
  color: inherit;
}

#field {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.52;
  pointer-events: none;
}

.shell {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 5;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.topbar::before {
  position: absolute;
  left: 50%;
  width: 100vw;
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
  z-index: -1;
}

.topbar::before {
  top: -24px;
  bottom: 0;
  background: rgba(8, 9, 11, 0.98);
  box-shadow: 0 1px 0 rgba(242, 240, 232, 0.07);
}

.brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  width: 52px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(169, 200, 109, 0.18));
}

.brand-name {
  position: relative;
  display: inline-block;
  overflow: hidden;
  max-width: 52vw;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #f1eee7;
  font-family: "StationFont", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(169, 200, 109, 0.14);
}

.glitch-text::before,
.glitch-text::after {
  display: none;
  content: "";
  pointer-events: none;
}

.glitch-text.is-glitching {
  animation: glitch-core 460ms steps(2, end);
}

@keyframes glitch-core {
  0%,
  100% {
    transform: translate(0, 0);
    filter: none;
    text-shadow: 0 0 20px rgba(169, 200, 109, 0.14);
  }
  18% {
    transform: translate(-1px, 0);
    filter: brightness(1.2);
    text-shadow:
      2px 0 0 rgba(169, 200, 109, 0.72),
      -2px 0 0 rgba(183, 140, 232, 0.48);
  }
  32% {
    transform: translate(1px, 0);
    text-shadow:
      -2px 0 0 rgba(169, 200, 109, 0.62),
      1px 0 0 rgba(159, 183, 255, 0.48);
  }
  48% {
    transform: translate(0, 0);
    text-shadow: 0 0 20px rgba(169, 200, 109, 0.14);
  }
  62% {
    transform: translate(2px, 0);
    text-shadow:
      3px 0 0 rgba(169, 200, 109, 0.44),
      -1px 0 0 rgba(183, 140, 232, 0.42);
  }
}

@keyframes glitch-slice-a {
  0%,
  100% {
    clip-path: inset(0 0 100% 0);
  }
  16% {
    clip-path: inset(12% 0 68% 0);
  }
  34% {
    clip-path: inset(72% 0 8% 0);
  }
  54% {
    clip-path: inset(36% 0 43% 0);
  }
}

@keyframes glitch-slice-b {
  0%,
  100% {
    clip-path: inset(100% 0 0 0);
  }
  20% {
    clip-path: inset(58% 0 22% 0);
  }
  42% {
    clip-path: inset(4% 0 78% 0);
  }
  64% {
    clip-path: inset(44% 0 34% 0);
  }
}

.site-nav,
.station-nav {
  display: flex;
  gap: 8px;
  padding: 5px;
  border: 1px solid var(--line);
  background: rgba(8, 9, 11, 0.74);
}

.site-nav {
  position: relative;
  z-index: 1;
  align-items: center;
  border: 0;
  background: transparent;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  color: var(--muted);
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.site-nav .active-link {
  color: var(--text);
}

.site-nav .nav-cta {
  color: var(--bg);
  background: var(--teal);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible,
.site-nav .nav-cta.active-link {
  color: var(--bg);
  background: #c0dd82;
}

.nav-item,
.filter {
  border: 0;
  color: var(--muted);
  background: transparent;
  min-height: 38px;
  padding: 0 14px;
}

.nav-item.active,
.filter.active {
  color: var(--bg);
  background: var(--teal);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 360px);
  align-items: center;
  gap: 42px;
  padding: 42px 0 34px;
}

.eyebrow,
.panel-kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-family: "StationFont", sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-family: "StationFont Hollow", "StationFont", sans-serif;
  font-size: clamp(3rem, 6.2vw, 5.45rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.intro {
  max-width: 720px;
  margin-bottom: 34px;
  color: #d5d5ce;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.identity-panel,
.access-panel,
.workspace,
.compose,
.transit,
.ritual,
.card {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 24px 80px var(--shadow);
  backdrop-filter: blur(18px);
}

.identity-panel {
  display: inline-grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 16px;
  padding: 12px;
}

.label {
  color: var(--muted);
  font-size: 0.82rem;
}

#maskName {
  color: var(--amber);
  font-family: "StationFont", sans-serif;
  font-size: 0.95rem;
}

.identity-panel button,
.primary-action,
.secondary-action,
.compose button,
.inline-controls button,
.answer-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  min-height: 44px;
  border: 1px solid rgba(169, 200, 109, 0.36);
  padding: 0 18px;
  color: var(--text);
  background: rgba(169, 200, 109, 0.1);
  text-decoration: none;
}

.secondary-action {
  width: fit-content;
  justify-self: start;
  margin-top: 4px;
}

.identity-panel button:hover,
.primary-action:hover,
.secondary-action:hover,
.secondary-action:focus-visible,
.compose button:hover,
.inline-controls button:hover,
.answer-action:hover {
  color: var(--bg);
  background: var(--teal);
}

button:disabled,
textarea:disabled,
.answer-action:disabled,
.primary-action.is-disabled,
.secondary-action.is-disabled {
  cursor: not-allowed;
  opacity: 0.56;
}

button:disabled:hover,
.answer-action:disabled:hover,
.primary-action.is-disabled:hover,
.secondary-action.is-disabled:hover {
  color: var(--text);
  background: rgba(169, 200, 109, 0.1);
}

.access-panel {
  padding: 28px;
}

.access-panel .panel-kicker {
  color: var(--sky-blue-bright);
}

.access-panel h2 {
  margin-bottom: 16px;
  font-family: "StationFont", sans-serif;
  font-size: 1.42rem;
  font-weight: 400;
}

.access-panel p:not(.panel-kicker) {
  color: var(--muted);
  line-height: 1.7;
}

.primary-action {
  width: 100%;
  margin-top: 16px;
}

.access-panel .primary-action {
  border-color: rgba(108, 205, 245, 0.45);
  background: var(--sky-blue-soft);
}

.access-panel .primary-action:hover,
.access-panel .primary-action:focus-visible {
  color: var(--bg);
  background: var(--sky-blue-bright);
}

.public-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: 48px;
  border-top: 1px solid var(--line);
  padding: 58px 0;
  scroll-margin-top: 92px;
}

.section-copy h2 {
  max-width: 430px;
  margin-bottom: 0;
  font-family: "StationFont", sans-serif;
  font-size: clamp(1.7rem, 4vw, 3.1rem);
  font-weight: 400;
  line-height: 1.05;
}

.section-note {
  max-width: 430px;
  margin: 22px 0 18px;
  color: #d2d1ca;
  line-height: 1.75;
}

.sky-status {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 16px;
  border: 1px solid rgba(108, 205, 245, 0.48);
  padding: 8px 12px;
  color: var(--bg);
  background: var(--sky-blue-bright);
  font-family: "StationFont", sans-serif;
  font-size: 0.74rem;
  text-transform: uppercase;
}

.manifesto {
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  align-items: center;
}

.manifesto-image {
  position: relative;
  align-self: stretch;
  min-height: 430px;
  margin: 0;
  border: 1px solid var(--line);
  overflow: hidden;
  background: rgba(18, 20, 24, 0.72);
  box-shadow: 0 24px 80px var(--shadow);
}

.manifesto-image::after {
  position: absolute;
  inset: 0;
  content: "";
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.38);
  pointer-events: none;
}

.manifesto-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.manifesto-content {
  display: grid;
  gap: 24px;
}

.manifesto-content .section-copy h2 {
  max-width: 760px;
}

.manifesto-text {
  display: grid;
  gap: 18px;
  max-width: 760px;
}

.manifesto-text p,
.membership-copy p,
.chamber p {
  margin-bottom: 0;
  color: #d2d1ca;
  font-size: 1.02rem;
  line-height: 1.75;
}

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

.chamber {
  min-height: 240px;
  border: 1px solid var(--line);
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(169, 200, 109, 0.08), transparent),
    rgba(18, 20, 24, 0.64);
  backdrop-filter: blur(18px);
}

.chamber span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--amber);
  font-family: "StationFont", sans-serif;
  font-size: 0.8rem;
}

.chamber h3 {
  margin-bottom: 14px;
  font-family: "StationFont", sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
}

.membership-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  align-items: stretch;
}

.membership-copy {
  border-left: 1px solid rgba(169, 200, 109, 0.35);
  padding-left: 22px;
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--teal);
  font-family: "StationFont", sans-serif;
  font-size: 0.82rem;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--amber);
}

.article-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 68px 0 80px;
}

.article-page h1 {
  max-width: 880px;
  margin-bottom: 34px;
}

.article-body {
  display: grid;
  gap: 22px;
  border-left: 1px solid rgba(169, 200, 109, 0.35);
  padding-left: clamp(20px, 4vw, 44px);
}

.article-body p {
  max-width: 760px;
  margin-bottom: 0;
  color: #ddd9d0;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.85;
}

.article-page .text-link {
  margin-top: 32px;
}

.private-lab-page,
.sky-launch-page {
  max-width: 1120px;
}

.sky-launch-hero {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 52px);
  align-items: stretch;
}

.sky-launch-visual {
  margin: 0;
  border: 1px solid rgba(242, 240, 232, 0.12);
  min-height: 430px;
  overflow: hidden;
  background: rgba(242, 240, 232, 0.06);
  box-shadow: 0 24px 80px var(--shadow);
}

.sky-launch-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
}

.manifesto-page {
  max-width: 1120px;
}

.manifesto-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.72fr);
  align-items: stretch;
  gap: 28px;
  margin-bottom: 38px;
}

.manifesto-hero-copy {
  display: grid;
  align-content: center;
  border: 1px solid var(--line);
  padding: clamp(22px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(108, 205, 245, 0.08), transparent 40%),
    rgba(18, 20, 24, 0.72);
  box-shadow: 0 24px 80px var(--shadow);
  backdrop-filter: blur(18px);
}

.manifesto-hero-copy h1 {
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 4vw, 3.9rem);
  line-height: 1.02;
}

.manifesto-lede,
.manifesto-charge,
.manifesto-block p,
.manifesto-final p {
  margin-bottom: 0;
  color: #ddd9d0;
  font-size: clamp(1.02rem, 1.45vw, 1.16rem);
  line-height: 1.82;
}

.manifesto-charge {
  margin-top: 24px;
  color: var(--sky-blue-bright);
  font-family: "StationFont", sans-serif;
  font-size: clamp(1rem, 1.7vw, 1.28rem);
  line-height: 1.45;
  text-transform: uppercase;
}

.manifesto-hero-image,
.manifesto-wide-image,
.manifesto-inline-image {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  overflow: hidden;
  background: rgba(242, 240, 232, 0.04);
  box-shadow: 0 24px 80px var(--shadow);
}

.manifesto-hero-image::after,
.manifesto-wide-image::after,
.manifesto-inline-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mix-blend-mode: screen;
  opacity: 0.16;
  pointer-events: none;
}

.manifesto-hero-image img,
.manifesto-wide-image img,
.manifesto-inline-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.manifesto-hero-image img {
  min-height: 520px;
}

.manifesto-flow {
  display: grid;
  gap: 28px;
}

.manifesto-block {
  border-left: 1px solid rgba(108, 205, 245, 0.36);
  padding-left: clamp(20px, 4vw, 44px);
}

.manifesto-index {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--sky-blue-bright);
  font-family: "StationFont", sans-serif;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.manifesto-block h2,
.manifesto-final h2 {
  max-width: 760px;
  margin-bottom: 16px;
  font-family: "StationFont", sans-serif;
  font-size: clamp(1.35rem, 3vw, 2.35rem);
  font-weight: 400;
  line-height: 1.12;
  text-transform: uppercase;
}

.manifesto-block p {
  max-width: 820px;
}

.manifesto-block p + p {
  margin-top: 18px;
}

.manifesto-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  align-items: stretch;
  gap: 24px;
}

.manifesto-split.reverse {
  grid-template-columns: minmax(240px, 0.36fr) minmax(0, 1fr);
}

.signal-interface,
.station-axiom {
  position: relative;
  border: 1px solid rgba(108, 205, 245, 0.24);
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(108, 205, 245, 0.08), transparent),
    rgba(18, 20, 24, 0.72);
  box-shadow: 0 24px 80px var(--shadow);
  overflow: hidden;
}

.signal-interface::before,
.station-axiom::before {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(242, 240, 232, 0.08);
  content: "";
  pointer-events: none;
}

.signal-interface span,
.station-axiom span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--sky-blue-bright);
  font-family: "StationFont", sans-serif;
  font-size: 0.74rem;
  text-transform: uppercase;
}

.interface-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.interface-grid i {
  position: relative;
  min-height: 72px;
  border: 1px solid rgba(242, 240, 232, 0.12);
  background:
    radial-gradient(circle at 50% 50%, rgba(108, 205, 245, 0.08), transparent 55%),
    repeating-linear-gradient(0deg, rgba(242, 240, 232, 0.1) 0 1px, transparent 1px 10px);
  overflow: hidden;
}

.interface-grid svg {
  display: block;
  width: 100%;
  height: 72px;
}

.gridline,
.scope-line,
.dna-line,
.rung,
.orbit-ring {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.gridline {
  stroke: rgba(242, 240, 232, 0.12);
  stroke-width: 1;
}

.scope-line,
.dna-line {
  stroke: var(--sky-blue-bright);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  filter: drop-shadow(0 0 5px rgba(108, 205, 245, 0.42));
  stroke-dasharray: 150;
  stroke-dashoffset: 150;
  animation: trace-line 4.8s ease-in-out infinite;
}

.scope-line.medium {
  animation-duration: 5.6s;
}

.scope-line.fast {
  animation-duration: 3.4s;
}

.scope-line.ghost {
  opacity: 0.36;
  animation-delay: -1.8s;
}

.dna-line.left {
  animation: dna-shift-left 5.2s ease-in-out infinite;
}

.dna-line.right {
  animation: dna-shift-right 5.2s ease-in-out infinite;
}

.rung {
  stroke: rgba(108, 205, 245, 0.45);
  stroke-width: 1.4;
  animation: rung-pulse 2.6s ease-in-out infinite;
}

.signal-dot,
.orbit-dot {
  fill: var(--sky-blue-bright);
  filter: drop-shadow(0 0 6px rgba(108, 205, 245, 0.55));
}

.signal-dot {
  animation: dot-travel 4.8s ease-in-out infinite;
}

.orbit-ring {
  stroke: rgba(108, 205, 245, 0.34);
  stroke-width: 1.4;
}

.orbit-dot.one {
  animation: orbit-one 5s linear infinite;
}

.orbit-dot.two {
  animation: orbit-two 5s linear infinite;
}

.orbit-dot.three {
  animation: orbit-three 5s linear infinite;
}

.signal-interface p {
  margin-bottom: 0;
  color: #d2d1ca;
  font-family: "StationFont", sans-serif;
  font-size: 0.82rem;
  line-height: 1.6;
  text-transform: uppercase;
}

.station-axiom {
  display: grid;
  align-content: center;
  min-height: 260px;
}

.station-axiom strong {
  color: var(--text);
  font-family: "StationFont Hollow", "StationFont", sans-serif;
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 400;
  line-height: 0.92;
  text-transform: uppercase;
}

.manifesto-wide-image img {
  max-height: 620px;
  object-position: center 58%;
}

.manifesto-inline-image {
  width: min(620px, 100%);
  justify-self: stretch;
}

.manifesto-inline-image img {
  aspect-ratio: 1;
}

.manifesto-final {
  display: grid;
  justify-items: start;
  border-left: 1px solid rgba(108, 205, 245, 0.36);
  padding: 8px 0 8px clamp(20px, 4vw, 44px);
}

.manifesto-final .panel-kicker {
  color: var(--sky-blue-bright);
}

.manifesto-final .primary-action {
  width: fit-content;
  min-width: min(360px, 100%);
  border-color: rgba(108, 205, 245, 0.45);
  background: var(--sky-blue-soft);
}

.manifesto-final .primary-action:hover,
.manifesto-final .primary-action:focus-visible {
  color: var(--bg);
  background: var(--sky-blue-bright);
}

.random-shop {
  border-top: 1px solid var(--line);
  padding-top: 34px;
}

.random-shop-head {
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: 24px;
  margin-bottom: 18px;
}

.random-shop-head h2 {
  max-width: 520px;
  margin-bottom: 0;
  font-family: "StationFont", sans-serif;
  font-size: clamp(1.2rem, 2.3vw, 1.8rem);
  font-weight: 400;
  text-align: right;
  text-transform: uppercase;
}

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

.random-shop-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid rgba(242, 240, 232, 0.12);
  background:
    linear-gradient(180deg, rgba(108, 205, 245, 0.06), transparent 38%),
    rgba(18, 20, 24, 0.66);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.random-shop-card figure {
  position: relative;
  margin: 0;
  border-bottom: 1px solid rgba(242, 240, 232, 0.12);
  background: rgba(242, 240, 232, 0.04);
}

.random-shop-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.random-shop-card > div {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px;
}

.random-shop-card span {
  color: var(--sky-blue-bright);
  font-family: "StationFont", sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.random-shop-card h3 {
  margin-bottom: 0;
  font-family: "StationFont", sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}

.random-shop-card p {
  margin-bottom: 0;
  color: #d2d1ca;
  font-size: 0.94rem;
  line-height: 1.55;
}

.random-shop-card .price {
  color: var(--teal);
  font-family: "StationFont", sans-serif;
  font-size: 0.78rem;
}

.random-shop-card .secondary-action {
  width: 100%;
  margin-top: 4px;
}

@keyframes trace-line {
  0% {
    stroke-dashoffset: 150;
    opacity: 0.28;
  }
  42%,
  74% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: -150;
    opacity: 0.32;
  }
}

@keyframes dot-travel {
  0%,
  100% {
    transform: translate(-34px, 3px);
    opacity: 0;
  }
  28%,
  72% {
    opacity: 1;
  }
  50% {
    transform: translate(24px, -18px);
  }
}

@keyframes dna-shift-left {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
}

@keyframes dna-shift-right {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-10px);
  }
}

@keyframes rung-pulse {
  0%,
  100% {
    opacity: 0.26;
  }
  50% {
    opacity: 0.85;
  }
}

@keyframes orbit-one {
  from {
    transform: rotate(0deg);
    transform-origin: 50px 35px;
  }
  to {
    transform: rotate(360deg);
    transform-origin: 50px 35px;
  }
}

@keyframes orbit-two {
  from {
    transform: rotate(120deg);
    transform-origin: 50px 35px;
  }
  to {
    transform: rotate(480deg);
    transform-origin: 50px 35px;
  }
}

@keyframes orbit-three {
  from {
    transform: rotate(240deg);
    transform-origin: 50px 35px;
  }
  to {
    transform: rotate(600deg);
    transform-origin: 50px 35px;
  }
}

.chamber-previews {
  display: grid;
  gap: 28px;
  margin-top: 34px;
}

.chamber-preview {
  border: 1px solid var(--line);
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(169, 200, 109, 0.07), transparent 36%),
    rgba(18, 20, 24, 0.72);
  box-shadow: 0 24px 80px var(--shadow);
  backdrop-filter: blur(18px);
}

.ritual-blueprint {
  margin-top: 34px;
  border: 1px solid var(--line);
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(169, 200, 109, 0.07), transparent 36%),
    rgba(18, 20, 24, 0.72);
  box-shadow: 0 24px 80px var(--shadow);
  backdrop-filter: blur(18px);
}

.ritual-blueprint > p {
  max-width: 760px;
  margin-bottom: 22px;
  color: #d2d1ca;
  line-height: 1.75;
}

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

.ritual-steps article {
  border: 1px solid rgba(242, 240, 232, 0.12);
  padding: 18px;
  background: rgba(242, 240, 232, 0.04);
}

.ritual-steps span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--amber);
  font-family: "StationFont", sans-serif;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.ritual-steps p {
  margin-bottom: 0;
  color: #d2d1ca;
  line-height: 1.6;
}

.preview-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.preview-head span {
  color: var(--amber);
  font-family: "StationFont", sans-serif;
  font-size: 0.82rem;
}

.preview-head h2 {
  margin-bottom: 0;
  font-family: "StationFont", sans-serif;
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  font-weight: 400;
}

.preview-question-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.preview-only {
  margin-top: 16px;
  margin-bottom: 0;
}

.membership-steps {
  display: grid;
  gap: 10px;
}

.membership-steps span {
  display: flex;
  align-items: center;
  min-height: 56px;
  border: 1px solid var(--line);
  padding: 0 18px;
  color: #e3dfd5;
  background: rgba(242, 240, 232, 0.05);
}

.product-section {
  margin-top: 46px;
}

.work-with-me-hero {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 52px);
  align-items: stretch;
}

.work-with-me-visual {
  margin: 0;
  border: 1px solid rgba(242, 240, 232, 0.12);
  min-height: 430px;
  overflow: hidden;
  background: rgba(242, 240, 232, 0.06);
  box-shadow: 0 24px 80px var(--shadow);
}

.work-with-me-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
}

.v1-hidden {
  display: none;
}

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

.product-category-head.with-category-visual {
  display: grid;
  grid-template-columns: minmax(140px, 0.26fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: center;
}

.product-category-visual {
  margin: 0;
}

.product-category-visual img {
  display: block;
  width: 100%;
  max-width: 240px;
}

.product-category-copy {
  display: grid;
  gap: 10px;
  width: 100%;
}

.product-section-head h2 {
  margin-bottom: 0;
  font-family: "StationFont", sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  font-weight: 400;
}

.product-category-description {
  max-width: 820px;
  margin: 14px 0 0;
  color: #d2d1ca;
  line-height: 1.75;
}

.product-category-copy .product-category-description {
  max-width: none;
  margin: 0;
  text-align: justify;
  text-align-last: left;
}

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

.product-grid-single {
  grid-template-columns: minmax(0, 0.62fr);
}

.product-card {
  display: grid;
  grid-template-columns: minmax(150px, 0.48fr) minmax(0, 1fr);
  gap: 20px;
  border: 1px solid var(--line);
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(169, 200, 109, 0.07), transparent 36%),
    rgba(18, 20, 24, 0.72);
  box-shadow: 0 24px 80px var(--shadow);
}

.product-card figure {
  margin: 0;
  border: 1px solid rgba(242, 240, 232, 0.12);
  overflow: hidden;
  background: rgba(242, 240, 232, 0.06);
}

.product-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.product-card-copy {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 14px;
}

.product-card-copy span:not(.secondary-action) {
  color: var(--amber);
  font-family: "StationFont", sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.product-card-copy h3 {
  margin-bottom: 0;
  font-family: "StationFont", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 400;
}

.product-card-copy p {
  margin-bottom: 0;
  color: #d2d1ca;
  line-height: 1.65;
}

.product-card-copy .price {
  color: var(--teal);
  font-family: "StationFont", sans-serif;
  font-size: 0.9rem;
}

.product-sale-page {
  max-width: 1060px;
}

.product-sale-hero {
  display: grid;
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: stretch;
}

.product-sale-visual {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  height: 100%;
  min-height: 420px;
  overflow: hidden;
  background: rgba(242, 240, 232, 0.06);
  box-shadow: 0 24px 80px var(--shadow);
}

.product-sale-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

.product-sale-copy {
  display: grid;
  align-content: center;
  gap: 20px;
}

.product-sale-copy .eyebrow {
  color: var(--teal);
}

.product-sale-copy h1 {
  margin-bottom: 0;
}

.product-sale-copy > p {
  max-width: 680px;
  margin-bottom: 0;
  color: #d2d1ca;
  line-height: 1.75;
}

.product-sale-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.product-sale-meta span {
  padding: 0 12px;
  color: var(--amber);
  font-family: "StationFont", sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.product-sale-meta span:first-child {
  padding-left: 0;
}

.product-sale-meta span + span {
  border-left: 1px solid rgba(242, 240, 232, 0.32);
}

.product-sale-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.product-sale-actions .primary-action {
  width: auto;
  min-width: 220px;
  margin-top: 0;
}

.product-sale-actions-centered {
  justify-content: center;
  margin-top: clamp(24px, 4vw, 42px);
}

.product-guidance-blocks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(32px, 6vw, 72px);
}

.product-guidance-blocks article {
  border: 1px solid var(--line);
  padding: clamp(18px, 3vw, 28px);
  background: rgba(8, 12, 20, 0.64);
  box-shadow: 0 18px 60px var(--shadow);
}

.product-guidance-blocks .eyebrow {
  margin-bottom: 12px;
  color: var(--teal);
}

.product-guidance-blocks h2 {
  margin-bottom: 16px;
  font-family: "StationFont", sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  font-weight: 400;
}

.product-guidance-blocks p:not(.eyebrow) {
  margin-bottom: 12px;
  color: #d2d1ca;
  line-height: 1.65;
}

.product-guidance-blocks p:last-child {
  margin-bottom: 0;
}

.product-open-preview,
.product-deeper-preview {
  margin-top: clamp(42px, 7vw, 84px);
}

.product-open-preview .preview-head,
.product-deeper-preview > .preview-head {
  align-items: flex-start;
  flex-direction: column;
  max-width: 760px;
}

.product-deeper-preview > .preview-head {
  align-items: flex-end;
  margin-left: auto;
  text-align: right;
}

.product-open-copy {
  max-width: 680px;
  margin: 0;
  color: #d2d1ca;
  line-height: 1.7;
}

.entry-access {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 44px;
}

.entry-account-state {
  grid-column: 1 / -1;
  border: 1px solid rgba(169, 200, 109, 0.28);
  padding: clamp(18px, 3vw, 28px);
  background:
    linear-gradient(135deg, rgba(169, 200, 109, 0.1), transparent 42%),
    rgba(18, 20, 24, 0.78);
  box-shadow: 0 24px 80px var(--shadow);
  backdrop-filter: blur(18px);
}

.entry-account-state[hidden] {
  display: none;
}

.entry-account-kicker,
.entry-form-head span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--sky-blue-bright);
  font-family: "StationFont", sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.entry-account-state strong {
  display: block;
  margin-bottom: 6px;
  font-family: "StationFont", sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.85rem);
  font-weight: 400;
  text-transform: uppercase;
}

.entry-account-state p,
.entry-auth-note {
  margin-bottom: 0;
  color: #d2d1ca;
  line-height: 1.65;
}

.entry-account-state .secondary-action {
  margin-top: 18px;
}

.entry-form {
  display: grid;
  align-content: start;
  gap: 16px;
  border: 1px solid rgba(108, 205, 245, 0.18);
  padding: clamp(18px, 3vw, 28px);
  background:
    linear-gradient(135deg, rgba(11, 120, 182, 0.08), transparent 36%),
    rgba(242, 240, 232, 0.035);
  box-shadow: 0 24px 80px var(--shadow);
  backdrop-filter: blur(18px);
}

.entry-form h2 {
  margin-bottom: 0;
  font-family: "StationFont", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 400;
  text-transform: uppercase;
}

.entry-form label {
  display: grid;
  gap: 8px;
  color: #e2ded3;
  line-height: 1.35;
}

.entry-form .primary-action {
  border: 0;
}

.entry-auth-note {
  grid-column: 1 / -1;
  border-left: 1px solid rgba(169, 200, 109, 0.35);
  padding-left: 16px;
  color: var(--muted);
}

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

.entry-grid article {
  display: grid;
  align-content: start;
  gap: 18px;
  border: 1px solid rgba(108, 205, 245, 0.18);
  background:
    linear-gradient(135deg, rgba(11, 120, 182, 0.08), transparent 36%),
    rgba(242, 240, 232, 0.035);
  padding: clamp(18px, 3vw, 28px);
}

.entry-grid span:first-child {
  color: var(--sky-blue-bright);
  font-family: "StationFont", sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.entry-grid h2 {
  font-family: "StationFont", sans-serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 400;
  text-transform: uppercase;
}

.entry-grid p {
  color: #d2d1ca;
  line-height: 1.65;
}

.home-private-lab {
  align-items: center;
}

.home-product-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 12px;
}

.home-product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 12px;
  height: 100%;
  border: 1px solid var(--line);
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(169, 200, 109, 0.08), transparent),
    rgba(18, 20, 24, 0.72);
  box-shadow: 0 24px 80px var(--shadow);
  backdrop-filter: blur(18px);
}

.product-offer-item {
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: stretch;
}

.product-offer-item .secondary-action {
  width: 100%;
  justify-self: stretch;
}

.home-product-card figure {
  position: relative;
  margin: 0;
  border: 1px solid rgba(242, 240, 232, 0.12);
  width: 100%;
  aspect-ratio: 4 / 4.8;
  overflow: hidden;
  background: rgba(242, 240, 232, 0.06);
}

.home-product-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-status-ribbon {
  position: absolute;
  top: 18px;
  right: 0;
  min-width: 62%;
  padding: 12px 14px;
  color: #f6f4ec;
  background: rgba(126, 148, 74, 0.92);
  font-family: "StationFont", sans-serif;
  font-size: clamp(0.72rem, 1.35vw, 0.95rem);
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0;
}

.home-product-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--amber);
  font-family: "StationFont", sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
}

.home-product-card h3 {
  margin-bottom: 6px;
  font-family: "StationFont", sans-serif;
  font-size: clamp(0.95rem, 1.6vw, 1.18rem);
  font-weight: 400;
  line-height: 1.2;
}

.home-product-card p {
  margin-bottom: 0;
  color: var(--teal);
  font-family: "StationFont", sans-serif;
  font-size: 0.74rem;
}

.sky-feature {
  border: 1px solid var(--line);
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 18%, rgba(169, 200, 109, 0.12), transparent 18rem),
    rgba(18, 20, 24, 0.72);
  box-shadow: 0 24px 80px var(--shadow);
  backdrop-filter: blur(18px);
}

.sky-feature-visual {
  margin: 0;
  overflow: hidden;
  background: rgba(242, 240, 232, 0.04);
}

.sky-feature-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.sky-launch-page h1 {
  margin-bottom: 28px;
}

.sky-page-visual {
  margin: 0 0 18px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: rgba(242, 240, 232, 0.04);
}

.sky-page-visual img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.sky-console {
  position: relative;
  margin-top: 34px;
  border: 1px solid rgba(242, 240, 232, 0.22);
  padding: 14px;
  background:
    linear-gradient(rgba(242, 240, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 240, 232, 0.035) 1px, transparent 1px),
    rgba(3, 4, 5, 0.9);
  background-size: 32px 32px;
  box-shadow: 0 24px 80px var(--shadow);
}

.sky-console::before {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(108, 205, 245, 0.22);
  content: "";
  pointer-events: none;
}

.console-bar,
.window-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #d7d4cc;
  font-family: "StationFont", sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.console-bar {
  border-bottom: 1px solid rgba(242, 240, 232, 0.16);
  padding: 0 0 12px;
}

.window-chrome {
  min-height: 28px;
  border-bottom: 1px solid rgba(242, 240, 232, 0.16);
  padding: 0 10px;
  background: rgba(242, 240, 232, 0.08);
}

.console-main {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 14px;
  padding-top: 14px;
}

.data-window,
.transmission-panel,
.console-ritual article {
  border: 1px solid rgba(242, 240, 232, 0.18);
  background: rgba(8, 9, 11, 0.78);
}

.data-viewport {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 46%, rgba(11, 120, 182, 0.24), transparent 14rem),
    #030405;
}

#gateCloud {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.gate-overlay {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 1;
}

.gate-keywords span,
.console-ritual span {
  color: var(--sky-blue-bright);
  font-family: "StationFont", sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.gate-date {
  display: block;
  margin-bottom: 10px;
  color: var(--sky-blue-bright);
  font-family: "StationFont", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gate-overlay h2 {
  margin: 0 0 8px;
  font-family: "StationFont Hollow", "StationFont", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 0.92;
  text-transform: uppercase;
}

.gate-overlay p {
  margin-bottom: 0;
  color: var(--teal);
  font-family: "StationFont", sans-serif;
}

.gate-keywords {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 10px 0 0;
}

.gate-keywords article {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(108, 205, 245, 0.2);
  padding: 12px;
  background: rgba(11, 120, 182, 0.06);
}

.gate-keywords strong {
  display: inline-block;
  margin-top: 0;
  color: var(--text);
  font-family: "StationFont", sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  text-transform: uppercase;
}

.transmission-panel {
  display: grid;
  align-content: start;
  padding: 0 0 26px;
}

.transmission-panel .panel-kicker,
.transmission-panel h2,
.transmission-copy {
  margin-right: clamp(20px, 4vw, 48px);
  margin-left: clamp(20px, 4vw, 48px);
}

.transmission-panel .panel-kicker {
  margin-top: clamp(30px, 5vw, 54px);
}

.transmission-panel h2 {
  margin-top: 40px;
  margin-bottom: 24px;
  font-family: "StationFont", sans-serif;
  font-size: clamp(2rem, 4vw, 4.5rem);
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
}

.transmission-copy {
  max-width: 620px;
}

.transmission-copy p {
  margin-bottom: 14px;
  color: #d2d1ca;
  font-size: clamp(0.95rem, 1.25vw, 1.04rem);
  line-height: 1.62;
}

.transmission-copy p:last-child {
  margin-bottom: 0;
}

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

.console-ritual article {
  min-height: 170px;
  padding: 20px;
}

.console-ritual p {
  margin: 18px 0 0;
  color: #d2d1ca;
  font-size: 1.02rem;
  line-height: 1.65;
}

.gate-expansion {
  margin-top: 34px;
  border: 1px solid var(--line);
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(11, 120, 182, 0.16), transparent 38%),
    rgba(18, 20, 24, 0.72);
  box-shadow: 0 24px 80px var(--shadow);
  backdrop-filter: blur(18px);
}

.gate-expansion .preview-head h2 {
  max-width: 760px;
}

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

.gate-expansion-grid article {
  min-height: 220px;
  border: 1px solid rgba(242, 240, 232, 0.12);
  padding: 20px;
  background: rgba(242, 240, 232, 0.04);
}

.gate-expansion-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--sky-blue-bright);
  font-family: "StationFont", sans-serif;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.gate-expansion-grid p {
  margin-bottom: 0;
  color: #d2d1ca;
  line-height: 1.7;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.34fr);
  align-items: start;
  justify-content: space-between;
  gap: 48px;
  border-top: 1px solid var(--line);
  padding: 42px 0 0;
  color: var(--muted);
}

.site-footer p {
  max-width: 620px;
  margin-bottom: 0;
  line-height: 1.6;
}

.footer-content {
  display: grid;
  gap: 34px;
  align-self: start;
}

.footer-mark {
  margin-bottom: 8px;
  color: var(--text);
  font-family: "StationFont", sans-serif;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 12px 22px;
}

.footer-lockup {
  justify-self: end;
  width: min(280px, 28vw);
  height: auto;
  opacity: 0.92;
  filter: drop-shadow(0 0 20px rgba(169, 200, 109, 0.12));
}

.footer-signal {
  display: grid;
  max-width: 340px;
  opacity: 0.34;
  transition:
    opacity 180ms ease,
    filter 180ms ease;
}

.footer-signal:hover,
.footer-signal:focus-within {
  opacity: 0.86;
  filter: drop-shadow(0 0 10px rgba(108, 205, 245, 0.08));
}

.footer-signal audio {
  display: none;
}

.signal-player {
  display: grid;
  grid-template-columns: auto minmax(120px, 1fr) auto;
  align-items: center;
  width: min(100%, 320px);
  min-height: 36px;
  gap: 12px;
  border: 0;
  background: transparent;
  padding: 0;
}

.signal-play {
  border: 0;
  background: transparent;
  color: var(--sky-blue-bright);
  font-family: "StationFont", sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
  cursor: pointer;
}

.signal-meter {
  position: relative;
  height: 2px;
  overflow: hidden;
  background: rgba(242, 240, 232, 0.08);
}

.signal-meter span {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--signal-progress, 0%);
  background: rgba(108, 205, 245, 0.42);
}

.signal-time {
  color: rgba(169, 176, 173, 0.72);
  font-size: 0.72rem;
  font-variant-numeric: tabular-nums;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--teal);
}

.disabled-action {
  cursor: not-allowed;
  opacity: 0.58;
}

.carousel {
  display: grid;
  gap: 16px;
}

.carousel-frame {
  position: relative;
  min-height: 430px;
  border: 1px solid var(--line);
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 16%, rgba(169, 200, 109, 0.12), transparent 18rem),
    rgba(18, 20, 24, 0.72);
  box-shadow: 0 24px 80px var(--shadow);
  backdrop-filter: blur(18px);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.72fr);
  align-items: stretch;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px);
  transition:
    opacity 420ms ease,
    transform 420ms ease;
}

.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.slide-visual {
  position: relative;
  min-height: 430px;
  margin: 0;
  border-right: 1px solid var(--line);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(169, 200, 109, 0.14), transparent 38%),
    linear-gradient(155deg, rgba(183, 140, 232, 0.12), transparent 55%),
  #0d1011;
}

.slide-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(242, 240, 232, 0.08);
  box-shadow: inset 0 0 70px rgba(0, 0, 0, 0.34);
  pointer-events: none;
}

.slide-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: left top;
}

.slide-copy {
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 18px;
  padding: 34px;
}

.slide-copy span {
  color: var(--teal);
  font-family: "StationFont", sans-serif;
  font-size: clamp(1.2rem, 2.4vw, 1.85rem);
  text-transform: uppercase;
}

.slide-copy p {
  margin-bottom: 0;
  color: #d8d4cb;
  font-size: 1.08rem;
  line-height: 1.65;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.carousel-controls > button {
  min-height: 40px;
  border: 1px solid rgba(169, 200, 109, 0.26);
  padding: 0 14px;
  color: var(--text);
  background: rgba(169, 200, 109, 0.08);
}

.carousel-controls > button:hover {
  color: var(--bg);
  background: var(--teal);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dots button {
  width: 34px;
  height: 4px;
  border: 0;
  padding: 0;
  background: rgba(242, 240, 232, 0.22);
}

.carousel-dots button.active {
  background: var(--teal);
}

.station-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding: 58px 0 34px;
}

.station-hero h1 {
  max-width: 720px;
  margin-bottom: 0;
}

.workspace {
  padding: 26px;
  scroll-margin-top: 90px;
}

.workspace-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}

.station-nav {
  width: fit-content;
  margin-bottom: 20px;
}

.workspace-head h2 {
  margin-bottom: 0;
  font-family: "StationFont", sans-serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 400;
}

.workspace-head p:last-child {
  max-width: 430px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.view {
  display: none;
}

.view.active {
  display: block;
}

.compose {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
  padding: 20px;
  background: rgba(14, 16, 20, 0.9);
}

.compose.locked {
  opacity: 0.72;
}

.answer-gate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  border: 1px solid rgba(169, 200, 109, 0.24);
  padding: 16px 18px;
  background:
    linear-gradient(90deg, rgba(169, 200, 109, 0.08), transparent),
    rgba(18, 20, 24, 0.7);
}

.answer-gate p {
  margin-bottom: 0;
  color: #d9d5ca;
  line-height: 1.55;
}

.answer-gate .theme {
  color: var(--amber);
}

.answer-gate strong {
  color: var(--teal);
  font-family: "StationFont", sans-serif;
  font-size: 1.05rem;
  white-space: nowrap;
}

.compose.compact {
  max-width: 780px;
}

.compose label {
  color: #e2ded3;
}

textarea,
input,
select {
  width: 100%;
  border: 1px solid rgba(242, 240, 232, 0.16);
  color: var(--text);
  background: rgba(242, 240, 232, 0.06);
}

input {
  min-height: 44px;
  padding: 0 12px;
}

textarea {
  min-height: 112px;
  resize: vertical;
  padding: 14px;
  line-height: 1.55;
}

textarea:focus,
input:focus,
select:focus,
button:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

.inline-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

select {
  min-height: 44px;
  padding: 0 12px;
}

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

.card,
.ritual,
.transit {
  padding: 20px;
}

.card {
  min-height: 190px;
  background: linear-gradient(180deg, rgba(242, 240, 232, 0.07), rgba(18, 20, 24, 0.82));
}

.card p {
  color: #e6e2d9;
  line-height: 1.6;
}

.meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.82rem;
}

.resonate {
  min-height: 34px;
  border: 1px solid rgba(159, 183, 255, 0.34);
  color: var(--amber);
  background: transparent;
}

.answer-action {
  width: 100%;
}

.answer-box {
  margin-top: 16px;
}

.answer-box summary {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(169, 200, 109, 0.36);
  padding: 0 18px;
  color: var(--text);
  background: rgba(169, 200, 109, 0.1);
  list-style: none;
  cursor: pointer;
}

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

.answer-box summary:hover {
  color: var(--bg);
  background: var(--teal);
}

.answer-box textarea {
  min-height: 92px;
  margin: 12px 0 10px;
}

.transit {
  margin-bottom: 16px;
  background:
    linear-gradient(90deg, rgba(169, 200, 109, 0.12), transparent),
    var(--panel-solid);
}

.transit h3 {
  margin-bottom: 14px;
  font-family: "StationFont", sans-serif;
  font-size: clamp(1.7rem, 4vw, 3.2rem);
  font-weight: 400;
}

.transit p:not(.panel-kicker),
.ritual p {
  color: #d9d5ca;
  line-height: 1.7;
}

.ritual span,
.theme {
  color: var(--plum);
  font-family: "StationFont", sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.filter {
  border: 1px solid var(--line);
}

.library .card {
  min-height: 170px;
}

@media (max-width: 860px) {
  .topbar,
  .workspace-head,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .site-nav,
  .station-nav {
    width: 100%;
    overflow-x: auto;
  }

  .nav-item {
    flex: 1;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 38px;
  }

  .public-section,
  .manifesto,
  .manifesto-hero-panel,
  .manifesto-split,
  .manifesto-split.reverse,
  .site-footer,
  .membership-grid,
  .content-grid,
  .ritual-steps,
  .console-main,
  .console-ritual,
  .gate-expansion-grid,
  .ritual-grid {
    grid-template-columns: 1fr;
  }

  .carousel-slide {
    grid-template-columns: 1fr;
  }

  .sky-feature {
    grid-template-columns: 1fr;
  }

  .carousel-frame,
  .slide-visual {
    min-height: 560px;
  }

  .slide-visual {
    min-height: 330px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .data-viewport {
    min-height: 300px;
  }

  .station-hero {
    align-items: stretch;
    flex-direction: column;
  }

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

  .preview-question-grid,
  .product-category-head.with-category-visual,
  .sky-launch-hero,
  .work-with-me-hero,
  .home-product-preview,
  .product-sale-hero,
  .product-grid,
  .product-grid-single,
  .product-guidance-blocks,
  .entry-access,
  .entry-grid,
  .random-shop-grid {
    grid-template-columns: 1fr;
  }

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

  .random-shop-head {
    align-items: start;
    flex-direction: column;
  }

  .random-shop-head h2 {
    text-align: left;
  }

  .footer-lockup {
    justify-self: start;
    width: min(260px, 68vw);
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 20px, 1180px);
    padding-top: 12px;
  }

  .brand-name {
    max-width: 64vw;
    font-size: 0.76rem;
  }

  .site-nav {
    gap: 4px;
  }

  .site-nav a {
    padding: 0 10px;
    font-size: 0.9rem;
  }

  .console-bar,
  .window-chrome {
    grid-template-columns: 1fr;
  }

  .gate-keywords {
    gap: 6px;
  }

  .gate-keywords article {
    align-items: start;
    flex-direction: column;
  }

  .identity-panel,
  .inline-controls,
  .answer-gate {
    grid-template-columns: 1fr;
  }

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

  .workspace,
  .access-panel,
  .compose,
  .card,
  .chamber,
  .chamber-preview,
  .home-product-card,
  .product-card,
  .slide-copy,
  .ritual,
  .transit {
    padding: 16px;
  }

  .carousel-frame {
    min-height: 520px;
  }

  .slide-visual {
    min-height: 300px;
  }

  .manifesto-image,
  .manifesto-image img,
  .manifesto-hero-image img {
    min-height: 320px;
  }

  .manifesto-block {
    padding-left: 18px;
  }

  .manifesto-inline-image {
    justify-self: stretch;
  }

}
