:root {
  --paper: #efe0bf;
  --paper-deep: #d3b985;
  --paper-light: #fff5dc;
  --ink: #171811;
  --ink-soft: #4f4c3d;
  --night: #151711;
  --green: #00bd5d;
  --green-bright: #5cf58c;
  --orange: #e85d32;
  --yellow: #efb322;
  --line: rgba(23, 24, 17, 0.16);
  --heading: "Archivo Black", Impact, sans-serif;
  --body: "Nunito", sans-serif;
  --mono: "DM Mono", monospace;
  --edge: 24px;
  --shadow-hard: 6px 6px 0 var(--ink);
  --z-header: 20;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 13% 19%, rgba(255,255,255,.68) 0 1px, transparent 1.5px) 0 0 / 15px 15px,
    radial-gradient(circle at 81% 72%, rgba(80,54,15,.09) 0 1px, transparent 1.5px) 0 0 / 13px 13px,
    var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
}

body::before {
  position: fixed;
  z-index: 30;
  inset: 0;
  pointer-events: none;
  opacity: .14;
  content: "";
  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='.4'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 50;
  top: -60px;
  left: 20px;
  padding: 12px 16px;
  color: var(--paper-light);
  background: var(--night);
  font-family: var(--mono);
}
.skip-link:focus { top: 20px; }

:focus-visible { outline: 3px solid var(--green); outline-offset: 4px; }

.site-shell { overflow: clip; }

.site-header {
  position: sticky;
  z-index: var(--z-header);
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 78px;
  padding: 11px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(239, 224, 191, .9);
  backdrop-filter: blur(12px);
}

.brand { display: inline-flex; align-items: center; justify-self: start; gap: 10px; min-width: 0; }
.brand-mark { width: 45px; height: 45px; overflow: hidden; border: 2px solid var(--ink); border-radius: 13px; background: var(--night); box-shadow: 2px 2px 0 var(--ink); }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-wordmark { font-family: var(--heading); font-size: 17px; letter-spacing: -1.2px; white-space: nowrap; }

.site-nav { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 3vw, 42px); }
.site-nav a { position: relative; padding: 10px 0; color: var(--ink-soft); font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.site-nav a::after { position: absolute; right: 0; bottom: 5px; left: 0; height: 2px; content: ""; transform: scaleX(0); transform-origin: left; background: var(--green); transition: transform .2s ease-out; }
.site-nav a:hover, .site-nav a.is-current { color: var(--ink); }
.site-nav a:hover::after, .site-nav a.is-current::after { transform: scaleX(1); }

.header-buy {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  min-height: 47px;
  gap: 7px;
  padding: 6px 14px 6px 7px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--green);
  box-shadow: 3px 3px 0 var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  transition: transform .18s ease, box-shadow .18s ease;
}
.header-buy img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; }
.header-buy:hover { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }

.menu-toggle { display: none; }

.section { padding-right: clamp(18px, 5vw, 84px); padding-left: clamp(18px, 5vw, 84px); }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(185px, .55fr) minmax(330px, 1.3fr) minmax(340px, 1fr);
  gap: clamp(26px, 4vw, 68px);
  align-items: center;
  min-height: calc(100svh - 78px);
  padding-top: clamp(55px, 7vh, 100px);
  padding-bottom: 82px;
  isolation: isolate;
}
.hero::before { position: absolute; z-index: -1; top: 8%; right: -12%; width: min(50vw, 760px); aspect-ratio: 1; content: ""; border: 2px solid rgba(23,24,17,.17); border-radius: 48% 52% 51% 49% / 44% 41% 59% 56%; transform: rotate(17deg); }
.hero::after { position: absolute; z-index: -1; bottom: 14%; left: 13%; width: 110px; height: 18px; content: ""; transform: rotate(-6deg); background: var(--orange); }

