:root {
  --night: #06181f;
  --night-2: #0a2730;
  --teal: #174b55;
  --ivory: #f3ecdc;
  --ivory-2: #ddd2bd;
  --ink: #102027;
  --gold: #d4b36d;
  --gold-bright: #f1d391;
  --wine: #8d3025;
  --wine-dark: #541c18;
  --line-light: rgba(243, 236, 220, .2);
  --line-dark: rgba(16, 32, 39, .18);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --max: 1480px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--night); }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ivory);
  background: var(--night);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}
body::before {
  content: "";
  position: fixed;
  z-index: 500;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  background-image:
    repeating-radial-gradient(circle at 17% 23%, transparent 0 2px, rgba(255,255,255,.14) 3px, transparent 4px),
    repeating-radial-gradient(circle at 82% 71%, transparent 0 3px, rgba(0,0,0,.18) 4px, transparent 5px);
  background-size: 140px 130px, 180px 170px;
  mix-blend-mode: soft-light;
}

button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { color: var(--night); background: var(--gold-bright); }
:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 4px; }

.page-progress {
  position: fixed;
  z-index: 600;
  inset: 0 0 auto;
  height: 3px;
  background: rgba(255,255,255,.05);
}
.page-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--wine), var(--gold-bright));
  box-shadow: 0 0 16px rgba(241, 211, 145, .55);
}

.site-nav {
  position: fixed;
  z-index: 300;
  top: 0;
  left: 0;
  right: 0;
  height: 92px;
  padding: 0 clamp(20px, 4.5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid transparent;
  transition: height .35s ease, background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
.site-nav.scrolled {
  height: 72px;
  background: rgba(6, 24, 31, .84);
  border-color: rgba(243,236,220,.12);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: baseline;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -.08em;
  line-height: 1;
}
.brand span { color: var(--gold); font-style: italic; margin-right: .04em; }
.site-nav nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 48px); }
.site-nav nav a {
  position: relative;
  color: rgba(243,236,220,.72);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.site-nav nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
  transition: right .25s ease;
}
.site-nav nav a:hover { color: var(--ivory); }
.site-nav nav a:hover::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-x {
  min-height: 39px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(241,211,145,.42);
  border-radius: 999px;
  color: var(--gold-bright);
  background: rgba(241,211,145,.08);
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .08em;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.nav-x span { color: rgba(243,236,220,.72); font-size: .61rem; letter-spacing: .04em; }
.nav-x:hover { color: var(--night); background: var(--gold-bright); border-color: var(--gold-bright); transform: translateY(-2px); }
.nav-x:hover span { color: var(--night); }
.nav-status {
  min-height: 39px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(243,236,220,.25);
  border-radius: 999px;
  color: var(--ivory);
  background: rgba(255,255,255,.06);
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .13em;
  cursor: pointer;
}
.nav-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--wine); box-shadow: 0 0 12px rgba(141,48,37,.9); }

