:root{
  --bg:#0d1117;
  --bg2:#121826;
  --card:#f3e6c8;
  --card2:#ead9b3;
  --text:#1f1b16;
  --muted:#5f5548;
  --accent:#7c3aed;
  --accent2:#16a34a;
  --line:rgba(31,27,22,.14);
  --radius:24px;
  --container:1180px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:"Courier New", Courier, monospace;
  background:
    radial-gradient(circle at top, rgba(124,58,237,.18) 0%, transparent 35%),
    radial-gradient(circle at bottom right, rgba(22,163,74,.10) 0%, transparent 30%),
    linear-gradient(180deg, #0b0f17 0%, #0d1117 100%);
  color:#f3f4f6;
  line-height:1.6;
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  max-width:100%;
  display:block;
}

.mono{
  font-family:"Courier New", Courier, monospace;
  letter-spacing:.02em;
}

.container{
  width:min(100% - 32px, var(--container));
  margin-inline:auto;
}

.header{
  position:sticky;
  top:0;
  z-index:1000;
  backdrop-filter:blur(16px);
  background:rgba(13,17,23,.72);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.header__inner{
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  letter-spacing:.02em;
}

.logo__icon{
  color:#22c55e;
}

.logo__text{
  color:#f8fafc;
}

.nav{
  display:flex;
  gap:20px;
  color:#cbd5e1;
  font-size:14px;
  flex-wrap:wrap;
  justify-content:center;
}

.nav a:hover{
  color:#ffffff;
}

.hero{
  padding:88px 0 48px;
}

.hero__inner{
  display:grid;
  grid-template-columns:1.35fr .85fr;
  gap:32px;
  align-items:center;
}

.badge{
  display:inline-flex;
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  color:#e2e8f0;
  background:rgba(255,255,255,.04);
  font-size:13px;
  margin-bottom:18px;
}

h1{
  font-size:clamp(38px, 6vw, 64px);
  line-height:1.02;
  margin:0 0 18px;
  letter-spacing:-.04em;
  color:#ffffff;
}

h2{
  font-size:clamp(26px, 3vw, 38px);
  line-height:1.1;
  margin:0;
  letter-spacing:-.03em;
  color:#ffffff;
}

h3{
  margin:0 0 8px;
  font-size:20px;
  line-height:1.2;
  color:#ffffff;
}

.hero__text{
  max-width:60ch;
  color:#cbd5e1;
  font-size:17px;
  margin:0 0 26px;
}

.hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:22px;
}

.hero__meta{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
}

.meta-card{
  padding:16px;
  border-radius:18px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
}

.meta-card__label{
  display:block;
  color:#94a3b8;
  font-size:12px;
  margin-bottom:6px;
}

.meta-card__value{
  display:block;
  color:#ffffff;
  font-weight:700;
  font-size:14px;
  word-break:break-word;
}

.token-card{
  background:linear-gradient(180deg, #f5e9ce 0%, #ecd9b0 100%);
  color:var(--text);
  border:1px solid rgba(80,60,30,.18);
  border-radius:28px;
  padding:32px;
  box-shadow:0 18px 50px rgba(0,0,0,.28);
  transform:rotate(-1deg);
}

.token-card__icon{
  width:72px;
  height:72px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  background:rgba(255,255,255,.45);
  border:1px solid rgba(80,60,30,.15);
  margin-bottom:18px;
  font-size:28px;
}

.token-card__name{
  font-size:24px;
  font-weight:700;
  margin-bottom:4px;
}

.token-card__ticker{
  font-size:16px;
  color:var(--muted);
  margin-bottom:18px;
}

.token-card__line{
  height:1px;
  background:rgba(80,60,30,.16);
  margin:18px 0;
}

.token-card__small{
  color:var(--muted);
  font-size:14px;
}

.trust{
  padding:0 0 32px;
}

.trust__inner{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.trust-item{
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  color:#cbd5e1;
  font-size:13px;
}

.section{
  padding:32px 0;
}

.section--small{
  padding:20px 0 32px;
}

.section__head{
  margin-bottom:18px;
}

.section__eyebrow{
  margin:0 0 8px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:12px;
  color:#94a3b8;
}

.card{
  background:linear-gradient(180deg, var(--card) 0%, var(--card2) 100%);
  color:var(--text);
  border:1px solid rgba(80,60,30,.16);
  border-radius:var(--radius);
  padding:24px;
  box-shadow:0 10px 30px rgba(0,0,0,.16);
}

.card p,
.card li,
.card summary{
  color:var(--text);
}

.card p{
  margin-top:0;
}

.card p:last-child{
  margin-bottom:0;
}

.grid{
  display:grid;
  gap:16px;
}

.grid--2{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}

.grid--3{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}

.grid--4{
  grid-template-columns:repeat(4, minmax(0, 1fr));
}

.feature h3,
.step h3,
.roadmap h3,
.link-card h3{
  color:var(--text);
}

.feature p,
.step p,
.roadmap p,
.link-card p{
  color:var(--muted);
}

.step__num{
  display:inline-flex;
  width:32px;
  height:32px;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:rgba(124,58,237,.12);
  color:#5b21b6;
  font-weight:700;
  margin-bottom:12px;
}

.roadmap__phase{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(22,163,74,.10);
  color:#166534;
  font-size:12px;
  margin-bottom:12px;
  font-weight:700;
}

.list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:14px;
}

.list li{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding-bottom:12px;
  border-bottom:1px dashed rgba(80,60,30,.18);
}

.list li span{
  color:var(--muted);
}

.list li strong{
  color:var(--text);
}

.link-card{
  display:block;
  transition:transform .2s ease, box-shadow .2s ease;
}

.link-card:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 34px rgba(0,0,0,.18);
}

.faq{
  display:grid;
  gap:12px;
}

details.card{
  padding:0;
  overflow:hidden;
}

summary{
  list-style:none;
  cursor:pointer;
  padding:20px 24px;
  font-weight:700;
}

summary::-webkit-details-marker{
  display:none;
}

details.card p{
  padding:0 24px 20px;
  margin:0;
  color:var(--muted);
}

.socials{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.disclaimer h3{
  color:var(--text);
}

.disclaimer p{
  color:var(--muted);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 20px;
  border-radius:14px;
  background:linear-gradient(135deg, var(--accent) 0%, #5b21b6 100%);
  color:white;
  font-weight:700;
  border:1px solid rgba(255,255,255,.08);
  transition:transform .2s ease, opacity .2s ease;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn--small{
  padding:11px 16px;
  font-size:14px;
}

.btn--ghost{
  background:transparent;
  border:1px solid rgba(255,255,255,.14);
  color:#ffffff;
}

.btn--ghost:hover{
  background:rgba(255,255,255,.05);
}

.footer{
  padding:24px 0 40px;
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:12px;
}

.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  color:#94a3b8;
  font-size:14px;
  flex-wrap:wrap;
}

.footer__links{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.footer__links a:hover{
  color:#ffffff;
}

@media (max-width: 980px){
  .hero__inner,
  .grid--4,
  .grid--3,
  .grid--2{
    grid-template-columns:1fr;
  }

  .hero{
    padding-top:56px;
  }

  .hero__meta{
    grid-template-columns:1fr;
  }

  .nav{
    display:none;
  }
}

@media (max-width: 640px){
  .container{
    width:min(100% - 20px, var(--container));
  }

  .hero{
    padding:40px 0 28px;
  }

  .section{
    padding:24px 0;
  }

  .card,
  .token-card{
    padding:20px;
    border-radius:20px;
  }

  h1{
    font-size:34px;
  }

  h2{
    font-size:24px;
  }

  .hero__text{
    font-size:15px;
  }

  .btn{
    width:100%;
  }

  .hero__actions,
  .socials{
    flex-direction:column;
  }
}