:root{
  --bg: #0a0a0a;         /* near black */
  --text: #eaeaea;       /* softer than pure white */
  --muted: #cfcfcf;

  /* white buttons */
  --btn-bg:#ffffff; --btn-text:#0a0a0a;
  --btn-hover:#f2f2f2; --btn-press:#e9e9e9;

  /* chip */
  --chip-bg:#1a1a1a; --chip-br:#2a2a2a;

  --stroke: rgba(255,255,255,.08);
}

*{box-sizing:border-box; margin:0; padding:0;}
html,body{height:100%}
body{
  background:var(--bg);
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

/* Layout */
.container{max-width:1080px; margin:0 auto; padding:40px 20px 80px;}
.section{width:100%}
.center{text-align:center}
.title{margin:18px 0 10px; font-weight:800; line-height:1.1; font-size:clamp(30px,4vw,52px)}
.heading{margin:0 0 14px; font-weight:800; line-height:1.2; font-size:clamp(22px,2.4vw,34px)}
.copy{font-size:16px; line-height:1.65}
.copy p + p{margin-top:12px}
.muted{color:var(--muted)}
.spacer{height:42px}

/* Top image (big rounded square) */
.hero-wrap{
  width:min(560px,85vw);
  aspect-ratio:1/1;
  margin:0 auto;
  border-radius:26px;
  overflow:hidden;
  border:1px solid var(--stroke);
}
.hero-img{width:100%; height:100%; object-fit:cover; display:block}

/* Buttons */
.btn-row{display:flex; flex-wrap:wrap; gap:12px; justify-content:center; margin-top:16px}
.btn{
  display:inline-block; text-decoration:none;
  background:var(--btn-bg); color:var(--btn-text);
  padding:12px 18px; border-radius:14px; border:1px solid #00000033;
  font-weight:800; letter-spacing:.2px;
  box-shadow:0 6px 14px rgba(0,0,0,.35), inset 0 1px 0 #ffffff;
  transition:transform .08s ease, background .12s ease, box-shadow .12s ease;
}
.btn:hover{background:var(--btn-hover); transform:translateY(-2px)}
.btn:active{background:var(--btn-press); transform:translateY(0); box-shadow:0 3px 10px rgba(0,0,0,.45)}
.btn:focus-visible{outline:3px solid #7c7cff; outline-offset:2px}

/* Copy chip */
.chip{
  display:inline-flex; align-items:center; gap:8px;
  margin-top:8px; padding:10px 14px;
  background:var(--chip-bg); border:1px solid var(--chip-br);
  color:#e9e9e9; border-radius:999px; cursor:pointer; font-size:14px
}
.copy-ic{width:16px; height:16px; fill:#dcdcdc}
.chip:hover{background:#222}

/* Carousel */
.carousel-head{display:flex; align-items:center; justify-content:space-between; gap:12px}
.carousel{
  position:relative; overflow:hidden;
  border-top:1px solid var(--stroke); border-bottom:1px solid var(--stroke);
  padding:16px 0
}
/* scrollable track + snap */
.track{
  display:flex; gap:18px;
  overflow-x:auto;              /* key: allow horizontal scroll */
  overflow-y:hidden;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
  scroll-snap-type:x mandatory;
  padding:2px 6px 10px;         /* prevent scrollbar overlap */
}
.track::-webkit-scrollbar{ display:none; }
.track{ scrollbar-width:none; }

.card{
  min-width:280px; max-width:320px; flex:0 0 auto;
  border:1px solid var(--stroke); border-radius:18px; padding:16px;
  background:transparent;
  scroll-snap-align:start;      /* snap target */
}
.pfp{
  width:120px; height:120px; border-radius:999px; object-fit:cover;
  display:block; margin:4px auto 10px; border:1px solid var(--stroke)
}
.emp-name{font-weight:800; font-size:18px; text-align:center; margin-bottom:8px}
.emp-line{font-size:14px; color:#e9e9e9; margin:4px 0}
.emp-line b{color:var(--text)}

.nav-btn{
  width:40px; height:40px; border-radius:999px; border:1px solid var(--stroke);
  background:#141414; color:var(--text); font-size:22px; line-height:1;
  display:inline-grid; place-items:center; cursor:pointer;
}
.nav-btn:hover{background:#1b1b1b}
.nav-btn:focus-visible{outline:3px solid #7c7cff; outline-offset:2px}

/* Payments table */
.table{width:100%; border:1px solid var(--stroke); border-radius:14px; overflow:hidden}
.t-head,.t-row{display:grid; grid-template-columns:2fr 3fr; gap:0}
.t-head{background:#121212; border-bottom:1px solid var(--stroke)}
.t-cell{padding:12px 14px; border-bottom:1px solid var(--stroke); font-size:15px}
.t-cell.head{font-weight:800}
.t-body .t-row:last-child .t-cell{border-bottom:none}
.link{color:var(--text); text-decoration:underline}

/* Contract image */
.img-frame{border:1px solid var(--stroke); border-radius:16px; overflow:hidden; margin-top:12px}
.flat-img{display:block; width:100%; height:auto}

/* Chart (DexScreener embed) */
.chart-wrap{
  border:1px solid var(--stroke);
  border-radius:16px; overflow:hidden;
  background:#0f0f0f; margin-top:12px;
}
.chart{display:block; width:100%; height:min(70vh, 720px)}

/* Disclaimer */
.disclaimer{margin-top:40px; text-align:center; color:#cfcfcf; opacity:.85; font-size:12px}

/* Toast */
.toast{
  position:fixed; left:50%; bottom:22px; transform:translateX(-50%) translateY(20px);
  background:#121212; color:var(--text); border:1px solid var(--stroke); padding:10px 14px; border-radius:999px;
  box-shadow:0 8px 30px rgba(0,0,0,.35); opacity:0; transition:opacity .2s ease, transform .2s ease; pointer-events:none;
}
.toast.show{opacity:1; transform:translateX(-50%) translateY(0)}

/* ---- GLOBAL CENTERING ---- */
.section,
.copy,
.table,
.carousel-head,
.carousel,
.disclaimer {
  text-align: center;
}