.hero {
  position: relative;
  min-height: max(760px, 100svh);
  overflow: hidden;
  isolation: isolate;
  background: var(--night);
}
.hero-sky {
  position: absolute;
  z-index: -4;
  inset: -4%;
  background: url("./assets/heaven-panorama-v2.webp") center / cover no-repeat;
  transform: translate3d(var(--sky-x, 0), var(--sky-y, 0), 0) scale(1.07);
  transition: transform .25s cubic-bezier(.2,.7,.2,1);
  will-change: transform;
}
.hero-shade {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    radial-gradient(circle at 72% 44%, transparent 0 19%, rgba(6,24,31,.16) 43%, rgba(6,24,31,.62) 85%),
    linear-gradient(90deg, rgba(3,15,20,.93) 0%, rgba(4,20,27,.72) 35%, rgba(4,19,25,.08) 66%, rgba(3,15,20,.44) 100%),
    linear-gradient(0deg, rgba(4,18,24,.76), transparent 33%);
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .24;
  background-image:
    linear-gradient(rgba(243,236,220,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243,236,220,.08) 1px, transparent 1px);
  background-size: 9vw 9vw;
  mask-image: linear-gradient(90deg, #000, transparent 48%);
}
.hero-flash {
  position: absolute;
  z-index: 20;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at 72% 36%, rgba(255,243,204,.95), rgba(241,211,145,.26) 28%, transparent 60%);
}
.hero-flash.fire { animation: miracle-flash .8s ease both; }
.hero-inner {
  width: min(var(--max), 100%);
  min-height: max(760px, 100svh);
  margin: 0 auto;
  padding: 128px clamp(24px, 5vw, 84px) 74px;
  display: grid;
  grid-template-columns: minmax(480px, 1.1fr) minmax(390px, .9fr);
  align-items: center;
  gap: clamp(30px, 3vw, 60px);
}
.hero-copy { position: relative; z-index: 5; max-width: 760px; }
.kicker {
  margin: 0 0 26px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(243,236,220,.74);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .2em;
  line-height: 1.3;
  text-transform: uppercase;
}
.kicker span { width: 38px; height: 1px; background: var(--gold); box-shadow: 0 0 12px rgba(212,179,109,.55); }
.kicker.dark { color: rgba(16,32,39,.65); }
.hero h1 {
  margin: 0;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(9rem, 16.6vw, 16.5rem);
  font-weight: 600;
  letter-spacing: -.105em;
  line-height: .67;
  text-shadow: 0 12px 56px rgba(0,0,0,.28);
  white-space: nowrap;
}
.hero h1 span { color: var(--gold-bright); font-style: italic; font-weight: 500; }
.hero-line {
  margin: 43px 0 4px;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.55rem);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1;
}
.hero-note { margin: 13px 0 0; color: rgba(243,236,220,.58); font-size: .94rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 37px; }
.button {
  min-height: 54px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
  cursor: pointer;
  text-transform: uppercase;
  transition: transform .22s ease, color .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.button:hover { transform: translateY(-3px); }
.button-gold { color: var(--night); background: var(--gold-bright); box-shadow: 0 12px 35px rgba(212,179,109,.2); }
.button-gold:hover { background: var(--ivory); box-shadow: 0 18px 45px rgba(212,179,109,.28); }
.button-glass { color: var(--ivory); background: rgba(255,255,255,.07); border-color: rgba(243,236,220,.28); backdrop-filter: blur(12px); }
.button-glass:hover { background: rgba(255,255,255,.13); border-color: rgba(243,236,220,.55); }
.button-ink { color: var(--ivory); background: var(--ink); box-shadow: 0 12px 34px rgba(16,32,39,.14); }
.button-ink:hover { background: var(--wine); }

.hero-portrait {
  --portrait-x: 0px;
  --portrait-y: 0px;
  position: relative;
  z-index: 2;
  width: min(39vw, 590px);
  justify-self: end;
  transform: translate3d(var(--portrait-x), var(--portrait-y), 0);
  transition: transform .25s cubic-bezier(.2,.7,.2,1);
  will-change: transform;
}
.portrait-frame {
  position: relative;
  z-index: 2;
  height: min(78svh, 760px);
  min-height: 590px;
  overflow: hidden;
  border: 1px solid rgba(243,236,220,.38);
  border-radius: 300px 300px 38px 38px;
  background: #6f9ba4;
  box-shadow: 0 38px 95px rgba(0,0,0,.44), inset 0 0 0 8px rgba(243,236,220,.06);
}
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.hero-portrait:hover .portrait-frame img { transform: scale(1.035); }
.portrait-sheen { position: absolute; inset: 0; background: linear-gradient(115deg, rgba(255,255,255,.13), transparent 24%, transparent 73%, rgba(212,179,109,.12)); pointer-events: none; }
.portrait-orbit {
  position: absolute;
  z-index: 1;
  inset: -35px;
  border: 1px solid rgba(212,179,109,.46);
  border-radius: 50% 50% 45% 45%;
  animation: orbit-turn 24s linear infinite;
}
.portrait-orbit::before,
.portrait-orbit::after,
.portrait-orbit span { content: ""; position: absolute; border-radius: 50%; background: var(--gold-bright); box-shadow: 0 0 16px var(--gold); }
.portrait-orbit::before { width: 8px; height: 8px; top: 15%; left: 3%; }
.portrait-orbit::after { width: 5px; height: 5px; right: 10%; bottom: 17%; }
.portrait-orbit span { width: 4px; height: 4px; left: 24%; bottom: -2px; }
.portrait-seal {
  position: absolute;
  z-index: 4;
  right: -38px;
  bottom: 94px;
  width: 118px;
  height: 118px;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid rgba(16,32,39,.18);
  border-radius: 50%;
  color: var(--night);
  background: var(--gold-bright);
  box-shadow: 0 18px 45px rgba(0,0,0,.3);
  transform: rotate(7deg);
}
.portrait-seal small { font-size: .51rem; font-weight: 800; letter-spacing: .13em; }
.portrait-seal strong { margin: -4px 0; font-family: var(--serif); font-size: 2.65rem; line-height: 1; }
.portrait-whisper {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: -22px;
  min-height: 45px;
  padding: 0 18px;
  border: 1px solid rgba(243,236,220,.28);
  border-radius: 999px;
  color: var(--ivory);
  background: rgba(6,24,31,.9);
  box-shadow: 0 13px 34px rgba(0,0,0,.32);
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .13em;
  cursor: pointer;
  transform: translateX(-50%);
  white-space: nowrap;
}
.portrait-whisper span { color: var(--gold-bright); margin-right: 8px; }
.hero-index { position: absolute; left: clamp(24px, 4.5vw, 76px); bottom: 31px; display: flex; align-items: center; gap: 11px; color: rgba(243,236,220,.48); font-size: .58rem; font-weight: 800; letter-spacing: .16em; }
.hero-index i { width: 58px; height: 1px; background: rgba(243,236,220,.28); }
.scroll-cue { position: absolute; right: clamp(24px, 4.5vw, 76px); bottom: 29px; display: flex; align-items: center; gap: 12px; color: rgba(243,236,220,.58); font-size: .58rem; font-weight: 800; letter-spacing: .16em; }
.scroll-cue span { width: 28px; height: 28px; border: 1px solid rgba(243,236,220,.3); border-radius: 50%; }
.scroll-cue span::after { content: ""; display: block; width: 4px; height: 4px; margin: 8px auto 0; border-right: 1px solid var(--ivory); border-bottom: 1px solid var(--ivory); transform: rotate(45deg); animation: descend 1.8s ease-in-out infinite; }

.divine-ticker { overflow: hidden; border-block: 1px solid rgba(16,32,39,.15); color: var(--night); background: var(--gold-bright); }
.divine-ticker div { width: max-content; padding: 17px 0 15px; display: flex; align-items: center; gap: 30px; animation: ticker 28s linear infinite; }
.divine-ticker span { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; letter-spacing: .08em; }
.divine-ticker i { color: var(--wine); font-style: normal; }

.section { position: relative; padding: clamp(105px, 11vw, 185px) clamp(22px, 5vw, 84px); }
.origin, .playground, .oracle, .receipts, .token, .finale { content-visibility: auto; contain-intrinsic-size: 900px; }
.origin {
  min-height: 720px;
  display: grid;
  grid-template-columns: .55fr 1.25fr .75fr;
  align-items: center;
  gap: clamp(30px, 5vw, 84px);
  color: var(--ink);
  background: var(--ivory);
  overflow: hidden;
}
.origin::after { content: ""; position: absolute; width: 470px; height: 470px; right: -170px; bottom: -230px; border: 1px solid rgba(141,48,37,.25); border-radius: 50%; box-shadow: 0 0 0 70px rgba(141,48,37,.04), 0 0 0 150px rgba(212,179,109,.05); }
.origin-mark { color: var(--wine); font-family: var(--serif); font-size: clamp(13rem, 24vw, 25rem); font-style: italic; font-weight: 600; line-height: .6; opacity: .94; text-shadow: 17px 16px 0 rgba(212,179,109,.25); }
.origin h2, .playground h2, .oracle h2, .receipts h2, .token h2, .finale h2 { margin: 0; font-family: var(--serif); font-size: clamp(4rem, 7.5vw, 8rem); font-weight: 600; letter-spacing: -.055em; line-height: .82; }
h2 em { color: var(--wine); font-style: italic; font-weight: 500; }
.origin-story { position: relative; z-index: 1; max-width: 430px; }
.origin-story .lead { margin: 0 0 20px; font-family: var(--serif); font-size: 1.65rem; font-weight: 600; line-height: 1.18; }
.origin-story > p:not(.lead) { color: rgba(16,32,39,.65); line-height: 1.8; }
.origin-story blockquote { margin: 35px 0 0; padding: 20px 23px; border-left: 2px solid var(--wine); color: var(--wine); background: rgba(212,179,109,.14); font-family: var(--serif); font-size: 1.28rem; font-style: italic; font-weight: 600; }

.playground { padding-inline: 0; background: var(--night); overflow: hidden; }
.playground .section-head { width: min(var(--max), 100%); margin: 0 auto 66px; padding: 0 clamp(22px, 5vw, 84px); display: flex; align-items: end; justify-content: space-between; gap: 36px; }
.playground h2 em, .oracle h2 em, .token h2 em, .finale h2 em { color: var(--gold-bright); }
.gallery-tools { display: flex; align-items: end; gap: 32px; }
.gallery-tools > p { max-width: 180px; margin: 0; color: rgba(243,236,220,.55); font-size: .85rem; }
.gallery-tools > div, .receipts-bar > div { display: flex; align-items: center; gap: 13px; }
.gallery-tools button, .receipts-bar button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(243,236,220,.24);
  border-radius: 50%;
  color: var(--ivory);
  background: rgba(255,255,255,.05);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.gallery-tools button:hover, .receipts-bar button:hover { background: var(--wine); transform: scale(1.06); }
#sceneCount { min-width: 66px; color: rgba(243,236,220,.6); font-size: .65rem; font-weight: 800; letter-spacing: .13em; text-align: center; }
.scene-rail {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 0 max(22px, calc((100vw - var(--max)) / 2 + 5vw)) 38px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}
.scene-rail::-webkit-scrollbar, .tweet-rail::-webkit-scrollbar { display: none; }
.scene-rail.dragging { cursor: grabbing; scroll-behavior: auto; }
.scene-card {
  position: relative;
  flex: 0 0 min(77vw, 980px);
  height: min(62vw, 650px);
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(243,236,220,.16);
  border-radius: 4px;
  background: var(--night-2);
  box-shadow: 0 28px 80px rgba(0,0,0,.26);
  scroll-snap-align: center;
  contain: layout paint;
}
.scene-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s cubic-bezier(.2,.7,.2,1), filter .5s ease; }
.scene-card:nth-child(2) img, .scene-card:nth-child(3) img { object-position: center 32%; }
.scene-card:hover img { transform: scale(1.035); filter: saturate(1.05); }
.scene-gradient { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(3,15,20,.06) 30%, rgba(3,15,20,.88) 100%), linear-gradient(90deg, rgba(3,15,20,.26), transparent 54%); }
.scene-number { position: absolute; top: 25px; right: 28px; color: rgba(243,236,220,.7); font-family: var(--serif); font-size: 1.2rem; font-style: italic; }
.scene-copy { position: absolute; left: clamp(24px, 5vw, 65px); bottom: clamp(25px, 5vw, 58px); }
.scene-copy p { margin: 0 0 11px; color: var(--gold-bright); font-size: .63rem; font-weight: 800; letter-spacing: .2em; }
.scene-copy h3 { margin: 0; font-family: var(--serif); font-size: clamp(3rem, 5vw, 5.9rem); font-weight: 600; letter-spacing: -.045em; line-height: .79; }

