:root {
  --ink: #07182e;
  --deep: #051225;
  --navy: #0d2c50;
  --blue: #155783;
  --paper: #f6ead8;
  --cream: #ffe8c3;
  --orange: #ff5b20;
  --orange-light: #ff7a2f;
  --yellow: #ffc544;
  --line: rgba(255, 232, 195, 0.25);
  --display: "Titan One", Impact, sans-serif;
  --sans: "Space Grotesk", Arial, sans-serif;
  --mono: "DM Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--cream);
  background: var(--deep);
  font-family: var(--sans);
  overflow-x: hidden;
  isolation: isolate;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.scream-background {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 85% 80%, rgba(27, 88, 114, .8), transparent 60%),
    repeating-linear-gradient(173deg, transparent 0 18px, rgba(232, 162, 77, .13) 22px 25px, transparent 31px 52px),
    linear-gradient(174deg, #9d3929 0%, #b9552f 16%, #d49d58 28%, #3f6377 43%, #102f50 54%, #081b32 80%);
}
.scream-background canvas { display: block; width: 100%; height: 100%; opacity: 0; transition: opacity 1.2s ease; }
.scream-background.is-ready canvas { opacity: 1; }
.scream-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 18, 37, .88) 0%, rgba(5, 18, 37, .7) 30%, rgba(5, 18, 37, .22) 66%, rgba(5, 18, 37, .12) 100%),
    linear-gradient(180deg, rgba(5, 18, 37, .28), transparent 28%, rgba(5, 18, 37, .12) 66%, rgba(5, 18, 37, .46));
}
.motion-toggle {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 10;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 8px;
  border: 1px solid rgba(255, 232, 195, .28);
  border-radius: 50%;
  background: rgba(5, 18, 37, .8);
  color: var(--cream);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.motion-toggle[hidden] { display: none; }
.motion-toggle:hover { border-color: var(--orange-light); background: var(--ink); }
.motion-toggle:focus-visible { outline: 2px solid var(--yellow); outline-offset: 4px; }
.motion-toggle svg { width: 18px; height: 18px; }
.motion-toggle .motion-play, .motion-toggle[aria-pressed="true"] .motion-pause { display: none; }
.motion-toggle[aria-pressed="true"] .motion-play { display: block; }

.site-header {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 5.7vw;
  position: sticky;
  top: 0;
  z-index: 9;
  transition: background .2s ease, height .2s ease, border-color .2s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled { height: 76px; background: rgba(5,18,37,.88); backdrop-filter: blur(15px); border-color: rgba(255,255,255,.08); }
.brand { display: inline-flex; align-items: center; gap: .65rem; flex-shrink: 0; }
.brand-mark { overflow: hidden; border-radius: 50%; display: grid; place-items: center; width: 46px; height: 46px; border: 2px solid var(--orange); box-shadow: 0 0 0 2px var(--deep); background: var(--deep); }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-type { line-height: .84; display: grid; gap: .29rem; }
.brand-type strong { font-family: var(--display); font-size: 1.05rem; letter-spacing: .025em; color: var(--paper); }
.brand-type em { font-style: normal; font-family: var(--mono); font-size: .56rem; color: var(--orange-light); letter-spacing: .09em; }
.main-nav { display: flex; align-items: center; gap: 2.2rem; margin-left: auto; }
.main-nav a { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,232,195,.77); transition: color .18s ease; }
.main-nav a:hover { color: var(--orange-light); }
.header-buy, .action-buy { border: 0; background: var(--orange); color: var(--deep); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; transition: transform .18s ease, background .18s ease; }
.header-buy { padding: .82rem 1.1rem; font-size: .74rem; clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%); min-width: 102px; text-align: center; }
.header-buy span { margin-left: .25rem; font-size: 1.05em; }
.header-buy:hover, .action-buy:hover { transform: translateY(-2px) rotate(-1deg); background: var(--yellow); }

