:root {
  --void: #07010f;
  --chamber: #11061c;
  --iris: #7c3aed;
  --iris-mid: #a855f7;
  --iris-hot: #d8b4fe;
  --iris-core: #f3e8ff;
  --stone: #2b2433;
  --stone-lit: #4a4256;
  --ink: #efe6f8;
  --muted: #b7a4cc;
  --line: rgba(216, 180, 254, 0.18);
  --glow: rgba(168, 85, 247, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 84px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Outfit", sans-serif;
  background:
    radial-gradient(1200px 700px at 50% -10%, rgba(124, 58, 237, 0.28), transparent 58%),
    radial-gradient(900px 620px at 110% 20%, rgba(192, 132, 252, 0.16), transparent 50%),
    radial-gradient(800px 540px at -10% 80%, rgba(88, 28, 135, 0.35), transparent 55%),
    linear-gradient(180deg, #140628 0%, var(--void) 28%, #16082a 62%, #1a0833 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(168, 85, 247, 0.08) 0 8%, transparent 9%),
    radial-gradient(circle at 50% 42%, rgba(168, 85, 247, 0.06) 0 18%, transparent 19%),
    radial-gradient(circle at 50% 42%, rgba(168, 85, 247, 0.04) 0 30%, transparent 31%);
  animation: iris-breathe 10s ease-in-out infinite;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
}

p {
  margin: 0;
}

.grain,
#vigil-field,
.cursor-flare,
.lids {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.grain {
  z-index: 8;
  opacity: 0.09;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

#vigil-field {
  z-index: 1;
}

.cursor-flare {
  z-index: 2;
  width: 420px;
  height: 420px;
  margin: -210px 0 0 -210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 132, 252, 0.16), transparent 68%);
  transform: translate3d(-40vw, -40vh, 0);
  transition: opacity 0.4s ease;
}

.lids {
  z-index: 40;
}

.lid {
  position: absolute;
  left: 0;
  right: 0;
  height: 52%;
  background:
    radial-gradient(120% 80% at 50% 100%, #2a0d4a, #0a0214 70%);
  transition: transform 1.15s var(--ease);
}

.lid-upper {
  top: 0;
  border-bottom: 1px solid rgba(216, 180, 254, 0.25);
  box-shadow: 0 30px 80px rgba(88, 28, 135, 0.45);
}

.lid-lower {
  bottom: 0;
  height: 50%;
  background:
    radial-gradient(120% 80% at 50% 0%, #3b1668, #07010f 72%);
  border-top: 1px solid rgba(216, 180, 254, 0.2);
}

body.is-open .lid-upper { transform: translateY(-105%); }
body.is-open .lid-lower { transform: translateY(105%); }
body.is-open .lids { pointer-events: none; }

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  background: linear-gradient(180deg, rgba(7, 1, 15, 0.78), rgba(7, 1, 15, 0.2) 80%, transparent);
  backdrop-filter: blur(14px);
}

.nav-mark,
.foot .nav-mark {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-orb {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(216, 180, 254, 0.35);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12), 0 0 22px var(--glow);
  animation: orb-glow 4.5s ease-in-out infinite;
}

.nav-orb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
}

.nav-word {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.nav-word strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 600;
}

.nav-word small {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  color: var(--iris-hot);
}

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

.nav-links a {
  position: relative;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: var(--iris-hot);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--iris-core);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.seal {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(20, 8, 36, 0.7);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease, border-color 0.3s ease;
}

.seal img {
  width: 16px;
  height: 16px;
}

.seal:hover {
  transform: translateY(-2px);
  border-color: var(--iris-hot);
  box-shadow: 0 0 18px var(--glow);
}

.nav-buy,
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 11px 18px;
  border: 1px solid rgba(216, 180, 254, 0.28);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease, background 0.3s ease;
}

.nav-buy,
.btn-solid {
  background: linear-gradient(180deg, #c084fc, #7c3aed);
  color: #14061f;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.35);
}

.nav-buy img,
.btn img {
  width: 16px;
  height: 16px;
  filter: brightness(0.25);
}

.btn-ghost img {
  filter: none;
}

.nav-buy:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(168, 85, 247, 0.4);
}

.btn-ghost {
  background: rgba(16, 6, 28, 0.55);
  color: var(--iris-core);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--iris-core);
}

.drawer {
  position: fixed;
  top: var(--nav-h);
  left: 16px;
  right: 16px;
  z-index: 19;
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(12, 4, 22, 0.92);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.drawer[hidden] {
  display: none;
}

.drawer a {
  padding: 12px 10px;
  border-radius: 10px;
  color: var(--iris-core);
}

main {
  position: relative;
  z-index: 3;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 7vw 80px;
  position: relative;
}

.hero-veil {
  position: absolute;
  inset: auto 8% 8% 8%;
  height: 180px;
  background: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.18), transparent 70%);
  filter: blur(20px);
  animation: veil-drift 8s ease-in-out infinite;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--iris-hot);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--iris-mid);
  box-shadow: 0 0 0 6px rgba(168, 85, 247, 0.14);
  animation: pulse-dot 2.2s ease-in-out infinite;
}

