/* ────────────────────────────────────────────────────
   CSS RESET & BASE
──────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:          #0d0d14;
  --bg-card:     #13131e;
  --bg-card-2:   #1a1a28;
  --border:      #1e1e30;
  --border-2:    #252538;
  --text:        #ffffff;
  --text-muted:  #8b8ba8;
  --text-subtle: #5a5a7a;
  --accent:      #4b6ef5;
  --accent-hover:#3a5de4;
  --green:       #00d395;
  --green-dim:   rgba(0, 211, 149, 0.12);
  --highlight:   rgba(75, 110, 245, 0.08);
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --font:        'Inter', -apple-system, sans-serif;
  --max-w:       1040px;
}

html {
  scroll-behavior: smooth;
}

html,
body,
button,
input,
select,
textarea {
  font-family: 'Inter', -apple-system, sans-serif;
}

body {
  background: #000000;
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  z-index: 0;
}

body::before { left: 10vw; }
body::after { left: 90vw; }

main,
.navbar,
.footer {
  position: relative;
  z-index: 1;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; }
input[type="number"] { -moz-appearance: textfield; }

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

/* ────────────────────────────────────────────────────
   BUTTONS
──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  transition: background 0.15s, color 0.15s, border-color 0.15s, opacity 0.15s;
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
}
.btn--primary:hover { background: var(--accent-hover); }

.stats__cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  margin-left: 2px;
}

.btn--ghost {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 999px;
  color: var(--text-muted);
}
.btn--ghost:hover {
  color: var(--text);
  background: #151515;
  border-color: #2a2a2a;
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--border-2);
  color: var(--text-muted);
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 100px;
}
.btn--outline:hover {
  border-color: var(--accent);
  color: var(--text);
}

.btn--full { width: 100%; }

/* ────────────────────────────────────────────────────
   DROPDOWN
──────────────────────────────────────────────────── */
.dropdown {
  position: relative;
}

.dropdown__trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 999px;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}
.dropdown__trigger:hover {
  color: var(--text);
  background: #171b2c;
  border-color: rgba(73, 84, 122, 0.85);
}

.dropdown__arrow {
  width: 10px;
  height: 10px;
  color: var(--text-subtle);
  transition: transform 0.2s;
}

.dropdown--open .dropdown__arrow {
  transform: rotate(180deg);
}

.dropdown__menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 6px;
  min-width: 140px;
  z-index: 200;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.dropdown--open .dropdown__menu {
  display: block;
}

.dropdown__item {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 13px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: left;
  transition: background 0.12s, color 0.12s;
}
.dropdown__item:hover { background: var(--bg-card-2); color: var(--text); }
.dropdown__item--selected { color: var(--text); }

.dropdown__check {
  margin-left: auto;
  font-size: 11px;
  color: #a9b8e6;
}

