@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@400;500;600;700;800&display=swap");

:root {
  --color-acid: #caff00;
  --color-void: #0a0a0f;
  --color-deep: #f4f7fb;
  --color-surface: #ffffff;
  --color-purple: #7b4dff;
  --color-pink: #ff2d78;
  --color-teal: #00ffc2;
  --color-white: #10131a;
  --color-muted: rgba(16, 19, 26, 0.64);
  --color-border: rgba(16, 19, 26, 0.1);
  --font-display: "Sora", sans-serif;
  --font-body: "Manrope", sans-serif;
  --container-max: 1280px;
  --container-pad: clamp(1rem, 5vw, 3rem);
  --nav-height: 72px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-pill: 9999px;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --dur-fast: 150ms;
  --dur-mid: 300ms;
  --dur-slow: 600ms;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow-card: 0 18px 48px rgba(17, 24, 39, 0.08), 0 4px 18px rgba(17, 24, 39, 0.05);
  --shadow-acid: 0 0 40px rgba(202, 255, 0, 0.25), 0 0 80px rgba(202, 255, 0, 0.1);
  --shadow-purple: 0 0 40px rgba(123, 77, 255, 0.35), 0 0 80px rgba(123, 77, 255, 0.15);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: #ffffff;
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  scrollbar-gutter: stable;
}

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

button {
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

ul {
  list-style: none;
}

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

:focus-visible {
  outline: 2px solid var(--color-acid);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.container--bleed {
  padding-right: 0;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  background: var(--color-acid);
  color: var(--color-void);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  transform: translateY(-200%);
  transition: transform var(--dur-mid) var(--ease-out-expo);
}

.skip-link:focus {
  transform: translateY(0);
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 400;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--dur-mid) ease, backdrop-filter var(--dur-mid) ease, box-shadow var(--dur-mid) ease;
}

.nav--scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--color-border), 0 10px 30px rgba(17, 24, 39, 0.08);
}

.nav__inner,
.nav__cta,
.nav__logo {
  display: flex;
  align-items: center;
}

.nav__inner {
  width: 100%;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  gap: 0.75rem;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.nav__logo--wordmark {
  gap: 0;
}

.nav__logo-mark {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  background: var(--color-acid);
  color: var(--color-void);
}

.nav__logo-image {
  width: 164px;
  height: auto;
}

.nav__logo-image--footer {
  width: 188px;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.nav__link {
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  color: var(--color-muted);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--dur-fast) ease, background var(--dur-fast) ease;
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-white);
  background: rgba(16, 19, 26, 0.06);
}

.nav__link--active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: var(--color-acid);
}

.nav__cta {
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav__burger {
  min-width: 44px;
  min-height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
}

.nav__burger span {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-white);
  transition: transform var(--dur-mid) var(--ease-out-expo), opacity var(--dur-fast) ease;
}

.nav__burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__burger.is-open span:nth-child(2) {
  opacity: 0;
}

.nav__burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__mobile-menu {
  position: fixed;
  inset: var(--nav-height) 0 0 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem var(--container-pad);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-out-expo);
}

.nav__mobile-menu.is-open {
  transform: translateX(0);
}

.nav__mobile-link {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-muted);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.nav__mobile-link--active,
.nav__mobile-link:hover {
  color: var(--color-acid);
}

.nav__mobile-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn {
  position: relative;
  overflow: hidden;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: transform var(--dur-fast) var(--ease-spring), box-shadow var(--dur-fast) ease,
    background var(--dur-fast) ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(255, 255, 255, 0.1);
  transition: opacity var(--dur-fast) ease;
}

.btn:hover::before {
  opacity: 1;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--color-acid);
  color: var(--color-void);
}

.btn--primary:hover {
  box-shadow: var(--shadow-acid);
}

.btn--ghost {
  border: 1px solid var(--color-border);
  background: transparent;
}

