@font-face {
  font-family: "Liqui Display";
  src: local("Arial Black"), local("Impact");
  font-weight: 800 900;
}

@font-face {
  font-family: "Pool Sans";
  src: local("Arial Narrow"), local("Helvetica Neue");
  font-weight: 300 800;
}

@font-face {
  font-family: "Receipt Mono";
  src: local("Courier New");
  font-weight: 400 700;
}

:root {
  --ink: #050704;
  --ink-soft: #0b1008;
  --lime: #c7ff18;
  --lime-hot: #a8ff00;
  --cream: #eef5df;
  --muted: #9ea993;
  --pink: #ff3bac;
  --line: rgba(199, 255, 24, .26);
  --display: "Liqui Display", Impact, sans-serif;
  --body: "Pool Sans", "Arial Narrow", Arial, sans-serif;
  --mono: "Receipt Mono", "Courier New", monospace;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 18% 18%, rgba(134, 255, 0, .08), transparent 24rem),
    linear-gradient(90deg, rgba(199, 255, 24, .025) 1px, transparent 1px),
    linear-gradient(rgba(199, 255, 24, .025) 1px, transparent 1px),
    var(--ink);
  background-size: auto, 44px 44px, 44px 44px, auto;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
::selection { color: var(--ink); background: var(--lime); }

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

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 360px;
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(186, 255, 32, .09), transparent 68%);
  transform: translate3d(-50%, -50%, 0);
  transition: opacity .2s;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  min-height: 76px;
  padding: 10px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(199, 255, 24, .18);
  background: rgba(5, 7, 4, .72);
  backdrop-filter: blur(16px);
  transition: min-height .25s, background .25s;
}

.site-header.scrolled { min-height: 62px; background: rgba(5, 7, 4, .94); }

.brand, .footer-brand {
  display: flex;
  align-items: center;
  width: max-content;
  font-family: var(--display);
  font-size: 18px;
  font-style: italic;
  letter-spacing: -.05em;
}

.brand img { width: 46px; height: 46px; margin-right: 10px; border: 1px solid var(--line); object-fit: cover; }
.brand span span, .footer-brand span span { color: var(--lime); }

.desktop-nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 42px); }
.desktop-nav a, .mini-link, .footer-links a, .footer-links button {
  position: relative;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 2px;
  background: var(--lime);
  transition: right .25s;
}
.desktop-nav a:hover::after { right: 0; }

.header-actions { justify-self: end; display: flex; align-items: center; gap: 18px; }
.mini-link:hover { color: var(--lime); }

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid var(--lime);
  overflow: hidden;
  font-family: var(--display);
  font-size: 14px;
  font-style: italic;
  letter-spacing: .025em;
  line-height: 1;
  transform: skew(-5deg);
  transition: color .25s, border-color .25s, box-shadow .25s, transform .25s;
}

.button > * { transform: skew(5deg); }
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--lime);
  transform: translateX(-103%);
  transition: transform .28s ease;
}
.button:hover { color: var(--ink); box-shadow: 0 0 25px rgba(199, 255, 24, .25); transform: skew(-5deg) translateY(-2px); }
.button:hover::before { transform: translateX(0); }
.button-primary { color: var(--ink); background: var(--lime); }
.button-primary::before { background: var(--cream); }
.button-ghost { background: rgba(0, 0, 0, .34); }
.button-small { min-height: 38px; padding: 0 19px; background: var(--lime); color: var(--ink); }
.button-small::before { background: var(--cream); }
.button.light { border-color: var(--cream); }

.hero {
  position: relative;
  min-height: 760px;
  height: min(900px, 100svh);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .55fr);
  align-items: end;
  gap: 4rem;
  padding: 126px max(4vw, calc((100vw - var(--max)) / 2)) 112px;
  isolation: isolate;
}

.hero-bg, .community-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 4, 2, .93) 0%, rgba(2, 4, 2, .55) 40%, rgba(2, 4, 2, .2) 67%, rgba(2, 4, 2, .7) 100%),
    linear-gradient(0deg, var(--ink) 0%, transparent 38%, rgba(0, 0, 0, .4) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .18;
  background: linear-gradient(90deg, transparent 49.8%, var(--lime) 50%, transparent 50.2%), linear-gradient(transparent 49.8%, var(--lime) 50%, transparent 50.2%);
  background-size: 86px 86px;
  mask-image: linear-gradient(90deg, black, transparent 70%);
}

