:root {
  --void: #0b0906;
  --ink: #120e09;
  --soil: #241c12;
  --bark: #3a2e1c;
  --mustard: #d4a017;
  --gold: #e4b42a;
  --amber: #c4920a;
  --ember: #f0c34a;
  --cream: #f6ecd4;
  --paper: #e8d7b0;
  --dust: #a89060;
  --line: rgba(228, 180, 42, 0.28);
  --serif: "Playfair Display", "Times New Roman", serif;
  --display: "Anton", "Impact", sans-serif;
  --body: "Cormorant Garamond", "Georgia", serif;
  --ui: "Outfit", "Segoe UI", sans-serif;
  --brush: "Caveat Brush", "Segoe Script", cursive;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--void);
  color: var(--cream);
  font-family: var(--body);
  font-size: 20px;
  line-height: 1.55;
  cursor: none;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(212, 160, 23, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 80%, rgba(180, 110, 20, 0.08), transparent 50%),
    radial-gradient(ellipse 40% 30% at 0% 60%, rgba(228, 180, 42, 0.06), transparent 50%),
    linear-gradient(180deg, #100c07 0%, #0b0906 40%, #120d08 100%);
}

body::after {
  content: "W";
  position: fixed;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 42vw;
  color: rgba(228, 180, 42, 0.035);
  letter-spacing: -0.06em;
  user-select: none;
}

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

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

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

.grain,
.vignette,
#dust,
.orb {
  pointer-events: none;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 40;
  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='0.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-shift 8s steps(6) infinite;
}

.vignette {
  position: fixed;
  inset: 0;
  z-index: 30;
  box-shadow: inset 0 0 180px 40px rgba(0, 0, 0, 0.55);
}

#dust {
  position: fixed;
  inset: 0;
  z-index: 2;
}

.orb {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  opacity: 0.22;
}

.orb-a {
  top: 8%;
  left: 12%;
  background: #c4920a;
  animation: orb-drift 18s ease-in-out infinite;
}

.orb-b {
  right: 8%;
  bottom: 12%;
  background: #8a5a12;
  animation: orb-drift 22s ease-in-out infinite reverse;
}

.cursor,
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.cursor {
  width: 28px;
  height: 28px;
  border: 1px solid var(--gold);
  transition: width 0.25s, height 0.25s, background 0.25s;
}

.cursor.is-hot {
  width: 46px;
  height: 46px;
  background: rgba(228, 180, 42, 0.08);
}

.cursor-dot {
  width: 4px;
  height: 4px;
  background: var(--ember);
}

/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: #0b0906;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

#preloader.is-gone {
  opacity: 0;
  visibility: hidden;
}

.preloader-seal {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 8px var(--cream), 0 0 60px rgba(228, 180, 42, 0.45);
  animation: stamp 0.7s cubic-bezier(0.2, 1.4, 0.3, 1) both;
}

.preloader-seal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preloader-mark {
  position: absolute;
  bottom: 12vh;
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.46em;
  color: var(--dust);
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 40px;
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
}

.nav.is-stuck {
  background: rgba(11, 9, 6, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  letter-spacing: 0.12em;
  font-size: 20px;
}

.nav-brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--cream);
}

.nav-links {
  display: flex;
  gap: 28px;
  font-family: var(--ui);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  color: var(--paper);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

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

.icon-link {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.icon-link img {
  width: 15px;
  height: 15px;
}

.icon-link:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(228, 180, 42, 0.25);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 1.5px;
  background: var(--cream);
}

.nav-toggle span:first-child { top: 15px; }
.nav-toggle span:last-child { bottom: 15px; }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 80px 36px;
  background: rgba(11, 9, 6, 0.96);
  font-family: var(--display);
  font-size: 36px;
  letter-spacing: 0.08em;
}

.mobile-menu.is-open {
  display: flex;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 18px;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

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

.btn-lg {
  padding: 16px 26px;
  font-size: 13px;
}

.btn-gold {
  background: linear-gradient(180deg, #f0c34a 0%, #c4920a 100%);
  color: #1a1408;
  box-shadow: 0 8px 24px rgba(196, 146, 10, 0.28);
}

.btn-gold::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.35) 45%, transparent 70%);
  transform: translateX(-120%);
}

