:root {
  --ink: #07111f;
  --navy: #0b1a30;
  --panel: rgba(10, 24, 46, 0.72);
  --silver: #e7eef6;
  --steel: #93a7c0;
  --ice: #9ec0e6;
  --line: rgba(213, 228, 244, 0.16);
  --line-strong: rgba(213, 228, 244, 0.38);
  --serif: "Fraunces", "Times New Roman", serif;
  --inscript: "Cinzel", "Times New Roman", serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
  --mast: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--silver);
  background: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: rgba(158, 192, 230, 0.35); color: #fff; }

#field {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.vignette {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(90, 140, 200, 0.16), transparent 42%),
    radial-gradient(ellipse at 20% 80%, rgba(40, 80, 140, 0.12), transparent 40%),
    linear-gradient(180deg, rgba(7, 17, 31, 0.2), rgba(7, 17, 31, 0.72));
}
.grain {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: radial-gradient(rgba(255, 255, 255, 0.55) 0.6px, transparent 0.6px);
  background-size: 3px 3px;
}
.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 40;
  background: transparent;
}
.progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, transparent, #d5e4f4, #7ea6d4);
  box-shadow: 0 0 12px rgba(158, 192, 230, 0.8);
}

.mast {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--mast);
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 4vw;
  background: rgba(7, 17, 31, 0.55);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: background 0.4s ease, border-color 0.4s ease;
}
.mast.is-stuck {
  background: rgba(7, 17, 31, 0.88);
  border-bottom-color: var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--inscript);
  letter-spacing: 0.22em;
  font-size: 13px;
}
.brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(213, 228, 244, 0.35);
}
.site-nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
}
.site-nav a {
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  position: relative;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--silver);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--silver); }
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); }
.acquire, .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 999px;
  padding: 10px 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
}
.acquire img, .btn img, .plate img, .steps a img, .chart-link img, .colophon img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.acquire {
  border: 1px solid var(--line-strong);
  position: relative;
  overflow: hidden;
}
.acquire::before, .btn.solid::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.28), transparent 70%);
  transform: translateX(-120%);
  animation: sheen 4.8s ease-in-out infinite;
}
.acquire:hover, .btn.solid:hover { background: var(--silver); color: var(--ink); }
.menu {
  display: none;
  margin-left: auto;
  background: transparent;
  color: var(--silver);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 8px 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-size: 12px;
}

.hero {
  position: relative;
  z-index: 3;
  min-height: calc(100vh - var(--mast));
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-areas:
    "text stage"
    "meta stage";
  gap: 1.5rem 4vw;
  align-items: center;
  padding: 4vh 6vw 8vh;
}
.hero-text { grid-area: text; align-self: end; }
.hero-meta { grid-area: meta; align-self: start; }
.stage { grid-area: stage; }
.kicker {
  font-family: var(--inscript);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--ice);
  margin: 0 0 18px;
}
h1, h2, h3 { font-family: var(--serif); font-weight: 560; letter-spacing: -0.03em; }
h1 {
  margin: 0;
  font-size: clamp(3.1rem, 5.6vw, 6.1rem);
  line-height: 0.92;
  font-weight: 640;
  background: linear-gradient(180deg, #fff 10%, #d5e2f0 45%, #8eabc8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: rise-in 1s ease both;
}
.deck {
  max-width: 38rem;
  color: var(--steel);
  font-size: 1.12rem;
  font-weight: 300;
  margin: 22px 0 0;
  animation: rise-in 1s 0.15s ease both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  animation: rise-in 1s 0.28s ease both;
}
.btn { position: relative; overflow: hidden; border: 1px solid var(--line-strong); }
.btn.solid { background: rgba(213, 228, 244, 0.12); }
.btn.ghost { color: var(--silver); }
.btn.ghost:hover { border-color: var(--silver); background: rgba(213, 228, 244, 0.06); }
.spec {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 36px 0 0;
  max-width: 34rem;
  animation: rise-in 1s 0.4s ease both;
}
.spec div { border-top: 1px solid var(--line); padding-top: 10px; }
.spec dt {
  font-family: var(--inscript);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ice);
}
.spec dd { margin: 6px 0 0; font-size: 15px; }

