
:root{
  --bg:#070a0d;
  --panel:#0d1117;
  --card:#0f141b;
  --line:rgba(255,255,255,.10);
  --text:#e7edf7;
  --muted:rgba(231,237,247,.70);
  --green:#15b000;
  --green2:#9aff2a;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius:16px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 15% -5%, rgba(45,90,255,.22), transparent 60%),
    radial-gradient(800px 520px at 92% 8%, rgba(25,180,90,.16), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.40), rgba(0,0,0,.65)),
    var(--bg);
}

/* subtle chevron pattern */
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.18;
  background-image:
    linear-gradient(135deg, rgba(255,255,255,.08) 25%, transparent 25%),
    linear-gradient(225deg, rgba(255,255,255,.08) 25%, transparent 25%),
    linear-gradient(45deg, rgba(255,255,255,.08) 25%, transparent 25%),
    linear-gradient(315deg, rgba(255,255,255,.08) 25%, transparent 25%);
  background-position: 10px 0, 10px 0, 0 0, 0 0;
  background-size: 20px 20px;
  mix-blend-mode: overlay;
}

a{color:inherit;text-decoration:none}
.wrap{max-width:1100px;margin:0 auto;padding:16px 18px}

.site-header{
  position:sticky;top:0;z-index:50;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-row{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
}
.brand-mark{font-weight:900;letter-spacing:.8px;font-size:14px}

.nav-toggle{
  display:none;
  border:1px solid rgba(255,255,255,.16);
  background: transparent;
  color:var(--text);
  border-radius: 12px;
  padding:8px 10px;
  cursor:pointer;
}

.nav{display:flex;gap:18px;align-items:center;flex-wrap:wrap}
.nav-link{color:rgba(231,237,247,.78);font-size:13px}
.nav-link:hover{color:var(--text)}

.social{display:flex;gap:8px;align-items:center}
.soc{
  width:26px;height:26px;border-radius:9px;
  display:flex;align-items:center;justify-content:center;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(231,237,247,.88);
  font-size:12px;
}
.soc:hover{border-color: rgba(255,255,255,.22)}

.section{margin-top:14px}
.section-alt{
  border:1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.028));
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

/* HERO */
.hero{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:center;
}
.hero h1{
  margin:0 0 8px 0;
  font-size: 20px;
  font-weight: 900;
  letter-spacing:.2px;
}
.hero p{margin:0;color:var(--muted);line-height:1.45;font-size:13px}
.hero-right{display:flex;justify-content:flex-end}

/* Slider */
.slider{
  position:relative;
  width: 420px;
  max-width: 100%;
  height: 92px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
}
.slider-track{position:relative;height:100%}
.slide{
  position:absolute;inset:0;
  display:block;
  background-size:cover;
  background-position:center;
  opacity:0;
  transform: scale(1.01);
  transition: opacity .35s ease, transform .35s ease;
}
.slide.is-active{opacity:1;transform:scale(1);pointer-events:auto}
.slide-overlay{
  position:absolute;inset:0;
  display:flex;flex-direction:column;justify-content:center;
  padding: 14px 16px;
  background: linear-gradient(90deg, rgba(0,0,0,.62), rgba(0,0,0,.10));
}
.slide-title{
  font-weight:900;
  letter-spacing:.6px;
  font-size: 13px;
  text-transform: uppercase;
}
.slide-sub{
  margin-top:3px;
  color: rgba(231,237,247,.78);
  font-size: 12px;
}
.slider-btn{
  position:absolute;top:50%;
  transform: translateY(-50%);
  width: 26px;height: 26px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.35);
  color: rgba(231,237,247,.92);
  cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  z-index:2;
}
.slider-btn:hover{border-color: rgba(255,255,255,.28)}
.slider-btn.prev{left:10px}
.slider-btn.next{right:10px}

.slider-dots{
  position:absolute;left:0;right:0;bottom:8px;
  display:flex;justify-content:center;gap:6px;z-index:2;
}
.dot-btn{
  width:7px;height:7px;border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  cursor:pointer;
}
.dot-btn.is-active{background: rgba(255,255,255,.70)}

/* Cards */
.cards-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:16px;
}

.card{
  background: rgba(13,17,23,.72);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
}

.card-head{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 12px 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.18);
}

.card-logo{
  width:42px;height:42px;border-radius: 12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
  flex:0 0 auto;
}
.card-logo img{width:100%;height:100%;object-fit:cover}

