:root {
  --black: #060504;
  --black-2: #0c0905;
  --panel: #100c06;
  --panel-2: #161006;
  --cream: #fff6d8;
  --muted: #c9bc95;
  --gold: #ffc928;
  --gold-2: #ff9d00;
  --gold-3: #ffe990;
  --green: #0bc95a;
  --line: rgba(255, 205, 64, .18);
  --shadow: 0 18px 70px rgba(255, 167, 0, .12);
  --radius: 28px;
  --shell: min(1180px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 6%, rgba(255, 180, 0, .10), transparent 26%),
    radial-gradient(circle at 80% 26%, rgba(255, 211, 65, .06), transparent 24%),
    var(--black);
  color: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }

.noise {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.spark-field { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.spark {
  position: absolute; width: 4px; height: 4px; border-radius: 50%; background: var(--gold-3);
  box-shadow: 0 0 16px 4px rgba(255, 199, 38, .55); opacity: .35; animation: drift linear infinite;
}
@keyframes drift { from { transform: translateY(105vh) scale(.5); } to { transform: translateY(-10vh) scale(1.4); } }

.section-shell { width: var(--shell); margin-inline: auto; position: relative; z-index: 1; }
.section-pad { padding-top: 110px; padding-bottom: 110px; }
.section-pad-sm { padding-top: 35px; padding-bottom: 80px; }

.site-header {
  width: min(1220px, calc(100vw - 28px));
  height: 70px; padding: 0 18px 0 22px; margin: 14px auto 0;
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  position: sticky; top: 12px; z-index: 50;
  background: rgba(8, 6, 3, .74); border: 1px solid rgba(255, 208, 74, .14); border-radius: 18px;
  backdrop-filter: blur(18px); box-shadow: 0 10px 50px rgba(0,0,0,.28);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 950; letter-spacing: -.03em; white-space: nowrap; }
.brand-mark { color: var(--gold); filter: drop-shadow(0 0 8px rgba(255,196,31,.75)); }
.desktop-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.desktop-nav a, .footer-links a { color: var(--muted); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; transition: .2s ease; }
.desktop-nav a:hover, .footer-links a:hover { color: var(--gold-3); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-button { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; border: 1px solid var(--line); background: rgba(255,255,255,.025); font-weight: 900; }

.button {
  min-height: 50px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  border-radius: 13px; border: 1px solid transparent; font-weight: 950; letter-spacing: .025em; font-size: 13px;
  text-transform: uppercase; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
  cursor: pointer;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 40px; padding-inline: 16px; font-size: 12px; border-radius: 11px; }
.button-large { min-height: 58px; padding-inline: 28px; }
.button-gold {
  color: #1a1000; background: linear-gradient(180deg, #ffe978, #ffc21c 55%, #f3a900);
  box-shadow: 0 10px 28px rgba(255, 174, 0, .24), inset 0 1px 0 rgba(255,255,255,.7);
}
.button-gold:hover { box-shadow: 0 16px 42px rgba(255, 174, 0, .32), inset 0 1px 0 rgba(255,255,255,.75); }
.button-ghost { color: var(--cream); border-color: rgba(255, 218, 108, .21); background: rgba(255, 255, 255, .025); }
.button-ghost:hover { border-color: rgba(255, 218, 108, .45); background: rgba(255, 204, 46, .06); }

.hero { min-height: 720px; display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 18px; padding-top: 54px; padding-bottom: 55px; }
.hero-glow { position: absolute; width: 650px; height: 650px; right: -170px; top: 15px; background: radial-gradient(circle, rgba(255, 190, 0, .22), rgba(255,154,0,.06) 40%, transparent 70%); filter: blur(10px); pointer-events: none; }
.hero-copy { position: relative; z-index: 3; max-width: 590px; }
.eyebrow { color: #eecf73; font-size: 12px; letter-spacing: .18em; font-weight: 900; text-transform: uppercase; }
.eyebrow .dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--green); margin-right: 7px; box-shadow: 0 0 12px rgba(11,201,90,.75); }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(58px, 7.2vw, 105px); line-height: .86; letter-spacing: -.073em; margin: 22px 0 24px; font-weight: 1000; text-transform: uppercase; }
h1 span { display: block; }
.gold-text { color: transparent; background: linear-gradient(180deg, #fff3a5 0%, #ffd331 38%, #ff9e00 100%); -webkit-background-clip: text; background-clip: text; filter: drop-shadow(0 5px 22px rgba(255, 183, 0, .10)); }
.hero-lede { max-width: 560px; color: #e0d6b7; font-size: clamp(17px, 1.8vw, 21px); line-height: 1.6; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.contract-pill { margin-top: 18px; min-height: 48px; width: min(100%, 500px); border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.02); color: var(--cream); display: flex; align-items: center; gap: 12px; padding: 0 14px; cursor: pointer; }
.contract-pill code { color: #efe4bd; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.contract-label { font-weight: 950; color: var(--gold); font-size: 11px; letter-spacing: .12em; }
.copy-icon { margin-left: auto; font-size: 10px; font-weight: 950; letter-spacing: .12em; color: #9e906a; }
.microcopy { margin-top: 16px; color: #8f8368; font-size: 12px; }

.hero-art { min-height: 640px; position: relative; display: grid; place-items: center; }
.hero-image-wrap { position: relative; z-index: 2; width: min(700px, 58vw); filter: drop-shadow(0 25px 65px rgba(255, 178, 0, .12)); animation: floatCat 6s ease-in-out infinite; }
.hero-image-wrap::after { content: ''; position: absolute; inset: 17% 8% 7% 20%; background: radial-gradient(circle, rgba(255, 192, 0, .15), transparent 65%); filter: blur(24px); z-index: -1; }
@keyframes floatCat { 0%,100% { transform: translateY(0) rotate(-.4deg); } 50% { transform: translateY(-12px) rotate(.4deg); } }
.orbit { position: absolute; border: 1px solid rgba(255, 213, 93, .15); border-radius: 50%; transform: rotate(-10deg); }
.orbit::after { content: '✦'; color: var(--gold); position: absolute; font-size: 18px; filter: drop-shadow(0 0 8px rgba(255,205,52,.75)); }
.orbit-one { width: 510px; height: 190px; top: 47%; left: 8%; }
.orbit-one::after { right: 12%; top: -9px; }
.orbit-two { width: 420px; height: 420px; top: 12%; right: 0; }
.orbit-two::after { left: 7%; bottom: 8%; }
.floating-chip { position: absolute; z-index: 4; padding: 9px 12px; border: 1px solid rgba(255, 219, 104, .18); border-radius: 999px; background: rgba(13,9,3,.68); backdrop-filter: blur(10px); color: var(--gold-3); font-size: 10px; font-weight: 950; letter-spacing: .13em; box-shadow: var(--shadow); }
.chip-one { top: 21%; right: 5%; }
.chip-two { bottom: 15%; left: 12%; }

.ticker { overflow: hidden; border-block: 1px solid var(--line); background: linear-gradient(90deg, rgba(255,177,0,.08), rgba(255,209,51,.13), rgba(255,177,0,.08)); transform: rotate(-1deg); width: 102%; margin-left: -1%; }
.ticker-track { display: flex; width: max-content; gap: 42px; padding: 15px 0; animation: ticker 28s linear infinite; color: #ffe79b; font-size: 12px; font-weight: 950; letter-spacing: .18em; text-transform: uppercase; }
@keyframes ticker { to { transform: translateX(-50%); } }

.story { display: grid; grid-template-columns: .95fr 1.05fr; gap: 75px; align-items: center; }
.story-art { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: #000; }
.story-art img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
h2 { font-size: clamp(42px, 5.3vw, 74px); line-height: .96; letter-spacing: -.055em; margin: 14px 0 22px; font-weight: 1000; text-transform: uppercase; }
.story-copy > p { color: #d4c9aa; font-size: 18px; line-height: 1.65; max-width: 590px; }
.rule-list { margin-top: 34px; border-top: 1px solid var(--line); }
.rule-list div { display: grid; grid-template-columns: 64px 1fr; align-items: center; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.rule-list strong { color: var(--gold); font-size: 12px; letter-spacing: .15em; }
.rule-list span { font-size: 18px; font-weight: 800; }

.manifesto-card { position: relative; overflow: hidden; padding: 65px 7vw; text-align: center; border-radius: var(--radius); border: 1px solid rgba(255, 211, 80, .25); background: radial-gradient(circle at 50% 100%, rgba(255,178,0,.18), transparent 45%), #0c0904; box-shadow: var(--shadow); }
.manifesto-card p { margin: 0; font-size: clamp(28px, 4.2vw, 54px); line-height: 1.08; letter-spacing: -.04em; font-weight: 1000; }
.quote-mark { position: absolute; left: 4%; top: -15px; font: 180px Georgia, serif; color: rgba(255,196,31,.09); }
.tiny-crown { display: block; margin-top: 24px; color: var(--gold); font-size: 26px; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 42px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 430px; color: #aa9e80; line-height: 1.6; margin-bottom: 5px; }
.section-heading.centered { display: block; text-align: center; }
.section-heading.centered > p { margin-inline: auto; }

.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.gallery-grid figure { margin: 0; border-radius: 22px; overflow: hidden; border: 1px solid var(--line); background: #070503; position: relative; box-shadow: 0 18px 60px rgba(0,0,0,.28); }
.gallery-banner { grid-column: 1 / -1; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.75,.2,1); }
.gallery-grid figure:hover img { transform: scale(1.025); }
.gallery-banner img { aspect-ratio: 2.5 / 1; }
.gallery-square { aspect-ratio: 1 / 1; }
.gallery-square figcaption { position: absolute; left: 18px; right: 18px; bottom: 18px; padding: 12px 14px; border: 1px solid rgba(255,214,91,.22); border-radius: 12px; background: rgba(0,0,0,.62); backdrop-filter: blur(8px); font-weight: 1000; font-size: 12px; letter-spacing: .08em; }
.gallery-square figcaption span { color: var(--gold); }
.gallery-simple { background: radial-gradient(circle at 50% 55%, rgba(255,188,0,.16), transparent 48%), #090704 !important; }
.gallery-simple img { object-fit: contain; padding: 4%; }

.buy { position: relative; overflow: hidden; border-block: 1px solid rgba(255,206,64,.10); background: radial-gradient(circle at 50% 80%, rgba(255,170,0,.10), transparent 46%); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step-card { min-height: 270px; padding: 28px; border-radius: 20px; border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,198,45,.04), rgba(255,255,255,.012)); position: relative; overflow: hidden; }
.step-card::after { content: ''; position: absolute; width: 140px; height: 140px; right: -65px; bottom: -70px; background: radial-gradient(circle, rgba(255,195,30,.18), transparent 70%); }
.step-number { color: #7f745a; font-size: 11px; font-weight: 950; letter-spacing: .18em; }
.step-icon { width: 58px; height: 58px; margin: 33px 0 25px; border-radius: 17px; display: grid; place-items: center; color: var(--gold); font-size: 25px; background: rgba(255,194,27,.08); border: 1px solid rgba(255,210,76,.15); box-shadow: inset 0 0 20px rgba(255,186,0,.05); }
.step-card h3 { margin-bottom: 10px; font-size: 20px; letter-spacing: -.02em; }
.step-card p { color: #a99d80; line-height: 1.6; max-width: 300px; }

.token { display: grid; grid-template-columns: .8fr 1.2fr; min-height: 620px; align-items: stretch; }
.token-art { border-radius: var(--radius) 0 0 var(--radius); border: 1px solid var(--line); border-right: 0; background: radial-gradient(circle at 45% 45%, rgba(255,188,0,.16), transparent 45%), #0a0703; display: flex; align-items: end; justify-content: center; overflow: hidden; }
.token-art img { width: 120%; max-width: none; margin-bottom: -10%; filter: drop-shadow(0 0 45px rgba(255,188,0,.12)); }
.token-panel { border-radius: 0 var(--radius) var(--radius) 0; border: 1px solid var(--line); padding: 54px; background: linear-gradient(135deg, rgba(255,202,42,.05), transparent 45%), #0d0904; }
.token-panel h2 { font-size: clamp(68px, 8vw, 110px); margin-bottom: 32px; }
.token-row { min-height: 60px; display: flex; align-items: center; justify-content: space-between; gap: 25px; border-top: 1px solid var(--line); }
.token-row span { color: #80745b; font-size: 10px; letter-spacing: .16em; font-weight: 950; }
.token-row strong { text-align: right; font-size: 13px; letter-spacing: .04em; max-width: 68%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.token-actions { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; }

.final-cta { padding-bottom: 100px; }
.final-inner { min-height: 480px; padding: 70px 30px; border-radius: 30px; border: 1px solid rgba(255,208,59,.24); display: grid; place-items: center; text-align: center; background: radial-gradient(circle at 50% 45%, rgba(255,191,0,.15), rgba(255,175,0,.03) 38%, transparent 64%), #0b0804; position: relative; overflow: hidden; }
.final-inner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 20%, rgba(255,226,120,.06) 50%, transparent 80%); transform: translateX(-100%); animation: sheen 8s ease-in-out infinite; }
@keyframes sheen { 0%, 70%, 100% { transform: translateX(-100%); } 85% { transform: translateX(100%); } }
.final-inner h2 { margin: 18px 0 28px; }
.final-stars { color: var(--gold); margin-bottom: 18px; }
.final-buttons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

.site-footer { padding: 30px 0 48px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1.6fr auto; align-items: start; gap: 40px; }
.footer-brand { font-weight: 950; }
.footer-brand span, .footer-brand b { color: var(--gold); }
.site-footer p { color: #776c55; font-size: 11px; line-height: 1.6; max-width: 620px; }
.footer-links { display: flex; gap: 16px; }

.toast { position: fixed; left: 50%; bottom: 26px; transform: translate(-50%, 18px); z-index: 100; opacity: 0; pointer-events: none; padding: 12px 16px; border-radius: 12px; border: 1px solid rgba(255,211,81,.22); background: rgba(12,8,3,.92); color: #ffecaa; font-size: 12px; font-weight: 800; box-shadow: 0 12px 50px rgba(0,0,0,.4); backdrop-filter: blur(14px); transition: .25s ease; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-sm { transition-delay: .08s; }
.reveal-delay { transition-delay: .16s; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 70px; }
  .hero-copy { max-width: 760px; }
  .hero-art { min-height: 540px; margin-top: -25px; }
  .hero-image-wrap { width: min(680px, 88vw); }
  .story { grid-template-columns: 1fr; gap: 45px; }
  .story-art { max-width: 720px; }
  .token { grid-template-columns: 1fr; }
  .token-art { border-radius: var(--radius) var(--radius) 0 0; border-right: 1px solid var(--line); border-bottom: 0; min-height: 460px; }
  .token-art img { width: min(680px, 95%); }
  .token-panel { border-radius: 0 0 var(--radius) var(--radius); }
  .site-footer { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 700px) {
  :root { --shell: min(100% - 24px, 1180px); --radius: 20px; }
  .site-header { width: calc(100vw - 18px); margin-top: 9px; top: 8px; padding: 0 10px 0 14px; height: 60px; }
  .brand { font-size: 13px; }
  .header-actions .icon-button { display: none; }
  .button-small { min-height: 38px; padding-inline: 12px; font-size: 10px; }
  .section-pad { padding-top: 78px; padding-bottom: 78px; }
  .hero { min-height: auto; padding-top: 58px; padding-bottom: 42px; }
  h1 { font-size: clamp(54px, 17vw, 78px); }
  h2 { font-size: clamp(40px, 13vw, 58px); }
  .hero-lede { font-size: 16px; }
  .hero-buttons .button { flex: 1 1 46%; padding-inline: 12px; }
  .hero-art { min-height: 415px; }
  .hero-image-wrap { width: 105vw; max-width: 650px; }
  .orbit-one { width: 350px; height: 140px; left: -10%; }
  .orbit-two { width: 290px; height: 290px; }
  .floating-chip { display: none; }
  .story { gap: 34px; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 18px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-banner { grid-column: auto; }
  .gallery-banner img { aspect-ratio: 1.8/1; object-fit: cover; object-position: 46% 50%; }
  .steps { grid-template-columns: 1fr; }
  .step-card { min-height: 235px; }
  .token-panel { padding: 34px 22px; }
  .token-row strong { max-width: 62%; }
  .final-inner { padding: 55px 18px; }
  .final-buttons .button { width: 100%; }
  .site-footer { padding-inline: 5px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