.hero-actions { align-self: center; }
.rail-label { margin: 0 0 12px 5px; color: var(--ink-soft); font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.hero-actions::before { display: block; width: 55px; height: 5px; margin: 0 0 20px; content: ""; background: var(--ink); }
.action-button { 
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  min-height: 58px;
  gap: 11px;
  margin: 0 0 10px;
  padding: 6px 12px 6px 6px;
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  background: rgba(255, 245, 220, .68);
  box-shadow: 3px 3px 0 rgba(23, 24, 17, .7);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: -.03em;
  transition: color .18s ease, background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.action-button:hover { color: var(--paper-light); background: var(--night); transform: translate(3px, 3px); box-shadow: 0 0 0 rgba(23,24,17,.7); }
.action-button--buy { background: var(--green); }
.action-icon { display: grid; width: 40px; height: 40px; place-items: center; overflow: hidden; border: 1px solid rgba(23,24,17,.4); border-radius: 10px; background: var(--paper-light); }
/* Hides obsolete action arrows that may survive in a cached HTML preview. */
.action-arrow { display: none !important; }
.official-icon { padding: 6px; }
.official-icon img { width: 100%; height: 100%; object-fit: contain; }
.social-icon { padding: 8px; }
.social-icon img { width: 100%; height: 100%; object-fit: contain; }
.social-icon--x { background: #000; }

.eyebrow { display: flex; align-items: center; gap: 8px; margin: 0 0 17px; color: var(--ink-soft); font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 9px; height: 9px; background: var(--green); transform: rotate(45deg); }
h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2, h3 { margin: 0; font-family: var(--heading); font-weight: 400; line-height: .88; }
h1 { max-width: 650px; font-size: clamp(64px, 8.25vw, 142px); letter-spacing: -.09em; }
h1 em, h2 em { position: relative; color: var(--green); font-style: normal; }
.hero-lede { max-width: 390px; margin: 28px 0 23px; color: var(--ink-soft); font-size: clamp(17px, 1.4vw, 21px); font-weight: 700; line-height: 1.35; }
.hero-footnote { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: .12em; }
.pulse-dot { width: 9px; height: 9px; border-radius: 999px; background: var(--green); box-shadow: 0 0 0 0 rgba(0,189,93,.7); animation: pulse 1.8s infinite; }

.character-stage { position: relative; align-self: stretch; min-height: 590px; margin: 0; overflow: hidden; border: 2px solid var(--ink); background: radial-gradient(circle at 49% 37%, #9e7350 0, #2a231e 43%, #090a08 76%); box-shadow: var(--shadow-hard); clip-path: polygon(4% 0, 96% 3%, 100% 95%, 89% 100%, 6% 97%, 0 8%); }
.character-image { width: 100%; height: 100%; object-fit: cover; object-position: center; mix-blend-mode: screen; }
.character-stage::before { position: absolute; z-index: 1; top: 14px; left: 14px; width: 64px; height: 8px; content: ""; transform: rotate(-3deg); background: var(--green); }
.character-stage figcaption { position: absolute; z-index: 2; right: 18px; bottom: 16px; left: 18px; display: flex; justify-content: space-between; color: var(--paper-light); font-family: var(--mono); font-size: 9px; letter-spacing: .13em; }

.hero-ticker { position: absolute; right: 0; bottom: 21px; left: 0; display: flex; gap: 17px; align-items: center; overflow: hidden; color: var(--ink-soft); font-family: var(--mono); font-size: 10px; letter-spacing: .13em; white-space: nowrap; text-transform: uppercase; }

.roadmap { position: relative; padding-top: clamp(90px, 12vw, 170px); padding-bottom: clamp(90px, 12vw, 180px); background: var(--night); color: var(--paper-light); }
.roadmap::before { position: absolute; top: 0; right: 0; left: 0; height: 16px; content: ""; background: repeating-linear-gradient(-45deg, var(--paper) 0 10px, var(--green) 10px 20px, var(--night) 20px 30px); }
.section-heading { display: grid; grid-template-columns: minmax(320px, .85fr) minmax(230px, .4fr); gap: 48px; align-items: end; max-width: 1010px; }
.section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -15px; color: var(--paper-deep); }
h2 { font-size: clamp(52px, 7vw, 116px); letter-spacing: -.085em; }
.section-heading > p:last-child { max-width: 310px; margin: 0 0 7px; color: #dfcfaa; font-size: 18px; font-weight: 700; line-height: 1.38; }
.route-line { position: relative; height: 56px; max-width: 1240px; margin: 70px auto 36px; border-top: 2px dashed rgba(239,224,191,.48); }
.route-line span { position: absolute; top: -8px; left: 0; width: 16px; height: 16px; border: 3px solid var(--night); border-radius: 99px; background: var(--green); box-shadow: 32vw 0 0 var(--green), 64vw 0 0 var(--green), 96vw 0 0 var(--green); }
.roadmap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1240px; margin: 0 auto; }
.roadmap-card { position: relative; min-height: 304px; padding: 25px 23px; overflow: hidden; border: 1px solid rgba(239,224,191,.33); background: rgba(255, 245, 220, .07); transition: transform .22s ease, background .22s ease; }
.roadmap-card:nth-child(even) { transform: translateY(28px); }
.roadmap-card::after { position: absolute; right: -25px; bottom: -31px; width: 110px; height: 110px; content: ""; border: 18px solid var(--card-accent); border-radius: 50%; opacity: .8; }
.roadmap-card:hover { transform: translateY(-8px) rotate(-1deg); background: rgba(255,245,220,.12); }
.roadmap-card:nth-child(even):hover { transform: translateY(17px) rotate(1deg); }
.roadmap-number { display: block; margin-bottom: 34px; color: var(--card-accent); font-family: var(--heading); font-size: 52px; line-height: 1; letter-spacing: -.1em; }
.roadmap-kicker { margin: 0 0 10px; color: var(--paper-deep); font-family: var(--mono); font-size: 10px; letter-spacing: .14em; }
.roadmap-card h3 { max-width: 190px; font-family: var(--body); font-size: 25px; font-weight: 800; line-height: 1.04; letter-spacing: -.05em; }
.roadmap-card > p:not(.roadmap-kicker) { max-width: 250px; margin: 15px 0 0; color: #ddcfb0; font-size: 14px; line-height: 1.45; }
.roadmap-status { position: absolute; z-index: 1; bottom: 24px; left: 23px; padding: 5px 8px; color: var(--night); background: var(--card-accent); font-family: var(--mono); font-size: 9px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }

.chart-section { display: grid; grid-template-columns: minmax(260px, .62fr) minmax(520px, 1.38fr); gap: clamp(40px, 6vw, 100px); align-items: center; min-height: 740px; padding-top: clamp(92px, 12vw, 165px); padding-bottom: clamp(92px, 12vw, 165px); }
.chart-intro .eyebrow { margin-bottom: 20px; }
.chart-intro h2 { margin-bottom: 25px; }
.chart-intro > p { max-width: 370px; margin: 0; color: var(--ink-soft); font-size: 17px; font-weight: 700; line-height: 1.45; }
code { padding: 2px 4px; background: rgba(0,189,93,.15); font-family: var(--mono); font-size: .78em; }
.text-link { display: inline-flex; gap: 9px; margin-top: 27px; padding-bottom: 4px; border-bottom: 2px solid var(--green); font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.chart-shell { overflow: hidden; border: 2px solid var(--ink); background: var(--night); box-shadow: 8px 8px 0 var(--ink); }
.chart-topbar { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 49px; padding: 0 14px; border-bottom: 1px solid rgba(239,224,191,.2); color: var(--paper-deep); font-family: var(--mono); font-size: 10px; letter-spacing: .09em; }
.window-controls { display: flex; gap: 5px; }
.window-controls i { width: 9px; height: 9px; border-radius: 50%; background: var(--orange); }
.window-controls i:nth-child(2) { background: var(--yellow); }.window-controls i:nth-child(3) { background: var(--green); }
.chart-live { justify-self: end; color: var(--green-bright); }.chart-live b { display: inline-block; width: 7px; height: 7px; margin-right: 5px; border-radius: 50%; background: currentColor; }
.chart-frame-wrap { position: relative; min-height: 520px; background: #111; }
.chart-frame-wrap iframe { position: relative; z-index: 1; width: 100%; height: 520px; border: 0; background: #111; }
.chart-loading { position: absolute; top: 50%; left: 50%; display: flex; align-items: center; gap: 9px; color: var(--paper-deep); font-family: var(--mono); font-size: 10px; letter-spacing: .1em; transform: translate(-50%, -50%); }
.chart-loading span { width: 11px; height: 11px; border-radius: 50%; background: var(--green); animation: pulse 1.3s infinite; }
.chart-shell.is-loaded .chart-loading { display: none; }
.chart-loading-text { font-weight: inherit; }
/* No live pair yet: hide the empty frame so the placeholder shows through. */
.chart-shell.is-empty .chart-frame-wrap iframe { visibility: hidden; }
.chart-shell.is-empty .chart-loading span { animation: none; background: var(--orange); }
/* Links not set yet from the bot (/x /tg /dex /ca): keep the layout, make them inert. */
.action-button.is-disabled,
.header-buy.is-disabled,
.text-link.is-disabled { opacity: .45; filter: grayscale(1); pointer-events: none; cursor: default; }

.site-footer { display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: center; padding: 34px clamp(18px, 5vw, 84px); border-top: 1px solid var(--line); }
.site-footer p { margin: 0; color: var(--ink-soft); font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-align: center; }
.site-footer > a:last-child { justify-self: end; padding-bottom: 4px; border-bottom: 2px solid var(--green); font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: .08em; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease-out, transform .55s ease-out; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.roadmap-card.reveal.is-visible:nth-child(even) { transform: translateY(28px); }

@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(0,189,93,0); } 100% { box-shadow: 0 0 0 0 rgba(0,189,93,0); } }

@media (max-width: 1050px) {
  .hero { grid-template-columns: minmax(155px, .45fr) minmax(300px, 1.1fr) minmax(300px, .9fr); gap: 28px; }
  .character-stage { min-height: 540px; }
  .roadmap-grid { grid-template-columns: repeat(2, 1fr); max-width: 680px; }
  .route-line { display: none; }
  .roadmap-grid { gap: 18px; margin-top: 55px; }
  .roadmap-card:nth-child(even) { transform: translateY(0); }
  .roadmap-card:nth-child(even):hover { transform: translateY(-8px) rotate(1deg); }
  .roadmap-card.reveal.is-visible:nth-child(even) { transform: translateY(0); }
  .chart-section { grid-template-columns: 1fr; min-height: auto; }
  .chart-intro { max-width: 570px; }
}

@media (max-width: 780px) {
  .site-header { grid-template-columns: 1fr auto; min-height: 70px; }
  .site-nav { position: absolute; top: 69px; right: 0; left: 0; display: grid; gap: 0; max-height: 0; padding: 0 18px; overflow: hidden; border-bottom: 0 solid var(--line); background: var(--paper); transition: max-height .25s ease, padding .25s ease, border .25s ease; }
  .site-header.menu-open .site-nav { max-height: 220px; padding: 9px 18px 17px; border-bottom-width: 1px; }
  .site-nav a { padding: 14px 2px; }
  .header-buy { margin-right: 58px; }
  .menu-toggle { position: absolute; right: 18px; display: grid; width: 44px; height: 44px; padding: 0; place-content: center; gap: 6px; border: 2px solid var(--ink); border-radius: 50%; color: var(--ink); background: transparent; cursor: pointer; }
  .menu-toggle span:not(.sr-only) { display: block; width: 17px; height: 2px; background: currentColor; transition: transform .2s ease; }
  .site-header.menu-open .menu-toggle span:nth-child(2) { transform: translateY(4px) rotate(45deg); }
  .site-header.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }
  .hero { grid-template-columns: 1fr 1fr; grid-template-areas: "copy figure" "actions figure"; gap: 30px; min-height: auto; padding-top: 64px; }
  .hero-copy { grid-area: copy; }.hero-actions { grid-area: actions; align-self: start; }.character-stage { grid-area: figure; min-height: 560px; }
  .hero-ticker { display: none; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }.section-heading .eyebrow { margin-bottom: 0; }
  .site-footer { grid-template-columns: 1fr auto; }.site-footer p { display: none; }
}

@media (max-width: 590px) {
  :root { --edge: 18px; }
  .brand-mark { width: 40px; height: 40px; }.brand-wordmark { font-size: 15px; }
  .header-buy { min-height: 42px; padding: 5px 11px 5px 5px; font-size: 10px; }.header-buy img { width: 28px; height: 28px; }
  .hero { grid-template-columns: 1fr; grid-template-areas: "copy" "figure" "actions"; padding-top: 46px; padding-bottom: 66px; }
  h1 { font-size: clamp(61px, 19vw, 92px); }.hero-lede { margin-top: 24px; }
  .character-stage { min-height: min(135vw, 600px); }.hero-actions { width: 100%; max-width: 410px; }
  .action-button { grid-template-columns: 45px 1fr; min-height: 62px; font-size: 12px; }
  .action-icon { width: 44px; height: 44px; }.roadmap { padding-top: 83px; }
  .roadmap-grid { grid-template-columns: 1fr; margin-top: 38px; }.roadmap-card { min-height: 270px; }.roadmap-number { margin-bottom: 22px; }
  .chart-section { gap: 44px; }.chart-frame-wrap, .chart-frame-wrap iframe { min-height: 430px; height: 430px; }.chart-topbar { grid-template-columns: auto 1fr auto; gap: 9px; font-size: 8px; }.chart-live { white-space: nowrap; }
  .site-footer { gap: 15px; padding-top: 24px; padding-bottom: 24px; }.site-footer > a:last-child { font-size: 9px; }
}

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