:root{
  --bg:#0b0d12;
  --bg2:#07080c;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.08);
  --line:rgba(255,255,255,.10);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.66);
  --muted2:rgba(255,255,255,.52);
  --accent:#ffffff;
  --shadow: 0 22px 60px rgba(0,0,0,.55);
  --radius: 18px;
  --radius2: 24px;
  --max: 1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: radial-gradient(1200px 600px at 15% 10%, #101424 0%, var(--bg) 45%, var(--bg2) 100%);
  color:var(--text);
  overflow-x:hidden;
}

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

.bg{position:fixed; inset:0; z-index:-2}
.grid{
  position:absolute; inset:0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(600px 600px at 15% 10%, black 0%, transparent 70%);
  opacity:.25;
}
.glow{
  position:absolute; width:820px; height:820px; border-radius:999px;
  filter: blur(70px);
  opacity:.18;
  background: conic-gradient(from 140deg, rgba(255,255,255,.95), rgba(255,255,255,.10), rgba(255,255,255,.75));
}
.g1{left:-320px; top:-380px}
.g2{right:-360px; bottom:-420px; opacity:.12}
.noise{
  position:absolute; inset:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  opacity:.06;
  mix-blend-mode: overlay;
}

/* NAV */
.nav{
  position:sticky; top:0;
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 22px;
  max-width: var(--max);
  margin: 0 auto;
  z-index:50;
  backdrop-filter: blur(12px);
  background: linear-gradient(to bottom, rgba(8,10,14,.72), rgba(8,10,14,.35));
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.brand{display:flex; align-items:center; gap:12px}
.brand__logo{
  width:36px; height:36px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  box-shadow: 0 12px 30px rgba(0,0,0,.4);
}
.brand__text{font-weight:700; letter-spacing:.3px}
.brand__text em{
  font-style:normal;
  opacity:.72;
  margin-left:6px;
}

.nav__links{
  display:flex; gap:18px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.nav__links a{
  font-weight:600;
  font-size:14px;
  opacity:.82;
}
.nav__links a:hover{opacity:1}

.nav__cta{display:flex; align-items:center; gap:10px}

.nav__burger{
  display:none;
  width:44px; height:44px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  cursor:pointer;
}
.nav__burger span{
  display:block;
  width:20px;
  height:2px;
  background: rgba(255,255,255,.85);
  margin:5px auto;
  border-radius:2px;
}

/* BUTTONS */
.btn{
  position:relative;
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color:var(--text);
  font-weight:700;
  font-size:14px;
  cursor:pointer;
  user-select:none;
  transition: transform .12s ease, background .18s ease, border-color .18s ease, opacity .18s ease;
}
.btn:hover{transform: translateY(-1px); border-color: rgba(255,255,255,.22)}
.btn:active{transform: translateY(0px) scale(.99)}
.btn--lg{padding:13px 18px; font-size:15px}
.btn--mini{padding:9px 12px; font-size:13px; font-weight:700}

.btn--ghost{
  background: rgba(255,255,255,.03);
}

/* BUY button: super hover */
.btn--buy{
  border-color: rgba(255,255,255,.22);
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.05));
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  overflow:hidden;
}
.btn--buy .btn__shine{
  position:absolute; inset:-2px;
  background: radial-gradient(120px 120px at var(--x, 30%) var(--y, 30%),
    rgba(255,255,255,.55), rgba(255,255,255,0) 55%);
  opacity:0;
  transition: opacity .18s ease;
}
.btn--buy:hover .btn__shine{opacity:1}
.btn--buy::after{
  content:"";
  position:absolute;
  width:180px; height:180px;
  left:var(--rx, 50%); top:var(--ry, 50%);
  transform: translate(-50%,-50%) scale(0);
  border-radius:999px;
  background: rgba(255,255,255,.20);
  opacity:0;
}
.btn--buy.ripple::after{
  animation: ripple .55s ease-out;
}
@keyframes ripple{
  0%{transform: translate(-50%,-50%) scale(.12); opacity:.55}
  100%{transform: translate(-50%,-50%) scale(1.15); opacity:0}
}

/* HERO */
.hero{
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 22px 26px;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items:center;
}

.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}
.pill .dot{
  width:8px; height:8px; border-radius:999px;
  background: rgba(255,255,255,.85);
  box-shadow: 0 0 0 6px rgba(255,255,255,.08);
}

h1{
  margin:16px 0 10px;
  font-size: 52px;
  line-height: 1.03;
  letter-spacing: -1.2px;
}
.accent{
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.55));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lead{
  margin:0 0 20px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  max-width: 58ch;
}
.hero__actions{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:18px}

.infoCard{
  margin-top: 12px;
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  padding: 16px;
}
.infoRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 10px 10px;
  border-radius: 14px;
}
.infoRow + .infoRow{border-top:1px solid rgba(255,255,255,.06)}
.label{color:var(--muted2); font-weight:700; font-size:12px; letter-spacing:.2px}
.value{font-weight:800}
.mono{font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace; font-weight:800}
.infoRow--copy{
  gap:12px;
  align-items:flex-start;
}
.hint{
  margin-top: 10px;
  color: rgba(255,255,255,.55);
  font-size: 12px;
  line-height:1.4;
}