.dropdown__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dropdown__dot--blue   { background: var(--accent); }
.dropdown__dot--yellow { background: #f5c842; }
.dropdown__dot--purple { background: #9b59f5; }

/* ────────────────────────────────────────────────────
   NAVBAR
──────────────────────────────────────────────────── */
.navbar {
  position: relative;
  z-index: 100;
  background: transparent;
  border-bottom: none;
}

.navbar__inner {
  width: min(var(--max-w), 80vw);
  max-width: var(--max-w);
  margin: 4px auto 0;
  padding: 0 0;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.navbar__logo-mark {
  display: block;
  width: 119px;
  height: auto;
}
.navbar__logo-icon {
  width: 18px;
  height: 18px;
}
.navbar__logo-text {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: #2f62ff;
  line-height: 1;
}

/* Nav links */
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.navbar__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 18px;
  border-radius: 999px;
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}
.navbar__link:hover {
  color: var(--text);
  background: #151515;
  border-color: #2a2a2a;
}
.navbar__link--active { color: var(--text); }

/* Right controls */
.navbar__controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.navbar__controls .btn {
  font-size: 13px;
  padding: 8px 12px;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: relative;
  margin-left: auto;
}

.mobile-menu__trigger {
  width: 40px;
  height: 40px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 10px;
  cursor: pointer;
}

.mobile-menu__line {
  width: 16px;
  height: 1.5px;
  background: #c8d0e4;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu__panel {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: min(88vw, 320px);
  background: rgba(10, 10, 18, 0.96);
  border: 1px solid #222339;
  border-radius: 14px;
  padding: 14px;
  z-index: 300;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
}

.mobile-menu--open .mobile-menu__panel {
  display: block;
}

.mobile-menu--open .mobile-menu__line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.mobile-menu--open .mobile-menu__line:nth-child(2) {
  opacity: 0;
}

.mobile-menu--open .mobile-menu__line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.mobile-menu__link {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid #222339;
  border-radius: 10px;
  background: #111224;
  padding: 10px 12px;
  transition: color 0.15s, border-color 0.15s;
}

.mobile-menu__link:hover,
.mobile-menu__link--active {
  color: var(--text);
  border-color: rgba(75, 110, 245, 0.55);
}

.mobile-menu__controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mobile-menu__controls .dropdown {
  width: 100%;
}

.mobile-menu__controls .dropdown__trigger,
.mobile-menu__controls .btn {
  width: 100%;
  justify-content: center;
}

.mobile-menu__controls .dropdown__menu {
  right: auto;
  left: 0;
  width: 100%;
}

/* ────────────────────────────────────────────────────
   HERO
──────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: visible;
  padding: 72px 0 124px;
  text-align: center;
  display: flex;
  justify-content: center;
}

/* Radial glow blobs */
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  pointer-events: none;
  opacity: 0.56;
}
.hero__glow--left {
  width: 540px;
  height: 460px;
  background: radial-gradient(ellipse 100% 86% at 45% 42%, rgba(73, 108, 255, 0.7) 0%, rgba(73, 108, 255, 0.38) 28%, rgba(73, 108, 255, 0.14) 54%, transparent 78%);
  top: 108px;
  left: calc(50% - 368px);
}
.hero__glow--right {
  width: 600px;
  height: 520px;
  background: radial-gradient(ellipse 96% 92% at 54% 44%, rgba(0, 211, 149, 0.64) 0%, rgba(0, 211, 149, 0.34) 30%, rgba(0, 211, 149, 0.12) 58%, transparent 80%);
  top: 132px;
  left: calc(50% + 24px);
}

.hero__content {
  position: relative;
  width: min(var(--max-w), 80vw);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}



.hero__headline {
  font-size: clamp(56px, 6.2vw, 98px);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1;
  text-transform: uppercase;
  position: relative;
  z-index: 5;
  white-space: nowrap;
}
.hero__headline--accent {
  color: #ffffff;
}

/* Swap card */
.swap-card {
  position: relative;
  background-color: #000000;
  background-image: none;
  border: 1px solid #171717;
  border-radius: 12px;
  padding: 12px;
  width: 100%;
  max-width: 360px;
  text-align: left;
  box-shadow:
    0 20px 56px rgba(73, 108, 255, 0.28),
    0 32px 104px rgba(0, 211, 149, 0.2),
    0 15px 34px rgba(0, 0, 0, 0.55);
  z-index: 1;
  opacity: 1;
}

.swap-card::before {
  content: none;
}

.swap-card::after {
  content: none;
}

.swap-card__label {
  grid-column: 1 / -1;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-subtle);
  text-transform: none;
  letter-spacing: 0.02em;
  margin-bottom: 0;
}

.swap-card__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  background: #000000;
  border: 1px solid #1a1a1a;
  border-radius: 10px;
  padding: 8px 12px 10px;
  row-gap: 3px;
  column-gap: 8px;
}

.swap-card__input {
  grid-column: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font);
  font-size: 44px;
  font-weight: 600;
  color: var(--text);
  min-width: 0;
}
.swap-card__input::placeholder { color: var(--text-subtle); }

