:root {
  --void: #050506;
  --ink: #0b0b0d;
  --moon: #f4f1ea;
  --paper: #d8d4cb;
  --ash: #8d8980;
  --dust: #5a5752;
  --line: rgba(244, 241, 234, 0.14);
  --line-strong: rgba(244, 241, 234, 0.28);
  --glow: rgba(255, 252, 245, 0.42);
  --glass: rgba(8, 8, 10, 0.55);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Manrope", system-ui, sans-serif;
  --pad: clamp(1.25rem, 4vw, 3.5rem);
  --wrap: 1180px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--void);
  color: var(--moon);
}

body {
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: default;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 55% at 70% 18%, rgba(255, 255, 255, 0.045), transparent 58%),
    radial-gradient(ellipse 50% 40% at 8% 90%, rgba(255, 255, 255, 0.03), transparent 60%),
    linear-gradient(180deg, #050506 0%, #09090b 42%, #050506 100%);
}

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

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

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

code {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
}

::selection {
  background: rgba(244, 241, 234, 0.2);
  color: #fff;
}

.wrap {
  width: min(var(--wrap), calc(100% - var(--pad) * 2));
  margin-inline: auto;
}

/* Atmosphere */
#void {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.grain {
  position: fixed;
  inset: -40%;
  z-index: 8;
  pointer-events: none;
  opacity: 0.16;
  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");
  animation: grain 0.8s steps(2) infinite;
}

@keyframes grain {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 1%); }
  50% { transform: translate(1%, -2%); }
  75% { transform: translate(-1%, 2%); }
  100% { transform: translate(0, 0); }
}

.lumen {
  position: fixed;
  width: 42vw;
  height: 42vw;
  max-width: 560px;
  max-height: 560px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(circle, rgba(255, 252, 245, 0.09), transparent 68%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

body.is-pointer .lumen {
  opacity: 1;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 1px;
  width: 0;
  z-index: 40;
  background: linear-gradient(90deg, transparent, #fff 20%, #fff 80%, transparent);
  box-shadow: 0 0 16px var(--glow);
}

/* Mast */
.mast {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem var(--pad);
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
}

.mast.is-stuck {
  background: rgba(5, 5, 6, 0.72);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  z-index: 2;
}

.brand-orb {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  box-shadow: -6px 0 16px rgba(255, 255, 255, 0.22);
}

.brand-orb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: orb-breathe 8s ease-in-out infinite;
}

@keyframes orb-breathe {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.06); filter: brightness(1.12); }
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 1.7rem;
}

.nav a {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ash);
  position: relative;
  padding: 0.2rem 0;
}

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

.nav a:hover,
.nav a.is-on {
  color: var(--moon);
}

.nav a:hover::after,
.nav a.is-on::after {
  transform: scaleX(1);
}

.mast-end {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.buy-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--line-strong);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.buy-pill img,
.btn img,
.text-link img,
.dock-card img {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
}

.buy-pill:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.menu {
  display: none;
  width: 42px;
  height: 42px;
  position: relative;
}

.menu span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1px;
  background: var(--moon);
  transition: transform 0.3s ease, top 0.3s ease;
}

.menu span:first-child { top: 17px; }
.menu span:last-child { top: 24px; }

.menu.is-open span:first-child {
  top: 21px;
  transform: rotate(40deg);
}

.menu.is-open span:last-child {
  top: 21px;
  transform: rotate(-40deg);
}

/* Hero */
.hero {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  padding: 7.5rem var(--pad) 5rem;
  display: flex;
  align-items: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(transparent, var(--void));
  pointer-events: none;
}

.hud {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dust);
  opacity: 0.85;
}

.hud-tl { top: 6.4rem; left: var(--pad); }
.hud-tr { top: 6.4rem; right: var(--pad); text-align: right; }
.hud-bl { bottom: 2.2rem; left: var(--pad); }
.hud-br { bottom: 2.2rem; right: var(--pad); text-align: right; }

.hero-grid {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 2rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ash);
}

.wordmark {
  margin: 0 0 1.4rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3.4rem, 9vw, 7.4rem);
  line-height: 0.86;
  letter-spacing: 0.08em;
}

.wordmark span {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.wordmark span:nth-child(1) { animation-delay: 0.05s; }
.wordmark span:nth-child(2) { animation-delay: 0.12s; }
.wordmark span:nth-child(3) { animation-delay: 0.19s; }
.wordmark span:nth-child(4) { animation-delay: 0.26s; }
.wordmark span:nth-child(5) { animation-delay: 0.33s; }
.wordmark span:nth-child(6) { animation-delay: 0.4s; }
.wordmark span:nth-child(7) { animation-delay: 0.47s; }
.wordmark span:nth-child(8) { animation-delay: 0.54s; }

@keyframes rise {
  to { opacity: 1; transform: none; }
}

.quote {
  margin: 0 0 2rem;
  max-width: 34rem;
}

.quote p {
  margin: 0 0 0.9rem;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--paper);
}