.hero-copy { align-self: center; max-width: 690px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}
.eyebrow span { display: inline-block; width: 32px; height: 2px; background: currentColor; box-shadow: 0 0 10px currentColor; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); font-style: italic; line-height: .9; text-transform: uppercase; }
h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(4.2rem, 8vw, 7.2rem);
  letter-spacing: -.085em;
  text-shadow: 0 5px 0 rgba(0,0,0,.8), 0 0 40px rgba(198,255,24,.25);
}
h1 span { color: transparent; -webkit-text-stroke: 2px var(--cream); }
h2 { margin-bottom: 28px; font-size: clamp(3rem, 6vw, 5.4rem); letter-spacing: -.065em; }
h2 em { color: var(--lime); font-style: inherit; }
h3 { margin-bottom: 8px; font-size: 24px; letter-spacing: -.03em; }

.hero-kicker { margin-bottom: 30px; font-size: clamp(18px, 2vw, 24px); font-weight: 700; line-height: 1.25; letter-spacing: -.02em; }
.hero-actions, .community-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.contract-ticket {
  position: relative;
  align-self: end;
  margin-bottom: 12px;
  padding: 24px;
  color: var(--ink);
  background: var(--lime);
  border: 1px solid var(--cream);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, .45), 0 0 40px rgba(199, 255, 24, .24);
  transform: rotate(1.5deg);
}
.contract-ticket::before, .contract-ticket::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(90deg, transparent 0 8px, var(--ink) 8px 12px);
}
.contract-ticket::before { top: 0; }
.contract-ticket::after { bottom: 0; }
.ticket-top { display: flex; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px dashed var(--ink); font-family: var(--mono); font-size: 11px; font-weight: 700; }
.contract-ticket dl { margin: 18px 0; }
.contract-ticket dl div { display: flex; justify-content: space-between; gap: 20px; margin: 7px 0; }
.contract-ticket dt { font-family: var(--mono); font-size: 12px; text-transform: uppercase; }
.contract-ticket dd { margin: 0; font-family: var(--display); font-style: italic; }
.contract-ticket > p { margin: 14px 0 0; font-family: var(--mono); font-size: 10px; line-height: 1.45; }

.copy-ca {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 14px;
  border: 1px solid var(--ink);
  color: var(--lime);
  background: var(--ink);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 11px;
  text-align: left;
  transition: color .2s, background .2s;
}
.copy-ca:hover { color: var(--ink); background: var(--cream); }
.copy-label { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.copy-icon { font-weight: 700; }

.scroll-cue {
  position: absolute;
  right: max(4vw, calc((100vw - var(--max)) / 2));
  bottom: 25px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
}
.scroll-cue i { color: var(--lime); font-style: normal; font-size: 20px; animation: bob 1.5s infinite; }

.ticker { position: relative; z-index: 4; overflow: hidden; color: var(--ink); background: var(--lime); border-block: 4px solid var(--ink); transform: rotate(-1deg) scale(1.02); }
.ticker-track { display: flex; width: max-content; align-items: center; animation: marquee 24s linear infinite; }
.ticker span { padding: 13px 24px; font-family: var(--display); font-size: 18px; font-style: italic; letter-spacing: -.02em; }
.ticker i { font-style: normal; font-size: 11px; }

.section { position: relative; max-width: var(--max); margin: 0 auto; padding: 130px clamp(20px, 4vw, 56px); }
.section-number { margin-bottom: 32px; color: var(--muted); font-family: var(--mono); font-size: 11px; letter-spacing: .13em; }
.story-grid, .roadmap-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr); align-items: center; gap: clamp(45px, 7vw, 100px); }
.section-copy p:not(.eyebrow) { max-width: 620px; color: #c2cab9; font-size: 17px; }

.media-frame { position: relative; margin: 0; padding: 10px; border: 1px solid rgba(199, 255, 24, .45); background: #11160e; box-shadow: 20px 20px 0 rgba(199, 255, 24, .06); }
.media-frame::before { content: ""; position: absolute; inset: 5px; z-index: 1; border: 1px solid rgba(255,255,255,.16); pointer-events: none; }
.media-frame img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.96) contrast(1.06); }
.media-frame.wide img { aspect-ratio: 4 / 3; }
.media-frame.portrait img { aspect-ratio: 4 / 5; }
.media-frame figcaption { position: absolute; left: 22px; right: 22px; bottom: 22px; z-index: 2; padding: 10px 12px; color: var(--ink); background: rgba(199,255,24,.9); font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.tilt-left { transform: rotate(-1.2deg); }
.tilt-right { transform: rotate(1.2deg); }

.pull-quote { margin-top: 30px; padding: 20px 22px; border-left: 4px solid var(--pink); color: var(--cream); background: rgba(255, 59, 172, .07); font-family: var(--display); font-size: 20px; font-style: italic; line-height: 1.2; text-transform: uppercase; transform: rotate(-1deg); }

.wet-paper { max-width: none; border-block: 1px solid var(--line); background: linear-gradient(135deg, rgba(199,255,24,.07), transparent 30%), #080b06; }
.wet-paper > * { max-width: calc(var(--max) - 112px); margin-left: auto; margin-right: auto; }
.section-heading { margin-bottom: 58px; }
.section-heading h2 { max-width: 860px; }
.section-heading.centered { text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.stats-layout { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.1fr); gap: clamp(35px, 6vw, 80px); align-items: stretch; }
.stat-stack { display: grid; gap: 14px; }
.stat-card { padding: clamp(23px, 3vw, 36px); border: 1px solid var(--line); background: rgba(0,0,0,.35); transition: border-color .25s, transform .25s, background .25s; }
.stat-card:hover { border-color: var(--lime); background: rgba(199,255,24,.05); transform: translateX(6px); }
.stat-label { color: var(--muted); font-family: var(--mono); font-size: 10px; letter-spacing: .14em; }
.stat-card strong { display: block; margin: 8px 0 5px; color: var(--lime); font-family: var(--display); font-size: clamp(26px, 4vw, 48px); font-style: italic; line-height: 1; letter-spacing: -.045em; }
.stat-card p { margin: 0; color: #aeb7a8; font-size: 14px; }
.fine-print { padding: 10px 14px; color: var(--ink); background: var(--pink); font-family: var(--mono); font-size: 10px; font-weight: 700; text-align: center; letter-spacing: .09em; }

.banner-break { position: relative; max-width: 1440px; height: min(70vw, 710px); min-height: 460px; margin: 40px auto 0; overflow: hidden; border-block: 1px solid var(--line); }
.banner-break img { width: 100%; height: 100%; object-fit: cover; }
.banner-break::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.45), transparent 45%), linear-gradient(0deg, rgba(0,0,0,.64), transparent 45%); }
.banner-break-copy { position: absolute; z-index: 2; left: clamp(25px, 7vw, 100px); bottom: clamp(28px, 6vw, 80px); font-family: var(--display); font-size: clamp(3rem, 8vw, 7rem); font-style: italic; line-height: .79; letter-spacing: -.07em; }
.banner-break-copy span { display: block; }
.banner-break-copy span:last-child { color: var(--lime); }