.hero__art{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:16px;
}
.logoRing{
  width: 360px; height: 360px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: radial-gradient(260px 260px at 50% 35%, rgba(255,255,255,.10), rgba(255,255,255,.02) 70%);
  box-shadow: var(--shadow);
  display:flex; align-items:center; justify-content:center;
  position:relative;
  overflow:hidden;
}
.logoRing::before{
  content:"";
  position:absolute; inset:-2px;
  background: conic-gradient(from 0deg, rgba(255,255,255,.18), rgba(255,255,255,0), rgba(255,255,255,.12));
  animation: spin 10s linear infinite;
  opacity:.75;
}
@keyframes spin{to{transform:rotate(360deg)}}
.logoRing img{
  width: 74%;
  border-radius: 26px;
  position:relative;
  z-index:2;
  filter: drop-shadow(0 22px 40px rgba(0,0,0,.55));
}

.stats{
  width:100%;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}
.stat{
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding: 12px 12px;
  text-align:center;
}
.stat__k{color:var(--muted2); font-weight:800; font-size:12px}
.stat__v{font-weight:900; margin-top:4px}

/* STRIP */
.strip{
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 22px 10px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}
.strip__item{
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  padding: 12px 14px;
  display:flex; gap:10px; align-items:center;
  color: var(--muted);
  font-weight:700;
}
.chip{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.85);
}

/* SECTIONS */
.section{
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 22px 0;
}
.section__head h2{
  margin:0 0 10px;
  font-size: 32px;
  letter-spacing: -0.6px;
}
.section__head p{
  margin:0;
  color: var(--muted);
  max-width: 72ch;
  line-height:1.6;
}

.cards{
  margin-top: 20px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.card{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding: 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
}
.card h3{margin:0 0 8px; font-size:16px}
.card p{margin:0; color: var(--muted); line-height:1.55}

/* TOKEN */
.tokenBox{
  margin-top: 20px;
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  padding: 18px;
  box-shadow: var(--shadow);
}
.tokenGrid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
}
.tokenItem{
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  padding: 14px;
}
.tokenItem--wide{grid-column: span 2}
.callout{
  margin-top: 14px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding: 14px;
  color: var(--muted);
  line-height:1.55;
}

/* TIMELINE */
.timeline{
  margin-top: 20px;
  display:grid;
  gap:12px;
}
.step{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding: 16px;
  display:flex;
  gap:14px;
  align-items:flex-start;
}
.step__badge{
  width:36px; height:36px;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  display:flex; align-items:center; justify-content:center;
  font-weight:900;
}
.step h3{margin:0 0 6px; font-size:16px}
.step p{margin:0; color: var(--muted); line-height:1.55}
.step.done{opacity:.8}
.step.active{
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.05);
}

/* COMMUNITY */
.community{
  margin-top: 20px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.community__card{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding: 16px;
  display:flex;
  align-items:center;
  gap:12px;
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
  transition: transform .12s ease, border-color .18s ease, background .18s ease;
}
.community__card:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.05);
}
.community__card--disabled{
  opacity:.55;
  cursor:not-allowed;
}
.community__icon{
  width:44px; height:44px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  display:flex; align-items:center; justify-content:center;
  font-weight:900;
}
.community__title{font-weight:900}
.community__desc{color: var(--muted); font-weight:700; margin-top:2px; font-size:13px}
.community__arrow{margin-left:auto; opacity:.8; font-weight:900}

.disclaimer{
  margin-top: 16px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding: 16px;
}
.disclaimer h3{margin:0 0 8px; font-size:16px}
.disclaimer p{margin:0; color: var(--muted); line-height:1.55}

/* FOOTER */
.footer{
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 22px 56px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.footer__left{display:flex; align-items:center; gap:12px}
.footer__logo{
  width:40px; height:40px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
}
.footer__brand{font-weight:900}
.footer__brand span{opacity:.7; margin-left:6px}
.footer__sub{color: var(--muted); font-weight:700; font-size:13px; margin-top:2px}
.footer__right a{color: var(--muted); font-weight:800}
.footer__right a:hover{color: var(--text)}

/* DRAWER */
.drawer{
  position:fixed; inset:0;
  background: rgba(0,0,0,.55);
  display:none;
  align-items:flex-start;
  justify-content:flex-end;
  z-index:80;
}
.drawer.open{display:flex}
.drawer__panel{
  width:min(380px, 92vw);
  height:100%;
  background: rgba(10,12,18,.92);
  backdrop-filter: blur(14px);
  border-left: 1px solid rgba(255,255,255,.10);
  padding: 16px;
}
.drawer__head{
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom: 10px;
}
.drawer__title{font-weight:900; font-size:16px}
.drawer__link{
  display:block;
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  margin-top: 10px;
  font-weight:800;
}
.drawer__link:hover{border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.05)}
.drawer__cta{margin-top: 16px}
.drawer__note{
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  line-height:1.45;
}

/* RESPONSIVE */
@media (max-width: 980px){
  .hero{grid-template-columns: 1fr; padding-top: 46px}
  .logoRing{width: 320px; height: 320px}
  h1{font-size: 44px}
  .strip{grid-template-columns: 1fr}
  .cards{grid-template-columns: 1fr}
  .tokenGrid{grid-template-columns: 1fr}
  .tokenItem--wide{grid-column: auto}
  .community{grid-template-columns: 1fr}
  .nav__links{display:none}
  .nav__burger{display:block}
}

@media (max-width: 520px){
  h1{font-size: 38px}
  .hero__actions{flex-direction:column; align-items:stretch}
  .btn--lg{width:100%}
}