.stage {
  position: relative;
  height: min(640px, 78vh);
  display: grid;
  place-items: center;
  perspective: 1200px;
}
.halo {
  position: absolute;
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(150, 190, 230, 0.28), rgba(40, 80, 140, 0.05) 55%, transparent 70%);
  filter: blur(8px);
  animation: pulse 7s ease-in-out infinite;
}
.reed {
  position: absolute;
  width: min(500px, 68vw);
  height: min(500px, 68vw);
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, rgba(213, 228, 244, 0.7) 0 2deg, transparent 2deg 6deg);
  -webkit-mask: radial-gradient(circle, transparent 64%, #000 65.2%, #000 68%, transparent 69%);
  mask: radial-gradient(circle, transparent 64%, #000 65.2%, #000 68%, transparent 69%);
  animation: spin 48s linear infinite;
}
.reed.inner {
  width: min(430px, 58vw);
  height: min(430px, 58vw);
  opacity: 0.45;
  animation-duration: 72s;
  animation-direction: reverse;
}
.coin {
  --rx: 0deg;
  --ry: 0deg;
  width: min(390px, 54vw);
  height: min(390px, 54vw);
  border-radius: 50%;
  position: relative;
  transform-style: preserve-3d;
  animation: coin-float 6.5s ease-in-out infinite;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}
.coin img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transform: scale(1.04);
}
.glint {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.45) 48%, transparent 60%);
  mix-blend-mode: screen;
  animation: glint 5.5s ease-in-out infinite;
  pointer-events: none;
}
.mirror {
  position: absolute;
  bottom: 4%;
  width: min(390px, 54vw);
  height: 70px;
  overflow: hidden;
  opacity: 0.28;
  filter: blur(1px);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
}
.mirror img {
  width: min(390px, 54vw);
  height: min(390px, 54vw);
  object-fit: cover;
  border-radius: 50%;
  transform: scaleY(-1) translateY(-78%);
}
.edge-legend {
  position: absolute;
  bottom: 0;
  margin: 0;
  font-family: var(--inscript);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--steel);
}

.ticker {
  position: relative;
  z-index: 3;
  border-block: 1px solid var(--line);
  overflow: hidden;
  background: rgba(7, 17, 31, 0.45);
  backdrop-filter: blur(8px);
}
.ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 36s linear infinite;
  padding: 14px 0;
}
.ticker span {
  font-family: var(--inscript);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--steel);
  padding: 0 28px;
}
.ticker span::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ice);
  margin-right: 28px;
  transform: translateY(-1px);
}

.panel {
  position: relative;
  z-index: 3;
  padding: 7.5rem 6vw;
  max-width: 1240px;
  margin: 0 auto;
}
.panel-intro { max-width: 40rem; margin-bottom: 3rem; }
h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 0.96;
}
.sub { color: var(--steel); font-weight: 300; font-size: 1.05rem; }
.about-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 4vw;
  align-items: start;
}
.medallion {
  margin: 0;
  position: sticky;
  top: 110px;
}
.medallion img {
  width: min(100%, 380px);
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(213, 228, 244, 0.25);
  animation: float 8s ease-in-out infinite;
}
.medallion figcaption {
  margin-top: 18px;
  color: var(--steel);
  font-size: 14px;
  max-width: 280px;
}
.medallion strong {
  display: block;
  font-family: var(--inscript);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--ice);
  font-weight: 500;
  margin-bottom: 6px;
}
.lead { font-size: 1.35rem; line-height: 1.45; margin-top: 0; }
.essay p { color: var(--steel); font-weight: 300; }
.essay .lead { color: var(--silver); }
.virtues { list-style: none; margin: 2rem 0 0; padding: 0; }
.virtues li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.virtues span {
  font-family: var(--inscript);
  color: var(--ice);
  letter-spacing: 0.14em;
  padding-top: 6px;
}
.virtues h3 { margin: 0 0 6px; font-size: 1.55rem; }
.virtues p { margin: 0; }

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.steps li {
  padding: 24px 20px 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(16, 36, 64, 0.55), rgba(7, 17, 31, 0.35));
  border-radius: 18px;
  min-height: 100%;
  transition: transform 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}
