@font-face { font-family: "Satoshi"; src: url("/static/assets/fonts/satoshi-400.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Satoshi"; src: url("/static/assets/fonts/satoshi-500.woff2") format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Satoshi"; src: url("/static/assets/fonts/satoshi-700.woff2") format("woff2"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Satoshi"; src: url("/static/assets/fonts/satoshi-900.woff2") format("woff2"); font-weight: 900; font-display: swap; }

:root {
  --black: #0a0a0a;
  --ink: #1a1a1a;
  --muted: #aeaaaa;
  --body: #6f6f76;
  --body-strong: #4c4c4c;
  --field: #f1f1f2;
  --line: #ececec;
  --line-2: #e2e2e2;
  --hl: rgba(137, 190, 255, 0.5);
  --blue: #3b82f6;
  --green: #12b07f;
  --green-bg: #e7f8f1;
  --bg-soft: #fafafb;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Satoshi", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fff; color: var(--black);
  -webkit-font-smoothing: antialiased; letter-spacing: -.012em; overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
.muted { color: var(--muted); }
.hl { background: var(--hl); padding: 0 .1em; border-radius: 5px; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.center { text-align: center; }

.eyebrow { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); margin-bottom: 18px; }
.eyebrow.dark { color: var(--body); }
.eyebrow.center { display: block; }

h2 { font-weight: 700; font-size: clamp(32px, 4.4vw, 58px); line-height: 1.04; letter-spacing: -.035em; }

/* ---------- buttons ---------- */
.btn-dark { display: inline-flex; align-items: center; justify-content: center; background: var(--black); color: #fff; border: none; border-radius: 13px; padding: 15px 26px; font-family: inherit; font-weight: 700; font-size: 16px; cursor: pointer; transition: transform .12s, opacity .15s; }
.btn-dark:hover { opacity: .9; transform: translateY(-1px); }
.btn-dark:active { transform: scale(.98); }
.btn-dark.btn-sm { padding: 10px 18px; font-size: 14px; border-radius: 11px; }
.btn-ghost { display: inline-flex; align-items: center; justify-content: center; background: #fff; color: var(--black); border: 1.5px solid var(--line-2); border-radius: 13px; padding: 13.5px 26px; font-family: inherit; font-weight: 700; font-size: 16px; cursor: pointer; transition: border-color .15s, background .15s; }
.btn-ghost:hover { border-color: var(--black); background: var(--bg-soft); }

/* ---------- nav ---------- */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.78); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 14px 28px; display: flex; align-items: center; gap: 28px; }
.brand { font-weight: 900; font-size: 21px; letter-spacing: -.02em; }
.nav-links { display: flex; gap: 26px; margin-left: 14px; }
.nav-links a { font-weight: 500; font-size: 15px; color: var(--body-strong); transition: color .15s; }
.nav-links a:hover { color: var(--black); }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.wallet-pill { display: inline-flex; align-items: center; gap: 9px; background: var(--field); border: none; border-radius: 11px; padding: 9px 16px; font-family: inherit; font-weight: 600; font-size: 14px; cursor: pointer; transition: background .15s; color: var(--black); }
.wallet-pill:hover { background: #e6e6e6; }
.wallet-pill.connected { background: var(--green-bg); color: #0c7a58; }
.wallet-pill .dots { display: inline-flex; }
.wallet-pill .dots i { width: 15px; height: 15px; border-radius: 50%; margin-left: -6px; border: 2px solid #fff; }
.wallet-pill .dots i:first-child { margin-left: 0; background: #f59e0b; }
.wallet-pill .dots i:nth-child(2) { background: #3b82f6; }
.wallet-pill .dots i:nth-child(3) { background: #22c55e; }

/* ---------- hero ---------- */
.hero { text-align: center; padding: 80px 24px 0; max-width: 900px; margin: 0 auto; }
.hero h1 { font-weight: 900; font-size: clamp(44px, 7.5vw, 104px); line-height: 1.02; letter-spacing: -.04em; }
.hero-sub { color: var(--body); font-size: clamp(16px, 1.6vw, 20px); line-height: 1.5; max-width: 600px; margin: 26px auto 0; }
.hero-actions { display: flex; gap: 12px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 18px; align-items: center; justify-content: center; margin-top: 30px; color: var(--body); font-size: 14px; flex-wrap: wrap; }
.hero-trust b { color: var(--black); font-weight: 700; }
.hero-trust .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--line-2); }
.hero-art { max-width: 1022px; margin: 60px auto 0; }
.hero-art img { width: 100%; display: block; }

/* ---------- raised sheet ---------- */
.sheet { position: relative; background: #fff; border-radius: 56px 56px 0 0; margin-top: -44px; box-shadow: 0 -36px 80px rgba(0,0,0,.09), 0 -150px 150px rgba(0,0,0,.04); padding: 90px 0 0; }
section { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 36px; }
.sec-sub { color: var(--body); font-size: 17px; line-height: 1.5; margin-top: 16px; max-width: 560px; }
.sec-sub.center { margin-left: auto; margin-right: auto; }
.link-arrow { font-weight: 600; font-size: 15px; color: var(--body-strong); white-space: nowrap; transition: color .15s; }
.link-arrow:hover { color: var(--black); }

/* ---------- stat band ---------- */
.statband { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding-bottom: 110px; }
.sb { text-align: center; padding: 10px; }
.sb-v { font-size: clamp(34px, 4vw, 52px); font-weight: 900; letter-spacing: -.03em; }
.sb-l { color: var(--body); font-size: 14px; margin-top: 6px; }

/* ---------- live picks preview ---------- */
.picks-preview { padding-bottom: 120px; }
.preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.skeleton { height: 220px; border-radius: 20px; background: linear-gradient(100deg, #f4f4f5 30%, #ececee 50%, #f4f4f5 70%); background-size: 200% 100%; animation: sh 1.4s infinite; }
@keyframes sh { to { background-position: -200% 0; } }
.ppick { border: 1px solid var(--line); border-radius: 20px; padding: 20px; transition: transform .15s, border-color .15s, box-shadow .15s; background: #fff; }
.ppick:hover { transform: translateY(-3px); border-color: var(--line-2); box-shadow: 0 18px 40px rgba(20,24,40,.08); }
.ppick.value { border-color: rgba(18,176,127,.4); }
.ppick-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.ppick-comp { font-size: 11px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; color: var(--body); background: var(--field); padding: 4px 10px; border-radius: 99px; }
.ppick-date { font-size: 12px; color: var(--muted); font-weight: 600; }
.ppick-match { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.ppick-match img { width: 26px; height: 26px; object-fit: contain; }
.ppick-match .t { font-weight: 700; font-size: 16px; }
.ppick-match .v { color: var(--muted); font-size: 13px; font-weight: 600; margin: 0 2px; }
.ppick-bet { display: flex; align-items: center; justify-content: space-between; gap: 12px; border-radius: 13px; padding: 13px 15px; background: var(--bg-soft); border: 1px solid var(--line); }
.ppick-bet.value { background: var(--green-bg); border-color: rgba(18,176,127,.3); }
.ppick-bet .badge { font-size: 10px; font-weight: 800; letter-spacing: .05em; padding: 4px 8px; border-radius: 7px; color: #fff; background: var(--black); }
.ppick-bet.value .badge { background: var(--green); }
.ppick-bet .lbl { flex: 1; font-weight: 700; font-size: 14px; }
.ppick-bet .od { font-size: 18px; font-weight: 800; font-variant-numeric: tabular-nums; }
.ppick-edge { margin-top: 12px; font-size: 13px; color: var(--body); }
.ppick-edge b { color: var(--green); }

/* ---------- about / features ---------- */
.about { display: grid; grid-template-columns: 420px 1fr; gap: 64px; align-items: start; padding-bottom: 120px; }
.about h2 { margin-bottom: 0; }
.lead { color: var(--body); font-size: 17px; line-height: 1.45; margin-top: 22px; max-width: 380px; }
.features { margin-top: 40px; display: flex; flex-direction: column; gap: 26px; max-width: 400px; }
.feat h3 { font-weight: 700; font-size: 17px; margin-bottom: 6px; }
.feat p { color: var(--body); font-size: 15.5px; line-height: 1.45; }
.about-right { position: sticky; top: 100px; }
.ask-card { position: relative; aspect-ratio: 1; border-radius: 26px; overflow: hidden; border: 1px solid var(--line); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; background:
   radial-gradient(120% 120% at 18% 12%, #eaf2ff 0%, transparent 46%),
   radial-gradient(120% 120% at 88% 22%, #f1e9ff 0%, transparent 52%),
   radial-gradient(140% 120% at 70% 92%, #ffe9f3 0%, transparent 55%),
   linear-gradient(160deg, #f5f8ff, #eceefb); }
.ask-glow { position: absolute; inset: 0; background: radial-gradient(55% 45% at 50% 42%, rgba(137,190,255,.28), transparent 72%); pointer-events: none; }
.ask-tag { position: relative; align-self: flex-start; font-size: 12px; font-weight: 700; color: #5b6b9a; background: rgba(255,255,255,.7); padding: 6px 12px; border-radius: 99px; margin-bottom: auto; }
.ask-bar { position: relative; width: 100%; display: flex; gap: 8px; background: rgba(255,255,255,.82); backdrop-filter: blur(10px); border: 1px solid rgba(0,0,0,.05); border-radius: 16px; padding: 8px 8px 8px 16px; box-shadow: 0 12px 34px rgba(60,80,160,.12); }
.ask-bar input { flex: 1; border: none; background: transparent; font-family: inherit; font-size: 15px; outline: none; color: var(--ink); min-width: 0; }
.ask-bar input::placeholder { color: #9aa0b0; }
.ask-bar button { background: var(--black); color: #fff; border: none; border-radius: 11px; padding: 0 18px; font-family: inherit; font-weight: 700; font-size: 14px; cursor: pointer; }
.launch-link { display: inline-block; margin-top: 20px; font-weight: 600; font-size: 16px; color: var(--body-strong); }
.launch-link:hover { color: var(--black); }
.launch-link.big { margin-top: 26px; font-size: 17px; }

/* ---------- how it works ---------- */
.how { padding-bottom: 120px; text-align: center; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; text-align: left; }
.step { border: 1px solid var(--line); border-radius: 20px; padding: 28px; }
.step-n { font-size: 14px; font-weight: 800; color: var(--blue); letter-spacing: .05em; margin-bottom: 18px; }
.step h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.step p { color: var(--body); font-size: 15.5px; line-height: 1.45; }

/* ---------- model ---------- */
.model { padding-bottom: 120px; text-align: center; }
.model-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; text-align: left; }
.mcard { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 20px; padding: 30px 26px; }
.mcard-num { width: 38px; height: 38px; border-radius: 11px; background: var(--black); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 17px; margin-bottom: 20px; }
.mcard h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.mcard p { color: var(--body); font-size: 15.5px; line-height: 1.5; }

/* ---------- mascots ---------- */
.mascots { padding-bottom: 120px; }
.mascots-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; align-items: center; margin-top: 60px; }
.mascot-col { display: flex; flex-direction: column; gap: 80px; }
.mascot-col.right { text-align: right; }
.mascot-item h3 { font-weight: 900; font-size: 38px; line-height: .98; letter-spacing: -.03em; margin-bottom: 12px; }
.mascot-item p { color: var(--body); font-size: 15.5px; line-height: 1.4; max-width: 300px; }
.mascot-col.right .mascot-item p { margin-left: auto; }
.phone { width: 300px; }
.phone img { width: 100%; display: block; }

/* ---------- token ---------- */
.token { padding-bottom: 120px; }
.token-inner { background: var(--black); border-radius: 32px; padding: 56px; display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: center; color: #fff; }
.token-inner .eyebrow { color: #8aa0d8; }
.token-left h2 { color: #fff; }
.token-left p { color: #b8b8c2; font-size: 17px; line-height: 1.5; margin-top: 18px; }
.token-points { display: flex; flex-direction: column; gap: 14px; }
.tp { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 20px 22px; }
.tp-v { font-weight: 700; font-size: 18px; margin-bottom: 5px; }
.tp-l { color: #9a9aa6; font-size: 14.5px; line-height: 1.45; }

/* ---------- faq ---------- */
.faq { padding-bottom: 120px; text-align: center; }
.faq-list { max-width: 760px; margin: 50px auto 0; text-align: left; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; padding: 24px 0; font-weight: 700; font-size: 18px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.chev { width: 11px; height: 11px; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: rotate(45deg); transition: transform .2s; flex-shrink: 0; margin-right: 4px; }
.faq-item[open] .chev { transform: rotate(-135deg); }
.faq-item p { color: var(--body); font-size: 16px; line-height: 1.55; padding-bottom: 24px; max-width: 660px; }

/* ---------- cta final ---------- */
.cta-final { text-align: center; padding-top: 50px; padding-bottom: 130px; }
.quant-access { display: inline-block; color: var(--muted); font-weight: 600; font-size: 14px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 22px; }
.cta-final h2 { margin-bottom: 36px; }
.hero-input { position: relative; max-width: 473px; margin: 0 auto; }
.hero-input input { width: 100%; background: var(--field); border: none; border-radius: 15px; height: 58px; padding: 0 150px 0 22px; font-family: inherit; font-size: 16px; font-weight: 500; color: var(--ink); outline: none; }
.hero-input input::placeholder { color: var(--body); }
.hero-input .btn-dark { position: absolute; right: 5px; top: 5px; height: 48px; padding: 0 22px; }
.waitlist-msg { margin-top: 16px; color: var(--green); font-weight: 600; font-size: 15px; min-height: 18px; }

/* ---------- footer ---------- */
.foot { max-width: 1200px; margin: 0 auto; padding: 56px 40px; border-top: 1px solid var(--line); }
.foot-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 40px; }
.foot-tag { color: var(--body); font-size: 15px; margin-top: 10px; max-width: 280px; }
.foot-links { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.foot-links a { color: var(--body-strong); font-size: 15px; font-weight: 500; }
.foot-links a:hover { color: var(--black); }
.foot-bottom { color: var(--muted); font-size: 13px; }

@media (max-width: 960px) {
  .about { grid-template-columns: 1fr; gap: 40px; }
  .about-right { position: static; max-width: 460px; }
  .features, .lead { max-width: none; }
  .statband { grid-template-columns: 1fr 1fr; gap: 36px 18px; }
  .preview-grid, .steps, .model-grid { grid-template-columns: 1fr; }
  .token-inner { grid-template-columns: 1fr; padding: 40px; gap: 32px; }
  .mascots-grid { grid-template-columns: 1fr; gap: 48px; justify-items: center; }
  .mascot-col { align-items: center; text-align: center; gap: 48px; order: 2; }
  .mascot-col.right { text-align: center; }
  .mascot-col.right .mascot-item p, .mascot-item p { margin-left: auto; margin-right: auto; }
  .phone { order: 1; }
  .sec-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-inner { padding: 12px 18px; }
  section { padding: 0 22px; }
  .sheet { border-radius: 36px 36px 0 0; padding-top: 64px; }
}