.section-shell { max-width: 1400px; padding-left: 5.7vw; padding-right: 5.7vw; margin: 0 auto; }
.hero { min-height: calc(100vh - 92px); display: grid; grid-template-columns: minmax(320px, .91fr) minmax(420px, 1.09fr); align-items: center; gap: clamp(2rem, 6vw, 9rem); position: relative; padding-top: 3.5rem; padding-bottom: 4.8rem; }
.hero-copy { position: relative; z-index: 1; }
.eyebrow { margin: 0 0 1rem; color: var(--orange-light); font: 500 .7rem/1.2 var(--mono); text-transform: uppercase; letter-spacing: .15em; }
.eyebrow span { display: inline-block; width: 16px; height: 2px; background: currentColor; vertical-align: middle; margin: 0 .5rem .1rem 0; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); letter-spacing: .015em; font-weight: 400; }
h1 { font-size: clamp(3.25rem, 6.4vw, 7.25rem); line-height: .91; margin: 0; color: var(--paper); }
h1 i, h2 i { color: var(--orange); font-style: normal; text-shadow: 3px 3px 0 var(--blue); }
h1 span { display: inline-block; font-size: .56em; vertical-align: .1em; color: var(--yellow); }
.hero-text { max-width: 30rem; margin: 1.7rem 0 1.8rem; font-size: clamp(1rem, 1.35vw, 1.18rem); line-height: 1.58; color: rgba(255,232,195,.75); }
.hero-text b { color: var(--cream); }
.action-stack { display: grid; grid-template-columns: repeat(2, minmax(0, 192px)); gap: .55rem; }
.action { min-height: 52px; padding: .55rem .75rem; display: flex; align-items: center; gap: .6rem; border: 1px solid var(--line); background: rgba(17,54,88,.35); color: var(--paper); text-transform: uppercase; font-size: .71rem; letter-spacing: .075em; font-weight: 700; transition: background .18s ease, border-color .18s ease, transform .18s ease; }
.action:hover { background: rgba(255,91,32,.15); border-color: var(--orange); transform: translateX(3px); }
.action b { font-size: 1.1rem; margin-left: auto; font-weight: 400; }
.action-buy { min-height: 52px; font-family: var(--sans); font-size: .71rem; clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%); display: flex; align-items: center; justify-content: flex-start; }
.action-buy b { margin-left: auto; }
.platform-icon { width: 18px; height: 18px; flex: 0 0 18px; fill: currentColor; }
.dex-icon { width: 23px; height: 23px; flex: 0 0 23px; overflow: hidden; position: relative; border: 1px solid #f5f2e9; border-radius: 50%; background: #000; }
.dex-icon img { position: absolute; width: 86px; height: auto; max-width: none; left: -32px; top: -4px; }
.telegram-icon { color: #2aabec; }
.is-disabled { opacity: .6; cursor: default; }

.hero-visual { min-height: 580px; position: relative; display: grid; place-items: center; }
.hero-image-wrap { position: relative; z-index: 2; width: min(100%, 550px); aspect-ratio: 1; padding: 12px; border-radius: 45% 55% 55% 45% / 45% 42% 58% 55%; background: var(--orange); transform: rotate(3deg); box-shadow: 17px 22px 0 rgba(0,0,0,.17); }
.hero-image-wrap::after { content: ""; position: absolute; inset: 24px -26px -22px 27px; border: 2px dashed rgba(255,197,68,.5); border-radius: inherit; transform: rotate(-9deg); z-index: -1; }
.hero-image-wrap img { height: 100%; width: 100%; display: block; object-fit: cover; border-radius: inherit; filter: saturate(.95) contrast(1.04); }
.scribble { position: absolute; z-index: 3; color: var(--yellow); font: 400 clamp(1.3rem, 3vw, 2.5rem)/1 var(--display); text-shadow: 2px 2px 0 var(--deep); transform: rotate(-12deg); }
.scribble-a { top: 9%; right: 0; letter-spacing: -.05em; }
.scribble-b { bottom: 5%; left: -4%; transform: rotate(8deg); color: var(--orange); font-size: clamp(1.4rem, 3.1vw, 3rem); }
.burst { position: absolute; width: 130px; height: 130px; background: var(--yellow); clip-path: polygon(50% 0%,56% 32%,75% 7%,67% 38%,100% 29%,72% 48%,97% 61%,65% 61%,78% 94%,55% 69%,46% 100%,42% 67%,15% 90%,31% 60%,0 54%,30% 43%,3% 20%,37% 33%); opacity: .94; }
.burst-one { top: 6%; left: 2%; transform: rotate(-24deg); }
.burst-two { bottom: 12%; right: 1%; width: 84px; height: 84px; background: var(--blue); transform: rotate(20deg); }
.sticker { position: absolute; z-index: 4; font-family: var(--display); color: var(--deep); background: var(--cream); text-align: center; line-height: .84; padding: .7rem; border: 2px solid var(--deep); box-shadow: 4px 4px 0 var(--deep); transform: rotate(10deg); }
.sticker span { font: 500 .54rem/1.2 var(--mono); letter-spacing: .07em; }
.sticker-top { top: 17%; left: -1%; }
.sticker-bottom { right: -1%; bottom: 16%; transform: rotate(-9deg); background: var(--yellow); }
.visual-caption { position: absolute; z-index: 3; top: 3%; left: 23%; margin: 0; font: 500 .66rem/1.3 var(--mono); letter-spacing: .1em; color: rgba(255,232,195,.65); transform: rotate(-9deg); }
.hero-footer { position: absolute; bottom: 1.8rem; left: 5.7vw; right: 5.7vw; display: flex; align-items: center; gap: .65rem; color: rgba(255,232,195,.45); font: .62rem var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.hero-footer b { color: rgba(255,232,195,.75); font-weight: 400; text-transform: none; letter-spacing: 0; }
.copy-address { padding: .28rem .45rem; background: transparent; color: var(--orange-light); border: 1px solid rgba(255,91,32,.45); font: .57rem var(--mono); text-transform: uppercase; cursor: pointer; }
.copy-address:disabled { opacity: .35; cursor: not-allowed; }
.scroll-note { margin-left: auto; }
.scroll-note i { color: var(--orange); font-style: normal; font-size: 1rem; }

.roadmap { position: relative; padding-top: clamp(6rem, 10vw, 10rem); padding-bottom: clamp(6rem, 10vw, 10rem); }
.roadmap::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--orange), transparent); opacity: .55; }
.section-heading { max-width: 540px; }
h2 { font-size: clamp(3.3rem, 6vw, 6.7rem); line-height: .88; margin-bottom: 1.5rem; color: var(--paper); }
.section-heading > p:last-child, .chart-intro > p:last-of-type { color: rgba(255,232,195,.65); font-size: 1.02rem; line-height: 1.65; }
.roadmap-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 4rem; position: relative; }
.roadmap-track::before { content: ""; height: 2px; position: absolute; top: 1.8rem; left: 2rem; right: 2rem; background: linear-gradient(90deg, var(--orange), var(--yellow), rgba(255,232,195,.23)); }
.roadmap-card { min-height: 365px; padding: 1.15rem 1.25rem 1.5rem; position: relative; overflow: hidden; border: 1px solid rgba(255,232,195,.2); background: linear-gradient(145deg, rgba(18,64,99,.7), rgba(7,24,46,.7)); transition: transform .2s ease, border-color .2s ease; }
.roadmap-card:hover { transform: translateY(-8px) rotate(-.7deg); border-color: var(--orange); }
.roadmap-card.active { background: var(--orange); color: var(--deep); border-color: var(--orange); }
.phase-num { display: block; width: 2.55rem; height: 2.55rem; border: 1px solid currentColor; border-radius: 50%; background: var(--deep); color: var(--cream); text-align: center; padding-top: .72rem; font: .65rem var(--mono); position: relative; z-index: 1; }
.roadmap-card:not(.active) .phase-num { background: var(--cream); color: var(--deep); }
.phase-copy { margin-top: 3.7rem; position: relative; z-index: 2; }
.phase-status { margin-bottom: .75rem; color: inherit; opacity: .65; font: .62rem var(--mono); text-transform: uppercase; letter-spacing: .13em; }
.phase-copy h3 { line-height: .9; font-size: clamp(1.85rem, 2.8vw, 3rem); margin-bottom: 1.5rem; }
.phase-copy ul { margin: 0; padding: 0; list-style: none; font-size: .83rem; line-height: 1.4; }
.phase-copy li { padding: .6rem 0 .6rem 1rem; border-top: 1px solid currentColor; position: relative; opacity: .85; }
.phase-copy li::before { content: ""; width: 5px; height: 5px; position: absolute; left: 0; top: 1rem; background: currentColor; border-radius: 50%; }
.card-mark { position: absolute; right: .7rem; bottom: -2.9rem; color: rgba(255,232,195,.06); font: 14rem/1 var(--display); }
.roadmap-card.active .card-mark { color: rgba(7,24,46,.12); }