.btn-gold:hover::before {
  animation: shine 0.8s ease;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(196, 146, 10, 0.4);
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--cream);
  background: rgba(228, 180, 42, 0.04);
}

.btn-ghost:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(228, 180, 42, 0.18);
}

/* Hero */
.hero {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 100px;
  text-align: center;
}

.hero-frame {
  position: absolute;
  inset: 88px 32px 32px;
  border: 1px solid var(--line);
  pointer-events: none;
}

.hero-frame::before,
.hero-frame::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid var(--gold);
}

.hero-frame::before {
  top: -1px;
  left: -1px;
  border-right: 0;
  border-bottom: 0;
}

.hero-frame::after {
  bottom: -1px;
  right: -1px;
  border-left: 0;
  border-top: 0;
}

.cert-no,
.cert-chain {
  position: absolute;
  font-family: var(--ui);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--dust);
}

.cert-no { top: 14px; left: 18px; }
.cert-chain { top: 14px; right: 18px; }

.hero-seal-wrap {
  position: relative;
  width: 236px;
  height: 236px;
  margin-bottom: 36px;
}

.seal {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 0 0 6px var(--cream),
    0 0 0 8px var(--amber),
    0 20px 50px rgba(0, 0, 0, 0.45),
    0 0 70px rgba(228, 180, 42, 0.28);
  animation: seal-float 6s ease-in-out infinite;
}

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

.seal-orbit,
.seal-orbit-2 {
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  border: 1px dashed rgba(228, 180, 42, 0.35);
  animation: spin 28s linear infinite;
}

.seal-orbit-2 {
  inset: -40px;
  border-style: dotted;
  animation-duration: 42s;
  animation-direction: reverse;
  opacity: 0.55;
}

.hero-wordmark h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.86;
}

.wm-worthless {
  font-family: var(--display);
  font-size: clamp(56px, 13vw, 148px);
  letter-spacing: 0.04em;
  background: linear-gradient(110deg, #fff6df 0%, #e8d7b0 28%, #fff3c4 46%, #c9a227 72%, #fff6df 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 18px 50px rgba(196, 146, 10, 0.15);
  position: relative;
  animation: title-in 1s 0.2s both, foil 7s 1.2s linear infinite;
}

.wm-worthless::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 58%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #8a5a12 20%, #f0c34a 50%, #8a5a12 80%, transparent);
  transform: rotate(-2.4deg);
  opacity: 0.85;
  filter: drop-shadow(0 0 6px rgba(240, 195, 74, 0.6));
}

.wm-coin {
  margin-top: -6px;
  font-family: var(--brush);
  font-weight: 400;
  font-size: clamp(42px, 7vw, 86px);
  color: var(--gold);
  letter-spacing: 0.18em;
  transform: rotate(-4deg);
  text-shadow: 0 8px 24px rgba(196, 146, 10, 0.35);
  animation: title-in 1s 0.35s both;
}

.ca-bar {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding: 10px 14px 10px 16px;
  border: 1px solid var(--line);
  background: rgba(18, 14, 9, 0.72);
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.ca-bar span {
  color: var(--gold);
}

.ca-bar code {
  max-width: min(42vw, 280px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--paper);
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.ca-bar button {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
}

.ca-bar button:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-ticker {
  margin-top: 18px;
  font-family: var(--ui);
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--ember);
}

.hero-bio {
  max-width: 560px;
  margin: 18px auto 0;
  font-size: 23px;
  font-style: italic;
  color: var(--paper);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.hero-officials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.hero-officials a,
.sol-badge {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(18, 14, 9, 0.6);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.hero-officials a:hover {
  transform: translateY(-3px) rotate(-6deg);
  border-color: var(--gold);
  box-shadow: 0 8px 20px rgba(228, 180, 42, 0.2);
}

.hero-officials img {
  width: 18px;
  height: 18px;
}

.sol-badge {
  width: auto;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  gap: 8px;
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.sol-badge img {
  width: 16px;
}

.scroll-cue {
  position: absolute;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--ui);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dust);
}

.scroll-cue i {
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: drip 1.8s ease-in-out infinite;
}

/* Tape */
.tape {
  position: relative;
  z-index: 3;
  border-block: 1px solid var(--line);
  background: rgba(36, 28, 18, 0.55);
  overflow: hidden;
  padding: 14px 0;
}

.tape-track {
  display: flex;
  width: max-content;
  gap: 48px;
  animation: marquee 32s linear infinite;
  font-family: var(--ui);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--paper);
}

.tape-track span {
  white-space: nowrap;
}

.tape-track span::before {
  content: "W";
  font-family: var(--serif);
  margin-right: 48px;
  color: var(--gold);
}

/* Sections */
section {
  position: relative;
  z-index: 3;
  padding: 120px 8vw 40px;
}

.section-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-bottom: 48px;
  position: relative;
}