.buy-section { padding-bottom: 100px; }
.buy-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); align-items: center; gap: clamp(45px, 7vw, 95px); }
.steps { margin: 0; padding: 0; list-style: none; counter-reset: steps; }
.steps li { display: grid; grid-template-columns: 65px 1fr; gap: 18px; padding: 26px 0; border-top: 1px solid var(--line); }
.steps li:last-child { border-bottom: 1px solid var(--line); }
.step-no { display: grid; place-items: center; width: 54px; height: 54px; border: 1px solid var(--lime); color: var(--lime); font-family: var(--mono); font-size: 12px; transform: rotate(4deg); transition: color .2s, background .2s, transform .2s; }
.steps li:hover .step-no { color: var(--ink); background: var(--lime); transform: rotate(-3deg) scale(1.06); }
.steps p { margin: 0; color: var(--muted); font-size: 15px; }
.buy-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 70px; padding: 28px; border: 1px solid var(--lime); background: linear-gradient(105deg, rgba(199,255,24,.11), rgba(199,255,24,.02)); }
.buy-cta div > span { display: block; font-family: var(--display); font-size: 22px; font-style: italic; }
.buy-cta small { color: var(--muted); font-family: var(--mono); font-size: 10px; }

.roadmap-section { max-width: none; background: var(--lime); color: var(--ink); overflow: hidden; }
.roadmap-section::before { content: "LIQUID LIQUID LIQUID"; position: absolute; top: 10px; left: -20px; color: rgba(0,0,0,.07); font-family: var(--display); font-size: 14vw; white-space: nowrap; letter-spacing: -.08em; }
.roadmap-section .roadmap-grid { position: relative; max-width: calc(var(--max) - 112px); margin: 0 auto; }
.roadmap-section .eyebrow { color: var(--ink); }
.roadmap-section h2 em { color: var(--ink); -webkit-text-stroke: 2px var(--ink); color: transparent; }
.roadmap-section .media-frame { border-color: var(--ink); background: var(--ink); box-shadow: 20px 20px 0 rgba(0,0,0,.18); }
.roadmap-list { margin-top: 34px; border-top: 1px solid var(--ink); }
.roadmap-list div { display: grid; grid-template-columns: 72px 1fr; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--ink); }
.roadmap-list span { font-family: var(--mono); font-size: 11px; font-weight: 700; }
.roadmap-list p { margin: 0 !important; color: var(--ink) !important; font-size: 15px !important; }

.community { position: relative; min-height: 760px; display: grid; place-items: center; padding: 100px 24px; isolation: isolate; text-align: center; }
.community-overlay { position: absolute; inset: 0; z-index: -2; background: linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.76)), radial-gradient(circle, transparent 0, rgba(0,0,0,.74) 78%); }
.community-copy { max-width: 870px; }
.community-copy .eyebrow { justify-content: center; }
.community-copy p:not(.eyebrow) { max-width: 560px; margin: 0 auto 28px; font-size: 19px; font-weight: 700; }
.community-actions { justify-content: center; }

