/* PONSKEMON ARENA — landing page styles (light launchpad theme, inspired by ponsfamily.com/launchpad) */
:root {
  --blue: #1d9bf0;
  --blue-deep: #0b7fe0;
  --blue-ink: #0f4fa3;
  --green: #16a34a;
  --amber: #f59e0b;
  --mint: #e9f6e0;
  --gold: #ffd257;
  --ink: #0f172a;
  --text: #1f2937;
  --muted: #6b7280;
  --bg: #f6f7f9;
  --card: #ffffff;
  --line: #e5e7eb;
  --font-pixel: "Fusion Pixel 12px Monospaced zh_hans", "fusion-pixel-12px-monospaced-zh_hans", monospace;
  --font-ui: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  line-height: 1.55;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--blue-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { position: relative; z-index: 1; max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* nav */
.topnav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--line);
}
.topnav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 14px; height: 62px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 28px; height: 28px; display: inline-block; flex: none;
  object-fit: contain;
}
.brand b { font-family: var(--font-pixel); letter-spacing: 0.14em; font-size: 15px; color: var(--ink); }
.brand small { display: block; color: var(--muted); font-size: 10px; letter-spacing: 0.12em; font-family: var(--font-pixel); }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { color: #4b5563; font-size: 13px; padding: 7px 10px; }
.nav-links a:hover { color: var(--ink); text-decoration: none; }
#nav-connect { display: none; }

/* buttons */
.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-weight: 600;
  cursor: pointer;
  border-radius: 999px;
  font-size: 14px;
  padding: 11px 22px;
  border: 1px solid transparent;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary {
  background: linear-gradient(180deg, var(--blue), var(--blue-deep));
  color: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08), 0 4px 14px rgba(29, 155, 240, 0.25);
}
.btn-primary:hover { box-shadow: 0 2px 4px rgba(15, 23, 42, 0.1), 0 6px 20px rgba(29, 155, 240, 0.35); filter: brightness(1.03); }
.btn-ghost { background: #fff; color: var(--ink); border-color: #d1d5db; }
.btn-ghost:hover { background: #f3f4f6; }
.btn-teal { background: var(--green); color: #fff; box-shadow: 0 1px 2px rgba(15,23,42,.08), 0 4px 14px rgba(22,163,74,.2); }
.btn-teal:hover { filter: brightness(1.04); }

/* hero */
.hero { padding: 64px 0 48px; text-align: center; }
.eyebrow {
  display: inline-block; color: #92400e;
  background: #fef3c7; border: 1px solid #fcd34d;
  border-radius: 999px;
  padding: 5px 14px; font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-pixel);
  font-size: clamp(38px, 7vw, 68px);
  line-height: 1.08;
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, #0f172a 40%, #2563eb);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 18px;
}
.hero .tag {
  font-size: 15px; color: #4b5563; max-width: 660px; margin: 0 auto 28px;
}
.hero .tag b { color: var(--blue-deep); }
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.hero-stats { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.stat {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 10px 18px; font-size: 12px; color: var(--muted);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.stat b { color: var(--ink); font-size: 15px; font-weight: 700; display: block; }
.hero-art {
  margin: 40px auto 0; max-width: 900px; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line); background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05), 0 18px 50px rgba(15, 23, 42, 0.1);
}
.hero-art img { display: block; width: 100%; }
.hero-art figcaption { background: #f8fafc; color: var(--muted); font-size: 11px; padding: 8px 14px; text-align: left; border-top: 1px solid var(--line); }

/* section base */
section.block { padding: 56px 0; }
.block-head { text-align: center; margin-bottom: 36px; }
.block-head .kicker {
  color: var(--blue); font-family: var(--font-pixel);
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 8px;
}
.block-head h2 { font-family: var(--font-pixel); font-size: clamp(24px, 4vw, 32px); letter-spacing: 0.03em; color: var(--ink); }
.block-head p { color: var(--muted); font-size: 13px; margin-top: 8px; }

/* how it works */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.step {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  padding: 22px 20px; position: relative;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.step .num {
  width: 30px; height: 30px; display: grid; place-items: center; margin-bottom: 14px;
  background: var(--blue); color: #fff; border-radius: 8px; font-size: 14px; font-weight: 700;
}
.step:nth-child(2) .num { background: var(--green); }
.step:nth-child(3) .num { background: var(--amber); }
.step h3 { font-size: 15px; color: var(--ink); margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 13px; }
.step .rh-chip { color: #0d9488; font-weight: 600; }

/* token band (mint container, launchpad "graduated" vibe) */
.token-band {
  background:
    radial-gradient(ellipse 70% 130% at 50% 0%, rgba(255, 210, 87, 0.14), transparent 70%),
    var(--mint);
  border-block: 1px solid #d9efc8;
}
.token-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 36px; align-items: center; }
@media (max-width: 800px) { .token-grid { grid-template-columns: 1fr; } }
.token-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 12px;
  color: #fff; background: linear-gradient(180deg, var(--blue), var(--blue-deep));
  border-radius: 999px; padding: 5px 14px; font-size: 12px; font-weight: 700;
}
.token-band h2 { font-family: var(--font-pixel); font-size: clamp(22px, 4vw, 30px); color: var(--ink); margin-bottom: 10px; }
.token-band .desc { color: #475569; font-size: 13px; max-width: 560px; }
.reward-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; margin: 22px 0; }
.reward-cell { background: var(--card); border: 1px solid #dcead0; border-radius: 12px; padding: 12px 14px; box-shadow: 0 1px 2px rgba(15,23,42,.04); }
.reward-cell b { display: block; font-size: 17px; font-weight: 800; color: var(--ink); }
.reward-cell span { color: var(--muted); font-size: 11px; }
.ca-box {
  display: flex; align-items: center; gap: 8px; margin-top: 18px;
  background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 6px 6px 6px 14px;
}
.ca-box code { flex: 1; color: var(--muted); font-size: 12px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ca-box button {
  font-family: var(--font-ui); font-weight: 600; cursor: pointer; background: var(--blue); color: #fff;
  border: 0; border-radius: 999px; padding: 8px 14px; font-size: 12px;
}
.ca-box button:hover { filter: brightness(1.05); }
.ca-note { margin-top: 10px; font-size: 11px; color: var(--muted); }
.token-cta-col { text-align: center; }
.token-cta-col .big { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.token-cta-col .big b { color: var(--blue-deep); }
.token-cta-col .sub { font-size: 11px; color: var(--muted); margin-bottom: 18px; }
.coin { display: inline-block; width: 84px; height: 84px; border-radius: 50%; margin-bottom: 16px;
  background: radial-gradient(circle at 32% 30%, #ffe9a8, var(--gold) 55%, #d9a514);
  box-shadow: inset -6px -10px 20px rgba(0,0,0,.18), 0 8px 24px rgba(217, 165, 20, 0.25);
  display: grid; place-items: center; color: #5c4500; font-size: 13px; font-weight: 800; }

/* wallets strip */
.wallets { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 24px 0; }
.wallet-pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); background: var(--card); border-radius: 999px;
  padding: 8px 16px; font-size: 12px; color: #4b5563;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.wallet-pill .logo { width: 18px; height: 18px; border-radius: 50%; }
.wallet-pill.rh { border-color: #99f6ea; color: #0d9488; }

/* faq */
.faq { display: grid; gap: 12px; max-width: 760px; margin: 0 auto; }
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 14px 18px; box-shadow: 0 1px 2px rgba(15,23,42,.04); }
.faq summary { cursor: pointer; font-size: 13px; font-weight: 600; color: var(--ink); }
.faq details p { color: var(--muted); font-size: 13px; margin-top: 10px; }

/* footer */
footer { border-top: 1px solid var(--line); padding: 30px 0 40px; text-align: center; color: var(--muted); font-size: 11px; }
footer .fine { max-width: 720px; margin: 10px auto 0; line-height: 1.7; }

/* mobile: let the topnav wrap instead of overflowing the viewport */
@media (max-width: 660px) {
  .topnav .wrap { flex-wrap: wrap; justify-content: space-between; height: auto; row-gap: 6px; padding-top: 8px; padding-bottom: 8px; }
  .brand { gap: 8px; }
  .brand b { font-size: 13px; }
  .brand small { font-size: 9px; }
  .nav-links { flex-wrap: wrap; justify-content: flex-end; gap: 4px; }
  .nav-links a { font-size: 12px; padding: 6px 8px; }
  #nav-connect { padding: 6px 12px; font-size: 12px; }
  .hero h1 { font-size: clamp(28px, 9vw, 44px); }
  section.block { padding: 40px 0; }
  .block-head { margin-bottom: 24px; }
  .how-grid { gap: 20px; }
  .stat { padding: 10px 12px; }
}