.section-rule::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}

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

.roman {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.4em;
  color: var(--gold);
}

.eyebrow {
  margin-top: 8px;
  font-family: var(--ui);
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--dust);
}

.section-head h2 {
  margin-top: 14px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
  color: var(--cream);
}

/* About */
.stamp-quote {
  position: relative;
  max-width: 760px;
  margin: 0 auto 48px;
  padding: 42px 48px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 20%, rgba(228, 180, 42, 0.06), transparent 40%),
    rgba(18, 14, 9, 0.7);
}

.stamp-quote::before,
.stamp-quote::after {
  content: "";
  position: absolute;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(228, 180, 42, 0.45);
}

.stamp-quote::before {
  top: 10px;
  left: 10px;
  border-right: 0;
  border-bottom: 0;
}

.stamp-quote::after {
  right: 10px;
  bottom: 10px;
  border-left: 0;
  border-top: 0;
}

.stamp-quote p {
  font-size: clamp(24px, 3vw, 34px);
  font-style: italic;
  line-height: 1.35;
}

.stamp-quote cite {
  display: block;
  margin-top: 18px;
  font-family: var(--ui);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dust);
}

.about-body {
  max-width: 760px;
  margin: 0 auto 64px;
  font-size: 22px;
  color: var(--paper);
}

.zeros {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.zero-card {
  padding: 32px 28px 36px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(36, 28, 18, 0.55), rgba(11, 9, 6, 0.4));
  transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.zero-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35), 0 0 30px rgba(228, 180, 42, 0.12);
}

.zero-num {
  font-family: var(--display);
  font-size: 84px;
  line-height: 0.8;
  background: linear-gradient(180deg, var(--cream), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.zero-card h3 {
  margin: 16px 0 10px;
  font-family: var(--serif);
  font-size: 28px;
}

.zero-card p {
  font-size: 18px;
  color: var(--paper);
}

/* How to buy */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 78px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.45;
}

.step {
  position: relative;
  padding: 28px 22px 32px;
  border: 1px solid var(--line);
  background: rgba(18, 14, 9, 0.62);
  transition: transform 0.35s, border-color 0.35s;
}

.step:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.step-index {
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--gold);
}

.step-icon {
  width: 64px;
  height: 64px;
  margin: 18px 0 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #16110a;
  box-shadow: 0 0 0 6px rgba(228, 180, 42, 0.05);
}

.step-icon img {
  width: 30px;
  height: 30px;
}

.step:has(img[alt="Phantom"]) .step-icon {
  overflow: hidden;
  padding: 0;
}

.step:has(img[alt="Phantom"]) .step-icon img {
  width: 100%;
  height: 100%;
}

.step h3 {
  font-family: var(--serif);
  font-size: 24px;
  margin-bottom: 10px;
}

.step p {
  font-size: 17px;
  color: var(--paper);
}

/* Chart */
.chart-ext {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-family: var(--ui);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember);
}

.chart-ext img {
  width: 16px;
  height: 16px;
}

.chart-frame {
  position: relative;
  height: min(720px, 78vh);
  border: 1px solid var(--line);
  background: #0a0a0a;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(228, 180, 42, 0.08);
}