.chart-section { min-height: 100vh; padding-top: 6rem; padding-bottom: 7rem; }
.chart-intro { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 2rem; }
.chart-intro h2 { margin: 0; }
.outline-link { margin-top: 1.2rem; display: inline-flex; align-items: center; gap: .8rem; padding: .7rem .8rem; border: 1px solid var(--orange); color: var(--orange-light); font: .66rem var(--mono); text-transform: uppercase; letter-spacing: .09em; transition: .18s ease; }
.outline-link:hover { background: var(--orange); color: var(--deep); }
.outline-link span { font-size: 1.15rem; }
.chart-window { background: #07182d; border: 1px solid rgba(255,232,195,.26); box-shadow: 14px 16px 0 rgba(255,91,32,.55); transform: rotate(1.2deg); }
.window-topbar { min-height: 47px; padding: 0 1rem; display: flex; align-items: center; gap: .85rem; border-bottom: 1px solid rgba(255,232,195,.16); font: .62rem var(--mono); letter-spacing: .09em; color: rgba(255,232,195,.68); }
.window-dots { display: flex; gap: .33rem; }
.window-dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
.window-dots i:nth-child(2) { background: var(--yellow); }.window-dots i:nth-child(3) { background: #4de092; }
.window-topbar a { margin-left: auto; color: var(--orange-light); font-size: 1rem; }
.chart-frame-wrap { height: clamp(420px, 58vw, 590px); display: flex; flex-direction: column; overflow: hidden; background: #061021; }
.chart-frame-wrap iframe { display: block; flex: 1 1 auto; min-height: 0; width: 100%; height: 100%; border: 0; background: #061021; }
.chart-placeholder { flex: 1 1 auto; min-height: 100%; display: grid; place-content: center; text-align: center; gap: 1rem; background: radial-gradient(circle at 50% 42%, rgba(255,91,32,.15), transparent 31%), repeating-linear-gradient(0deg, transparent 0 50px, rgba(255,232,195,.04) 51px), repeating-linear-gradient(90deg, transparent 0 80px, rgba(255,232,195,.04) 81px); }
.chart-placeholder img { width: 105px; height: 105px; margin: auto; border-radius: 50%; border: 2px solid var(--orange); }
.chart-placeholder p { margin: 0; color: var(--cream); font: .85rem/1.6 var(--mono); letter-spacing: .08em; }
.chart-placeholder span { color: var(--orange-light); font-size: .67rem; }

.site-footer { margin: 0 5.7vw; padding: 2.1rem 0; border-top: 1px solid rgba(255,232,195,.15); display: flex; align-items: center; gap: 2rem; }
.footer-brand .brand-mark { width: 37px; height: 37px; }.footer-brand .brand-type strong { font-size: .83rem; }.footer-brand .brand-type em { font-size: .48rem; }
.site-footer p { margin: 0 auto; color: rgba(255,232,195,.43); font-size: .68rem; }
.footer-links { display: flex; gap: 1.2rem; font: .65rem var(--mono); text-transform: uppercase; color: var(--orange-light); }
.footer-links a:hover { color: var(--yellow); }

@media (max-width: 900px) {
  .scream-background::after { background: linear-gradient(180deg, rgba(5,18,37,.35), rgba(5,18,37,.26) 30%, rgba(5,18,37,.78) 65%, rgba(5,18,37,.86)); }
  .site-header { padding: 0 5vw; }.section-shell { padding-left: 5vw; padding-right: 5vw; }
  .hero { grid-template-columns: 1fr; padding-top: 4rem; gap: 2.2rem; }.hero-visual { order: -1; min-height: auto; width: min(100%, 550px); justify-self: center; }.hero-image-wrap { width: min(78vw, 460px); }.hero-copy { text-align: center; }.hero-text { margin-left: auto; margin-right: auto; }.action-stack { justify-content: center; }.hero-footer { position: relative; bottom: auto; left: auto; right: auto; grid-column: 1; margin-top: .5rem; }.visual-caption { left: 13%; }
  .roadmap-track { grid-template-columns: 1fr; max-width: 570px; }.roadmap-track::before { width: 2px; height: auto; top: 2rem; bottom: 2rem; left: 2rem; right: auto; }.roadmap-card { min-height: 310px; }.chart-window { width: calc(100% - 12px); justify-self: end; }
}
@media (max-width: 640px) {
  .motion-toggle { right: max(.8rem, env(safe-area-inset-right)); bottom: max(.8rem, env(safe-area-inset-bottom)); width: 40px; height: 40px; }
  .site-header { height: 74px; }.site-header.is-scrolled { height: 68px; }.brand-mark { width: 38px; height: 38px; }.brand-type strong { font-size: .85rem; }.brand-type em { font-size: .48rem; }.main-nav { display: none; }.header-buy { padding: .67rem .74rem; min-width: 75px; font-size: .62rem; }
  .hero { min-height: auto; padding-top: 2.7rem; padding-bottom: 3.5rem; }.hero-visual { width: 100%; }.hero-image-wrap { width: min(86vw, 430px); }.sticker-top { left: 0; }.sticker-bottom { right: 0; }.scribble-a { right: 0; }.scribble-b { left: 0; bottom: 1%; }.burst-one { left: 0; width: 85px; height: 85px; }.visual-caption { top: 0; left: 9%; font-size: .52rem; }.hero-text { font-size: .95rem; }.action-stack { grid-template-columns: repeat(2, minmax(0,1fr)); width: 100%; }.action { min-height: 50px; font-size: .58rem; padding: .5rem; gap: .4rem; }.action-buy { min-height: 50px; font-size: .58rem; }.platform-icon { width: 15px; flex-basis: 15px; }.dex-icon { width: 19px; height: 19px; flex-basis: 19px; }.dex-icon img { width: 71px; left: -26px; top: -3px; }.hero-footer { flex-wrap: wrap; justify-content: center; font-size: .54rem; }.scroll-note { width: 100%; text-align: center; margin: .5rem 0 0; }
  .roadmap { padding-top: 5rem; }.roadmap-card { min-height: 290px; }.phase-copy { margin-top: 2.8rem; }.chart-section { padding-top: 5rem; padding-bottom: 4.5rem; }.chart-intro { align-items: flex-start; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }.chart-window { box-shadow: 8px 9px 0 rgba(255,91,32,.55); }.chart-frame-wrap { height: 440px; }.window-topbar span { font-size: .53rem; }.site-footer { flex-wrap: wrap; gap: 1.1rem; }.site-footer p { order: 3; width: 100%; margin: 0; }.footer-links { margin-left: auto; gap: .7rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .scream-background canvas { transition: none; }
}

[hidden] { display: none !important; }
