:root{
  --bg:#0b0707;
  --panel: rgba(18,12,12,.86);
  --panel2: rgba(14,10,10,.70);
  --line: rgba(255,215,160,.18);
  --text: #f6e9d5;
  --muted: rgba(246,233,213,.72);

  --gold1: #f6d6a6;
  --gold2: #d9a464;
  --shadow: 0 16px 45px rgba(0,0,0,.55);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 900px at 20% 0%, rgba(120,60,20,.25), transparent 70%),
              radial-gradient(1200px 900px at 80% 10%, rgba(120,80,30,.18), transparent 65%),
              var(--bg);
  background-image: url("assets/pattern.png");
  background-size: 900px 900px;
  background-attachment: fixed;
}

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

.container{max-width:1100px;margin:0 auto;padding:0 18px}

.topbar{
  position: sticky; top: 0; z-index: 20;
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(to bottom, rgba(0,0,0,.85), rgba(0,0,0,.45));
  backdrop-filter: blur(10px);
}

.brand{display:flex;align-items:center;gap:10px;font-weight:800;letter-spacing:.2px}
.brand img{
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
}

.nav{display:flex;align-items:center;gap:14px;flex-wrap:wrap}
.nav a{font-size:14px;opacity:.92}
.nav a:hover{opacity:1}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 700;
  letter-spacing:.2px;
  box-shadow: var(--shadow);
}

.btn-solid{
  background: linear-gradient(180deg, rgba(246,214,166,.95), rgba(217,164,100,.95));
  color: #2a140a;
  border-color: rgba(255,215,160,.35);
}

.btn-outline{
  background: rgba(255,255,255,.06);
}

.hero{padding: 54px 0 24px}
.hero-grid{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items:center;
}

.kicker{
  display:inline-flex;
  gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--gold1);
}

.hero-copy h1{
  margin: 0 0 6px;
  font-size: 74px;
  letter-spacing: 1px;
  line-height: 1;
  text-shadow: 0 12px 30px rgba(0,0,0,.35);
}

.lead{margin:0;font-size:20px;color:var(--gold1);font-weight:700}
.sublead{margin:10px 0 0;font-size:16px;color:var(--muted)}
.hero-cta{display:flex;gap:12px;margin:18px 0 14px;flex-wrap:wrap}

.stats{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.stat .k{font-size:12px;color:var(--muted)}
.stat .v{font-size:18px;font-weight:900}

.pill-row{display:flex;gap:10px;margin:14px 0 0;flex-wrap:wrap}
.pill{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}
.pill:hover{opacity:.95}

.fineprint{margin:14px 0 0;color:var(--muted);font-size:13px;max-width: 560px}

.hero-art{position:relative}
.art-card{
  border-radius: 26px;
  overflow:hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
}

.art-float{
  position:absolute;
  width: 120px;
  border-radius: 24px;
  overflow:hidden;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.35);
  box-shadow: var(--shadow);
}
.hero-art{position:relative}

.art-float{
  position:absolute;
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.35);
  box-shadow: var(--shadow);
}

/* Head: bottom-left, slightly tucked in */
.art-float-head{
  width: 140px;
  left: 14px;
  bottom: 14px;
}

/* Crown: top-right, smaller, clean */
.art-float-crown{
  width: 170px;
  right: 14px;
  top: 14px;
}

/* Make sure floats don’t cover the hero image too much */
.art-float-head img,
.art-float-crown img{
  width:100%;
  height:auto;
  display:block;
}


.section{padding: 56px 0}
.section-alt{
  background: linear-gradient(180deg, rgba(0,0,0,.30), rgba(0,0,0,.15));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head{margin-bottom:16px}
.section-head h2{margin:0 0 10px;font-size:34px}
.section-head p{margin:0}
.gold{color: var(--gold1)}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}

.card{
  background: var(--panel2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.card h3{margin:0 0 8px}
.muted{color: var(--muted); line-height: 1.55}
.small{font-size:12px}

.row{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap}
.badge{
  display:inline-flex; align-items:center; gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--gold1);
  font-weight: 800;
}
.dot{width:8px;height:8px;border-radius:50%;background: var(--gold2); box-shadow: 0 0 18px rgba(217,164,100,.65)}

.step{position:relative; overflow:hidden}
.step-num{
  width: 36px; height: 36px;
  display:grid; place-items:center;
  border-radius: 10px;
  font-weight: 900;
  background: linear-gradient(180deg, rgba(246,214,166,.95), rgba(217,164,100,.95));
  color:#2a140a;
  border: 1px solid rgba(255,215,160,.35);
  margin-bottom: 10px;
}

.cta-row{display:flex;gap:12px;flex-wrap:wrap;margin-top:14px}

.side-art{
  margin-top: 18px;
  max-width: 360px;
  margin-left: auto;
  border-radius: 24px;
  overflow:hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.list{margin:0;padding-left:18px;color: var(--muted);line-height:1.8}

.donut-wrap{display:grid;place-items:center;gap:14px}
.donut{
  width: 260px; height: 260px;
  border-radius: 50%;
  /* 80% public, 20% team */
  background:
    conic-gradient(
      rgba(246,214,166,.95) 0 80%,
      rgba(120,80,45,.95) 80% 100%
    );
  position: relative;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.donut::after{
  content:"";
  position:absolute; inset: 28px;
  background: rgba(12,8,8,.9);
  border-radius: 50%;
  border: 1px solid var(--line);
}

.donut-center{
  position:absolute; inset: 0;
  display:grid; place-items:center;
  text-align:center;
  z-index: 1;
  padding: 24px;
}
.donut-title{font-weight:900;color: var(--gold1); font-size: 18px}
.donut-sub{font-weight:800; font-size: 14px; color: var(--muted); margin-top: 6px}

.legend{display:flex;gap:12px;flex-wrap:wrap;justify-content:center}
.leg{display:flex;align-items:center;gap:8px;color:var(--muted);font-weight:700}
.swatch{width:14px;height:14px;border-radius:4px;border:1px solid var(--line)}
.swatch-public{background: rgba(246,214,166,.95)}
.swatch-team{background: rgba(120,80,45,.95)}

.footer{
  border-top: 1px solid var(--line);
  padding: 26px 0 36px;
  background: rgba(0,0,0,.45);
}

@media (max-width: 920px){
  .hero-grid{grid-template-columns: 1fr}
  .grid-3{grid-template-columns: 1fr}
  .split{grid-template-columns: 1fr}
  .hero-copy h1{font-size: 56px}
  .art-float{display:none}
}
