:root {
  --ink: #0a0c0a;
  --deep: #10130f;
  --road: #1b2019;
  --paper: #eff1df;
  --muted: #a6aa9c;
  --lime: #bcff23;
  --lime-soft: #d9ff73;
  --wood: #d67d32;
  --line: rgba(239, 241, 223, 0.18);
  --mono: 'DM Mono', monospace;
  --display: 'Syne', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--display);
}

a { color: inherit; text-decoration: none; }

button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 11px 14px;
  transform: translateY(-180%);
  background: var(--lime);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  transition: transform 180ms ease;
}

.skip-link:focus { transform: translateY(0); }

.page-grain {
  position: fixed;
  z-index: 30;
  inset: 0;
  pointer-events: none;
  opacity: 0.075;
  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='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 105px;
  padding: 19px clamp(20px, 3.6vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(239, 241, 223, 0.18);
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 800;
  line-height: 0.78;
  letter-spacing: -0.08em;
}

.brand-logo {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(188, 255, 35, 0.6));
  transform: rotate(-4deg);
  transition: filter 220ms ease, transform 220ms ease;
}

.brand:hover .brand-logo, .brand:focus-visible .brand-logo { filter: drop-shadow(0 0 15px rgba(188, 255, 35, 0.95)); transform: rotate(3deg) scale(1.09); }

.site-nav { display: flex; align-items: center; gap: clamp(18px, 3vw, 43px); }

.nav-link {
  padding: 14px 0;
  color: rgba(239, 241, 223, 0.64);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 180ms ease;
}

.nav-link span { margin-right: 5px; color: var(--lime); font-size: 9px; }
.nav-link:hover, .nav-link:focus-visible, .nav-link.is-active { color: var(--paper); }

.buy-button {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 46px;
  padding: 7px 13px 7px 8px;
  border: 1px solid var(--lime);
  background: var(--lime);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.buy-button img { width: 29px; height: 29px; object-fit: contain; }
.buy-button img.pump-icon { padding: 2px; }
.buy-button svg, .action-card > svg, .outline-link svg, .ride-down svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.buy-button:hover, .buy-button:focus-visible { transform: translate(-3px, -3px); box-shadow: 5px 5px 0 var(--wood); background: var(--lime-soft); }

.section {
  position: relative;
  height: 100svh;
  height: 100dvh;
  min-height: 0;
  overflow: hidden;
}

.hero {
  height: 100svh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 25px;
  padding: 145px clamp(20px, 7.5vw, 130px) 72px;
  isolation: isolate;
  overflow: hidden;
}

.hero-media, .hero-media img, .hero-vignette { position: absolute; inset: 0; }
.hero-media { z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; animation: hero-scale 14s ease-out both; }
.hero-vignette {
  background:
    linear-gradient(90deg, rgba(7, 10, 7, 0.96) 0%, rgba(7, 10, 7, 0.84) 26%, rgba(7, 10, 7, 0.2) 63%, rgba(7, 10, 7, 0.12) 100%),
    linear-gradient(0deg, rgba(7, 10, 7, 0.77), transparent 32%);
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 105px;
  bottom: 0;
  left: clamp(15px, 4.8vw, 83px);
  width: 1px;
  background: var(--line);
  content: '';
}

.hero-copy { order: 1; width: 100%; max-width: 665px; }
.eyebrow { margin: 0 0 18px; color: var(--lime); font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; }
.signal-dot { display: inline-block; width: 7px; height: 7px; margin-right: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 12px var(--lime); }

h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-weight: 800; letter-spacing: -0.085em; text-wrap: balance; }
h1 { margin-bottom: 26px; font-size: clamp(4.2rem, 9.8vw, 10.2rem); line-height: 0.78; }
h1 em, h2 em { color: var(--lime); font-style: normal; }

.hero-lede {
  max-width: 420px;
  margin-bottom: 30px;
  color: rgba(239, 241, 223, 0.83);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.55;
}

.ride-down { display: inline-flex; align-items: center; gap: 12px; padding: 11px 0; color: var(--paper); font-family: var(--mono); font-size: 11px; text-transform: uppercase; }
.ride-down svg { stroke: var(--lime); transition: transform 180ms ease; }
.ride-down:hover svg, .ride-down:focus-visible svg { transform: translateY(4px); }