.btn--sm {
  min-height: 36px;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.btn--lg {
  min-height: 52px;
  padding: 1rem 2rem;
  font-size: 1rem;
}

.hero,
.section,
.cta-section {
  position: relative;
}

.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 50% at 60% 40%, rgba(123, 77, 255, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 90%, rgba(202, 255, 0, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 90% 10%, rgba(255, 45, 120, 0.08) 0%, transparent 50%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(16, 19, 26, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 19, 26, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero__inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  padding-block: 4rem;
}

.hero__content {
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(202, 255, 0, 0.3);
  border-radius: var(--radius-pill);
  background: rgba(202, 255, 0, 0.06);
  color: var(--color-acid);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__badge-dot,
.toast__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-acid);
}

.hero__title,
.section__title,
.cta-section__title {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero__title {
  margin-bottom: 1.5rem;
  font-size: clamp(2.75rem, 8vw, 5rem);
  font-weight: 900;
}

.hero__title-line--acid {
  color: var(--color-acid);
}

.hero__title-line--muted {
  color: transparent;
  -webkit-text-stroke: 1px rgba(16, 19, 26, 0.22);
}

.hero__subtitle {
  max-width: 520px;
  margin: 0 auto 2.5rem;
  color: var(--color-muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.hero__actions,
.cta-section__actions,
.download-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__phones {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(-2rem, -1vw, 0px);
}

.phone {
  width: clamp(150px, 25vw, 210px);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 36px;
  background: var(--color-deep);
  box-shadow: var(--shadow-card);
}

.phone--main {
  z-index: 10;
  transform: scale(1.05);
  border-color: rgba(123, 77, 255, 0.4);
  box-shadow: var(--shadow-purple), var(--shadow-card);
}

.phone--left {
  transform: rotate(-5deg) translateX(15px);
  opacity: 0.8;
}

.phone--right {
  transform: rotate(5deg) translateX(-15px);
  opacity: 0.8;
}

.phone__screen {
  aspect-ratio: 9 / 19;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.phone__notch {
  width: 40%;
  height: 24px;
  margin: 0 auto;
  border-radius: 0 0 14px 14px;
  background: var(--color-void);
}

.phone-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.75rem;
  font-size: 9px;
}

.phone-screen--onboard {
  align-items: center;
  text-align: center;
  background: #f8f8f5;
  color: var(--color-void);
}

.phone-screen__logo {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
}

.phone-screen__logo-mark {
  width: 14px;
  height: 14px;
  display: grid;
  place-items: center;
  border-radius: 3px;
  background: var(--color-void);
}

.phone-screen__logo-mark--light {
  background: #ffffff;
}

.phone-screen__logo--light {
  color: #ffffff;
}

.phone-illus {
  width: 80px;
  height: 80px;
  position: relative;
  margin: 0 auto;
}

.phone-illus__cube,
.phone-illus__card {
  position: absolute;
  border-radius: 8px;
}

.phone-illus__cube {
  left: 50%;
  bottom: 0;
  width: 60px;
  height: 55px;
  background: linear-gradient(135deg, #ff2d78, #caff00);
  transform: translateX(-50%) rotate(-15deg);
}

.phone-illus__card {
  top: 0;
  right: 0;
  width: 55px;
  height: 38px;
  background: var(--color-purple);
  transform: rotate(10deg);
}

.phone-screen__title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.3;
}

.phone-screen__btn-stack {
  margin-top: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.phone-screen__btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--color-void);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 8px;
  font-weight: 700;
}

.phone-screen__btn--outline {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: var(--color-void);
}

.phone-screen__btn-icon {
  width: 14px;
  height: 14px;
  display: grid;
  place-items: center;
  border-radius: 3px;
  background: var(--color-acid);
}

.phone-screen--wallet {
  background: var(--color-void);
  color: #ffffff;
}

.wallet-header,
.wallet-assets,
.wallet-row,
.wallet-row__info,
.phone-nav,
.discover__caps,
.discover__cats {
  display: flex;
}

.wallet-header,
.wallet-row,
.token-card__header,
.footer__bottom {
  justify-content: space-between;
  align-items: center;
}

.wallet-card {
  position: relative;
  overflow: hidden;
  padding: 10px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7b4dff 0%, #caff00 100%);
}

.wallet-card__dot {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 45, 120, 0.9);
}

.wallet-card__amount {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  color: var(--color-void);
}

.wallet-card__label,
.wallet-network-label,
.wallet-row__name,
.wallet-row__val,
.discover__title,
.discover__banner-title,
.discover__cap-value {
  font-weight: 700;
}

.wallet-card__label,
.wallet-network-label,
.wallet-row__addr,
.wallet-asset__label,
.discover__cap-label {
  font-size: 7px;
}

.wallet-card__currency,
.discover__banner-eyebrow,
.discover__cap-change--up,
.discover__cap-change--down {
  font-size: 6px;
}

.wallet-card__currency {
  color: rgba(0, 0, 0, 0.55);
}

.wallet-assets {
  justify-content: space-around;
  gap: 6px;
}

.wallet-asset {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.wallet-asset__icon,
.wallet-row__avatar {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.wallet-asset__icon--add {
  background: #e8e8e8;
  color: #333;
}

.wallet-asset__icon--eth,
.wallet-row__avatar--eth,
.token-icon--eth {
  background: #627eea;
  color: #fff;
}

.wallet-asset__icon--bnb,
.token-icon--bnb {
  background: #f3ba2f;
  color: #000;
}

.wallet-asset__icon--usdt {
  background: #26a17b;
  color: #fff;
}

.wallet-row {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wallet-row__info {
  gap: 6px;
  align-items: center;
}

.wallet-row__avatar--square {
  border-radius: 4px;
  background: #333;
}

.wallet-row__avatar--dai {
  background: #f5ac37;
}

.phone-nav {
  justify-content: space-around;
  align-items: center;
  margin-top: auto;
  padding: 8px;
  border-radius: 12px;
  background: var(--color-purple);
}

.phone-nav__item {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  opacity: 0.6;
}

.phone-nav__item--active {
  opacity: 1;
}

.phone-nav__item--dim {
  color: rgba(255, 255, 255, 0.5);
}

.phone-screen--discover {
  background: #fff;
  color: #000;
}

.discover__title,
.discover__banner-title {
  font-family: var(--font-display);
}

.discover__banner {
  padding: 10px;
  border-radius: 10px;
  background: linear-gradient(135deg, #7b4dff, #caff00);
}

.discover__caps,
.discover__cats {
  gap: 4px;
}

.discover__cap-card {
  flex: 1;
  padding: 6px;
  border-radius: 6px;
  background: #111;
  color: #ffffff;
}

.discover__cap-change--up {
  color: var(--color-acid);
}

.discover__cap-change--down {
  color: var(--color-pink);
}

.discover__cat {
  flex: 1;
  text-align: center;
  font-size: 7px;
  color: #555;
}

.discover__cat-icon {
  margin-bottom: 2px;
  font-size: 14px;
}

.discover__nft-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}

.discover__nft-thumb {
  min-height: 40px;
  border-radius: 8px;
}

.discover__nft-thumb--pink {
  background: linear-gradient(135deg, #ffe5f5, #ffc8e8);
}

.discover__nft-thumb--acid {
  background: linear-gradient(135deg, #e8ffd4, #caff00);
}

.stats-bar {
  overflow: hidden;
  padding-block: 1rem;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}

.stats-bar__track {
  width: max-content;
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.stats-bar__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
}

.stats-bar__label,
.footer__links-title,
.section__eyebrow {
  color: var(--color-muted);
  font-size: 0.75rem;
}

.stats-bar__change--up,
.section__eyebrow {
  color: var(--color-acid);
}

.stats-bar__change--down,
.token-card__change--down {
  color: var(--color-pink);
}

.stats-bar__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-border);
}

.section,
.cta-section {
  padding-block: 6rem;
}

.section--alt,
.footer {
  background: var(--color-deep);
}

.section__header,
.cta-section__inner {
  max-width: 700px;
  margin: 0 auto 4rem;
  text-align: center;
}

.section__eyebrow,
.footer__links-title {
  display: inline-block;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section__title {
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 900;
}

.section__desc,
.cta-section__subtitle,
.footer__brand p {
  color: var(--color-muted);
  line-height: 1.7;
}

.section__desc,
.cta-section__subtitle {
  font-size: 1.25rem;
}

.features-grid,
.stats-grid,
.footer__inner {
  display: grid;
  gap: 1.5rem;
}

.features-grid {
  grid-template-columns: 1fr;
}

.feature-card,
.stat-item,
.token-card,
.download-badge,
.footer__portfolio-link {
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.feature-card,
.stat-item,
.token-card {
  transition: transform var(--dur-mid) var(--ease-out-expo), box-shadow var(--dur-mid) ease, border-color var(--dur-mid) ease;
}

.feature-card,
.stat-item {
  border-radius: var(--radius-xl);
  padding: 2rem;
}

.feature-card:hover,
.stat-item:hover,
.token-card:hover {
  transform: translateY(-4px);
}

.feature-card:hover {
  border-color: rgba(123, 77, 255, 0.4);
  box-shadow: var(--shadow-purple);
}

.feature-card--highlight {
  background: linear-gradient(135deg, rgba(123, 77, 255, 0.15) 0%, rgba(202, 255, 0, 0.05) 100%);
  border-color: rgba(123, 77, 255, 0.25);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-md);
  font-size: 24px;
}

.feature-card__icon--acid {
  background: rgba(202, 255, 0, 0.12);
}

.feature-card__icon--purple {
  background: rgba(123, 77, 255, 0.15);
}

.feature-card__icon--pink {
  background: rgba(255, 45, 120, 0.12);
}

.feature-card__icon--teal {
  background: rgba(0, 255, 194, 0.1);
}

.feature-card__title {
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.feature-card__desc,
.token-card__ticker,
.stat-item__label,
.footer__link,
.footer__bottom,
.download-badge__sub {
  color: var(--color-muted);
}

.feature-card__desc {
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.7;
}

.feature-card__tag,
.token-card__change {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
}

.feature-card__tag,
.token-card__change--up {
  background: rgba(202, 255, 0, 0.12);
  color: var(--color-acid);
}

.stats-grid {
  grid-template-columns: repeat(2, 1fr);
}

.stat-item__number,
.token-card__price {
  font-family: var(--font-display);
  font-weight: 900;
}

.stat-item__number {
  margin-bottom: 0.5rem;
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1;
  background: linear-gradient(135deg, var(--color-acid), var(--color-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tokens-section {
  overflow: hidden;
}

.token-scroll-container {
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.token-scroll-container::-webkit-scrollbar {
  display: none;
}

.token-scroll-track {
  width: max-content;
  display: flex;
  gap: 1rem;
  padding: 0.5rem;
}

.token-card {
  width: 220px;
  flex-shrink: 0;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  scroll-snap-align: start;
}

.token-card__name {
  margin-bottom: 2px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

.token-card__icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 800;
}

.token-icon--btc {
  background: #f7931a;
  color: #fff;
}

.token-icon--sol {
  background: linear-gradient(135deg, #9945ff, #14f195);
  color: #fff;
}

.token-card__price {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.sparkline {
  height: 40px;
  margin-top: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(202, 255, 0, 0.2), rgba(202, 255, 0, 0.02));
}

.sparkline--down {
  background: linear-gradient(90deg, rgba(255, 45, 120, 0.2), rgba(255, 45, 120, 0.02));
}

.sparkline--gold {
  background: linear-gradient(90deg, rgba(243, 186, 47, 0.2), rgba(243, 186, 47, 0.02));
}

.cta-section {
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(123, 77, 255, 0.2) 0%, transparent 70%);
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

.cta-section__title {
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 900;
}

.download-badges {
  margin-top: 1.5rem;
}

.download-badge {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
}

.download-badge__icon {
  font-size: 22px;
}

.download-badge__text {
  display: inline-flex;
  flex-direction: column;
  text-align: left;
}

.download-badge__name {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
}

.footer {
  padding-block: 3rem;
  border-top: 1px solid var(--color-border);
}

.footer__inner {
  grid-template-columns: 1fr;
}

.footer__brand p {
  max-width: 280px;
  margin-top: 1rem;
  font-size: 0.875rem;
}

.footer__links-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__link {
  min-height: 44px;
  display: flex;
  align-items: center;
  font-size: 0.875rem;
}

.footer__link--inline {
  display: inline;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.75rem;
}

.u-hidden {
  display: none;
}

.scroll-top,
.toast {
  position: fixed;
  box-shadow: var(--shadow-card);
}

.scroll-top {
  right: 2rem;
  bottom: 2rem;
  z-index: 100;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-acid);
  color: var(--color-void);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity var(--dur-mid) ease, transform var(--dur-mid) var(--ease-out-expo);
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.toast {
  left: 50%;
  bottom: 2rem;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  white-space: nowrap;
  transform: translateX(-50%) translateY(100px);
  transition: transform var(--dur-slow) var(--ease-out-expo);
}

.toast.is-visible {
  transform: translateX(-50%) translateY(0);
}

.glow-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.glow-orb--purple {
  background: rgba(123, 77, 255, 0.3);
}

.glow-orb--acid {
  background: rgba(202, 255, 0, 0.2);
}

.glow-orb--hero-purple {
  top: 10%;
  right: -100px;
  width: 500px;
  height: 500px;
}

.glow-orb--hero-acid {
  left: -50px;
  bottom: 20%;
  width: 300px;
  height: 300px;
}

.glow-orb--tokens-center {
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  transform: translate(-50%, -50%);
}

.float-anim {
  animation: float 4s ease-in-out infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .stats-bar__track {
    animation: none;
  }
}

@media (min-width: 600px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .nav__links {
    display: flex;
  }

  .nav__burger {
    display: none;
  }

  .hero__inner {
    grid-template-columns: 1fr 1fr;
  }

  .hero__content {
    text-align: left;
  }

  .hero__subtitle {
    margin-inline: 0;
  }

  .hero__actions {
    justify-content: flex-start;
  }

  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer__inner {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

@media (max-width: 899px) {
  .nav__logo-image {
    width: 140px;
  }

  .phone--left,
  .phone--right {
    display: none;
  }
}

@media (max-width: 599px) {
  .hero__actions,
  .cta-section__actions,
  .download-badges {
    flex-direction: column;
  }

  .btn--lg,
  .download-badge {
    width: 100%;
  }

  .toast {
    max-width: calc(100vw - 2rem);
    white-space: normal;
  }
}