.chart-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.chart-corners::before,
.chart-corners::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  z-index: 2;
  pointer-events: none;
  border: 2px solid var(--gold);
}

.chart-corners::before {
  top: 10px;
  left: 10px;
  border-right: 0;
  border-bottom: 0;
}

.chart-corners::after {
  right: 10px;
  bottom: 10px;
  border-left: 0;
  border-top: 0;
}

/* Join — banner lives only here */
.banner-plate {
  position: relative;
  margin: 0 auto;
  max-width: 1180px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
}

.banner-plate img {
  width: 100%;
  height: min(620px, 70vh);
  object-fit: cover;
  object-position: center;
  animation: kenburns 22s ease-in-out infinite alternate;
}

.banner-plate figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 48px 40px 40px;
  background: linear-gradient(180deg, transparent, rgba(11, 9, 6, 0.92) 45%);
}

.banner-plate figcaption p {
  max-width: 620px;
  font-size: 22px;
  font-style: italic;
  margin-bottom: 22px;
}

.join-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Footer */
.footer {
  position: relative;
  z-index: 3;
  margin-top: 80px;
  padding: 48px 8vw 56px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--cream);
}

.footer-brand strong {
  display: block;
  font-family: var(--display);
  letter-spacing: 0.1em;
  font-size: 22px;
  font-weight: 400;
}

.footer-brand span {
  font-family: var(--ui);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--dust);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: var(--ui);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--paper);
}

.footer-links img {
  width: 14px;
  height: 14px;
}

.footer-note {
  grid-column: 1 / -1;
  font-size: 16px;
  color: var(--dust);
  max-width: 720px;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.9s ease forwards;
  animation-play-state: paused;
}

.reveal.is-in {
  animation-play-state: running;
}

.zeros .reveal:nth-child(2) { animation-delay: 0.12s; }
.zeros .reveal:nth-child(3) { animation-delay: 0.24s; }
.steps .reveal:nth-child(2) { animation-delay: 0.1s; }
.steps .reveal:nth-child(3) { animation-delay: 0.2s; }
.steps .reveal:nth-child(4) { animation-delay: 0.3s; }

/* Motion */
@keyframes grain-shift {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-2%, 1%); }
  40% { transform: translate(1%, -2%); }
  60% { transform: translate(-1%, 2%); }
  80% { transform: translate(2%, -1%); }
}

@keyframes stamp {
  0% { transform: scale(1.5) rotate(-8deg); opacity: 0; filter: blur(6px); }
  70% { transform: scale(0.94) rotate(1deg); opacity: 1; filter: blur(0); }
  100% { transform: scale(1) rotate(0); }
}

@keyframes seal-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

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

@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, -30px); }
}

@keyframes title-in {
  from { opacity: 0; transform: translateY(24px); filter: blur(8px); }
  to { opacity: 1; transform: none; filter: none; }
}

@keyframes drip {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1) translateY(8px); opacity: 0; }
}

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

@keyframes shine {
  to { transform: translateX(120%); }
}

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

@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

@keyframes foil {
  to { background-position: 220% 50%; }
}

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

  .steps::before {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

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

@media (max-width: 720px) {
  body {
    cursor: auto;
    font-size: 18px;
  }

  .cursor,
  .cursor-dot {
    display: none;
  }

  .nav {
    padding: 14px 18px;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero {
    padding: 120px 16px 80px;
  }

  .hero-frame {
    inset: 78px 12px 16px;
  }

  .hero-seal-wrap {
    width: 176px;
    height: 176px;
  }

  .zeros,
  .steps {
    grid-template-columns: 1fr;
  }

  .stamp-quote {
    padding: 28px 22px;
  }

  .banner-plate img {
    height: 420px;
  }

  .banner-plate figcaption {
    position: relative;
    padding: 24px 20px 28px;
    background: #120e09;
  }

  section {
    padding: 88px 20px 24px;
  }
}

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

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

  body {
    cursor: auto;
  }

  .cursor,
  .cursor-dot {
    display: none;
  }
}