.social-rail {
  position: relative;
  order: 2;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(385px, 100%);
  gap: 8px;
}

.action-card {
  position: relative;
  display: grid;
  grid-template-columns: 30px 1fr 12px;
  align-items: center;
  gap: 9px;
  min-height: 63px;
  padding: 8px 11px;
  overflow: hidden;
  border: 1px solid rgba(239, 241, 223, 0.26);
  background: rgba(10, 12, 10, 0.68);
  backdrop-filter: blur(8px);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.action-card::before { position: absolute; inset: 0; width: 3px; background: var(--lime); content: ''; transform: scaleY(0); transform-origin: bottom; transition: transform 180ms ease; }
.action-card:hover, .action-card:focus-visible { border-color: var(--lime); background: rgba(23, 29, 21, 0.94); transform: translateX(5px); }
.action-card:hover::before, .action-card:focus-visible::before { transform: scaleY(1); }
.action-card img { width: 30px; height: 30px; object-fit: contain; }
.action-card img.pump-icon { padding: 2px; }
.action-card .dex-icon { border-radius: 6px; object-fit: cover; }
.action-card small { display: block; margin-bottom: 3px; color: var(--lime); font-family: var(--mono); font-size: 8px; letter-spacing: 0.06em; text-transform: uppercase; }
.action-card > span:not(.brand-icon) { color: var(--paper); font-size: 12px; font-weight: 700; line-height: 1.05; }
.action-card > svg { width: 12px; }
.brand-icon { width: 30px; height: 30px; display: grid; place-items: center; }
.brand-icon svg { width: 21px; height: 21px; fill: currentColor; }
.brand-icon--x { color: var(--paper); }
.brand-icon--telegram { color: #31a8e0; }

.copy-ca {
  position: relative;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 38px;
  align-items: center;
  gap: 11px;
  min-height: 58px;
  padding: 8px 11px;
  overflow: hidden;
  border: 1px solid rgba(188, 255, 35, 0.72);
  background: rgba(10, 12, 10, 0.76);
  color: var(--paper);
  cursor: pointer;
  isolation: isolate;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.copy-ca::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 30px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--lime);
  content: '';
  opacity: 0;
  transform: translateY(-50%) scale(0);
}

.copy-ca:hover, .copy-ca:focus-visible { border-color: var(--lime); background: rgba(32, 40, 22, 0.92); box-shadow: inset 0 0 0 1px rgba(188, 255, 35, 0.18); }
.ca-label { color: var(--lime); font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.06em; }
.copy-ca code { overflow: hidden; color: var(--paper); font-family: var(--mono); font-size: 11px; text-align: left; text-overflow: ellipsis; white-space: nowrap; }
.copy-icon { position: relative; display: grid; width: 38px; height: 38px; place-items: center; border-left: 1px solid rgba(239, 241, 223, 0.18); color: var(--lime); }
.copy-icon svg { position: absolute; width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; transition: opacity 180ms ease, transform 180ms ease; }
.check-symbol { opacity: 0; transform: scale(0.55) rotate(-25deg); }
.copy-ca.is-copied { border-color: var(--lime); background: rgba(94, 128, 14, 0.4); box-shadow: 0 0 28px rgba(188, 255, 35, 0.28); }
.copy-ca.is-copied::before { animation: ca-ripple 640ms cubic-bezier(.16,.84,.33,1) both; }
.copy-ca.is-copied .copy-symbol { opacity: 0; transform: scale(0.55) rotate(25deg); }
.copy-ca.is-copied .check-symbol { opacity: 1; transform: scale(1) rotate(0deg); }

.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-stamp {
  position: absolute;
  right: clamp(24px, 6vw, 100px);
  bottom: 68px;
  display: grid;
  width: 116px;
  height: 116px;
  place-content: center;
  gap: 4px;
  border: 1px solid rgba(188, 255, 35, 0.8);
  border-radius: 50%;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 8px;
  text-align: center;
  letter-spacing: 0.08em;
  transform: rotate(12deg);
}
.hero-stamp strong { color: var(--paper); font-family: var(--display); font-size: 27px; letter-spacing: -0.1em; }
.hero-footnote { position: absolute; left: clamp(20px, 7.5vw, 130px); bottom: 27px; color: rgba(239, 241, 223, 0.44); font-family: var(--mono); font-size: 9px; letter-spacing: 0.08em; }

.roadmap {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(440px, 1.1fr);
  align-content: center;
  gap: clamp(30px, 6vw, 100px);
  padding: clamp(28px, 6vh, 72px) clamp(20px, 9vw, 152px);
  background: var(--paper);
  color: var(--ink);
}
.section-intro { align-self: center; position: static; }
.section-intro .eyebrow, .market .eyebrow { color: #64720f; }
h2 { margin-bottom: 26px; font-size: clamp(3.4rem, 6.6vw, 7.4rem); line-height: 0.82; }
.section-intro > p:last-child { max-width: 375px; color: #4e554d; font-size: 17px; line-height: 1.55; }
.route-list { display: grid; margin: 0; padding: 0; list-style: none; border-top: 2px solid var(--ink); }
.route-card { position: relative; display: grid; grid-template-columns: 43px 1fr auto; gap: 20px; min-height: 0; padding: clamp(10px, 2vh, 22px) 0; border-bottom: 1px solid rgba(10, 12, 10, 0.23); }
.route-number, .route-status { font-family: var(--mono); font-size: 11px; }
.route-number { color: #65700e; }
.route-status { margin-bottom: 12px; color: #596051; font-size: 9px; letter-spacing: 0.08em; }
.route-status span { display: inline-block; width: 7px; height: 7px; margin-right: 5px; border-radius: 50%; background: #92be09; box-shadow: 0 0 8px #92be09; }
.route-copy h3 { margin-bottom: 9px; font-size: clamp(1.65rem, 2.6vw, 2.35rem); letter-spacing: -0.065em; }
.route-copy > p:last-child { max-width: 420px; margin: 0; color: #535a50; font-size: 15px; line-height: 1.52; }
.route-mark { align-self: center; color: #d3d5c7; font-size: clamp(3rem, 5.3vw, 5.4rem); font-weight: 800; letter-spacing: -0.1em; line-height: 1; }
.route-card.is-live .route-mark { color: var(--lime); }

.market {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(420px, 1.28fr);
  grid-template-rows: minmax(0, 1fr) auto;
  column-gap: clamp(35px, 7vw, 120px);
  row-gap: 12px;
  align-items: center;
  padding: clamp(28px, 6vh, 70px) clamp(20px, 9vw, 152px);
  background: #151914;
}
.market-heading { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 28px; margin: 0; }
.market-heading h2 { margin-bottom: 0; }
.outline-link { display: inline-flex; align-items: center; gap: 9px; min-height: 44px; padding: 10px 0; border-bottom: 1px solid var(--lime); color: var(--lime); font-family: var(--mono); font-size: 11px; text-transform: uppercase; white-space: nowrap; transition: gap 180ms ease; }
.outline-link:hover, .outline-link:focus-visible { gap: 15px; }

.dex-window { display: flex; grid-column: 2; grid-row: 1; min-height: 0; height: 100%; flex-direction: column; overflow: hidden; border: 1px solid rgba(239, 241, 223, 0.29); background: #0e110d; box-shadow: 14px 14px 0 rgba(188, 255, 35, 0.13); }
.window-bar { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 49px; padding: 0 16px; border-bottom: 1px solid rgba(239, 241, 223, 0.2); font-family: var(--mono); font-size: 9px; letter-spacing: 0.06em; }
.window-dots { display: flex; gap: 5px; }
.window-dots i { width: 7px; height: 7px; border-radius: 50%; background: #596054; }
.window-dots i:first-child { background: var(--wood); }
.window-dots i:nth-child(2) { background: var(--lime); }
.window-bar p { margin: 0; color: var(--paper); }
.window-bar p .signal-dot { width: 5px; height: 5px; }
.window-code { justify-self: end; color: #949b8e; }
#dexscreener-embed { display: block; width: 100%; min-height: 0; flex: 1; border: 0; background: #0e110d; }
.chart-placeholder {
  flex: 1;
  display: grid;
  min-height: 260px;
  place-content: center;
  gap: 10px;
  padding: 34px;
  color: rgba(239, 241, 223, 0.72);
  text-align: center;
}
.chart-placeholder p {
  margin: 0;
  color: var(--lime);
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.06em;
}
.chart-placeholder span {
  max-width: 360px;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.6;
}
.market-note { grid-column: 2; grid-row: 2; margin: 0; color: #8e9587; font-family: var(--mono); font-size: 10px; line-height: 1.6; }
.market-note code { color: var(--lime); }

.site-footer { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 28px clamp(20px, 3.6vw, 64px); border-top: 1px solid var(--line); background: var(--ink); color: rgba(239, 241, 223, 0.61); font-family: var(--mono); font-size: 10px; letter-spacing: 0.05em; text-transform: uppercase; }
.site-footer .brand { color: var(--paper); }
.site-footer .brand-logo { width: 42px; height: 42px; flex-basis: 42px; }
.site-footer p { margin: 0; }

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

@keyframes hero-scale { from { transform: scale(1.06); } to { transform: scale(1); } }
@keyframes ca-ripple { 0% { opacity: 0.7; transform: translateY(-50%) scale(0); } 100% { opacity: 0; transform: translateY(-50%) scale(18); } }

@media (max-width: 860px) {
  .site-header { grid-template-columns: 1fr auto; height: 82px; padding-top: 11px; padding-bottom: 11px; }
  .site-nav { display: none; }
  .brand-logo { width: 46px; height: 46px; flex-basis: 46px; }
  .buy-button--header { min-height: 42px; padding-right: 10px; }
  .buy-button--header span { display: none; }
  .hero { padding-top: 128px; align-items: flex-start; }
  .hero::before { top: 82px; }
  .hero-media img { object-position: 66% center; }
  .hero-vignette { background: linear-gradient(90deg, rgba(7, 10, 7, 0.93) 0%, rgba(7, 10, 7, 0.68) 60%, rgba(7, 10, 7, 0.21)), linear-gradient(0deg, rgba(7, 10, 7, 0.88), transparent 42%); }
  .social-rail { width: min(360px, 100%); grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .action-card { grid-template-columns: 26px 1fr; min-height: 56px; gap: 7px; padding: 7px 8px; }
  .action-card > svg { display: none; }
  .action-card img, .brand-icon { width: 26px; height: 26px; }
  .action-card > span:not(.brand-icon) { font-size: 10px; }
  .action-card small { font-size: 7px; }
  .copy-ca { min-height: 54px; }
  .hero-stamp { display: none; }
  .hero-footnote { bottom: 22px; max-width: 230px; font-size: 8px; }
  .roadmap { grid-template-columns: 1fr; gap: 22px; padding-top: 30px; padding-bottom: 30px; }
  .section-intro { position: static; }
  .market { grid-template-columns: 1fr; grid-template-rows: auto minmax(0, 1fr) auto; gap: 14px; padding-top: 30px; padding-bottom: 30px; }
}

@media (max-width: 560px) {
  .brand { font-size: 13px; }
  .brand-logo { width: 42px; height: 42px; flex-basis: 42px; }
  .hero { padding-left: 30px; padding-right: 30px; }
  .hero::before { left: 15px; }
  .hero-media img { object-position: 63% center; }
  h1 { font-size: clamp(3.75rem, 17vw, 5.5rem); }
  .hero-lede { max-width: 310px; font-size: 14px; }
  .social-rail { width: 100%; }
  .copy-ca code { font-size: 10px; }
  .roadmap, .market { padding-left: 30px; padding-right: 30px; }
  h2 { font-size: clamp(3rem, 15vw, 4.7rem); }
  .route-card { grid-template-columns: 27px 1fr; gap: 12px; min-height: 0; }
  .route-mark { display: none; }
  .route-copy > p:last-child { font-size: 14px; }
  .market-heading { grid-column: 1; grid-row: 1; gap: 14px; }
  .dex-window { grid-column: 1; grid-row: 2; }
  .market-note { grid-column: 1; grid-row: 3; }
  .window-bar { grid-template-columns: auto 1fr; gap: 10px; padding: 0 11px; }
  .window-bar p { font-size: 8px; }
  .window-code { display: none; }
  #dexscreener-embed { min-height: 0; height: auto; }
  .site-footer { align-items: flex-start; flex-direction: column; }
  .site-footer .brand { order: -1; }
}

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

[hidden] { display: none !important; }
