:root {
  --bg: #f5f3ff;
  --panel: #ffffff;
  --ink: #14121f;
  --muted: #635f77;
  --line: #e4dffb;
  --lime: #c6ff3d;
  --violet: #7b5cff;
  --violet-deep: #5a3ee0;
  --coral: #ff5c7a;
  --sun: #ffcf52;
  --shadow: 0 24px 60px rgba(20, 18, 31, 0.12);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
::selection {
  background: var(--lime);
  color: var(--ink);
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
.marquee-wrap {
  background: var(--ink);
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
}
.marquee-track {
  display: inline-flex;
  gap: 28px;
  animation: mq 26s linear infinite;
}
.marquee-track span {
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
@keyframes mq {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
header.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(245, 243, 255, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.logo .badge {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--violet), var(--coral));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transform: rotate(-6deg);
}
.nav-links {
  display: flex;
  gap: 30px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}
.nav-links a:hover {
  color: var(--ink);
}
.btn {
  padding: 11px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid transparent;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
}
.btn-ghost:hover {
  transform: translateY(-2px);
}
.btn-lime {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}
.btn-lime:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}
.btn:focus-visible {
  outline: 3px solid var(--violet-deep);
  outline-offset: 2px;
}
.hero {
  max-width: 1220px;
  margin: 0 auto;
  padding: 70px 32px 40px;
  position: relative;
  text-align: center;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  z-index: 0;
  opacity: 0.55;
}
.blob1 {
  width: 340px;
  height: 340px;
  background: var(--lime);
  top: -60px;
  left: -80px;
  filter: blur(60px);
}
.blob2 {
  width: 380px;
  height: 380px;
  background: var(--coral);
  top: -20px;
  right: -100px;
  filter: blur(70px);
  opacity: 0.4;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 40px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 3px 3px 0 var(--ink);
  margin-bottom: 28px;
}
.pill .emoji {
  font-size: 15px;
}
.hero h1 {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  max-width: 820px;
  margin: 0 auto;
}
.hero h1 .hl {
  color: var(--violet);
}
.hero h1 .hl2 {
  background: var(--lime);
  padding: 0 8px;
  border-radius: 8px;
  display: inline-block;
  transform: rotate(-1deg);
}
.hero p.sub {
  max-width: 480px;
  margin: 24px auto 0;
  font-size: 17px;
  color: var(--muted);
  font-weight: 500;
}
.hero-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 34px;
}
.hero-cta-row .btn {
  padding: 15px 26px;
  font-size: 15px;
}
.reg-float {
  max-width: 480px;
  margin: 56px auto 0;
  position: relative;
  z-index: 2;
}
.reg-card {
  background: var(--panel);
  border: 2px solid var(--ink);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 8px 8px 0 var(--ink);
  text-align: left;
}
.reg-card h3 {
  font-family: "Unbounded", sans-serif;
  font-size: 19px;
  margin-bottom: 6px;
}
.reg-card p.reg-sub {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 20px;
  font-weight: 500;
}
.demo-note {
  margin-top: 14px;
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  font-weight: 500;
}
.streak-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--sun);
  border: 2px solid var(--ink);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(8deg);
  box-shadow: 3px 3px 0 var(--ink);
}
.streak-badge b {
  font-family: "Unbounded", sans-serif;
  font-size: 16px;
  line-height: 1;
}
.streak-badge span {
  font-size: 8px;
  font-weight: 700;
}
.trust-row {
  display: flex;
  justify-content: center;
  gap: 46px;
  margin-top: 60px;
  flex-wrap: wrap;
}
.trust-row div {
  text-align: center;
}
.trust-row b {
  display: block;
  font-family: "Unbounded", sans-serif;
  font-size: 24px;
}
.trust-row span {
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 600;
}
section {
  max-width: 1220px;
  margin: 0 auto;
  padding: 100px 32px;
}
.section-head {
  max-width: 640px;
  margin: 0 auto 50px;
  text-align: center;
}
.kicker {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.section-head h2 {
  font-family: "Unbounded", sans-serif;
  font-size: 34px;
  line-height: 1.2;
}
.section-head h2 .hl {
  color: var(--violet);
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.about-card {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: 26px;
  transition: transform 0.18s;
}
.about-card:nth-child(1) {
  transform: rotate(-1.5deg);
}
.about-card:nth-child(3) {
  transform: rotate(1.5deg);
}
.about-card:hover {
  transform: translateY(-6px) rotate(0deg) !important;
}
.about-card .ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.about-card:nth-child(1) .ico {
  background: var(--lime);
}
.about-card:nth-child(2) .ico {
  background: #ffd8e0;
}
.about-card:nth-child(3) .ico {
  background: #dcd4ff;
}
.about-card h3 {
  font-family: "Unbounded", sans-serif;
  font-size: 16px;
  margin-bottom: 8px;
}
.about-card p {
  font-size: 13.5px;
  color: var(--muted);
}
.markets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.coin-card {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 16px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.coin-card .sym {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 15px;
}
.coin-card .name {
  font-size: 11.5px;
  color: var(--muted);
  margin-bottom: 14px;
}
.coin-card .price {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-size: 18px;
}
.coin-card .chg {
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
  font-weight: 700;
  margin-top: 2px;
}
.chg.up {
  color: #1fa971;
}
.chg.down {
  color: var(--coral);
}
.leaderboard {
  background: var(--ink);
  border-radius: 26px;
  padding: 44px;
  color: #fff;
}
.leaderboard .lb-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.leaderboard h2 {
  color: #fff;
}
.leaderboard h2 .hl {
  color: var(--lime);
}
.lb-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 14px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.04);
}
.lb-row.gold {
  background: linear-gradient(
    90deg,
    rgba(198, 255, 61, 0.16),
    rgba(198, 255, 61, 0.02)
  );
  border: 1px solid rgba(198, 255, 61, 0.4);
}
.lb-rank {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 16px;
  width: 30px;
  color: var(--muted);
}
.lb-row.gold .lb-rank {
  color: var(--lime);
}
.lb-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--ink);
}
.lb-name {
  flex: 1;
  font-weight: 600;
  font-size: 14.5px;
}
.lb-name span {
  display: block;
  font-size: 11.5px;
  color: #9791b5;
  font-weight: 400;
}
.lb-return {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  color: var(--lime);
  font-size: 14.5px;
}
.lb-note {
  text-align: center;
  margin-top: 22px;
  font-size: 12.5px;
  color: #9791b5;
}
.calc-panel {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 22px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.calc-field {
  margin-bottom: 20px;
}
.calc-field-head {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  margin-bottom: 8px;
  font-weight: 600;
}
.calc-field-head .v {
  font-family: "JetBrains Mono", monospace;
  color: var(--violet-deep);
  font-weight: 700;
}
input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 4px;
  background: var(--line);
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--violet);
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--ink);
}
.calc-result {
  background: linear-gradient(160deg, #efe9ff, #fff);
  border: 2px solid var(--ink);
  border-radius: 16px;
  padding: 24px;
}
.calc-result .label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}
.calc-result .big {
  font-family: "Unbounded", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--violet-deep);
  margin: 8px 0 16px;
}
.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 80px;
}
.bar-chart .bar {
  flex: 1;
  background: linear-gradient(180deg, var(--lime), var(--violet));
  border-radius: 5px 5px 0 0;
  min-height: 6%;
}
.stats-strip {
  display: flex;
  justify-content: space-between;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 20px;
  padding: 36px;
  flex-wrap: wrap;
  gap: 20px;
}
.stat {
  text-align: center;
  flex: 1;
  min-width: 120px;
}
.stat b {
  display: block;
  font-family: "Unbounded", sans-serif;
  font-size: 30px;
  color: var(--violet-deep);
}
.stat span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.chat-bubble {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 18px;
  border-bottom-left-radius: 4px;
  padding: 20px;
}
.chat-bubble p {
  font-size: 14px;
  line-height: 1.55;
}
.chat-person {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
}
.chat-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--sun));
}
.chat-name {
  font-size: 12.5px;
  font-weight: 700;
}
.chat-handle {
  font-size: 11px;
  color: var(--muted);
}
.final-cta {
  text-align: center;
  background: linear-gradient(160deg, #efe9ff, var(--bg));
  border-radius: 30px;
}
.final-cta h2 {
  font-family: "Unbounded", sans-serif;
  font-size: 38px;
  max-width: 600px;
  margin: 0 auto 16px;
}
.final-cta h2 .hl {
  color: var(--violet);
}
.final-cta p {
  color: var(--muted);
  max-width: 440px;
  margin: 0 auto 28px;
}
footer {
  border-top: 2px solid var(--ink);
  padding: 50px 32px 30px;
}
.footer-inner {
  max-width: 1220px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 36px;
}
.footer-cols {
  display: flex;
  gap: 56px;
}
.footer-col h4 {
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 10px;
  font-weight: 500;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 12px;
}
.disclaimer {
  max-width: 1220px;
  margin: 20px auto 0;
  padding: 0 32px;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
}
@media (max-width: 980px) {
  .hero h1 {
    font-size: 40px;
  }
  .about-grid,
  .markets-grid,
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .calc-panel {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .stats-strip {
    flex-direction: column;
  }
}
