:root{
  --gold:#ffcc00;
  --red:#e21b2d;
  --dark:#050505;
  --panel:#121212;
  --soft:#222;
  --text:#ffffff;
  --muted:#b8b8b8;
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;

  background:
    radial-gradient(circle at top, rgba(226,27,45,0.22), transparent 35%),
    linear-gradient(180deg,#080808,#000);

  color:var(--text);
}

.wrap{
  max-width:1400px;
  margin:auto;
  padding:32px 18px 60px;
}

.hero{
  text-align:center;
  padding:70px 18px 40px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.badge{
  display:inline-block;
  padding:7px 14px;
  border:1px solid var(--gold);
  color:var(--gold);
  border-radius:999px;
  font-size:12px;
  font-weight:bold;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:18px;
  background:rgba(0,0,0,.45);
}

.token-logo{
  width:120px;
  height:120px;
  object-fit:contain;
  margin:0 auto 18px;
  border-radius:50%;
  box-shadow:
    0 0 35px rgba(255,204,0,.22),
    0 0 80px rgba(226,27,45,.15);
}

h1{
  font-size:clamp(42px,7vw,82px);
  line-height:.95;
  margin:0;
  text-transform:uppercase;
  letter-spacing:-2px;
}

h1 span{
  color:var(--gold);
}

.tagline{
  max-width:820px;
  margin:22px auto 10px;
  font-size:28px;
  line-height:1.25;
  font-weight:300;
  color:#f2f2f2;
}

.actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  justify-content:center;
  margin-top:26px;
}

.btn{
  display:inline-block;
  min-width:240px;
  padding:16px 22px;
  border-radius:10px;
  text-decoration:none;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.04em;
  background:var(--gold);
  color:#000;
  box-shadow:0 0 30px rgba(255,204,0,.22);
  transition:.25s ease;
}

.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 0 40px rgba(255,204,0,.35);
}

.btn.dark{
  background:#1d1d1d;
  color:#fff;
  border:1px solid #333;
  box-shadow:none;
}

.btn.dark:hover{
  border-color:#666;
  background:#252525;
}

.btn.red{
  background:var(--red);
  color:#fff;
}

.btn.red:hover{
  background:#ff2a3d;
}

.stats-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:38px;
  width:100%;
}

.stat{
  background:linear-gradient(180deg,#121212,#090909);
  border:1px solid #2a2a2a;
  border-radius:14px;
  padding:22px 14px;
  text-align:center;
  min-height:105px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  transition:.25s ease;
}

.stat:hover{
  border-color:#444;
  transform:translateY(-2px);
}

.stat strong{
  display:block;
  color:var(--gold);
  font-size:30px;
  margin-bottom:8px;
}

.stat span{
  color:#999;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.06em;
}

.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:48px;
}

.card{
  background:linear-gradient(180deg,#171717,#0c0c0c);
  border:1px solid #2a2a2a;
  border-radius:16px;
  padding:28px;
  box-shadow:0 10px 40px rgba(0,0,0,.35);
  transition:.25s ease;
}

.card:hover{
  border-color:#3b3b3b;
  transform:translateY(-2px);
}

.card h2,
.card h3{
  margin-top:0;
}

.card h2{
  font-size:34px;
}

.card h3{
  font-size:24px;
}

.card p,
.card li{
  color:var(--muted);
  line-height:1.6;
  font-size:16px;
}

.full{
  grid-column:1 / -1;
}

.contract{
  word-break:break-all;
  background:#050505;
  border:1px dashed #555;
  padding:18px;
  border-radius:10px;
  color:var(--gold);
  font-family:monospace;
  font-size:14px;
  margin-top:18px;
}

.copy{
  margin-top:14px;
  border:0;
  border-radius:8px;
  padding:12px 16px;
  font-weight:bold;
  cursor:pointer;
  background:#fff;
  color:#000;
  transition:.25s ease;
}

.copy:hover{
  background:var(--gold);
}

.roadmap{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.step{
  background:#080808;
  border:1px solid #2a2a2a;
  border-radius:12px;
  padding:18px;
  transition:.25s ease;
}

.step:hover{
  border-color:#444;
}

.step strong{
  color:var(--gold);
  display:block;
  margin-bottom:10px;
  font-size:18px;
}

.footer{
  text-align:center;
  margin-top:48px;
  color:#777;
  font-size:13px;
  padding-bottom:30px;
}

#copyStatus{
  color:var(--gold);
  font-size:13px;
  margin-top:10px;
}

@media(max-width:1100px){

  .grid{
    grid-template-columns:1fr 1fr;
  }

  .roadmap{
    grid-template-columns:1fr 1fr;
  }

}

@media(max-width:850px){

  .grid,
  .roadmap,
  .stats-strip{
    grid-template-columns:1fr;
  }

  .btn{
    width:100%;
  }

  h1{
    font-size:56px;
  }

  .tagline{
    font-size:22px;
  }

  .card h2{
    font-size:28px;
  }

}

.chart-wrap{
  width:100%;
  margin-top:24px;
}

.chart-frame{
  width:100%;
  height:720px;
  border:1px solid #2c2c2c;
  border-radius:18px;
  background:#000;
}

.market-frame{
  width:100%;
  margin-top:24px;
}

.jupiter-frame{
  width:100%;
  height:760px;
  border:1px solid #2c2c2c;
  border-radius:18px;
  background:#000;
}

.ecosystem-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:26px;
}

.eco-box{
  display:block;
  text-decoration:none;
  background:linear-gradient(180deg,#141414,#090909);
  border:1px solid #2a2a2a;
  border-radius:16px;
  padding:26px;
  transition:.25s ease;
}

.eco-box:hover{
  transform:translateY(-3px);
  border-color:#666;
  box-shadow:0 0 30px rgba(255,204,0,.12);
}

.eco-box h3{
  color:var(--gold);
  margin-top:0;
  margin-bottom:14px;
  font-size:24px;
}

.eco-box p{
  color:#d0d0d0;
  line-height:1.6;
}

@media(max-width:1000px){

  .ecosystem-grid{
    grid-template-columns:1fr;
  }

}

.market-action-panel{
  margin-top:24px;
  background:linear-gradient(180deg,#090909,#030303);
  border:1px solid #2a2a2a;
  border-radius:18px;
  padding:28px;
}

.quote-box{
  font-size:26px;
  font-weight:900;
  color:var(--gold);
  text-align:center;
  padding:28px;
  border:1px dashed #555;
  border-radius:14px;
  background:#050505;
  margin-bottom:24px;
}