:root {
  --ink: #131817;
  --paper: #fff9e9;
  --lime: #caff19;
  --acid: #a6ed22;
  --mint: #4af3ab;
  --orange: #ffac4a;
  --red: #ff675d;
  --line: 3px solid var(--ink);
  --mono: "DM Mono", monospace;
  --display: "Londrina Solid", cursive;
  --body: "Fredoka", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 100% 8%, rgba(202, 255, 25, .52), transparent 26rem),
    radial-gradient(circle at 1% 92%, rgba(74, 243, 171, .28), transparent 26rem),
    var(--paper);
}
.noise {
  pointer-events: none;
  position: fixed;
  z-index: 20;
  inset: 0;
  opacity: .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='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}
.cursor-glow { position: fixed; width: 22rem; height: 22rem; border-radius: 50%; background: rgba(202, 255, 25, .12); filter: blur(12px); pointer-events: none; z-index: -1; transform: translate(-50%, -50%); transition: left .08s linear, top .08s linear; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.is-disabled { cursor: not-allowed; opacity: .55; filter: grayscale(.2); }
.is-disabled:hover { transform: none !important; }
.section { width: min(1200px, calc(100% - 64px)); margin: 0 auto; }

.site-header {
  width: min(1200px, calc(100% - 64px));
  height: 88px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: relative;
  z-index: 10;
}
.brand { display: inline-flex; align-items: center; gap: 10px; width: fit-content; }
.brand img { width: 52px; height: 52px; object-fit: contain; filter: drop-shadow(2px 3px 0 rgba(19, 24, 23, .16)); }
.brand-name { font: 900 22px/.78 var(--display); letter-spacing: .5px; }
.brand-name i { color: #64ae04; font-style: normal; }
.main-nav { display: flex; gap: 6px; padding: 5px; background: rgba(255, 249, 233, .68); border: 2px solid rgba(19, 24, 23, .13); border-radius: 999px; backdrop-filter: blur(9px); }
.nav-link { font: 500 10px/1 var(--mono); letter-spacing: .04em; padding: 10px 13px; border-radius: 999px; transition: color .2s, background .2s, transform .2s; }
.nav-link:hover, .nav-link.active { background: var(--ink); color: var(--paper); transform: translateY(-1px); }
.header-buy { justify-self: end; }
.cta-buy {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--ink);
  font: 700 12px/1 var(--mono);
  letter-spacing: .01em;
  border: var(--line);
  border-radius: 7px;
  background: var(--lime);
  box-shadow: 4px 4px 0 var(--ink);
  padding: 0 15px;
  transition: transform .18s, box-shadow .18s, background .18s;
}
.cta-buy:hover { transform: translate(3px, 3px); box-shadow: 1px 1px 0 var(--ink); background: var(--mint); }
.cta-buy img { width: 27px; height: 27px; object-fit: contain; }
.menu-toggle { display: none; }

.hero { min-height: calc(100svh - 88px); padding: 60px 0 66px; display: grid; grid-template-columns: .94fr 1.06fr; align-items: center; position: relative; }
.hero-copy { position: relative; z-index: 2; padding: 28px 0 44px; }
.eyebrow { margin: 0 0 13px; display: flex; align-items: center; gap: 8px; font: 500 11px/1 var(--mono); letter-spacing: .08em; }
.signal-dot { width: 8px; height: 8px; background: var(--mint); border: 2px solid var(--ink); border-radius: 50%; box-shadow: 0 0 0 3px rgba(74, 243, 171, .25); animation: pulse 1.7s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 7px rgba(74, 243, 171, 0); } }
h1, h2, h3, p { margin-top: 0; }
h1 { font: 900 clamp(60px, 8.6vw, 124px)/.75 var(--display); letter-spacing: -.025em; margin: 0; text-wrap: balance; }
h1 em, h2 i { color: #65ad06; font-style: normal; text-shadow: 2px 2px 0 var(--ink); }
.hero-description { max-width: 425px; font-size: 17px; line-height: 1.4; margin: 25px 0 32px; }
.action-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; max-width: 465px; }
.action-card {
  appearance: none;
  cursor: pointer;
  width: 100%;
  min-height: 78px;
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr) 15px;
  gap: 8px;
  align-items: center;
  padding: 10px 11px;
  text-align: left;
  color: var(--ink);
  border: var(--line);
  border-radius: 9px;
  background: rgba(255, 253, 244, .84);
  box-shadow: 4px 4px 0 rgba(19, 24, 23, .96);
  transition: transform .18s, box-shadow .18s, background .18s;
}
.action-card:hover { transform: translate(3px, 3px) rotate(-1deg); box-shadow: 1px 1px 0 var(--ink); background: white; }
.action-buy { background: var(--lime); }
.action-contract { background: #fff0d8; }
.action-icon { width: 45px; height: 45px; display: grid; place-items: center; overflow: hidden; border: 2px solid var(--ink); border-radius: 7px; background: var(--paper); }
.action-icon img { width: 100%; height: 100%; object-fit: contain; transform: scale(1.1); }
.social-icon { background: var(--ink); }
.social-icon svg { width: 20px; fill: var(--paper); }
.action-card b { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font: 700 11px/1.1 var(--mono); letter-spacing: -.04em; }
.action-card small { display: block; margin-top: 7px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font: 500 8px/1 var(--mono); opacity: .68; }
.action-arrow { font: 900 19px/1 var(--display); }

.hero-visual { height: min(700px, 65vw); min-height: 490px; position: relative; display: grid; place-items: center; isolation: isolate; }
.hero-visual::before { content: ""; position: absolute; z-index: -3; width: min(520px, 90%); aspect-ratio: 1; border: var(--line); border-radius: 48% 52% 46% 54% / 55% 42% 58% 45%; background: var(--lime); transform: rotate(11deg); box-shadow: 11px 12px 0 var(--ink); }
.hero-visual::after { content: ""; position: absolute; z-index: -2; width: min(610px, 100%); aspect-ratio: 1; background: radial-gradient(var(--ink) 1.2px, transparent 1.2px); background-size: 15px 15px; opacity: .2; border-radius: 50%; }
.hero-shiba { position: relative; z-index: 2; width: min(520px, 98%); height: auto; filter: drop-shadow(15px 18px 0 rgba(19, 24, 23, .19)); animation: float 4s ease-in-out infinite; }
@keyframes float { 50% { transform: translateY(-12px) rotate(1deg); } }
.mascot-platform { position: absolute; z-index: 1; bottom: 6%; width: min(405px, 75%); height: 52px; border: var(--line); border-radius: 50%; background: var(--mint); transform: rotate(-3deg); box-shadow: 7px 8px 0 var(--ink); }
.orbit { position: absolute; z-index: 0; border: 2px dashed var(--ink); border-radius: 50%; opacity: .7; }
.orbit-one { width: 80%; height: 56%; transform: rotate(-20deg); animation: spin 18s linear infinite; }
.orbit-two { width: 65%; height: 88%; transform: rotate(48deg); animation: spin 15s linear infinite reverse; }
@keyframes spin { to { rotate: 360deg; } }
.scribble { position: absolute; z-index: 4; font: 900 40px/1 var(--display); }
.scribble-top { top: 6%; left: 13%; color: var(--orange); transform: rotate(-18deg); }
.scribble-right { bottom: 19%; right: 4%; color: var(--ink); font-size: 28px; transform: rotate(-18deg); }
.roadmap { padding: 92px 0 142px; border-top: var(--line); }
.roadmap-heading { display: grid; grid-template-columns: 1fr 290px; gap: 50px; align-items: end; margin: 0 0 56px; }
h2 { margin: 0; font: 900 clamp(52px, 7.4vw, 104px)/.75 var(--display); letter-spacing: -.02em; }
.roadmap-heading > p { font-size: 16px; line-height: 1.45; margin: 0 0 5px; }
.roadmap-track { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; position: relative; }
.roadmap-card { min-height: 340px; border: var(--line); border-radius: 12px; padding: 22px 22px 21px; position: relative; overflow: hidden; box-shadow: 6px 7px 0 var(--ink); display: flex; flex-direction: column; transition: transform .23s; }
.roadmap-card:hover { transform: translateY(-7px) rotate(-1deg); }
.card-foundation { background: var(--orange); }.card-community { background: var(--mint); }.card-utility { background: var(--lime); }
.card-index { margin-bottom: auto; width: 39px; height: 39px; display: grid; place-items: center; border: 2px solid var(--ink); border-radius: 50%; background: var(--paper); font: 500 11px/1 var(--mono); }
.card-status { font: 500 9px/1 var(--mono); letter-spacing: .08em; margin: 31px 0 9px; }
.roadmap-card h3 { font: 900 42px/.8 var(--display); margin: 0 0 15px; letter-spacing: -.02em; }
.roadmap-card > p:last-of-type { max-width: 250px; margin: 0; font-size: 14px; line-height: 1.32; }
.roadmap-doodle { position: absolute; right: 16px; bottom: -11px; color: rgba(255,255,255,.6); font: 900 78px/1 var(--display); transform: rotate(-13deg); }
.card-utility .roadmap-doodle { color: rgba(19,24,23,.15); }

.chart { padding: 92px 0 135px; border-top: var(--line); }
.chart-heading { margin: 0 0 47px; display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; }
.text-link { flex: 0 0 auto; border-bottom: 2px solid var(--ink); padding-bottom: 6px; font: 700 11px/1 var(--mono); transition: color .2s; }
.text-link span { color: #65ad06; font-size: 17px; }.text-link:hover { color: #65ad06; }
.terminal-window { border: var(--line); border-radius: 11px; overflow: hidden; background: var(--ink); box-shadow: 8px 8px 0 var(--ink); }
.terminal-bar { height: 48px; color: var(--paper); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 16px; border-bottom: 2px solid rgba(255,255,255,.35); }
.window-controls { display: flex; gap: 6px; }.window-controls span { width: 10px; height: 10px; border-radius: 50%; background: var(--red); }.window-controls span:nth-child(2){ background: var(--orange); }.window-controls span:nth-child(3){ background: var(--mint); }
.terminal-title { display: flex; align-items: center; gap: 8px; font: 500 10px/1 var(--mono); letter-spacing: .07em; }.terminal-pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 8px var(--lime); }
.chart-frame-wrap { min-height: 570px; position: relative; background: #0e1211; }
.chart-frame-wrap iframe { width: 100%; min-height: 570px; display: block; border: 0; }
.chart-fallback { position: absolute; inset: 0; display: grid; align-content: center; justify-items: center; text-align: center; gap: 14px; padding: 30px; color: var(--paper); background: #101715; }.chart-fallback img { width: 100px; height: 100px; object-fit: contain; }.chart-fallback strong { font: 900 34px/1 var(--display); }.chart-fallback p { max-width: 390px; margin: 0; font: 400 12px/1.55 var(--mono); }.chart-fallback code { color: var(--lime); font: inherit; }
.chart-fallback .cta-buy { margin-top: 6px; }

.site-footer { min-height: 130px; padding: 25px max(32px, calc((100vw - 1200px) / 2)); display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: var(--line); background: var(--lime); }.footer-brand img { width: 57px; height: 57px; }.site-footer p { margin: 0; font: 500 9px/1.4 var(--mono); text-align: center; }.footer-x { width: 42px; height: 42px; display: grid; place-items: center; border: 2px solid var(--ink); border-radius: 50%; background: var(--paper); transition: transform .2s; }.footer-x:hover { transform: rotate(12deg) scale(1.06); }.footer-x svg { width: 17px; fill: var(--ink); }
.toast { position: fixed; z-index: 30; right: 22px; bottom: 22px; translate: 0 100px; opacity: 0; border: var(--line); border-radius: 7px; background: var(--mint); box-shadow: 4px 4px 0 var(--ink); padding: 14px 17px; font: 700 11px/1 var(--mono); transition: opacity .25s, translate .25s; }.toast.show { opacity: 1; translate: 0 0; }

@media (max-width: 820px) {
  .section, .site-header { width: min(100% - 36px, 590px); }
  .site-header { height: 75px; grid-template-columns: 1fr auto; }.brand img { width: 45px; height: 45px; }.main-nav { display: none; position: absolute; top: 66px; right: 0; flex-direction: column; padding: 7px; border-radius: 8px; box-shadow: 4px 4px 0 var(--ink); }.main-nav.open { display: flex; }.nav-link { border-radius: 4px; }.header-buy { display: none; }.menu-toggle { width: 45px; height: 41px; display: grid; place-content: center; gap: 6px; border: var(--line); border-radius: 6px; background: var(--lime); box-shadow: 3px 3px 0 var(--ink); }.menu-toggle span { width: 19px; height: 3px; background: var(--ink); }.hero { min-height: auto; padding: 55px 0 78px; display: flex; flex-direction: column; }.hero-copy { width: 100%; padding: 0; }.hero-description { max-width: 395px; font-size: 16px; }.hero-visual { width: min(100%, 550px); height: 480px; min-height: 0; margin-top: 18px; }.hero-shiba { width: 450px; max-width: 95%; }.roadmap { padding: 74px 0 95px; }.roadmap-heading { grid-template-columns: 1fr; gap: 20px; margin: 0 0 39px; }.roadmap-heading > p { max-width: 385px; }.roadmap-track { grid-template-columns: 1fr; gap: 16px; }.roadmap-card { min-height: 260px; }.card-status { margin-top: 22px; }.chart { padding: 74px 0 85px; }.chart-heading { margin: 0 0 35px; display: block; }.text-link { display: inline-block; margin-top: 22px; }.chart-frame-wrap, .chart-frame-wrap iframe { min-height: 465px; }.site-footer { padding: 21px 18px; }.footer-brand .brand-name { display: none; }.site-footer p { font-size: 8px; }.cursor-glow { display: none; }
}
@media (max-width: 460px) {
  .section, .site-header { width: calc(100% - 28px); } .brand-name { font-size: 19px; } h1 { font-size: clamp(57px, 18vw, 78px); } h2 { font-size: clamp(47px, 15vw, 67px); }.action-grid { grid-template-columns: 1fr; }.hero-visual { height: 408px; }.hero-visual::before { width: 88%; }.terminal-bar { padding: 0 10px; }.terminal-title { font-size: 8px; }.chart-frame-wrap, .chart-frame-wrap iframe { min-height: 405px; }.site-footer { min-height: 92px; }.footer-x { width: 37px; height: 37px; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; } }