.wordmark {
  display: grid;
  gap: 6px;
}

.wordmark-eye {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: clamp(5.4rem, 12vw, 8.6rem);
  line-height: 0.82;
  letter-spacing: -0.06em;
  color: #fff;
  -webkit-text-stroke: 8px #12081c;
  paint-order: stroke fill;
  filter:
    drop-shadow(0 7px 0 #1a0a28)
    drop-shadow(0 0 28px rgba(192, 132, 252, 0.45));
}

.wordmark-name {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  color: var(--iris-core);
}

.lede {
  margin-top: 22px;
  max-width: 34ch;
  font-size: 1.28rem;
  line-height: 1.5;
}

.hero-note {
  margin-top: 14px;
  max-width: 44ch;
  color: var(--muted);
  line-height: 1.7;
}

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

.ca-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  max-width: 100%;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(16, 6, 28, 0.62);
  color: var(--iris-core);
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.ca-pill:hover,
.ca-pill:focus-visible {
  border-color: var(--iris-hot);
  box-shadow: 0 0 18px var(--glow);
}

.ca-pill span {
  flex: none;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  color: var(--iris-hot);
}

.ca-pill code {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  color: var(--ink);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 36px 0 0;
  max-width: 420px;
}

.hero-stats div {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.hero-stats dt {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-stats dd {
  margin: 6px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
}

.aperture {
  position: relative;
  width: min(520px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.aperture-halo {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 132, 252, 0.32), transparent 68%);
  filter: blur(18px);
  animation: halo-breathe 5.5s ease-in-out infinite;
}

.aperture-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(216, 180, 254, 0.22);
}

.ring-a { inset: 0; animation: spin 28s linear infinite; }
.ring-b { inset: 7%; animation: spin 18s linear infinite reverse; border-style: dashed; }
.ring-c { inset: 14%; animation: spin 12s linear infinite; }

.ring-a::before,
.ring-b::before,
.ring-c::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--iris-hot);
  box-shadow: 0 0 16px var(--iris-hot);
  top: 6%;
  left: 50%;
}

.aperture-stone {
  position: relative;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 10px solid #1b1522;
  box-shadow:
    0 0 0 1px #4a4256,
    0 20px 50px rgba(0, 0, 0, 0.45),
    0 0 60px rgba(168, 85, 247, 0.28);
  z-index: 2;
}

.aperture-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: logo-float 7s ease-in-out infinite;
}

.aperture-glint {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--gx, 62%) var(--gy, 34%), rgba(255, 255, 255, 0.34), transparent 18%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.pulse-wave {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  border: 1px solid rgba(216, 180, 254, 0.35);
  animation: pulse-ring 3.6s ease-out infinite;
}

.pulse-wave.delay {
  animation-delay: 1.8s;
}

.ticker {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(10, 2, 20, 0.45);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  padding: 16px 0;
  animation: ticker 28s linear infinite;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  color: var(--iris-hot);
}

.ticker-track i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--iris-mid);
  box-shadow: 0 0 10px var(--iris-mid);
}

.chamber {
  position: relative;
  z-index: 3;
  padding: 120px 7vw;
}

.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 0.95;
  margin-bottom: 16px;
}

.section-head p:last-child {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.05rem;
}

.about-stage {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 48px;
  align-items: center;
}

.about-portrait {
  margin: 0;
  position: relative;
}

.about-portrait img {
  width: 100%;
  border-radius: 50% 50% 46% 46%;
  border: 1px solid rgba(216, 180, 254, 0.28);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 0 50px rgba(124, 58, 237, 0.2);
  animation: logo-float 8s ease-in-out infinite;
}

.about-portrait figcaption {
  margin-top: 16px;
  text-align: center;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--iris-hot);
}

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

.lens {
  padding: 24px 26px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(36, 14, 58, 0.72), rgba(14, 5, 26, 0.7));
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform: translateY(24px);
  opacity: 0;
  animation: rise 0.9s var(--ease) forwards;
}

.lens:nth-child(2) { animation-delay: 0.12s; }
.lens:nth-child(3) { animation-delay: 0.24s; }

.lens-index {
  display: block;
  margin-bottom: 10px;
  color: var(--iris-hot);
  letter-spacing: 0.2em;
  font-size: 0.74rem;
}

.lens h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.lens p {
  color: var(--muted);
  line-height: 1.7;
}

.meridian {
  list-style: none;
  margin: 0;
  padding: 0 0 0 28px;
  position: relative;
  display: grid;
  gap: 22px;
}

.meridian::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--iris-mid), var(--iris-hot), transparent);
  box-shadow: 0 0 16px var(--glow);
  animation: vein-flow 4s linear infinite;
}