.quote footer {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ash);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0 1.15rem;
  border-radius: 2px;
  border: 1px solid var(--line-strong);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.btn-solid {
  background: var(--moon);
  color: #111;
  border-color: var(--moon);
}

.btn-solid img {
  filter: brightness(0);
}

.btn-solid:hover {
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.22);
}

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

.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.ca-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--ash);
}

.ca-row code {
  color: var(--paper);
  font-size: 0.78rem;
}

.ca-copy {
  border: 1px solid var(--line);
  padding: 0.25rem 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--moon);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.ca-copy:hover,
.ca-copy.is-done {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* Eclipse */
.eclipse {
  position: relative;
  width: min(520px, 100%);
  aspect-ratio: 1;
  margin-inline: auto;
}

.eclipse-beam {
  position: absolute;
  top: 46%;
  right: 52%;
  width: 70vw;
  height: 90px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.07) 40%, rgba(255, 255, 255, 0.22));
  filter: blur(18px);
  transform: translateY(-50%);
  animation: beam 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes beam {
  0%, 100% { opacity: 0.55; height: 70px; }
  50% { opacity: 1; height: 110px; }
}

.eclipse-halo {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle at 28% 48%, rgba(255, 255, 255, 0.2), transparent 42%);
  filter: blur(8px);
  animation: halo 6s ease-in-out infinite;
}

@keyframes halo {
  0%, 100% { opacity: 0.65; }
  50% { opacity: 1; }
}

.orbit {
  position: absolute;
  inset: 4%;
  border-radius: 50%;
  border: 1px solid rgba(244, 241, 234, 0.16);
}

.orbit-a {
  animation: spin 28s linear infinite;
  border-style: dashed;
}

.orbit-b {
  inset: -6%;
  border-color: rgba(244, 241, 234, 0.08);
  animation: spin 48s linear infinite reverse;
}

.orbit-c {
  inset: 16%;
  border-color: rgba(244, 241, 234, 0.22);
  clip-path: polygon(0 0, 100% 0, 100% 42%, 0 58%);
  animation: spin 18s linear infinite;
}

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

.eclipse-disc {
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    -28px 0 60px rgba(255, 255, 255, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.eclipse-disc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: moon-drift 16s ease-in-out infinite;
}

@keyframes moon-drift {
  0%, 100% { transform: scale(1.04) translateX(0); }
  50% { transform: scale(1.1) translateX(-2%); }
}

.sat {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 12px #fff;
}

.sat-a {
  top: 8%;
  left: 62%;
  animation: sat-a 28s linear infinite;
}

.sat-b {
  bottom: 12%;
  left: 10%;
  animation: sat-b 48s linear infinite;
}

@keyframes sat-a {
  from { transform: rotate(0deg) translateX(210px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(210px) rotate(-360deg); }
}

@keyframes sat-b {
  from { transform: rotate(40deg) translateX(250px) rotate(-40deg); }
  to { transform: rotate(400deg) translateX(250px) rotate(-400deg); }
}

.descend {
  position: absolute;
  left: 50%;
  bottom: 2.1rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ash);
  z-index: 4;
}

.descend i {
  width: 1px;
  height: 36px;
  background: linear-gradient(#fff, transparent);
  animation: drop 1.8s ease-in-out infinite;
}

@keyframes drop {
  0% { transform: scaleY(0.3); transform-origin: top; opacity: 0; }
  40% { opacity: 1; }
  100% { transform: scaleY(1); transform-origin: top; opacity: 0; }
}

/* Sections */
.about,
.howto,
.chart {
  position: relative;
  z-index: 3;
  padding: 7.5rem 0;
}

.about {
  background:
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.015) 40%, transparent);
}

.section-head {
  display: flex;
  align-items: flex-end;
  gap: 1.4rem;
  margin-bottom: 3.2rem;
}

.section-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.idx {
  font-family: var(--serif);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--ash);
  padding-bottom: 0.45rem;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.about-prose p {
  margin: 0 0 1.15rem;
  color: var(--paper);
  font-size: 1.02rem;
}

.lead {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem) !important;
  line-height: 1.4;
  color: var(--moon) !important;
}

.facts {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.facts li {
  padding: 1rem 1rem 1rem 0;
  border-bottom: 1px solid var(--line);
}

.facts span {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 0.25rem;
}

.facts strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.eyepiece {
  margin: 0;
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.eyepiece-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  animation: spin 36s linear infinite;
  background:
    repeating-conic-gradient(from 0deg, transparent 0 8deg, rgba(255, 255, 255, 0.05) 8deg 9deg);
  mask: radial-gradient(circle, transparent 68%, #000 69%);
}

.eyepiece-glass {
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  box-shadow:
    -20px 0 50px rgba(255, 255, 255, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.eyepiece-glass::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.12), transparent 36%, transparent 70%, rgba(255, 255, 255, 0.05));
  animation: sheen 7s ease-in-out infinite;
}

@keyframes sheen {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.8; }
}