.swap-card__token {
  display: flex;
  grid-column: 2;
  grid-row: 2;
  align-items: center;
  gap: 7px;
  background: var(--bg-card);
  border: 1px solid #252538;
  border-radius: 100px;
  padding: 8px 12px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
  flex-shrink: 0;
}
.swap-card__token:hover { background: var(--border-2); }
.swap-card__token--select {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.swap-card__token--select:hover { background: var(--accent-hover); border-color: var(--accent-hover); }

.swap-card__token-arrow {
  width: 12px;
  height: 12px;
  color: currentColor;
  opacity: 0.7;
}

.token-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.token-dot--eth { background: var(--accent); }

/* Switch button */
.swap-card__divider {
  display: flex;
  justify-content: center;
  margin: -14px 0 -14px 0;
  position: relative;
  z-index: 10;
}

.swap-card__switch {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  border: 2px solid #1a1a1a;
  border-radius: 50%;
  cursor: pointer;
  color: var(--text-muted);
  transition: background 0.15s, color 0.15s;
}
.swap-card__switch:hover { background: var(--border-2); color: var(--text); }
.swap-card__switch svg { width: 14px; height: 14px; }

.swap-card__cta {
  margin-top: 12px;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
}

.hero__subtext {
  margin-top: 4px;
  font-size: 20px;
  font-weight: 500;
  color: #c8d0e4;
  max-width: 640px;
  line-height: 1.45;
  letter-spacing: 0.01em;
  text-wrap: balance;
}
.hero__link {
  color: #00d395;
  font-weight: 700;
  text-decoration: none;
}

/* ────────────────────────────────────────────────────
   STATISTICS
──────────────────────────────────────────────────── */
.stats {
  padding: 120px 0 150px;
}

.stats__inner {
  width: min(var(--max-w), 80vw);
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  align-items: flex-start;
  gap: clamp(28px, 4vw, 56px);
}

/* Copy */
.stats__copy {
  width: 100%;
  min-width: 0;
}

.stats__heading,
.faq__heading {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.2px;
  text-transform: uppercase;
  line-height: 1;
}

.stats__heading {
  margin-bottom: 10px;
}

.stats__body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 14px;
  max-width: 380px;
}

/* Panel */
.stats__panel {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.stats__panel-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  font-size: 20px;
  font-weight: 500;
  color: #c8d0e4;
  border-bottom: 1px solid var(--border);
  line-height: 1.45;
  letter-spacing: 0.01em;
  text-transform: capitalize;
}

