@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600;700&family=Inter:wght@400;600;700;800;900&display=swap');

:root{
  --neon:#ccff00;
  --neon-2:#b9ff00;
  --bg:#040504;
  --panel:#070807;
  --white:#f4f4ef;
  --muted:#8b9089;
  --line:rgba(204,255,0,.5);
  --line-soft:rgba(204,255,0,.16);
  --red:#ff2418;
  --black:#000;
  --max:1580px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--white);
  font-family:Inter,Arial,sans-serif;
  min-height:100vh;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
button{font:inherit;color:inherit}
::selection{background:var(--neon);color:#000}

.page-grid{
  position:fixed;inset:0;pointer-events:none;z-index:-1;
  background:
    linear-gradient(rgba(204,255,0,.033) 1px,transparent 1px),
    linear-gradient(90deg,rgba(204,255,0,.033) 1px,transparent 1px);
  background-size:24px 24px;
  mask-image:linear-gradient(to bottom,transparent 0%,#000 10%,#000 85%,transparent 100%);
}

.frame-cut{
  position:relative;
  border:1px solid var(--line);
  clip-path:polygon(12px 0,calc(100% - 12px) 0,100% 12px,100% calc(100% - 12px),calc(100% - 12px) 100%,12px 100%,0 calc(100% - 12px),0 12px);
}

.topbar{
  width:min(calc(100% - 20px),var(--max));
  margin:14px auto 0;
  height:92px;
  display:grid;
  grid-template-columns:300px 1fr 260px;
  align-items:center;
  padding:0 28px;
  background:rgba(3,4,3,.94);
  box-shadow:0 0 0 1px rgba(0,0,0,.8) inset;
}

.brand{display:flex;align-items:center;gap:14px;width:max-content}
.brand-mark{width:58px;height:58px;border-radius:10px;object-fit:contain;display:block;background:transparent}
.brand-copy{
  display:flex;flex-direction:column;line-height:.78;
  font-weight:900;font-size:29px;letter-spacing:-1.4px;
}
.brand-copy b:last-child{color:var(--neon)}

.nav{
  height:100%;display:flex;align-items:center;justify-content:center;gap:26px;
  border-left:1px solid var(--line-soft);
}
.nav a{font-size:15px;font-weight:700;letter-spacing:.04em;transition:.2s}
.nav a:hover{color:var(--neon)}
.nav-dot{color:var(--neon);opacity:.8}

.btn{
  min-height:52px;padding:0 26px;
  display:inline-flex;align-items:center;justify-content:center;gap:12px;
  border-radius:8px;font-weight:800;letter-spacing:.025em;
  border:1px solid var(--neon);cursor:pointer;transition:.2s ease;
}
.btn:hover{transform:translateY(-2px);box-shadow:0 7px 24px rgba(204,255,0,.12)}
.btn-neon{background:var(--neon);color:#050505}
.btn-outline{background:rgba(0,0,0,.55);color:var(--neon)}
.header-buy{justify-self:end;width:220px}
.mini-mark{font-size:19px}

.hero{
  width:min(calc(100% - 20px),var(--max));
  min-height:735px;
  margin:10px auto 0;
  padding:44px 74px 28px;
  display:grid;
  grid-template-columns:.88fr 1.12fr;
  gap:74px;
  background:
    radial-gradient(circle at 30% 40%,rgba(204,255,0,.035),transparent 35%),
    rgba(3,4,3,.84);
  border-top-color:rgba(204,255,0,.18);
}

.eyebrow{
  color:var(--neon);font:600 15px/1 IBM Plex Mono,monospace;
  letter-spacing:.38em;margin-bottom:24px;white-space:nowrap;
}

.wordmark{position:relative;width:min(100%,530px);margin-bottom:35px}
.hood-word,.chain-word{
  font-family:Impact,"Arial Black",Inter,sans-serif;
  font-weight:900;letter-spacing:-.035em;line-height:.82;
}
.hood-word{
  position:relative;font-size:clamp(112px,9.4vw,168px);color:#f3f3ef;
  text-shadow:0 3px 18px rgba(255,255,255,.05);
}
.chain-word{
  font-size:clamp(110px,9.15vw,162px);color:var(--neon);
  margin-top:20px;
  background:linear-gradient(#d3ff0a,#a9ee00);
  -webkit-background-clip:text;background-clip:text;color:transparent;
}

.brush-slash{
  position:absolute;left:-6%;top:49%;width:114%;height:25%;
  background:#020202;
  transform:rotate(-7deg);
  clip-path:polygon(0 35%,3% 15%,12% 25%,20% 6%,30% 26%,42% 8%,53% 22%,66% 2%,79% 23%,91% 10%,100% 32%,99% 63%,90% 80%,79% 67%,68% 93%,56% 71%,45% 91%,34% 70%,23% 94%,11% 75%,2% 93%);
  z-index:2;
}

.prohibited-stamp{
  position:absolute;right:-8%;bottom:0;
  color:var(--red);border:4px solid var(--red);
  box-shadow:0 0 0 2px #090909 inset,0 0 0 6px var(--red) inset;
  background:rgba(6,6,6,.88);
  padding:10px 18px 8px;
  font-family:Impact,"Arial Black",sans-serif;
  font-size:56px;letter-spacing:.015em;line-height:1;
  transform:rotate(-7deg);
  text-shadow:1px 1px 0 #000;
  filter:drop-shadow(0 10px 14px rgba(0,0,0,.6));
}

.hero-copy{
  font:400 18px/1.45 IBM Plex Mono,monospace;color:#e7e7e2;
  letter-spacing:.015em;margin:0 0 22px;
}
.hero-copy span{color:var(--neon)}

.cta-row{display:flex;gap:20px;flex-wrap:wrap;margin-top:22px}
.hero-ca{
  width:min(100%,660px);
  margin-top:18px;
  min-height:62px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:14px;
  border:1px solid var(--line);
  border-radius:8px;
  padding:11px 15px;
  background:rgba(4,5,4,.92);
  color:var(--white);
  cursor:pointer;
  text-align:left;
  transition:.2s ease;
}
.hero-ca:hover{border-color:var(--neon);box-shadow:0 0 24px rgba(204,255,0,.10)}
.hero-ca-label{color:var(--neon);font:800 13px/1 IBM Plex Mono,monospace;letter-spacing:.12em}
.hero-ca code{min-width:0;color:#f3f4ef;font:650 16px/1.3 IBM Plex Mono,monospace;overflow-wrap:anywhere}
.hero-ca-copy{color:var(--neon);font:800 11px/1 IBM Plex Mono,monospace;letter-spacing:.08em}
.disclaimer{
  font:400 13px/1.4 IBM Plex Mono,monospace;color:#91958f;margin:16px 0 0;
}
.disclaimer span{color:var(--neon)}

.hero-right{position:relative;min-width:0}
.source-window{
  position:relative;display:block;border:1px solid var(--neon);
  border-radius:16px;overflow:hidden;background:#fff;
  box-shadow:0 0 35px rgba(204,255,0,.05);
}
.source-window:hover{box-shadow:0 0 40px rgba(204,255,0,.12)}

.docs-ui{
  color:#101210;
  background:#fff;
  text-decoration:none;
  isolation:isolate;
}
.browser-bar{
  height:49px;
  background:linear-gradient(#262826,#1b1d1b);
  display:grid;
  grid-template-columns:86px 1fr 60px;
  align-items:center;
  padding:0 14px;
  color:#d7dad7;
}
.browser-lights{display:flex;gap:9px}
.browser-lights i{width:14px;height:14px;border-radius:50%;display:block}
.browser-lights i:nth-child(1){background:#ff5f57}
.browser-lights i:nth-child(2){background:#febc2e}
.browser-lights i:nth-child(3){background:#28c840}
.browser-address{
  justify-self:center;
  width:min(100%,420px);
  height:30px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#333633;
  color:#90c8ff;
  font:500 13px/1 Inter,Arial,sans-serif;
}
.browser-refresh{justify-self:end;color:#e3e5e3;font-size:18px}

.docs-shell{
  display:grid;
  grid-template-columns:178px 1fr;
  min-height:494px;
  background:#fff;
}
.docs-sidebar{
  background:#090b09;
  color:#929792;
  padding:17px 14px 20px;
  border-right:1px solid #e5e8e5;
}
.docs-brand{
  display:flex;align-items:center;gap:8px;
  color:var(--neon);font-weight:800;font-size:13px;
  margin-bottom:20px;
}
.docs-brand img{
  width:25px;height:25px;border-radius:50%;object-fit:contain;display:block;background:transparent;
}
.docs-search{
  border:1px solid rgba(204,255,0,.23);
  border-radius:16px;
  padding:8px 11px;
  font-size:10px;
  color:#717771;
  margin-bottom:20px;
}
.docs-nav{display:flex;flex-direction:column;gap:9px;font-size:9.5px}
.docs-nav small{color:#a7aaa7;margin-bottom:5px}
.docs-nav span{padding-left:6px}
.docs-nav b{
  color:#111;
  background:var(--neon);
  margin:0 -6px;
  padding:8px 12px;
  border-radius:3px;
  font-weight:700;
}
.docs-group{
  color:var(--neon);
  font-size:9px;
  font-weight:800;
  margin-top:7px;
}

.docs-page{
  padding:42px 44px 32px;
  background:#fff;
  color:#171917;
  font-family:Inter,Arial,sans-serif;
}
.docs-page h3{
  margin:0 0 16px;
  font-size:36px;
  line-height:1.02;
  letter-spacing:-.045em;
  font-weight:850;
}
.docs-intro{
  margin:0 0 29px;
  color:#262926;
  font-size:14px;
  line-height:1.35;
}
.docs-page h4{
  margin:0 0 14px;
  font-size:21px;
  line-height:1;
}
.docs-page > p:not(.docs-intro):not(.docs-last){
  font-size:13px;line-height:1.4;margin:0 0 19px;
}
.docs-rule{
  border:1px solid #a6c900;
  background:#efff9f;
  border-radius:6px;
  padding:14px 17px;
  display:flex;
  align-items:center;
  gap:14px;
  margin:0 0 17px;
  box-shadow:inset 0 0 0 1px rgba(204,255,0,.1);
}
.rule-x{
  flex:0 0 33px;height:33px;border-radius:50%;
  border:2px solid #111;
  display:grid;place-items:center;
  font-size:27px;line-height:1;font-weight:600;
}
.docs-rule strong{
  font-size:15px;
  line-height:1.25;
  letter-spacing:-.01em;
}
.docs-rule em{
  color:#ff2d20;
  font-style:normal;
}
.docs-examples{font-size:12px;color:#242724;margin-bottom:18px}
.docs-examples p{margin:0 0 8px}
.docs-examples ul{margin:0;padding-left:18px}
.docs-examples li{
  margin:7px 0;
  text-decoration:line-through;
  text-decoration-color:#d22118;
  text-decoration-thickness:1.5px;
}
.docs-last{font-size:12px!important;margin:0!important}

.source-window:focus-visible{
  outline:2px solid var(--neon);
  outline-offset:4px;
}
.source-glow{
  position:absolute;inset:auto 12% -3px 25%;height:2px;
  background:var(--neon);box-shadow:0 0 14px var(--neon);
}
.receipt-caption{
  margin:22px 0 0 21%;display:flex;align-items:center;gap:20px;
  color:var(--neon);font:600 17px/1 IBM Plex Mono,monospace;
}
.caption-mark{
  width:50px;height:50px;display:grid;place-items:center;
  border:1px solid var(--neon);border-radius:8px;font-size:24px;
}

.tickerbar{
  width:min(calc(100% - 20px),var(--max));
  min-height:48px;margin:0 auto 0;
  display:grid;grid-template-columns:1.7fr .8fr .65fr .8fr 1fr auto;
  border:1px solid var(--line);border-top:0;
  background:#040504;
  clip-path:polygon(11px 0,calc(100% - 11px) 0,100% 11px,100% calc(100% - 11px),calc(100% - 11px) 100%,11px 100%,0 calc(100% - 11px),0 11px);
}
.ticker-item{
  min-width:0;border-right:1px solid var(--line-soft);
  display:flex;align-items:center;justify-content:center;gap:10px;
  padding:0 14px;background:none;border-top:0;border-bottom:0;border-left:0;
  font:500 12px/1 IBM Plex Mono,monospace;white-space:nowrap;
}
.contract-copy{cursor:pointer}
.label{color:var(--neon);font-weight:700}
.value{color:#9ea39c;overflow:hidden;text-overflow:ellipsis}
.copy-icon,.status-icon{color:var(--neon)}
.socials{display:flex;align-items:center;gap:23px;padding:0 24px;font-size:20px}
.socials a:hover{color:var(--neon)}

.content-section,.buy-section{
  width:min(calc(100% - 40px),1350px);
  margin:110px auto 0;
}
.section-tag{
  color:var(--neon);font:600 14px/1 IBM Plex Mono,monospace;
  letter-spacing:.25em;margin-bottom:28px;
}
.content-grid{
  display:grid;grid-template-columns:.9fr 1.1fr;gap:100px;align-items:start;
  border-top:1px solid var(--line-soft);padding-top:36px;
}
.content-section h2,.buy-section h2{
  margin:0;font-family:Impact,"Arial Black",sans-serif;
  font-size:clamp(54px,6vw,92px);line-height:.93;letter-spacing:.005em;
}
.content-section p{font-size:18px;line-height:1.7;color:#c6c9c3;margin:0 0 20px}
.content-section strong{color:var(--white)}
.neon-line{color:var(--neon)!important;font-family:IBM Plex Mono,monospace}
.meme-lines{display:grid;gap:12px;margin-top:30px}
.meme-lines span{
  border:1px solid var(--line-soft);background:#080a08;
  color:var(--neon);padding:17px 19px;font:600 14px/1.3 IBM Plex Mono,monospace;
}
.rule-section{margin-top:130px}

.buy-section{
  padding:70px 0 100px;display:grid;grid-template-columns:1fr 1fr;gap:70px;
  border-top:1px solid var(--line-soft);
}
.buy-panel{
  align-self:end;border:1px solid var(--line);padding:24px;background:#070807;
}
.buy-contract{display:grid;gap:8px;margin-bottom:22px;font-family:IBM Plex Mono,monospace}
.buy-contract span{color:var(--neon);font-size:12px}
.buy-contract code{font-size:13px;color:#a7aba4;overflow-wrap:anywhere}
.buy-contract button{
  width:max-content;background:transparent;border:0;color:var(--neon);padding:0;cursor:pointer;font-weight:700
}
.btn.big{width:100%;min-height:62px}

footer{
  width:100%;border-top:1px solid var(--line-soft);
  min-height:80px;padding:0 max(20px,calc((100% - 1350px)/2));
  display:flex;align-items:center;justify-content:space-between;gap:20px;
  color:#737873;font:500 11px/1.4 IBM Plex Mono,monospace;
}

.toast{
  position:fixed;left:50%;bottom:28px;transform:translate(-50%,20px);
  background:var(--neon);color:#050505;padding:12px 18px;border-radius:6px;
  font:700 13px/1 IBM Plex Mono,monospace;opacity:0;pointer-events:none;transition:.2s;z-index:20;
}
.toast.show{opacity:1;transform:translate(-50%,0)}


@media (max-width:1280px){
  .docs-shell{grid-template-columns:150px 1fr}
  .docs-page{padding:32px 32px 25px}
  .docs-page h3{font-size:30px}
  .docs-rule strong{font-size:13px}
  .docs-nav{font-size:8.5px}
}

@media (max-width:1100px){
  .topbar{grid-template-columns:1fr auto;height:82px}
  .nav{display:none}
  .hero{grid-template-columns:1fr;padding:42px 45px 35px;gap:58px}
  .hero-left{max-width:720px}
  .hero-right{max-width:850px}
  .tickerbar{grid-template-columns:1fr 1fr 1fr}
  .ticker-item:nth-child(4),.ticker-item:nth-child(5){display:none}
  .socials{justify-content:center}
  .content-grid,.buy-section{grid-template-columns:1fr;gap:42px}
}

@media (max-width:680px){
  .topbar{width:100%;margin:0;border-left:0;border-right:0;padding:0 16px}
  .brand-mark{width:46px;height:46px}
  .brand-copy{font-size:22px}
  .header-buy{width:auto;padding:0 14px;font-size:12px}
  .hero{width:100%;margin:0;border-left:0;border-right:0;padding:34px 18px 28px}
  .eyebrow{font-size:11px;letter-spacing:.2em;white-space:normal}
  .hood-word{font-size:28vw}
  .chain-word{font-size:27vw;margin-top:10px}
  .prohibited-stamp{font-size:9.6vw;right:0;border-width:2px;padding:7px 10px}
  .hero-copy{font-size:14px}
  .hero-copy br{display:none}
  .cta-row{display:grid;grid-template-columns:1fr}
  .btn{width:100%}
  .hero-ca{grid-template-columns:auto 1fr;padding:11px 12px;gap:10px}
  .hero-ca code{font-size:12px}
  .hero-ca-copy{display:none}
  .receipt-caption{margin-left:0}
  .docs-shell{grid-template-columns:112px 1fr;min-height:0}
  .docs-sidebar{padding:12px 8px}
  .docs-brand{font-size:9px}
  .docs-brand img{width:18px;height:18px}
  .docs-search{font-size:7px;padding:6px}
  .docs-nav{font-size:6.5px;gap:6px}
  .docs-group{font-size:6.5px}
  .docs-page{padding:20px 16px}
  .docs-page h3{font-size:21px}
  .docs-intro{font-size:9px;margin-bottom:16px}
  .docs-page h4{font-size:15px}
  .docs-page > p:not(.docs-intro):not(.docs-last){font-size:8.5px;margin-bottom:12px}
  .docs-rule{padding:9px;gap:8px}
  .rule-x{flex-basis:22px;height:22px;font-size:17px}
  .docs-rule strong{font-size:9px}
  .docs-examples,.docs-last{font-size:8px!important}
  .browser-bar{height:38px;grid-template-columns:65px 1fr 40px;padding:0 8px}
  .browser-lights{gap:5px}
  .browser-lights i{width:9px;height:9px}
  .browser-address{height:23px;font-size:8px}
  .tickerbar{width:100%;grid-template-columns:1fr;border-left:0;border-right:0}
  .ticker-item{display:none!important}
  .socials{min-height:50px}
  .content-section,.buy-section{width:calc(100% - 36px);margin-top:80px}
  .content-section h2,.buy-section h2{font-size:52px}
  .content-section p{font-size:16px}
  footer{padding:25px 18px;flex-direction:column;align-items:flex-start}
}