.steps li:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}
.num {
  font-family: var(--inscript);
  color: var(--ice);
  letter-spacing: 0.18em;
  font-size: 13px;
}
.steps h3 { margin: 14px 0 8px; font-size: 1.45rem; }
.steps p { margin: 0; color: var(--steel); font-weight: 300; font-size: 0.98rem; }
.steps a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--silver);
  text-decoration: none;
  letter-spacing: 0.04em;
  font-size: 14px;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 3px;
}

.bezel {
  border-radius: 22px;
  padding: 10px;
  background:
    linear-gradient(180deg, rgba(213, 228, 244, 0.2), rgba(213, 228, 244, 0.04));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35), 0 0 40px rgba(90, 140, 200, 0.12);
  animation: glow 6s ease-in-out infinite;
}
.bezel iframe {
  width: 100%;
  height: 680px;
  border: 0;
  border-radius: 14px;
  background: #0b1220;
  display: block;
}
.chart-link { margin-top: 18px; }
.chart-link a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--silver);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}
.chart-link a:hover { color: #fff; }

.proof {
  margin: 0;
  aspect-ratio: 3 / 1;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  position: relative;
}
.proof img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}
.proof::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, 0.16), transparent 58%);
  transform: translateX(-120%);
  animation: sheen 7s ease-in-out infinite;
  pointer-events: none;
}
.museum {
  font-family: var(--inscript);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--steel);
  margin: 14px 0 28px;
}
.join-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.plate {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  padding: 18px 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(10, 24, 46, 0.45);
  transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}
.plate img { width: 28px; height: 28px; }
.plate strong { display: block; font-weight: 500; letter-spacing: 0.04em; }
.plate span span, .plate { color: var(--steel); }
.plate strong { color: var(--silver); }
.plate:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: rgba(16, 36, 64, 0.7);
}

.colophon {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 6vw 40px;
  border-top: 1px solid var(--line);
  color: var(--steel);
  font-size: 14px;
}
.colophon img:first-child {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}
.colophon p { margin: 0; }
.colophon nav { margin-left: auto; display: flex; gap: 14px; }
.colophon nav a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.colophon nav a:hover { border-color: var(--silver); }

.rise {
  opacity: 0;
  transform: translateY(22px);
  animation: rise-in 0.9s ease forwards;
  animation-play-state: paused;
}
.rise.is-in { animation-play-state: running; }

@keyframes rise-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes coin-float {
  0%, 100% { transform: translateY(0) rotateX(var(--rx)) rotateY(var(--ry)); }
  50% { transform: translateY(-12px) rotateX(var(--rx)) rotateY(var(--ry)); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes glint {
  0%, 62% { transform: translateX(-30%); opacity: 0; }
  75% { opacity: 1; }
  100% { transform: translateX(30%); opacity: 0; }
}
@keyframes sheen {
  0%, 55% { transform: translateX(-120%); }
  80%, 100% { transform: translateX(120%); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
@keyframes glow {
  0%, 100% { box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35), 0 0 24px rgba(90, 140, 200, 0.08); }
  50% { box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35), 0 0 48px rgba(120, 170, 220, 0.22); }
}

@media (max-width: 980px) {
  .hero, .about-grid, .steps, .join-row { grid-template-columns: 1fr; }
  .hero {
    grid-template-areas:
      "text"
      "stage"
      "meta";
    min-height: 0;
  }
  .hero-text, .hero-meta { align-self: stretch; }
  .stage { height: auto; min-height: 420px; margin-top: 8px; }
  .medallion { position: static; }
  .medallion img { margin-inline: auto; }
  .spec { grid-template-columns: 1fr; max-width: none; }
  .bezel iframe { height: 520px; }
}
@media (max-width: 760px) {
  .menu { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: var(--mast);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 8px 4vw 16px;
    background: rgba(7, 17, 31, 0.96);
    border-bottom: 1px solid var(--line);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 0; }
  .acquire { display: none; }
  .hero { padding-top: 28px; }
  h1 { font-size: 2.7rem; }
  .coin, .mirror { width: min(300px, 72vw); }
  .coin { height: min(300px, 72vw); }
  .mirror img { width: min(300px, 72vw); height: min(300px, 72vw); }
  .panel { padding: 4.5rem 5vw; }
  .colophon { flex-wrap: wrap; }
  .colophon nav { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .rise { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