.eyepiece-glass img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eyepiece figcaption {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1.2rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--ash);
}

/* How to buy */
.howto {
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255, 255, 255, 0.03), transparent 60%);
}

.flight {
  position: relative;
  display: grid;
  gap: 1.1rem;
}

.spine {
  position: absolute;
  left: 27px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(var(--moon), rgba(255, 255, 255, 0.05));
  overflow: hidden;
}

.spine::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(transparent, #fff, transparent);
  animation: pulse-down 3.4s ease-in-out infinite;
}

@keyframes pulse-down {
  0% { top: -80px; }
  100% { top: 100%; }
}

.burn {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.4rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s ease, transform 0.35s ease;
}

.burn::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent);
  transition: width 0.5s ease;
}

.burn:hover {
  border-color: var(--line-strong);
  transform: translateX(6px);
}

.burn:hover::before {
  width: 100%;
}

.burn-n {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  font-family: var(--serif);
  font-size: 1rem;
  background: var(--void);
  position: relative;
  z-index: 1;
}

.burn-body h3 {
  margin: 0 0 0.45rem;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
}

.burn-body p {
  margin: 0 0 0.8rem;
  color: var(--paper);
  max-width: 46rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--moon);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 0.15rem;
}

.text-link:hover {
  border-bottom-color: #fff;
}

/* Chart */
.chart-open {
  margin-left: auto;
}

.viewport {
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
}

.viewport-chrome {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash);
}

.live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--moon);
}

.live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px #fff;
  animation: blink 1.6s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

.viewport-frame {
  position: relative;
  height: min(720px, 78vh);
}

.viewport-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.15) contrast(1.05);
}

.corner {
  position: absolute;
  width: 18px;
  height: 18px;
  z-index: 2;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0.55);
}

.c-tl { top: 10px; left: 10px; border-top: 1px solid; border-left: 1px solid; }
.c-tr { top: 10px; right: 10px; border-top: 1px solid; border-right: 1px solid; }
.c-bl { bottom: 10px; left: 10px; border-bottom: 1px solid; border-left: 1px solid; }
.c-br { bottom: 10px; right: 10px; border-bottom: 1px solid; border-right: 1px solid; }

.viewport-frame::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.05), transparent);
  animation: scan 6.5s linear infinite;
  pointer-events: none;
  mix-blend-mode: screen;
}

@keyframes scan {
  0% { top: -80px; }
  100% { top: 100%; }
}

/* Join */
.join {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 8rem 0 5rem;
  overflow: hidden;
}

.join-banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  animation: banner-drift 28s ease-in-out infinite;
}

@keyframes banner-drift {
  0%, 100% { transform: scale(1.06) translateX(0); }
  50% { transform: scale(1.12) translateX(-1.5%); }
}

.join-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.82) 0%, rgba(5, 5, 6, 0.42) 46%, rgba(5, 5, 6, 0.2) 100%),
    linear-gradient(180deg, rgba(5, 5, 6, 0.35), transparent 28%, rgba(5, 5, 6, 0.72));
}

.join-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.join .section-head {
  margin-bottom: 1.4rem;
}

.join-lead {
  max-width: 34rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--paper);
  margin: 0 0 2.4rem;
}

.dock {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.dock-card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.15rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 5, 6, 0.42);
  backdrop-filter: blur(12px);
  min-height: 128px;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.dock-card img {
  width: 18px;
  height: 18px;
}

.dock-card span {
  font-family: var(--serif);
  font-size: 1.35rem;
}

.dock-card small {
  color: var(--ash);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.64rem;
}

.dock-card:hover {
  transform: translateY(-6px);
  border-color: #fff;
  background: rgba(5, 5, 6, 0.62);
}

/* Footer */
.colophon {
  position: relative;
  z-index: 3;
  padding: 2.4rem 0;
  border-top: 1px solid var(--line);
  background: #050506;
}

.colophon-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.colophon p {
  margin: 0;
  color: var(--ash);
  font-size: 0.82rem;
}

.fine {
  text-align: right;
  max-width: 22rem;
  justify-self: end;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .eclipse {
    width: min(360px, 78vw);
    order: -1;
  }

  .sat,
  .eclipse-beam {
    display: none;
  }

  .hud {
    display: none;
  }

  .section-head {
    flex-wrap: wrap;
  }

  .chart-open {
    margin-left: 0;
  }

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

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

  .fine {
    text-align: left;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .nav {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 6, 0.94);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav a {
    font-size: 1.1rem;
    letter-spacing: 0.22em;
  }

  .menu {
    display: block;
    z-index: 40;
  }

  .buy-pill span {
    display: none;
  }

  .hero {
    padding-top: 6.5rem;
  }

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

  .viewport-frame {
    height: 560px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .wordmark span {
    opacity: 1;
    transform: none;
  }
}