.oracle {
  min-height: 900px;
  display: grid;
  grid-template-columns: minmax(380px, .9fr) minmax(440px, .82fr);
  align-items: center;
  justify-content: center;
  gap: clamp(70px, 9vw, 150px);
  background: linear-gradient(135deg, #092a34, #06181f 64%);
  overflow: hidden;
}
.oracle::before { content: ""; position: absolute; inset: 0; opacity: .11; background-image: linear-gradient(rgba(243,236,220,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(243,236,220,.12) 1px, transparent 1px); background-size: 70px 70px; }
.oracle-visual { position: relative; width: min(43vw, 630px); aspect-ratio: 1; }
.oracle-visual img { position: relative; z-index: 2; width: 100%; height: 100%; object-fit: cover; border-radius: 50%; border: 1px solid rgba(243,236,220,.28); box-shadow: 0 36px 90px rgba(0,0,0,.38); transition: transform .6s ease, filter .6s ease; }
.oracle-visual.thinking img { transform: scale(.975) rotate(-1deg); filter: brightness(.72) saturate(.8); }
.oracle-visual > p { position: absolute; z-index: 4; right: -37px; bottom: 52px; margin: 0; padding: 12px 17px; border-radius: 999px; color: var(--night); background: var(--gold-bright); font-size: .61rem; font-weight: 800; letter-spacing: .13em; transform: rotate(-5deg); }
.oracle-rings, .oracle-rings i { position: absolute; z-index: 1; inset: -27px; border: 1px solid rgba(212,179,109,.25); border-radius: 50%; animation: orbit-turn 28s linear infinite; }
.oracle-rings i:nth-child(1) { inset: -54px; border-style: dashed; animation-direction: reverse; animation-duration: 36s; }
.oracle-rings i:nth-child(2) { inset: -82px; opacity: .4; animation-duration: 50s; }
.oracle-rings i:nth-child(3) { inset: -6px; border-color: rgba(243,236,220,.11); animation-direction: reverse; }
.oracle-copy { position: relative; z-index: 2; max-width: 610px; }
.oracle-copy form { margin-top: 46px; }
.oracle-copy label { display: block; margin-bottom: 10px; color: rgba(243,236,220,.55); font-size: .65rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.oracle-input { display: flex; border-bottom: 1px solid rgba(243,236,220,.32); transition: border-color .2s ease; }
.oracle-input:focus-within { border-color: var(--gold-bright); }
.oracle-input input { min-width: 0; flex: 1; padding: 17px 0; border: 0; outline: 0; color: var(--ivory); background: transparent; font-family: var(--serif); font-size: 1.55rem; }
.oracle-input input::placeholder { color: rgba(243,236,220,.3); }
.oracle-input button { min-width: 90px; border: 0; color: var(--gold-bright); background: transparent; font-size: .7rem; font-weight: 800; letter-spacing: .13em; cursor: pointer; }
.oracle-input button:disabled { opacity: .5; cursor: wait; }
.oracle-input button span { margin-left: 9px; }
.oracle-answer { min-height: 118px; margin-top: 34px; padding: 21px 25px; display: flex; flex-direction: column; justify-content: center; border: 1px solid rgba(243,236,220,.15); border-radius: 3px; background: rgba(255,255,255,.045); transition: border-color .3s ease, background .3s ease; }
.oracle-answer.answering { border-color: var(--gold); background: rgba(212,179,109,.1); }
.oracle-answer span { color: var(--gold); font-size: .57rem; font-weight: 800; letter-spacing: .18em; }
.oracle-answer strong { margin-top: 5px; font-family: var(--serif); font-size: clamp(1.75rem, 3vw, 2.6rem); font-weight: 600; line-height: 1.1; }
.fine-print { margin: 12px 0 0; color: rgba(243,236,220,.34); font-size: .72rem; }

.receipts {
  min-height: 760px;
  padding-inline: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 91% 8%, rgba(212,179,109,.24), transparent 24%),
    radial-gradient(circle at 6% 86%, rgba(141,48,37,.08), transparent 25%),
    var(--ivory);
  overflow: hidden;
}
.receipts::before {
  content: "X";
  position: absolute;
  top: -14%;
  right: -2%;
  color: rgba(16,32,39,.035);
  font-family: var(--sans);
  font-size: clamp(24rem, 44vw, 48rem);
  font-weight: 800;
  letter-spacing: -.12em;
  line-height: 1;
  pointer-events: none;
}
.receipts-head {
  position: relative;
  z-index: 1;
  width: min(var(--max), 100%);
  margin: 0 auto 58px;
  padding: 0 clamp(22px, 5vw, 84px);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}
.receipts-title { max-width: 950px; }
.receipts-summary {
  min-width: 285px;
  padding: 9px 0 9px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-left: 1px solid rgba(16,32,39,.2);
}
.receipts-summary strong {
  color: var(--wine);
  font-family: var(--serif);
  font-size: 4.7rem;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -.08em;
  line-height: .8;
}
.receipts-summary p { margin: 0; color: rgba(16,32,39,.6); font-size: .78rem; font-weight: 700; line-height: 1.7; }
.legacy-tweets[hidden] { display: none !important; }
.native-tweet-viewer {
  position: relative;
  z-index: 2;
  width: min(680px, calc(100% - 40px));
  margin: 0 auto;
}
.native-tweet-controls {
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.native-tweet-controls button {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(16,32,39,.26);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.native-tweet-controls button:hover { color: var(--ivory); background: var(--wine); border-color: var(--wine); transform: scale(1.06); }
.native-tweet-position { min-width: 108px; display: flex; align-items: center; flex-direction: column; text-align: center; }
.native-tweet-position span { color: var(--wine); font-size: .55rem; font-weight: 800; letter-spacing: .16em; line-height: 1.4; }
.native-tweet-position strong { margin-top: 4px; color: rgba(16,32,39,.64); font-size: .67rem; font-weight: 800; letter-spacing: .13em; }
.native-tweet-frame {
  min-height: 320px;
  display: grid;
  justify-items: center;
  align-items: start;
}
.native-tweet-fallback,
.native-embed-slot {
  width: min(550px, 100%);
  grid-area: 1 / 1;
}
.native-tweet-fallback {
  min-height: 260px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(16,32,39,.16);
  border-radius: 16px;
  color: #101419;
  background: #fff;
  box-shadow: 0 18px 48px rgba(16,32,39,.1);
  transition: opacity .2s ease, visibility .2s ease;
}
.native-tweet-fallback > span { color: rgba(16,32,39,.58); font-size: .78rem; font-weight: 700; }
.native-tweet-fallback p { margin: 37px 0 30px; flex: 1; font-size: 1.24rem; font-weight: 500; line-height: 1.5; }
.native-tweet-fallback time { padding-top: 16px; border-top: 1px solid rgba(16,32,39,.1); color: rgba(16,32,39,.48); font-size: .7rem; font-weight: 700; }
.native-tweet-fallback:hover { border-color: rgba(29,155,240,.5); }
.native-tweet-fallback.embed-ready { opacity: 0; visibility: hidden; pointer-events: none; }
.native-embed-slot { visibility: hidden; opacity: 0; transition: opacity .28s ease; }
.native-embed-slot.ready { visibility: visible; opacity: 1; }
.native-embed-slot iframe { max-width: 100% !important; margin-inline: auto !important; }
.tweet-pips { max-width: 330px; margin: 18px auto 0; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px; }
.tweet-pips button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: rgba(16,32,39,.22); cursor: pointer; transition: width .2s ease, border-radius .2s ease, background .2s ease; }
.tweet-pips button.og { background: rgba(141,48,37,.35); }
.tweet-pips button.active { width: 25px; border-radius: 999px; background: var(--wine); }
.native-tweet-viewer + .legacy-tweets + .receipt-note { margin-top: 26px; text-align: center; }
.receipts-bar {
  position: relative;
  z-index: 2;
  width: min(1312px, calc(100% - 44px));
  margin: 0 auto 18px;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(243,236,220,.08);
  border-radius: 4px;
  color: var(--ivory);
  background: var(--ink);
  box-shadow: 0 14px 38px rgba(16,32,39,.13);
}
.receipts-bar p { margin: 0; font-size: .67rem; font-weight: 800; letter-spacing: .14em; }
.receipts-bar p span { color: var(--gold); margin-right: 9px; }
.receipts-bar button { width: 37px; height: 37px; }
#tweetCount { min-width: 66px; color: rgba(243,236,220,.58); font-size: .63rem; font-weight: 800; letter-spacing: .13em; text-align: center; }
.tweet-rail {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 3px max(22px, calc((100vw - var(--max)) / 2 + 5vw)) 38px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}
.tweet-rail.dragging { cursor: grabbing; scroll-behavior: auto; }
.tweet-card {
  position: relative;
  flex: 0 0 min(430px, 84vw);
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(16,32,39,.12);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(16,32,39,.11);
  scroll-snap-align: center;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s ease, box-shadow .35s ease;
  contain: layout paint;
}
.tweet-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--wine), var(--gold-bright), var(--teal));
  opacity: .78;
}
.tweet-card.og-receipt { background: linear-gradient(145deg, rgba(241,211,145,.13), transparent 38%), #fff; }
.tweet-card.og-receipt::before { height: 4px; background: linear-gradient(90deg, var(--gold-bright), var(--wine)); opacity: 1; }
.tweet-card:hover { transform: translateY(-8px); border-color: rgba(212,179,109,.72); box-shadow: 0 28px 70px rgba(16,32,39,.17); }
.tweet-link { min-height: 330px; padding: 26px 26px 22px; display: flex; flex-direction: column; }
.tweet-head { display: flex; align-items: center; gap: 12px; }
.tweet-avatar {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255,255,255,.88);
  border-radius: 50%;
  color: white;
  background: linear-gradient(145deg, var(--teal), var(--night));
  box-shadow: 0 0 0 1px rgba(16,32,39,.13), 0 7px 19px rgba(16,32,39,.15);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
}
.avatar-taylor { background: linear-gradient(145deg, #a46743, #3c1e20); }
.avatar-lebron { background: linear-gradient(145deg, #5d2b85, #d3a22f); }
.avatar-rihanna { background: linear-gradient(145deg, #be624b, #502538); }
.avatar-rock { background: linear-gradient(145deg, #8b7760, #1f2b2d); }
.avatar-kevin { background: linear-gradient(145deg, #cd7d2c, #44221d); }
.avatar-selena { background: linear-gradient(145deg, #6f8fb7, #322846); }
.avatar-oprah { background: linear-gradient(145deg, #b88950, #6f2d3c); }
.avatar-mead { background: linear-gradient(145deg, #3e7998, #c9a65f); }
.avatar-unipcs { color: var(--night); background: linear-gradient(145deg, #f4cf38, #d99022); }
.tweet-person { min-width: 0; display: flex; flex: 1; flex-direction: column; line-height: 1.2; }
.tweet-person strong { display: flex; align-items: center; gap: 6px; overflow: hidden; font-size: .94rem; font-weight: 800; text-overflow: ellipsis; white-space: nowrap; }
.tweet-person > span { margin-top: 5px; color: rgba(16,32,39,.48); font-size: .74rem; }
.verified { width: 17px; height: 17px; flex: 0 0 17px; display: inline-grid; place-items: center; border-radius: 50%; color: white; background: #1d9bf0; font-size: .68rem; font-style: normal; line-height: 1; }
.og-mark { padding: 5px 7px 4px; border: 1px solid rgba(141,48,37,.22); border-radius: 999px; color: var(--wine); background: rgba(212,179,109,.18); font-size: .54rem; font-weight: 800; letter-spacing: .1em; line-height: 1; }
.x-mark {
  position: relative;
  width: 20px;
  height: 20px;
  margin-left: auto;
  align-self: flex-start;
  flex: 0 0 20px;
}
.x-mark::before,
.x-mark::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 21px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
}
.x-mark::before { transform: rotate(52deg); }
.x-mark::after { transform: rotate(-52deg); }
.tweet-text { margin: 32px 0 30px; flex: 1; color: #101419; font-size: clamp(1.08rem, 1.5vw, 1.24rem); font-weight: 500; line-height: 1.5; }
.tweet-text mark { color: inherit; background: linear-gradient(transparent 59%, rgba(241,211,145,.75) 59%); font-weight: 800; }
.tweet-meta { padding-top: 17px; display: flex; align-items: center; gap: 16px; border-top: 1px solid rgba(16,32,39,.1); color: rgba(16,32,39,.48); font-size: .68rem; font-weight: 700; }
.receipt-note { position: relative; z-index: 2; width: min(var(--max), 100%); margin: 0 auto; padding: 0 clamp(22px, 5vw, 84px); color: rgba(16,32,39,.48); font-size: .7rem; }

.token {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: clamp(60px, 9vw, 150px);
  background: var(--wine-dark);
}
.token::before { content: "$"; position: absolute; top: -16%; left: -2%; color: rgba(243,236,220,.035); font-family: var(--serif); font-size: 45vw; font-style: italic; line-height: 1; }
.token-title { position: relative; z-index: 1; }
.token-title > p:last-child { margin-top: 29px; color: rgba(243,236,220,.58); }
.token-ledger { position: relative; z-index: 1; border-top: 1px solid rgba(243,236,220,.2); }
.token-ledger > div { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-bottom: 1px solid rgba(243,236,220,.2); }
.token-ledger span { color: rgba(243,236,220,.45); font-size: .65rem; font-weight: 800; letter-spacing: .18em; }
.token-ledger strong { font-family: var(--serif); font-size: clamp(1.55rem, 3vw, 2.7rem); font-weight: 600; text-align: right; }
.token-ledger .pending { color: var(--gold-bright); font-family: var(--sans); font-size: .78rem; font-weight: 800; letter-spacing: .13em; }

.finale { position: relative; min-height: max(760px, 92svh); display: grid; place-items: center; overflow: hidden; background: var(--night); }
.finale > img { position: absolute; inset: -3%; width: 106%; height: 106%; object-fit: cover; object-position: center; transition: transform 8s ease; }
.finale:hover > img { transform: scale(1.025); }
.finale-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,15,20,.9), rgba(3,15,20,.56) 44%, rgba(3,15,20,.12)), linear-gradient(0deg, rgba(3,15,20,.55), transparent 45%); }
.finale-copy { position: relative; z-index: 2; width: min(var(--max), 100%); padding: 90px clamp(24px, 6vw, 100px); }
.finale-copy > div { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 38px; }

footer { min-height: 130px; padding: 30px clamp(22px, 5vw, 84px); display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid rgba(243,236,220,.12); background: #031116; }
footer p { margin: 0; color: rgba(243,236,220,.45); font-size: .62rem; font-weight: 800; letter-spacing: .15em; }
.footer-x { color: var(--gold-bright); font-size: .7rem; font-weight: 800; letter-spacing: .08em; transition: color .2s ease, transform .2s ease; }
.footer-x span { margin-left: 5px; }
.footer-x:hover { color: var(--ivory); transform: translateY(-2px); }

.toast {
  position: fixed;
  z-index: 700;
  left: 50%;
  bottom: 28px;
  max-width: min(90vw, 520px);
  padding: 14px 20px;
  border: 1px solid rgba(243,236,220,.2);
  border-radius: 999px;
  color: var(--night);
  background: var(--gold-bright);
  box-shadow: 0 18px 50px rgba(0,0,0,.32);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: opacity .25s ease, transform .25s ease;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: none; }
.tweet-card.reveal.visible:hover { transform: translateY(-8px); }

@keyframes orbit-turn { to { transform: rotate(360deg); } }
@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes descend { 0%,100% { transform: translateY(0) rotate(45deg); opacity: .3; } 50% { transform: translateY(7px) rotate(45deg); opacity: 1; } }
@keyframes miracle-flash { 0% { opacity: 0; } 18% { opacity: 1; } 42% { opacity: .18; } 65% { opacity: .7; } 100% { opacity: 0; } }

@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: minmax(390px, 1fr) minmax(330px, .78fr); }
  .hero h1 { font-size: clamp(8rem, 17vw, 13rem); }
  .hero-portrait { width: min(43vw, 520px); }
  .portrait-seal { right: -18px; }
  .origin { grid-template-columns: .4fr 1.2fr .8fr; }
}

@media (max-width: 820px) {
  .site-nav { height: 72px; padding-inline: 18px; }
  .site-nav nav { display: none; }
  .nav-actions { gap: 7px; }
  .nav-x { width: 39px; padding: 0; }
  .nav-x span { display: none; }
  .nav-status { padding-inline: 13px; font-size: .6rem; }
  .hero { min-height: auto; }
  .hero-inner { min-height: 0; padding: 130px 20px 100px; grid-template-columns: 1fr; gap: 75px; }
  .hero-copy { max-width: 100%; }
  .hero h1 { font-size: clamp(7rem, 30vw, 12rem); }
  .hero-line { margin-top: 35px; }
  .hero-portrait { width: min(88vw, 560px); justify-self: center; }
  .portrait-frame { height: min(92vw, 690px); min-height: 520px; }
  .portrait-seal { right: -8px; bottom: 72px; width: 98px; height: 98px; }
  .hero-index { display: none; }
  .scroll-cue { right: 20px; bottom: 24px; }
  .hero-sky { inset: -2%; background-position: 66% center; }
  .hero-shade { background: linear-gradient(180deg, rgba(3,15,20,.82), rgba(3,15,20,.48) 52%, rgba(3,15,20,.72)); }
  .section { padding-block: 105px; }
  .origin { min-height: 0; grid-template-columns: 1fr; gap: 45px; }
  .origin-mark { position: absolute; right: -1rem; top: 7rem; font-size: 18rem; opacity: .12; }
  .origin-copy, .origin-story { position: relative; z-index: 1; }
  .origin h2, .playground h2, .oracle h2, .receipts h2, .token h2, .finale h2 { font-size: clamp(3.8rem, 15vw, 6.4rem); }
  .playground .section-head { align-items: start; flex-direction: column; margin-bottom: 42px; }
  .gallery-tools { width: 100%; justify-content: space-between; }
  .scene-card { flex-basis: 88vw; height: 68svh; min-height: 510px; }
  .oracle { min-height: 0; grid-template-columns: 1fr; gap: 100px; }
  .oracle-visual { width: min(82vw, 590px); justify-self: center; }
  .oracle-copy { max-width: 100%; }
  .receipts { min-height: 0; }
  .receipts-head { align-items: start; flex-direction: column; margin-bottom: 44px; }
  .receipts-summary { min-width: 0; padding: 0; border-left: 0; }
  .receipts-summary strong { font-size: 3.8rem; }
  .token { grid-template-columns: 1fr; }
  .finale { min-height: 780px; place-items: end start; }
  .finale > img { object-position: 61% center; }
  footer { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 540px) {
  .hero-inner { padding-top: 118px; }
  .hero h1 { font-size: 31vw; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .portrait-frame { min-height: 470px; border-radius: 220px 220px 28px 28px; }
  .portrait-orbit { inset: -18px; }
  .portrait-seal { width: 86px; height: 86px; right: 0; }
  .portrait-seal strong { font-size: 2.1rem; }
  .portrait-seal small { font-size: .43rem; }
  .divine-ticker div { gap: 20px; }
  .divine-ticker span { font-size: .9rem; }
  .section { padding-inline: 20px; }
  .gallery-tools > p { display: none; }
  .scene-rail { padding-inline: 20px; }
  .scene-card { flex-basis: 89vw; height: 65svh; min-height: 470px; }
  .scene-card:nth-child(1) img { object-position: 56% center; }
  .scene-copy h3 { font-size: 12vw; }
  .oracle { padding-inline: 23px; }
  .oracle-visual { width: 84vw; }
  .oracle-visual > p { right: -8px; bottom: 21px; }
  .oracle-rings i:nth-child(2) { display: none; }
  .oracle-input input { font-size: 1.2rem; }
  .native-tweet-viewer { width: calc(100% - 32px); }
  .native-tweet-controls { margin-bottom: 16px; }
  .native-tweet-fallback { min-height: 240px; padding: 22px 20px; }
  .receipts-bar { width: calc(100% - 40px); padding-inline: 14px; }
  .receipts-bar > p { font-size: .57rem; }
  #tweetCount { min-width: 55px; }
  .tweet-card { flex-basis: 87vw; min-height: 320px; }
  .tweet-link { min-height: 320px; padding: 23px 21px 20px; }
  .token-ledger > div { min-height: 78px; }
  .token-ledger strong { font-size: 1.45rem; }
  .finale-copy > div { align-items: stretch; flex-direction: column; }
  .finale-copy .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-sky, .hero-portrait { will-change: auto; }
}