.stats__live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.stats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.stats__cell {
  padding: 30px 24px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats__cell:nth-child(2),
.stats__cell:nth-child(4) { border-right: none; }
.stats__cell:nth-child(3),
.stats__cell:nth-child(4) { border-bottom: none; }

.stats__cell--highlight {
  background: var(--green-dim);
}

.stats__cell--highlight .stats__cell-label {
  color: var(--green);
}

.stats__cell-label {
  font-size: 16px;
  color: #c8d0e4;
  margin-bottom: 18px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-transform: capitalize;
}

.stats__cell-value {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: var(--text);
}
.stats__cell-value--green { color: var(--green); }

/* ────────────────────────────────────────────────────
   FAQ
──────────────────────────────────────────────────── */
.faq {
  padding: 96px 0 182px;
}

.faq__inner {
  width: min(var(--max-w), 80vw);
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(52px, 6vw, 96px);
  align-items: flex-start;
}

.faq__heading-wrap {
  width: 100%;
  position: sticky;
  top: 76px;
}

.faq__heading {
  margin-top: 2px;
}

.faq__list {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__item:first-child { border-top: 1px solid var(--border); }

.faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 22px;
  font-weight: 500;
  padding: 18px 0;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.15s;
}
.faq__trigger:hover { color: var(--text); }

.faq__trigger span:first-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.faq__item--open .faq__trigger { color: var(--text); }

.faq__icon {
  font-size: 28px;
  font-weight: 300;
  color: var(--text-muted);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s;
}

.faq__body {
  display: none;
  padding-bottom: 18px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 100%;
  overflow-wrap: anywhere;
  padding-right: 6px;
}
.faq__item--open .faq__body { display: block; }

.faq__show-more {
  display: inline-block;
  margin-top: 16px;
  background: transparent;
  border: none;
  color: var(--green);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.15s;
}
.faq__show-more:hover { opacity: 0.75; }

/* ────────────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────────────── */
.footer {
  border-top: none;
  background: #12151c;
  padding: 56px 0 28px;
}

.footer__inner {
  width: min(var(--max-w), 80vw);
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer__top {
  display: flex;
  gap: 72px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.footer__brand {
  flex: 0 0 260px;
}

.footer__logo {
  margin-bottom: 16px;
  display: inline-flex;
}

.footer__logo .navbar__logo-mark {
  width: 106px;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.footer__social-link {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-subtle);
  transition: color 0.15s;
}
.footer__social-link:hover { color: var(--text); }
.footer__social-link svg { width: 16px; height: 16px; }

.footer__columns {
  flex: 1;
  display: flex;
  gap: 52px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-subtle);
  text-transform: uppercase;
  margin-bottom: 3px;
}

.footer__col-link {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.15s;
}
.footer__col-link:hover { color: var(--text); }

.footer__bottom {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 8px;
  border-top: none;
  width: 260px;
}

.footer__legal {
  font-size: 12px;
  color: var(--text-subtle);
}
.footer__legal a { color: inherit; transition: color 0.15s; }
.footer__legal a:hover { color: var(--text-muted); }

/* ────────────────────────────────────────────────────
   RESPONSIVE: TABLET (max-width: 1024px)
──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__glow--left {
    width: 380px;
    height: 320px;
    left: calc(50% - 320px);
  }

  .hero__glow--right {
    width: 420px;
    height: 360px;
    left: calc(50% - 60px);
  }

  .stats__inner {
    gap: clamp(20px, 3vw, 40px);
  }

  .stats__heading,
  .faq__heading {
    font-size: 44px;
  }

  .hero__subtext {
    font-size: 16px;
  }

  .stats__panel-header {
    font-size: 16px;
  }

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

  .stats__cell {
    padding: 20px 16px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .stats__cell:nth-child(4) { border-bottom: none; }

  .faq__trigger {
    font-size: 18px;
    padding: 14px 0;
  }
}

/* ────────────────────────────────────────────────────
   RESPONSIVE: MOBILE (max-width: 768px)
──────────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --max-w: 100%;
  }

  body::before,
  body::after {
    display: none;
  }

  /* Navbar */
  .navbar__inner {
    width: 100%;
    max-width: 100%;
    margin: 4px auto 0;
    padding: 0 16px;
    height: 60px;
    gap: 12px;
  }

  .navbar__logo-mark {
    width: 90px;
  }

  .navbar__nav {
    display: none;
    flex: 1;
    gap: 4px;
  }

  .mobile-menu {
    display: block;
  }

  .navbar__link {
    font-size: 12px;
    padding: 6px 12px;
  }

  .navbar__controls {
    display: none;
  }

  .navbar__controls .btn {
    font-size: 12px;
    padding: 6px 10px;
  }

  .dropdown__trigger {
    font-size: 12px;
    padding: 6px 8px;
  }

  .mobile-menu__controls .dropdown__trigger,
  .mobile-menu__controls .btn {
    font-size: 12px;
    padding: 8px 10px;
  }

  /* Hero */
  .hero {
    padding: 48px 0 80px;
  }

  .hero__glow {
    opacity: 0.35;
  }

  .hero__glow--left {
    width: 280px;
    height: 240px;
    top: 80px;
    left: calc(50% - 280px);
  }

  .hero__glow--right {
    width: 300px;
    height: 260px;
    top: 100px;
    left: calc(50% - 40px);
  }

  .hero__content {
    width: 100%;
    padding: 0 16px;
    gap: 16px;
  }

  .hero__headline {
    font-size: 40px;
    letter-spacing: -0.8px;
    white-space: normal;
    text-wrap: balance;
  }

  .hero__subtext {
    font-size: 14px;
    max-width: 100%;
  }

  .swap-card {
    max-width: 100%;
    width: 100%;
    padding: 10px;
  }

  .swap-card__input {
    font-size: 32px;
  }

  .swap-card__row {
    padding: 8px 10px;
  }

  .swap-card__cta {
    margin-top: 10px;
    padding: 10px;
    font-size: 13px;
  }

  /* Stats */
  .stats {
    padding: 80px 16px 100px;
  }

  .stats__inner {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stats__heading {
    font-size: 32px;
  }

  .stats__body {
    font-size: 14px;
    max-width: 100%;
  }

  .stats__panel {
    width: 100%;
  }

  .stats__panel-header {
    font-size: 14px;
    padding: 12px 14px;
  }

  .stats__cell {
    padding: 16px 12px;
  }

  .stats__cell-label {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .stats__cell-value {
    font-size: 32px;
  }

  /* FAQ */
  .faq {
    padding: 80px 16px 120px;
  }

  .faq__inner {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: stretch;
  }

  .faq__heading-wrap {
    position: static;
  }

  .faq__heading {
    font-size: 32px;
    margin-bottom: 16px;
    line-height: 1.1;
  }

  .faq__trigger {
    font-size: 16px;
    padding: 12px 0;
  }

  .faq__icon {
    font-size: 24px;
  }

  .faq__body {
    font-size: 14px;
    padding-bottom: 12px;
  }

  /* Footer */
  .footer {
    padding: 40px 16px 24px;
  }

  .footer__inner {
    width: 100%;
    padding: 0;
  }

  .footer__top {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 24px;
  }

  .footer__brand {
    flex: 1;
  }

  .footer__logo .navbar__logo-mark {
    width: 90px;
  }

  .footer__columns {
    flex: 1;
    flex-direction: column;
    gap: 24px;
  }

  .footer__bottom {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer__legal {
    font-size: 11px;
  }
}

/* ────────────────────────────────────────────────────
   RESPONSIVE: SMALL MOBILE (max-width: 480px)
──────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .navbar__inner {
    height: 56px;
    padding: 0 12px;
  }

  .navbar__logo-mark {
    width: 75px;
  }

  .navbar__controls {
    gap: 4px;
  }

  .mobile-menu__trigger {
    width: 36px;
    height: 36px;
    gap: 4px;
  }

  .mobile-menu__line {
    width: 14px;
  }

  .mobile-menu__panel {
    width: min(92vw, 300px);
    padding: 12px;
  }

  .mobile-menu__controls {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 40px 0 60px;
  }

  .hero__glow--left {
    width: 200px;
    height: 170px;
    top: 60px;
    left: calc(50% - 200px);
  }

  .hero__glow--right {
    width: 220px;
    height: 190px;
    top: 80px;
    left: calc(50% - 30px);
  }

  .hero__content {
    padding: 0 12px;
    gap: 12px;
  }

  .hero__headline {
    font-size: 32px;
    letter-spacing: -0.6px;
  }

  .hero__subtext {
    font-size: 13px;
    line-height: 1.4;
  }

  .swap-card {
    padding: 8px;
  }

  .swap-card__input {
    font-size: 28px;
  }

  .swap-card__label {
    font-size: 10px;
  }

  .swap-card__row {
    padding: 7px 8px;
    border-radius: 8px;
  }

  .swap-card__token {
    font-size: 12px;
    padding: 6px 10px;
  }

  .swap-card__cta {
    margin-top: 8px;
    padding: 9px;
    font-size: 12px;
  }

  .stats {
    padding: 60px 12px 80px;
  }

  .stats__heading {
    font-size: 28px;
  }

  .stats__body {
    font-size: 13px;
  }

  .stats__panel-header {
    font-size: 13px;
    padding: 10px 12px;
  }

  .stats__cell {
    padding: 14px 10px;
  }

  .stats__cell-label {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .stats__cell-value {
    font-size: 28px;
  }

  .faq {
    padding: 60px 12px 80px;
  }

  .faq__heading {
    font-size: 28px;
  }

  .faq__trigger {
    font-size: 14px;
    padding: 10px 0;
  }

  .faq__icon {
    font-size: 20px;
  }

  .faq__body {
    font-size: 13px;
    padding-bottom: 10px;
  }

  .footer {
    padding: 32px 12px 20px;
  }

  .footer__top {
    gap: 24px;
    margin-bottom: 16px;
  }

  .footer__logo .navbar__logo-mark {
    width: 75px;
  }

  .footer__columns {
    gap: 18px;
  }

  .footer__col-title {
    font-size: 10px;
  }

  .footer__col-link {
    font-size: 13px;
  }

  .footer__legal {
    font-size: 10px;
  }
}

@media (min-width: 1700px) {
  :root {
    --max-w: 1220px;
  }

  body::before { left: 10vw; }
  body::after { left: 90vw; }

  .navbar__inner {
    height: 74px;
  }

  .navbar__link,
  .dropdown__trigger,
  .dropdown__item,
  .btn {
    font-size: 15px;
  }

  .hero__headline {
    font-size: 106px;
  }

  .swap-card {
    max-width: 510px;
    padding: 18px;
  }

  .swap-card__input {
    font-size: 68px;
  }

  .stats__copy {
    width: 100%;
  }

  .stats__panel {
    width: 100%;
  }

  .stats__heading,
  .faq__heading {
    font-size: 70px;
  }

  .faq__heading-wrap {
    width: 100%;
  }

  .faq__list {
    width: 100%;
  }

  .faq__inner {
    grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(64px, 6vw, 110px);
  }

  .faq__trigger {
    font-size: 26px;
  }

  .faq__body {
    font-size: 17px;
  }
}