.station {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  align-items: start;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(16, 6, 28, 0.55);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.station-node {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 35% 30%, #3b1760, #160826);
  border: 1px solid rgba(216, 180, 254, 0.3);
  box-shadow: 0 0 24px rgba(168, 85, 247, 0.2);
  position: relative;
  z-index: 1;
}

.station-node img {
  width: 26px;
  height: 26px;
}

.station-body span {
  color: var(--iris-hot);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.station-body h3 {
  font-size: 2rem;
  margin: 6px 0 10px;
}

.station-body p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 62ch;
}

.text-action {
  display: inline-block;
  margin-top: 14px;
  color: var(--iris-core);
  border-bottom: 1px solid rgba(216, 180, 254, 0.4);
  padding-bottom: 2px;
}

.viewport {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(216, 180, 254, 0.24);
  background: #0b0612;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35), 0 0 40px rgba(124, 58, 237, 0.12);
  min-height: 620px;
}

.viewport iframe {
  width: 100%;
  height: 620px;
  border: 0;
  filter: saturate(1.05) contrast(1.04);
}

.viewport-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  z-index: 2;
  border: 2px solid var(--iris-hot);
  pointer-events: none;
}

.viewport-corner.tl { top: 12px; left: 12px; border-right: 0; border-bottom: 0; }
.viewport-corner.tr { top: 12px; right: 12px; border-left: 0; border-bottom: 0; }
.viewport-corner.bl { bottom: 12px; left: 12px; border-right: 0; border-top: 0; }
.viewport-corner.br { bottom: 12px; right: 12px; border-left: 0; border-top: 0; }

.chart-link {
  margin-top: 18px;
  text-align: center;
}

.chart-link a {
  color: var(--iris-hot);
  letter-spacing: 0.08em;
}

.banner-frame {
  margin: 0;
  width: 100%;
  aspect-ratio: 3 / 1;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(216, 180, 254, 0.28);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4), 0 0 50px rgba(124, 58, 237, 0.18);
  position: relative;
}

.banner-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 1, 15, 0.35));
  pointer-events: none;
}

.banner-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: banner-pan 18s ease-in-out infinite;
}

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

.join-seal {
  display: grid;
  justify-items: start;
  gap: 8px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(16, 6, 28, 0.62);
  transition: transform 0.3s var(--ease), border-color 0.3s ease, box-shadow 0.3s ease;
}

.join-seal img {
  width: 22px;
  height: 22px;
}

.join-seal span {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
}

.join-seal small {
  color: var(--muted);
}

.join-seal:hover {
  transform: translateY(-4px);
  border-color: var(--iris-hot);
  box-shadow: 0 16px 36px rgba(124, 58, 237, 0.22);
}

.foot {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 64px 24px 40px;
  text-align: center;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(10, 2, 20, 0.8));
}

.foot p {
  color: var(--muted);
  max-width: 42ch;
}

.foot .ca-pill {
  margin-top: 0;
}

.foot-seals {
  display: flex;
  gap: 10px;
}

.foot small {
  color: #7d6a93;
}

@keyframes iris-breathe {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

@keyframes orb-glow {
  0%, 100% { box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12), 0 0 18px var(--glow); }
  50% { box-shadow: 0 0 0 7px rgba(124, 58, 237, 0.2), 0 0 28px rgba(192, 132, 252, 0.55); }
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.7; }
}

@keyframes halo-breathe {
  0%, 100% { opacity: 0.7; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1.06); }
}

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

@keyframes logo-float {
  0%, 100% { transform: scale(1.08) translateY(0); }
  50% { transform: scale(1.12) translateY(-6px); }
}

@keyframes pulse-ring {
  0% { transform: scale(0.85); opacity: 0.55; }
  100% { transform: scale(1.45); opacity: 0; }
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@keyframes veil-drift {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.7; }
  50% { transform: translateY(-12px) scale(1.08); opacity: 1; }
}

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes vein-flow {
  0% { filter: hue-rotate(0deg); opacity: 0.7; }
  50% { opacity: 1; }
  100% { filter: hue-rotate(20deg); opacity: 0.7; }
}

@keyframes banner-pan {
  0%, 100% { transform: scale(1.04) translateX(0); }
  50% { transform: scale(1.08) translateX(-1.4%); }
}

.seen {
  animation: rise 0.85s var(--ease) forwards;
}

.station,
.viewport,
.banner-frame,
.join-seal {
  opacity: 0;
  transform: translateY(22px);
}

.station.seen,
.viewport.seen,
.banner-frame.seen,
.join-seal.seen {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-toggle { display: grid; }
  .hero {
    grid-template-columns: 1fr;
    padding-top: calc(var(--nav-h) + 24px);
    text-align: center;
  }
  .hero-note,
  .lede { margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-stats { justify-content: center; margin-left: auto; margin-right: auto; }
  .kicker { justify-content: center; }
  .about-stage,
  .seals-row { grid-template-columns: 1fr; }
  .about-portrait { max-width: 280px; margin: 0 auto; }
  .chamber { padding: 88px 22px; }
  .viewport,
  .viewport iframe { min-height: 480px; height: 480px; }
  .wordmark-eye { -webkit-text-stroke: 5px #12081c; }
}

@media (max-width: 640px) {
  .nav { padding: 0 14px; }
  .nav-actions .seal { display: none; }
  .meridian { padding-left: 0; }
  .meridian::before { left: 46px; }
  .station { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .lid { transform: none; }
  .station,
  .viewport,
  .banner-frame,
  .join-seal,
  .lens {
    opacity: 1;
    transform: none;
  }
}
