:root {
  --bg: #0e1626;
  --bg2: #141c2d;
  --bg3: #1c2840;
  --surface: #1a2438;
  --primary: #2aace4;
  --teal: #57b6d1;
  --sage: #8ac5a9;
  --green: #a2cd8b;
  --text: #eef3f8;
  --muted: rgba(238, 243, 248, 0.6);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: linear-gradient(180deg, var(--bg3) 0%, var(--bg2) 40%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ── Header ─────────────────────────────── */
header {
  padding: 22px 0;
  position: sticky;
  top: 0;
  backdrop-filter: blur(14px);
  background: rgba(20, 28, 45, 0.75);
  border-bottom: 1px solid rgba(42, 172, 228, 0.12);
  z-index: 10;
}
header .wrap { display: flex; align-items: center; justify-content: space-between; }
header img.logo { height: 26px; display: block; }
nav a {
  color: var(--muted);
  margin-left: 28px;
  font-size: 14.5px;
  font-weight: 500;
}
nav a:hover { color: var(--text); text-decoration: none; }
nav a.cta {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 700;
}

/* ── Hero ───────────────────────────────── */
.hero { padding: 96px 0 72px; display: flex; align-items: center; gap: 56px; }
.hero-copy { flex: 1.2; }
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.hero h1 .grad {
  background: linear-gradient(90deg, var(--primary), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.sub {
  margin: 20px 0 32px;
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 34em;
}
.badges { display: flex; gap: 14px; flex-wrap: wrap; }
.badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #000; border: 1px solid rgba(255,255,255,0.25);
  border-radius: 12px; padding: 10px 20px;
  color: #fff; font-weight: 600; font-size: 15px;
}
.badge:hover { text-decoration: none; border-color: rgba(255,255,255,0.55); }
.badge small { display: block; font-size: 10.5px; font-weight: 400; color: rgba(255,255,255,0.65); line-height: 1.2; }
.badge svg { width: 22px; height: 22px; fill: #fff; }
.badge.soon { opacity: 0.55; pointer-events: none; }

/* Hero ring visual */
.hero-visual { flex: 1; display: flex; justify-content: center; }
.ring {
  width: 300px; height: 300px; border-radius: 50%;
  background:
    radial-gradient(closest-side, var(--bg2) 78%, transparent 79% 100%),
    conic-gradient(from 220deg, var(--primary) 0deg, var(--teal) 90deg, var(--sage) 180deg, var(--green) 265deg, rgba(255,255,255,0.06) 265deg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 90px rgba(42, 172, 228, 0.28);
}
.ring .inner { text-align: center; }
.ring .inner b { font-size: 44px; font-weight: 800; letter-spacing: -1px; display: block; }
.ring .inner span { font-size: 11px; letter-spacing: 3px; color: var(--muted); text-transform: uppercase; }
.ring .inner em { display: block; font-style: normal; margin-top: 10px; color: var(--green); font-weight: 700; font-size: 14px; }

/* ── Sections ───────────────────────────── */
section { padding: 72px 0; }
section h2 {
  font-size: 1.9rem; font-weight: 800; letter-spacing: -0.01em;
  margin-bottom: 12px; text-align: center;
}
section p.lead { text-align: center; color: var(--muted); max-width: 44em; margin: 0 auto 48px; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 28px 24px;
}
.card .num {
  width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px; color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  margin-bottom: 16px;
}
.card:nth-child(2) .num { background: linear-gradient(135deg, var(--teal), var(--sage)); }
.card:nth-child(3) .num { background: linear-gradient(135deg, var(--sage), var(--green)); }
.card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 14.5px; }

.milestones { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 40px; }
.pill {
  border-radius: 999px; padding: 10px 22px; font-weight: 700; font-size: 14px;
  border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.04);
}
.pill b { margin-right: 6px; }
.pill:nth-child(1) b { color: var(--primary); }
.pill:nth-child(2) b { color: var(--teal); }
.pill:nth-child(3) b { color: var(--sage); }
.pill:nth-child(4) b { color: var(--green); }

/* Merchant band */
.merchant {
  background: linear-gradient(135deg, rgba(42,172,228,0.14), rgba(162,205,139,0.10));
  border: 1px solid rgba(42,172,228,0.25);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
}
.merchant h2 { margin-bottom: 10px; }
.merchant p { color: var(--muted); max-width: 40em; margin: 0 auto 26px; }
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: #fff; font-weight: 700; font-size: 15px;
  padding: 13px 32px; border-radius: 999px;
}
.btn:hover { text-decoration: none; filter: brightness(1.1); }

/* ── Footer ─────────────────────────────── */
footer {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 36px 0 48px;
  color: var(--muted);
  font-size: 13.5px;
}
footer .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
footer nav a { margin: 0 14px 0 0; color: var(--muted); }

/* ── Legal pages ────────────────────────── */
.legal { max-width: 760px; margin: 0 auto; padding: 56px 24px 96px; }
.legal h1 { font-size: 2rem; margin-bottom: 6px; }
.legal .date { color: var(--muted); font-size: 14px; margin-bottom: 40px; }
.legal h2 { font-size: 1.2rem; margin: 36px 0 10px; }
.legal p, .legal li { color: rgba(238,243,248,0.78); font-size: 15px; }
.legal ul { padding-left: 22px; margin: 10px 0; }
.legal li { margin-bottom: 6px; }
.legal strong { color: var(--text); }

@media (max-width: 820px) {
  .hero { flex-direction: column-reverse; padding: 56px 0 40px; text-align: center; }
  .hero p.sub { margin-inline: auto; }
  .badges { justify-content: center; }
  .ring { width: 230px; height: 230px; }
  .ring .inner b { font-size: 34px; }
  nav a:not(.cta) { display: none; }
}
