:root {
  --acid: #d7ff00;
  --acid-bright: #bff620;
  --ink: #151515;
  --paper: #eeece5;
  --soft: #d9d7ce;
  --line: rgba(21, 21, 21, .22);
  --mono: "DM Mono", monospace;
  --display: "Unbounded", sans-serif;
  --body: "Manrope", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--body); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.cursor-glow { position: fixed; width: 300px; height: 300px; left: var(--pointer-x, 80%); top: var(--pointer-y, 20%); z-index: -1; pointer-events: none; transform: translate(-50%, -50%); background: radial-gradient(circle, rgba(215,255,0,.18), transparent 66%); filter: blur(10px); transition: left .18s ease-out, top .18s ease-out; }
.site-loader, .copy-toast { display: none; }.js .site-loader { position: fixed; z-index: 1000; inset: 0; display: grid; place-content: center; justify-items: center; overflow: hidden; isolation: isolate; background: var(--ink); color: var(--paper); transition: opacity .6s ease, visibility .6s ease, transform .6s cubic-bezier(.75,0,.25,1); }.js.is-loaded .site-loader { visibility: hidden; opacity: 0; transform: scale(1.04); pointer-events: none; }.loader-glow { position: absolute; z-index: -2; width: min(92vw, 710px); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(215,255,0,.95) 0 2%, rgba(215,255,0,.19) 27%, transparent 68%); filter: blur(2px); animation: loader-glow 1.45s ease-in-out infinite alternate; }.loader-orbit { position: absolute; z-index: -1; width: min(85vw, 520px); aspect-ratio: 1; border: 1px solid rgba(238,236,229,.4); border-radius: 50%; animation: loader-orbit 2.8s linear infinite; }.loader-orbit::before, .loader-orbit::after { content: ""; position: absolute; top: 50%; left: -5px; width: 10px; height: 10px; border-radius: 50%; background: var(--acid); box-shadow: calc(min(85vw, 520px) - 1px) 0 0 var(--acid); transform: translateY(-50%); }.loader-mark { width: clamp(120px, 21vw, 220px); aspect-ratio: 1; display: grid; place-items: center; overflow: hidden; border: 2px solid var(--paper); border-radius: 50%; background: var(--acid); box-shadow: 0 0 0 9px rgba(215,255,0,.16), 14px 14px 0 rgba(238,236,229,.12); animation: loader-mark .78s cubic-bezier(.2,.9,.25,1.25) both; }.loader-mark img { width: 100%; height: 100%; object-fit: contain; }.loader-name { margin: 28px 0 15px; font-family: var(--display); font-size: clamp(19px, 3vw, 31px); font-weight: 800; line-height: .92; letter-spacing: -.11em; text-align: center; animation: loader-copy .6s .18s both; }.loader-name span { color: var(--acid); }.loader-meter { position: relative; width: min(54vw, 205px); height: 3px; overflow: hidden; background: rgba(238,236,229,.22); }.loader-meter::after { content: ""; position: absolute; inset: 0 auto 0 0; width: 40%; background: var(--acid); animation: loader-meter 1.05s ease-in-out infinite; }.js .copy-toast { position: fixed; z-index: 900; right: clamp(16px, 3vw, 34px); bottom: clamp(16px, 3vw, 34px); display: grid; width: min(340px, calc(100vw - 32px)); grid-template-columns: 44px 1fr; align-items: center; overflow: hidden; pointer-events: none; color: var(--paper); background: var(--ink); border: 1px solid var(--paper); box-shadow: 8px 8px 0 var(--acid); opacity: 0; transform: translateY(30px) rotate(2deg); }.copy-toast.is-visible { animation: toast-in-out 2.8s cubic-bezier(.16,.84,.27,1) both; }.toast-check { align-self: stretch; display: grid; place-items: center; background: var(--acid); color: var(--ink); }.toast-check svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2.4; }.toast-copy { display: grid; gap: 4px; padding: 13px 15px; }.toast-copy strong { font-family: var(--display); font-size: 11px; letter-spacing: -.04em; }.toast-copy code { overflow: hidden; color: rgba(238,236,229,.65); font-family: var(--mono); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }.toast-progress { position: absolute; right: 0; bottom: 0; left: 0; height: 3px; background: var(--acid); transform-origin: left; }.copy-toast.is-visible .toast-progress { animation: toast-timer 2.65s linear both; }
@keyframes loader-mark { from { transform: scale(.3) rotate(-18deg); opacity: 0; } to { transform: scale(1) rotate(0); opacity: 1; } } @keyframes loader-copy { from { transform: translateY(11px); opacity: 0; } to { transform: translateY(0); opacity: 1; } } @keyframes loader-orbit { to { transform: rotate(360deg); } } @keyframes loader-glow { to { transform: scale(1.17); opacity: .7; } } @keyframes loader-meter { 0% { transform: translateX(-105%); } 50% { transform: translateX(155%); } 100% { transform: translateX(155%); } } @keyframes toast-in-out { 0%, 100% { opacity: 0; transform: translateY(30px) rotate(2deg); } 12%, 88% { opacity: 1; transform: translateY(0) rotate(0); } } @keyframes toast-timer { from { transform: scaleX(1); } to { transform: scaleX(0); } }
.site-header { position: sticky; top: 0; z-index: 50; min-height: 86px; padding: 0 clamp(20px, 4vw, 72px); display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: center; background: rgba(238,236,229,.88); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); }
.brand { display: inline-flex; width: max-content; align-items: center; gap: 10px; font-family: var(--display); font-size: 15px; font-weight: 800; letter-spacing: -.08em; }
.brand-mark { width: 39px; height: 39px; display: grid; place-items: center; overflow: hidden; border: 1px solid var(--ink); border-radius: 50%; background: var(--acid); }
.site-header .brand-mark { background: transparent; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.main-nav { display: flex; align-self: stretch; align-items: stretch; }
.nav-link { position: relative; padding: 0 clamp(10px, 1.6vw, 24px); display: flex; gap: 7px; align-items: center; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; white-space: nowrap; }
.nav-link span { font-family: var(--mono); font-size: 9px; opacity: .55; }
.nav-link::after { content: ""; position: absolute; right: 17%; bottom: 17px; left: 17%; height: 2px; background: var(--ink); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.header-buy { justify-self: end; display: inline-flex; align-items: center; gap: 8px; padding: 11px 16px 11px 12px; background: var(--ink); color: var(--paper); font-size: 12px; font-weight: 800; border: 1px solid var(--ink); transition: transform .2s ease, background .2s ease, color .2s ease; }
.header-buy:hover { transform: translate(-2px, -2px); background: var(--acid); color: var(--ink); box-shadow: 4px 4px 0 var(--ink); }
.header-buy img { width: 21px; height: 21px; object-fit: contain; }

.section { padding-right: clamp(20px, 4vw, 72px); padding-left: clamp(20px, 4vw, 72px); }
.hero { position: relative; min-height: 100svh; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; isolation: isolate; overflow: hidden; padding-top: 60px; }
.hero-grid { position: absolute; z-index: -2; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 60px 60px; opacity: .55; mask-image: linear-gradient(to bottom, black 10%, transparent 88%); }
.hero-copy { z-index: 3; max-width: 620px; padding: 10px 0 74px; }
h1, h2 { margin: 0; font-family: var(--display); font-weight: 800; line-height: .96; letter-spacing: -.09em; }
h1 { font-size: clamp(55px, 8.6vw, 150px); }
h1 em, h2 em { font-style: normal; color: var(--acid); text-shadow: 2px 2px 0 var(--ink), -1px -1px 0 var(--ink), 1px -1px 0 var(--ink), -1px 1px 0 var(--ink); }
.hero-actions { display: grid; width: min(100%, 398px); grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 32px; }
.action-button { min-height: 58px; padding: 8px 11px; display: flex; gap: 10px; align-items: center; background: rgba(238,236,229,.72); border: 1px solid var(--ink); font-size: 11px; font-weight: 800; text-transform: uppercase; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.action-button:hover { transform: translate(-3px, -3px); background: var(--paper); box-shadow: 5px 5px 0 var(--ink); }
.action-button.action-buy { background: var(--acid); }
.button-icon { width: 31px; height: 31px; flex: 0 0 31px; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; background: var(--paper); overflow: hidden; }
.button-icon.partner-icon img { width: 100%; height: 100%; object-fit: contain; }
.brand-icon svg { width: 14px; height: 14px; fill: var(--ink); }
.brand-icon.telegram { background: var(--ink); }.brand-icon.telegram svg { fill: var(--acid); }
.action-arrow { margin-left: auto; font-family: var(--mono); font-size: 17px; }
.ca-copy { width: 100%; min-height: 52px; grid-column: 1 / -1; display: grid; grid-template-columns: auto minmax(0, 1fr) 39px; align-items: center; gap: 12px; padding: 0 0 0 12px; appearance: none; color: var(--ink); background: rgba(238,236,229,.72); border: 1px solid var(--ink); cursor: pointer; font-family: var(--mono); text-align: left; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }.ca-copy:hover, .ca-copy:focus-visible { outline: 0; transform: translate(-3px, -3px); background: var(--paper); box-shadow: 5px 5px 0 var(--ink); }.ca-copy.is-copied { background: var(--acid); }.ca-prefix { font-size: 10px; font-weight: 500; letter-spacing: .1em; }.ca-copy code { overflow: hidden; font-family: var(--mono); font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }.ca-copy-icon { align-self: stretch; display: grid; place-items: center; border-left: 1px solid var(--ink); }.ca-copy-icon svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.9; }.check-glyph { display: none; }.ca-copy.is-copied .copy-glyph { display: none; }.ca-copy.is-copied .check-glyph { display: block; }.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.hero-visual { align-self: stretch; position: relative; min-height: 600px; display: grid; place-items: end center; }
.hero-character { position: relative; z-index: 1; width: min(100%, 710px); max-height: 705px; object-fit: contain; object-position: bottom center; filter: drop-shadow(16px 18px 0 rgba(21,21,21,.24)); mix-blend-mode: multiply; }

.roadmap { min-height: 100svh; display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(40px, 8vw, 160px); padding-top: clamp(88px, 12vw, 170px); padding-bottom: clamp(88px, 12vw, 170px); background: var(--ink); color: var(--paper); }.roadmap h2 { font-size: clamp(46px, 6.5vw, 100px); }
.roadmap-list { display: flex; margin: 0; padding: 0; flex-direction: column; list-style: none; border-top: 1px solid rgba(238,236,229,.35); }.roadmap-item { display: grid; grid-template-columns: 93px 1fr 44px; gap: 17px; align-items: center; padding: 26px 0; border-bottom: 1px solid rgba(238,236,229,.35); transition: background .25s ease, padding .25s ease; }.roadmap-item:hover { padding-right: 15px; padding-left: 15px; background: var(--acid); color: var(--ink); }.phase-no { align-self: start; padding-top: 5px; font-family: var(--mono); font-size: 10px; text-transform: uppercase; opacity: .7; }.roadmap-item h3 { margin: 0; font-family: var(--display); font-size: clamp(17px, 2vw, 27px); letter-spacing: -.07em; }.roadmap-item p { max-width: 470px; margin: 10px 0 0; font-size: 12px; line-height: 1.6; color: rgba(238,236,229,.72); }.roadmap-item:hover p { color: rgba(21,21,21,.72); }.phase-mark { justify-self: end; display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-family: var(--mono); font-size: 10px; }.revealed .phase-mark { border: 0; background: var(--acid); color: var(--ink); font-size: 17px; }

.chart { min-height: 100svh; padding-top: clamp(86px, 11vw, 150px); padding-bottom: clamp(80px, 11vw, 150px); background: var(--soft); }.chart-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 36px; }.chart h2 { font-size: clamp(47px, 6vw, 94px); }.chart-external { padding: 13px 0; border-bottom: 1px solid var(--ink); font-family: var(--mono); font-size: 11px; font-weight: 500; text-transform: uppercase; }.chart-external span { display: inline-block; margin-left: 5px; font-size: 17px; transition: transform .2s ease; }.chart-external:hover span { transform: translate(3px, -3px); }.chart-frame { padding: 10px; border: 1px solid var(--ink); background: var(--ink); box-shadow: 10px 10px 0 var(--acid); }.chart-frame-bar { height: 35px; display: flex; align-items: center; gap: 9px; padding: 0 7px; color: var(--paper); font-family: var(--mono); font-size: 10px; letter-spacing: .08em; }.frame-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--acid); }.frame-live { margin-left: auto; color: var(--acid); }.chart-placeholder { min-height: 565px; display: grid; place-items: center; color: rgba(238,236,229,.7); border: 1px solid rgba(238,236,229,.16); font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; text-align: center; }.chart iframe { display: block; width: 100%; height: 565px; border: 0; background: #0f1114; }
.site-footer { min-height: 117px; padding: 25px clamp(20px, 4vw, 72px); display: flex; justify-content: space-between; align-items: center; gap: 20px; background: var(--acid); border-top: 1px solid var(--ink); }.site-footer p, .back-top { margin: 0; font-family: var(--mono); font-size: 10px; text-transform: uppercase; }.back-top { padding-bottom: 2px; border-bottom: 1px solid var(--ink); }

@media (max-width: 820px) { .site-header { min-height: 72px; grid-template-columns: 1fr auto; }.main-nav { display: none; }.hero { min-height: 100svh; grid-template-columns: 1fr; padding-top: 58px; }.hero-copy { padding-bottom: 42px; }.hero-visual { min-height: 530px; }.hero-character { max-height: 555px; }.roadmap { grid-template-columns: 1fr; gap: 50px; }.roadmap-list { max-width: 720px; }.chart iframe { height: 480px; }.site-footer { min-height: 150px; flex-wrap: wrap; } }
@media (max-width: 520px) { .site-header { padding-right: 17px; padding-left: 17px; }.brand-name { font-size: 13px; }.brand-mark { width: 35px; height: 35px; }.header-buy { padding: 9px 10px; font-size: 10px; }.header-buy img { width: 19px; height: 19px; }.section { padding-right: 20px; padding-left: 20px; }.hero { padding-top: 43px; }.hero-actions { grid-template-columns: 1fr; width: 100%; }.action-button { min-height: 52px; }.hero-visual { min-height: 455px; margin-right: -20px; margin-left: -20px; }.hero-character { max-height: 490px; }.roadmap-item { grid-template-columns: 70px 1fr 33px; gap: 9px; padding: 22px 0; }.roadmap-item h3 { font-size: 17px; }.roadmap-item p { font-size: 11px; }.phase-mark { width: 29px; height: 29px; }.chart-heading { align-items: start; flex-direction: column; gap: 19px; }.chart iframe { height: 435px; }.chart-frame { margin-right: -10px; margin-left: -10px; box-shadow: 6px 6px 0 var(--acid); }.site-footer { display: grid; grid-template-columns: 1fr auto; }.site-footer p { grid-column: 1 / -1; order: 3; } }