.card-meta{min-width:0}
.card-name{
  font-weight:900;
  font-size:13px;
  line-height:1.1;
}
.card-tag{
  margin-top:2px;
  font-size:11px;
  color: rgba(231,237,247,.65);
}

.card-badge{
  margin-left:auto;
  font-size:10px;
  font-weight:800;
  padding:4px 8px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
}

.card-body{padding: 10px 12px 12px 12px}
.card-subtitle{
  font-size:11px;
  font-weight:800;
  letter-spacing:.4px;
  color: rgba(231,237,247,.78);
  margin-bottom:8px;
}

.bullet{
  display:flex;align-items:flex-start;gap:8px;
}
.bullet .check{
  width:18px;height:18px;border-radius:6px;
  display:inline-flex;align-items:center;justify-content:center;
  font-weight:900;
  font-size:12px;
  margin-top:1px;
}

.bullet-highlight{
  padding:8px 10px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(21,176,0,.22), rgba(21,176,0,.10));
  border: 1px solid rgba(21,176,0,.35);
  color: rgba(231,237,247,.95);
}
.bullet-highlight .check{
  background: rgba(21,176,0,.32);
  border: 1px solid rgba(21,176,0,.45);
  color: #dfffd8;
}

.bullets.clean{
  list-style:none;
  padding:0;
  margin:10px 0 0 0;
  color: rgba(231,237,247,.78);
  font-size:12px;
  line-height:1.45;
}
.bullets.clean li{
  display:flex;
  gap:8px;
  padding: 4px 0;
}
.bullets.clean .dot{
  width: 14px;
  color: rgba(231,237,247,.38);
  display:inline-flex;
  justify-content:center;
}

.withdraw{
  display:flex;align-items:center;gap:8px;
  margin-top:10px;
}
.withdraw-label{
  font-size:10px;
  letter-spacing:.35px;
  text-transform:uppercase;
  color: rgba(231,237,247,.55);
}
.withdraw-pill{
  font-size:11px;
  font-weight:800;
  padding:5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(21,176,0,.35);
  background: rgba(21,176,0,.14);
  color: rgba(231,237,247,.92);
}
.withdraw-pill:hover{border-color: rgba(21,176,0,.55); background: rgba(21,176,0,.18)}

.actions{margin-top:12px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  width:100%;
  padding:10px 12px;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  color: rgba(231,237,247,.92);
  font-weight:900;
  font-size:12px;
  letter-spacing:.4px;
  cursor:pointer;
}
.btn:hover{border-color: rgba(255,255,255,.24)}
.btn-primary{
  border-color: rgba(21,176,0,.45);
  background: rgba(21,176,0,.14);
}
.btn-primary:hover{border-color: rgba(21,176,0,.60); background: rgba(21,176,0,.18)}
.arrow{margin-left:6px}

/* Center pill between sections */
.center{display:flex;justify-content:center;margin: 10px 0 2px 0}
.pill{
  display:inline-flex;align-items:center;justify-content:center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  color: rgba(231,237,247,.85);
  font-weight:800;
  font-size:12px;
}
.pill:hover{border-color: rgba(255,255,255,.24)}

.mid h2{
  margin:0;
  text-align:center;
  font-size:16px;
  font-weight:900;
}
.mid .muted{
  margin:8px auto 0 auto;
  text-align:center;
  max-width: 820px;
  color: var(--muted);
  font-size:12px;
  line-height:1.5;
}

/* Footer */
.site-footer{
  margin-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.40);
}
.footer-row{
  display:flex;align-items:center;justify-content:space-between;gap:10px;
  color: rgba(231,237,247,.68);
  font-size: 12px;
}
.to-top{color: rgba(231,237,247,.68)}
.to-top:hover{color: var(--text)}

/* Responsive */
@media (max-width: 1100px){
  .cards-grid{grid-template-columns: repeat(3, 1fr);}
}
@media (max-width: 860px){
  .cards-grid{grid-template-columns: repeat(2, 1fr);}
  .hero{grid-template-columns: 1fr; }
  .hero-right{justify-content:stretch}
  .slider{width:100%}
  .nav-toggle{display:inline-flex}
  .nav{display:none;flex-direction:column;align-items:flex-start;gap:10px;padding:12px 0}
  .nav.is-open{display:flex}
}
@media (max-width: 520px){
  .cards-grid{grid-template-columns: 1fr;}
}
