@font-face {
  font-family: 'Fredoka';
  src: url('assets/fonts/fredoka-latin-700-normal.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Fredoka';
  src: url('assets/fonts/fredoka-latin-600-normal.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito';
  src: url('assets/fonts/nunito-latin-400-normal.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito';
  src: url('assets/fonts/nunito-latin-600-normal.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito';
  src: url('assets/fonts/nunito-latin-800-normal.woff2') format('woff2');
  font-weight: 800;
  font-display: swap;
}

:root {
  --pink: #ff4fa8;
  --pink-deep: #e83e97;
  --green: #1fb15c;
  --green-deep: #0f8a44;
  --blue: #6cc6ff;
  --gold: #ffc22e;
  --red: #ff4d4d;
  --ink: #10121a;
  --cream: #fff6ea;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--pink);
  color: var(--ink);
  font-family: 'Nunito', sans-serif;
  overflow-x: hidden;
  max-width: 100%;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

button { font-family: inherit; border: none; cursor: pointer; background: none; }

/* topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--pink);
  border-bottom: 3px solid var(--ink);
}
.topbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 8px;
  align-items: center;
  justify-content: space-between;
}
.mini-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}
.mini-logo img {
  border-radius: 50%;
  border: 2px solid var(--ink);
}
.topbar-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pill-link {
  background: var(--blue);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 6px 14px;
  font-weight: 800;
  font-size: 13px;
  color: var(--ink);
}
.icon-link {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--ink);
  color: var(--ink);
}

/* hero */
.hero {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 20px 24px;
  text-align: center;
}

.badge-burst {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 110px;
  height: 110px;
  background: var(--gold);
  border: 3px solid var(--ink);
  clip-path: polygon(50% 0%, 61% 18%, 82% 10%, 82% 32%, 100% 40%, 88% 58%, 100% 76%, 80% 78%, 78% 100%, 58% 88%, 50% 100%, 42% 88%, 22% 100%, 20% 78%, 0% 76%, 12% 58%, 0% 40%, 18% 32%, 18% 10%, 39% 18%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.15;
  color: var(--ink);
  transform: rotate(10deg);
}

.wordmark {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 12vw, 110px);
  margin: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.wordmark wbr { line-height: 0; }
.w-cat, .w-lever {
  -webkit-text-stroke: 3px var(--ink);
  paint-order: stroke fill;
}
.w-cat { color: #fff; }
.w-lever { color: var(--gold); }

.tagline {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 2.6vw, 22px);
  margin: 18px 0 6px;
  color: var(--ink);
}
.subtext {
  font-weight: 800;
  font-size: clamp(14px, 2vw, 18px);
  margin: 0 0 26px;
  color: #fff;
}
.subtext .highlight { color: var(--gold); }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.buy-btn {
  background: var(--blue);
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 14px 30px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  box-shadow: 0 4px 0 var(--ink);
  transition: transform 0.12s ease;
}
.buy-btn:hover { transform: translateY(-2px); }
.buy-btn:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--ink); }

.ca-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 800;
  max-width: 100%;
  min-width: 0;
}
.ca-label {
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 11px;
  flex-shrink: 0;
}
.ca-value {
  font-family: monospace;
  font-size: 12px;
  overflow-wrap: anywhere;
  word-break: break-all;
  min-width: 0;
}
.ca-chip.copied .ca-value::after { content: ' - copied!'; color: var(--green-deep); }

/* seesaw section */
.seesaw-section {
  max-width: 640px;
  margin: 0 auto;
  padding: 10px 20px 30px;
  text-align: center;
}
.section-title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 4vw, 28px);
  color: #fff;
  -webkit-text-stroke: 1.5px var(--ink);
  paint-order: stroke fill;
  margin: 0 0 14px;
}

.seesaw-frame {
  position: relative;
  border: 3px solid var(--ink);
  border-radius: 22px;
  overflow: hidden;
  background: var(--pink-deep);
}
.seesaw-img {
  width: 100%;
  transform: rotate(0deg);
  transform-origin: 50% 76%;
  transition: transform 0.15s ease-out;
  will-change: transform;
}
.ground-shadow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 22%;
  background: var(--green);
  border-top: 3px solid var(--ink);
  pointer-events: none;
}

.slider-wrap {
  margin-top: 22px;
}
.leverage-slider {
  width: 100%;
  accent-color: var(--gold);
  height: 26px;
}
.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  margin-top: 4px;
}

.status-line {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-top: 14px;
  padding: 8px 16px;
  display: inline-block;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  transition: background-color 0.2s ease;
}
.status-line[data-state="under"] { background: var(--blue); color: var(--ink); }
.status-line[data-state="stacking"] { background: var(--gold); color: var(--ink); }
.status-line[data-state="rekt"] { background: var(--red); color: #fff; }

/* footer */
.footer {
  background: var(--green);
  border-top: 3px solid var(--ink);
  padding: 22px 20px 26px;
}
.features-row {
  max-width: 900px;
  margin: 0 auto 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  justify-content: center;
}
.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 13px;
  color: #fff;
}
.feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--ink);
  display: inline-block;
}
.footer-bottom {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.canary {
  font-family: monospace;
  font-size: 11px;
  font-weight: 700;
  color: #cfe;
  letter-spacing: 0.5px;
}
.canary[data-status="live"] { color: #eaffef; }
.disclaimer {
  font-size: 10px;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
}

@media (max-width: 480px) {
  .badge-burst { width: 84px; height: 84px; font-size: 10px; top: 4px; right: 4px; }
  .cta-row { flex-direction: column; }
  .buy-btn, .ca-chip { width: 100%; justify-content: center; }
  .topbar-inner { padding: 8px 12px; gap: 8px; }
  .mini-logo span { display: none; }
  .pill-link { padding: 5px 10px; font-size: 12px; }
  .topbar-links { gap: 8px; }
}