footer { padding: 70px max(4vw, calc((100vw - var(--max)) / 2)) 30px; border-top: 1px solid var(--line); background: #030403; }
.footer-brand { font-size: 34px; }
.footer-brand img { width: 62px; height: 62px; margin-right: 14px; border: 1px solid var(--line); object-fit: cover; }
footer > p { max-width: 610px; margin: 25px 0; color: var(--muted); font-size: 14px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 24px; }
.footer-links a:hover, .footer-links button:hover { color: var(--lime); }
.footer-links button { padding: 0; border: 0; background: transparent; cursor: pointer; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 62px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); color: #66705f; font-family: var(--mono); font-size: 10px; letter-spacing: .07em; }

.toast { position: fixed; z-index: 100; left: 50%; bottom: 28px; padding: 13px 18px; color: var(--ink); background: var(--lime); border: 1px solid var(--cream); font-family: var(--mono); font-size: 11px; font-weight: 700; transform: translate(-50%, 150%); opacity: 0; transition: transform .35s ease, opacity .35s ease; box-shadow: 8px 8px 0 rgba(0,0,0,.5); }
.toast.show { transform: translate(-50%, 0); opacity: 1; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.media-frame.reveal.tilt-left { transform: translateY(28px) rotate(-1.2deg); }
.media-frame.reveal.tilt-right { transform: translateY(28px) rotate(1.2deg); }
.media-frame.reveal.in-view.tilt-left { transform: translateY(0) rotate(-1.2deg); }
.media-frame.reveal.in-view.tilt-right { transform: translateY(0) rotate(1.2deg); }

@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes bob { 50% { transform: translateY(6px); } }

@media (max-width: 960px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .hero { grid-template-columns: 1fr; align-content: end; height: auto; min-height: 900px; gap: 24px; }
  .hero-bg { object-position: 42% center; }
  .hero-shade { background: linear-gradient(0deg, var(--ink) 0%, rgba(0,0,0,.68) 56%, rgba(0,0,0,.35) 100%); }
  .hero-copy { align-self: end; }
  .contract-ticket { width: min(100%, 430px); }
  .story-grid, .roadmap-grid, .buy-grid, .stats-layout { grid-template-columns: 1fr; }
  .stats-layout .portrait { max-width: 620px; }
  .roadmap-grid .section-copy { order: 1; }
  .roadmap-grid .media-frame { order: 2; }
  .roadmap-section .roadmap-grid, .wet-paper > * { max-width: 100%; }
  .banner-break { min-height: 540px; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .cursor-glow { display: none; }
  .site-header { min-height: 62px; padding: 8px 14px; }
  .brand { font-size: 15px; }
  .brand img { width: 40px; height: 40px; }
  .mini-link { display: none; }
  .button-small { min-height: 36px; padding: 0 16px; }
  .hero { min-height: 860px; padding: 108px 20px 86px; }
  .hero-bg { object-position: 36% center; }
  .hero-copy { margin-top: 300px; }
  h1 { font-size: clamp(3.35rem, 16vw, 4.7rem); }
  h2 { font-size: clamp(2.7rem, 13vw, 4.2rem); }
  .hero-kicker { font-size: 18px; }
  .button { width: 100%; }
  .contract-ticket { padding: 20px; transform: rotate(.5deg); }
  .scroll-cue { left: 20px; right: auto; }
  .section { padding: 95px 20px; }
  .story-grid, .buy-grid, .stats-layout, .roadmap-grid { gap: 42px; }
  .media-frame { padding: 6px; box-shadow: 10px 10px 0 rgba(199,255,24,.06); }
  .media-frame figcaption { left: 12px; right: 12px; bottom: 12px; padding: 8px; font-size: 9px; }
  .section-copy p:not(.eyebrow) { font-size: 16px; }
  .banner-break { height: 610px; }
  .banner-break img { object-position: 64% center; }
  .banner-break-copy { left: 20px; bottom: 35px; font-size: 17vw; }
  .buy-cta { align-items: stretch; flex-direction: column; margin-top: 45px; padding: 22px; }
  .buy-cta small { display: block; margin-top: 7px; }
  .steps li { grid-template-columns: 52px 1fr; gap: 14px; }
  .step-no { width: 44px; height: 44px; }
  .roadmap-section { padding-inline: 20px; }
  .community { min-height: 720px; padding-inline: 20px; }
  .community-bg { object-position: center; }
  footer { padding: 60px 20px 26px; }
  .footer-brand { font-size: 27px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
}

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

:focus-visible { outline: 2px solid var(--pink); outline-offset: 4px; }
