﻿:root {
  --header-height: 64px;
  --page-gutter: clamp(1.25rem, 3vw, 2.5rem);
  --color-bg: #F7F8FB;
  --color-card: #ffffff;
  --color-slate: #1f2933;
  --color-muted: #4b5563;
  --color-primary: #0048d7;
  --color-gradient: #0048d7;
  --color-brand-light: #7aa1ff;
  --color-accent: #efc65a;
  --color-border: #e0e4ef;
  --color-soft: #eef2ff;
  --color-tint: #ede8ff;
  --color-purple: #7c4dff;
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --shadow-soft: 0 20px 45px rgba(15, 23, 42, 0.15);
  --shadow-card: 0 10px 30px rgba(15, 23, 42, 0.12);
  --text-xs: 0.72rem;
  --text-sm: 0.85rem;
  --text-md: 1rem;
  --text-lg: 1.15rem;
  --text-xl: 1.4rem;
  --text-2xl: 1.85rem;
  --text-3xl: 2.4rem;
  --text-4xl: 3rem;
}

body.learn-article {
  scroll-padding-top: calc(var(--header-height, 72px) + 16px);
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--color-bg);
  color: var(--color-slate);
  font-size: var(--text-md);
  line-height: 1.6;
}

/* =========================================================
  ALLBLU HEADER (Top bar + Token strip only)
========================================================= */
.ab-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 248, 251, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: none;
}

.ab-header__top {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 10px var(--page-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-height);
  box-sizing: border-box;
}

.ab-header__start {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  flex: 1;
}

.ab-header__end {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
}

.ab-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 20px;
}

.ab-brand__mark {
  width: 26px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-gradient), var(--color-brand-light));
  position: relative;
}

.ab-brand__mark::after {
  content: "";
  position: absolute;
  right: -6px;
  top: -5px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--color-gradient);
  opacity: 0.75;
}

.ab-brand__name {
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
  font-size: 1.05rem;
}

.ab-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ab-header__nav {
  display: none;
  align-items: center;
  gap: 4px;
}

.ab-navitem {
  position: relative;
}

.ab-navlink {
  display: none;
  padding: 8px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: rgba(15, 23, 42, 0.72);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.2;
  white-space: nowrap;
}

.ab-navlink:hover {
  background: rgba(15, 23, 42, 0.05);
  color: rgba(15, 23, 42, 0.92);
}

.ab-navlink--dropdown {
  background: transparent;
  border: none;
  cursor: pointer;
}

.ab-navlink--dropdown::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
}

.ab-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 220px;
  padding: 14px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(220, 226, 240, 0.95);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
  display: grid;
  gap: 12px;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 20;
}

.ab-dropdown--wide {
  min-width: 420px;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
}

.ab-dropdown--clean {
  min-width: 200px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
}

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

.ab-dropdown__title {
  font-size: 13px;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.6);
}

.ab-dropdown__title--link {
  display: block;
  color: #0048d7;
  text-decoration: none;
  margin-bottom: 6px;
}

.ab-dropdown__title--link:hover {
  text-decoration: underline;
}

.ab-dropdown a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.8);
}

.ab-dropdown a:hover {
  color: var(--color-gradient);
}

.ab-dropdown__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ab-dropdown__link img {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  object-fit: cover;
  background: #fff;
  border: 1px solid rgba(220, 226, 240, 0.9);
  padding: 2px;
}

.ab-navitem.is-open .ab-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.ab-walletBtn {
  border: none;
  background: #0048d7;
  padding: 10px 16px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 15px;
  color: #ffffff;
  cursor: pointer;
  box-shadow: none;
  transition: filter 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.ab-walletBtn:hover {
  filter: brightness(1.08);
  color: #ffffff;
}

.ab-settingsBtn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: none;
  background: transparent;
  color: rgba(15, 23, 42, 0.55);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.ab-settingsBtn:hover {
  background: rgba(15, 23, 42, 0.06);
  color: rgba(15, 23, 42, 0.85);
}

.ab-settingsBtn svg {
  width: 20px;
  height: 20px;
}

.ab-header__settings {
  position: relative;
}

.ab-dropdown--settings {
  right: 0;
  left: auto;
  min-width: 180px;
}

.ab-navitem.is-open .ab-settingsBtn {
  background: rgba(15, 23, 42, 0.06);
  color: rgba(15, 23, 42, 0.85);
}

.ab-header__orders {
  position: relative;
}

.ab-ordersBtn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: none;
  background: transparent;
  color: rgba(15, 23, 42, 0.55);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.ab-ordersBtn:hover,
.ab-navitem.is-open .ab-ordersBtn {
  background: rgba(15, 23, 42, 0.06);
  color: rgba(15, 23, 42, 0.85);
}

.ab-ordersBtn__icon {
  width: 20px;
  height: 20px;
}

.ab-ordersBtn__badge {
  position: absolute;
  top: -3px;
  right: -4px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 999px;
  border: 2px solid #ffffff;
  background: #e2e8f0;
  color: #94a3b8;
  font-size: 10px;
  font-weight: 700;
  line-height: 13px;
  text-align: center;
  pointer-events: none;
  box-shadow: none;
  transform: scale(1);
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.ab-ordersBtn__badge--notify,
.ab-ordersBtn__badge[data-count]:not([data-count="0"]) {
  background: #0048d7;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 72, 215, 0.45);
}

.ab-ordersBtn__badge--pop {
  animation: ab-orders-badge-pop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes ab-orders-badge-pop {
  0% {
    transform: scale(0.55);
    box-shadow: 0 0 0 0 rgba(0, 72, 215, 0.5);
  }
  70% {
    transform: scale(1.12);
    box-shadow: 0 2px 10px rgba(0, 72, 215, 0.55);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 2px 8px rgba(0, 72, 215, 0.45);
  }
}

.ab-ordersBtn--has-notify .ab-ordersBtn__icon {
  color: rgba(15, 23, 42, 0.82);
}

.ab-dropdown--orders {
  right: 0;
  left: auto;
  min-width: 340px;
  max-width: min(380px, calc(100vw - 24px));
  padding: 0;
  overflow: hidden;
}

.ab-ordersDropdown {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ab-ordersDropdown__head {
  padding: 14px 16px 10px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
}

.ab-ordersDropdown__title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

.ab-ordersDropdown__sub {
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: #64748b;
}

.ab-ordersDropdown__empty {
  padding: 18px 16px;
  text-align: center;
}

.ab-ordersDropdown__empty p {
  margin: 0;
  font-size: 13px;
  color: #64748b;
}

.ab-ordersDropdown__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: 320px;
  overflow: auto;
}

.ab-ordersRow {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: background 0.15s ease;
}

.ab-ordersRow:hover {
  background: rgba(248, 250, 252, 0.95);
}

.ab-ordersRow__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.ab-ordersRow__id {
  font-size: 12px;
  font-weight: 600;
  color: #475569;
}

.ab-ordersRow__status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
}

.ab-ordersRow__status--pending {
  color: #0048d7;
}

.ab-ordersRow__statusIcon {
  width: 12px;
  height: 12px;
  opacity: 0.85;
}

.ab-ordersRow__pair {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ab-ordersRow__asset {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 0;
  min-width: 0;
}

.ab-ordersRow__asset--from {
  justify-content: flex-start;
}

.ab-ordersRow__asset--to {
  justify-content: flex-end;
}

.ab-ordersRow__asset img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.ab-ordersRow__assetText {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.ab-ordersRow__asset--to .ab-ordersRow__assetText {
  align-items: flex-end;
  text-align: right;
}

.ab-ordersRow__ticker {
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.15;
}

.ab-ordersRow__amount {
  font-size: 11px;
  font-weight: 500;
  color: #64748b;
  font-variant-numeric: tabular-nums;
  line-height: 1.15;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ab-ordersRow__arrow {
  flex: 0 0 auto;
  color: #94a3b8;
  font-size: 13px;
  line-height: 1;
  padding: 0 2px;
}

.ab-ordersDropdown__cta {
  display: block;
  margin: 12px 16px 0;
  padding: 12px 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0048d7, #0048d7);
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none !important;
}

.ab-ordersDropdown__cta:hover {
  filter: brightness(1.05);
}

.ab-ordersDropdown__link {
  display: block;
  padding: 10px 16px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #0048d7 !important;
  text-align: center;
  text-decoration: none !important;
}

.ab-ordersDropdown__link:hover {
  text-decoration: underline !important;
}

.exchange-rail__actions {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.exchange-rail__orders .ab-dropdown--orders {
  right: 0;
  left: auto;
}

.ab-menuBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: #ffffff;
  color: rgba(15, 23, 42, 0.72);
  cursor: pointer;
}

.ab-menuBtn svg {
  width: 20px;
  height: 20px;
}

.ab-header__strip {
  background: var(--color-bg);
  overflow: hidden;
}

.ab-strip {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  overflow: hidden;
}

.ab-strip__inner {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  animation: ticker-move 80s linear infinite;
}

.ab-strip__track {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  width: max-content;
  white-space: nowrap;
}

.ab-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 800;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.72);
  padding: 8px 10px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid transparent;
}

.ab-chip:hover {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(220, 226, 240, 0.9);
}

.ab-chip__icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(220, 226, 240, 0.9);
  object-fit: cover;
  padding: 3px;
}

@keyframes ticker-move {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}



.ab-chip__soon {
  font-size: 11px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.45);
  padding-left: 6px;
}

.ab-mobile {
  max-width: none;
  margin: 0;
  padding: 10px var(--page-gutter) 16px;
}

.ab-mobile__link {
  display: block;
  padding: 12px 14px;
  margin-top: 8px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.85);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(220, 226, 240, 0.95);
}

.ab-mobile__title {
  display: block;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.45);
}

.ab-mobile__title--link {
  text-decoration: none;
  color: #0048d7;
  padding: 10px 14px;
  margin-top: 14px;
  border-radius: 14px;
  background: rgba(0, 72, 215, 0.08);
  border: 1px solid rgba(0, 72, 215, 0.15);
}

.ab-mobile__title--link:hover {
  background: rgba(0, 72, 215, 0.12);
}

.ab-mobile__sublink {
  display: block;
  padding: 10px 14px;
  margin-top: 6px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.78);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(220, 226, 240, 0.9);
}

@media (min-width: 980px) {
  .ab-header__nav {
    display: inline-flex;
  }

  .ab-navlink {
    display: inline-flex;
    align-items: center;
  }

  .ab-settingsBtn {
    display: inline-flex;
  }

  .ab-menuBtn {
    display: none;
  }

  .ab-mobile {
    display: none;
  }
}

.page {
  position: relative;
  top: 0;
  left: 0;
  padding: 1.5rem clamp(1rem, 2vw, 2.5rem) 2.5rem;
  min-height: auto;
}

.faq-section {
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 0 1rem;
}

.faq-grid {
  display: grid;
  gap: 16px;
}

.faq-item {
  border-radius: 18px;
  border: 1px solid rgba(220, 226, 240, 0.9);
  background: rgba(255, 255, 255, 0.7);
  padding: 16px 18px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.85);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 10px 0 0;
  color: rgba(15, 23, 42, 0.65);
}

.page-exchange .faq-section--exchange {
  grid-column: 2;
  max-width: 600px;
  width: 100%;
  margin: 28px 0 0;
  padding: 0;
}

.page-exchange .faq-section--exchange .section-header--compact {
  max-width: none;
  margin: 0 0 14px;
  text-align: left;
  gap: 0;
}

.page-exchange .faq-section--exchange .section-header--compact h2 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.01em;
  text-transform: none;
}

.page-exchange .faq-section--exchange .faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.page-exchange .faq-section--exchange .faq-item {
  padding: 0;
  border-radius: 14px;
  box-shadow: none;
  background: #ffffff;
  border: 1px solid rgba(220, 226, 240, 0.95);
  overflow: hidden;
}

.page-exchange .faq-section--exchange .faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: #0f172a;
  cursor: pointer;
  list-style: none;
}

.page-exchange .faq-section--exchange .faq-item summary::-webkit-details-marker {
  display: none;
}

.page-exchange .faq-section--exchange .faq-item summary::after {
  content: "";
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-right: 2px solid #94a3b8;
  border-bottom: 2px solid #94a3b8;
  transform: rotate(45deg);
  transition: transform 0.15s ease;
}

.page-exchange .faq-section--exchange .faq-item[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 3px;
}

.page-exchange .faq-section--exchange .faq-item p {
  margin: 0;
  padding: 0 16px 14px;
  font-size: 13px;
  line-height: 1.55;
  color: #64748b;
}

.page-exchange .exchange-rail__menu {
  display: none;
}

.page-exchange .site-footer {
  display: none;
}

.page-exchange .exchange-page {
  margin-bottom: 2.5rem;
}

@media (max-width: 980px) {
  .page-exchange .faq-section--exchange {
    grid-column: 1;
    margin-top: 8px;
  }
}

/* =========================================================
   EXCHANGE PAGE
========================================================= */
body.page-exchange {
  --header-height: 0px;
}

body.page-exchange .exchange-page {
  padding-top: clamp(1.25rem, 3vw, 2rem);
}

.exchange-page {
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 2.5rem 0 0;
}

.exchange-page__inner {
  display: grid;
  grid-template-columns: minmax(200px, 220px) 600px;
  gap: 48px;
  align-items: start;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--page-gutter);
  box-sizing: border-box;
}

.exchange-rail {
  max-width: 220px;
  width: 100%;
  padding-top: 4px;
}

.exchange-rail__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.exchange-rail__brand {
  display: inline-flex;
  margin-bottom: 0;
  margin-right: 0;
  min-width: 0;
}

.exchange-rail__brand .ab-brand__name {
  font-size: 1.05rem;
}

.exchange-rail__menu {
  position: relative;
  flex-shrink: 0;
}

.exchange-rail__menuBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 9px;
  border: 1px solid rgba(220, 226, 240, 0.95);
  background: #ffffff;
  color: #64748b;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.exchange-rail__menuIcon {
  width: 16px;
  height: 16px;
}

.exchange-rail__menuIcon--bars {
  display: none;
  width: 18px;
  height: 18px;
}

.exchange-rail__menuBtn:hover,
.exchange-rail__menu.is-open .exchange-rail__menuBtn {
  background: rgba(0, 72, 215, 0.04);
  border-color: rgba(0, 72, 215, 0.28);
  color: #0048d7;
}

.exchange-rail__dropdown {
  left: auto;
  right: 0;
  min-width: 180px;
}

.exchange-rail__connect {
  margin-bottom: 28px;
}

.exchange-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.exchange-step {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: #94a3b8;
  position: relative;
}

.exchange-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 30px;
  width: 2px;
  height: calc(100% - 18px);
  background: #e5e7eb;
  transform: translateX(-50%);
}

.exchange-step.is-active:not(:last-child)::before {
  background: linear-gradient(180deg, var(--color-gradient) 0%, #e5e7eb 100%);
}

.exchange-step__badge {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  background: #f1f5f9;
  color: #94a3b8;
  border: none;
  position: relative;
  z-index: 1;
}

.exchange-step__label {
  line-height: 1.3;
}

.exchange-step.is-active {
  color: #0f172a;
  font-weight: 600;
}

.exchange-step.is-active .exchange-step__badge {
  background: var(--color-gradient);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 72, 215, 0.28);
}

.exchange-rail__footer {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  color: rgba(15, 23, 42, 0.5);
  line-height: 1.4;
}

.exchange-rail__footer a {
  color: var(--color-gradient);
  text-decoration: none;
  font-weight: 500;
}

.exchange-rail__footer a:hover {
  text-decoration: underline;
}

.exchange-guard {
  margin-top: 28px;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 12px;
  line-height: 1.5;
  color: #94a3b8;
}

.exchange-guard__title {
  margin: 0 0 2px;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
}

.exchange-guard__text {
  margin: 0;
}

.exchange-guard a {
  color: var(--color-gradient);
  text-decoration: none;
  font-weight: 600;
}

.exchange-guard a:hover {
  text-decoration: underline;
}

.exchange-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(220, 226, 240, 0.9);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  width: 100%;
  max-width: 600px;
  box-sizing: border-box;
}

.exchange-tabs {
  margin-bottom: 18px;
}

.exchange-swap {
  display: grid;
  gap: 14px;
  position: relative;
}

.exchange-pair {
  position: relative;
  display: grid;
  gap: 14px;
}

.exchange-pair .swap-divider-toggle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #f6f7fb;
  border: 2px solid #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  z-index: 2;
}

img[src*="svg icon/icons/"]:not(.hsw__estimate-timer-icon):not(.home-hero__value-icon):not(.quote-est-timer-icon--light) {
  filter: brightness(0) saturate(100%);
}

img.quote-est-timer-icon--light {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.exchange-card .asset-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(220, 226, 240, 0.95);
  background: linear-gradient(180deg, #ffffff 0%, #f5f7ff 100%);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
  font-weight: 700;
  color: #0f172a;
}

.exchange-card .asset-pill__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  min-width: 88px;
}

.exchange-card .asset-pill .asset-name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
}

.exchange-card .asset-pill .token-img {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(220, 226, 240, 0.9);
  background: #fff;
  padding: 3px;
}

.exchange-card .asset-pill .asset-meta {
  font-size: 12px;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.55);
}

.exchange-card .asset-pill .asset-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 3px 8px;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.exchange-card .asset-pill .asset-tag--orange {
  background: rgba(245, 158, 11, 0.16);
  color: #b45309;
}

.exchange-card .asset-pill .asset-tag--blue {
  background: rgba(59, 130, 246, 0.18);
  color: #0048d7;
}
.exchange-meta-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.6);
}

.exchange-time {
  margin-top: 0;
}

.exchange-cta {
  margin-top: 18px;
}

.exchange-terms {
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.55);
  text-align: center;
}

.exchange-terms a {
  color: var(--color-gradient);
  text-decoration: none;
}

.exchange-state {
  display: none;
}

.exchange-state.is-active {
  display: block;
}

.exchange-confirm-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.exchange-confirm-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0f172a;
}

.exchange-confirm-logo .logo-icon {
  width: 34px;
  height: 18px;
  color: var(--color-gradient);
}

.exchange-confirm-badge {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(0, 72, 215, 0.1);
  color: var(--color-gradient);
}

.exchange-confirm-grid {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: stretch;
}

.exchange-confirm-qr {
  border-radius: 16px;
  border: 1px solid rgba(220, 226, 240, 0.9);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.exchange-confirm-qr img {
  width: 96px;
  height: 96px;
}

.exchange-confirm-card {
  border-radius: 16px;
  border: 1px solid rgba(220, 226, 240, 0.9);
  background: #ffffff;
  padding: 12px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.exchange-confirm-alert {
  background: rgba(239, 68, 68, 0.18);
  color: #b91c1c;
  font-weight: 700;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.exchange-confirm-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.exchange-confirm-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.exchange-confirm-value {
  font-size: 12px;
  color: rgba(15, 23, 42, 0.8);
  margin-top: 4px;
}

.exchange-confirm-copy {
  border: 1px solid rgba(220, 226, 240, 0.9);
  background: #fff;
  border-radius: 10px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.exchange-confirm-pills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 16px 0;
}

.exchange-confirm-pills > div {
  border: 1px solid rgba(220, 226, 240, 0.9);
  border-radius: 14px;
  padding: 10px 12px;
  background: #f8fafc;
}

.exchange-confirm-pill-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-weight: 700;
  color: #0f172a;
}

.exchange-confirm-pill-row img {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(220, 226, 240, 0.9);
  background: #fff;
  padding: 2px;
}

.exchange-progress {
  border: 1px solid rgba(220, 226, 240, 0.9);
  border-radius: 16px;
  padding: 12px;
  background: rgba(59, 130, 246, 0.12);
  box-shadow: inset 0 0 0 1px rgba(99, 132, 255, 0.1);
}

.exchange-progress-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.55);
  padding: 10px 6px 4px;
}

.exchange-progress-track::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 22px;
  border-top: 2px dotted rgba(59, 130, 246, 0.35);
}

.exchange-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.exchange-progress-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(220, 226, 240, 0.9);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  z-index: 1;
}

.exchange-progress-step.is-active {
  color: #0048d7;
}

.exchange-progress-step.is-active .exchange-progress-icon {
  background: #0048d7;
  color: #fff;
  border-color: transparent;
}

.exchange-progress-step.is-active .exchange-progress-icon img {
  filter: brightness(0) invert(1);
}

.exchange-progress-meta {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.65);
}

.exchange-progress-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0048d7;
  font-weight: 700;
}

/* ===== BreadSwap-like deposit/status card (Allblu style) ===== */
.exchange-card .ab-depositCard {
  width: 100%;
}

.exchange-card .ab-depositCard__inner {
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.exchange-card .ab-depositCard__header {
  display: flex;
  justify-content: center;
  padding-bottom: 16px;
}

.exchange-card .ab-depositCard__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #0f172a;
}

.exchange-card .ab-depositCard__brandDot {
  width: 18px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-gradient), var(--color-brand-light));
  position: relative;
}

.exchange-card .ab-depositCard__brandDot::after {
  content: "";
  position: absolute;
  right: -6px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--color-gradient);
  opacity: 0.65;
}

.exchange-card .ab-depositTop {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 14px;
  align-items: stretch;
}

.exchange-card .ab-qrBox {
  border-radius: 18px;
  border: 1px solid rgba(220, 226, 240, 0.9);
  background: #ffffff;
  padding: 16px;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.exchange-card .ab-qrBox__qr {
  width: 156px;
  height: 156px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(220, 226, 240, 0.9);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  display: grid;
  place-items: center;
}

.exchange-card .ab-qrFake {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(15,23,42,0.15) 10%, transparent 10% 20%, rgba(15,23,42,0.15) 20% 30%, transparent 30% 40%, rgba(15,23,42,0.15) 40% 50%, transparent 50% 60%, rgba(15,23,42,0.15) 60% 70%, transparent 70% 80%, rgba(15,23,42,0.15) 80% 90%, transparent 90%),
    linear-gradient(rgba(15,23,42,0.15) 10%, transparent 10% 20%, rgba(15,23,42,0.15) 20% 30%, transparent 30% 40%, rgba(15,23,42,0.15) 40% 50%, transparent 50% 60%, rgba(15,23,42,0.15) 60% 70%, transparent 70% 80%, rgba(15,23,42,0.15) 80% 90%, transparent 90%);
  opacity: 0.65;
}

.exchange-card .ab-addressBox {
  border-radius: 18px;
  border: 1px solid rgba(220, 226, 240, 0.9);
  background: rgba(248, 250, 255, 0.85);
  padding: 16px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.exchange-card .ab-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(245, 158, 11, 0.18);
  color: #b45309;
  font-weight: 700;
  margin-bottom: 12px;
}

.exchange-card .ab-alert__icon {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: rgba(245, 158, 11, 0.22);
  font-size: 12px;
  font-weight: 900;
}

.exchange-card .ab-address__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.exchange-card .ab-address__label {
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.55);
}

.exchange-card .ab-copyBtn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(220, 226, 240, 0.9);
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  color: rgba(15, 23, 42, 0.7);
  display: grid;
  place-items: center;
  transition: transform 160ms ease, background 160ms ease;
}

.exchange-card .ab-copyBtn:hover {
  transform: translateY(-1px);
  background: #fff;
}

.exchange-card .ab-address__value {
  margin-top: 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(15, 23, 42, 0.78);
}

.exchange-card .ab-expiry {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(220, 226, 240, 0.5);
  font-size: 13px;
  color: rgba(15, 23, 42, 0.7);
}

.exchange-card .ab-expiry__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  opacity: 0.65;
}

.exchange-card .ab-expiry__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.exchange-card .ab-expiry__text {
  flex: 1;
  font-weight: 500;
}

.exchange-card .ab-expiry__text strong {
  font-weight: 700;
  color: rgba(15, 23, 42, 0.85);
}

.exchange-card .ab-expiry__help {
  width: 18px;
  height: 18px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: rgba(15, 23, 42, 0.5);
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: color 160ms ease, background 160ms ease;
  flex-shrink: 0;
  padding: 0;
}

.exchange-card .ab-expiry__help:hover {
  color: rgba(15, 23, 42, 0.7);
  background: rgba(15, 23, 42, 0.05);
}

.exchange-card .ab-expiry__help svg {
  width: 100%;
  height: 100%;
}

.exchange-card .ab-walletBtn {
  margin-top: 14px;
  width: 100%;
  height: 48px;
  border: 1px solid rgba(220, 226, 240, 0.9);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  color: rgba(15, 23, 42, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.exchange-card .ab-walletBtn:hover {
  transform: translateY(-1px);
  background: #ffffff;
  border-color: rgba(46, 107, 255, 0.3);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
}

.exchange-card .ab-walletBtn:active {
  transform: translateY(0);
}

.exchange-card .ab-walletBtn__icon {
  width: 18px;
  height: 18px;
  color: rgba(46, 107, 255, 0.85);
  flex-shrink: 0;
}

.exchange-card .ab-amountRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
  position: relative;
}

.exchange-card .ab-miniField {
  border-radius: 16px;
  border: 1px solid rgba(220, 226, 240, 0.9);
  background: linear-gradient(180deg, #ffffff 0%, rgba(248, 250, 255, 0.75) 100%);
  padding: 20px 16px;
  position: relative;
  min-height: 72px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
  color: rgba(31, 41, 51, 1);
  display: flex;
  flex-direction: column;
}

.exchange-card .ab-miniField.ab-miniField--deposit {
  position: relative;
  border: 3px solid rgba(0, 72, 215, 0.1);
  background: linear-gradient(180deg, #ffffff 0%, rgba(240, 246, 255, 0.92) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 2px 6px rgba(0, 72, 215, 0.08),
    0 6px 18px rgba(0, 72, 215, 0.14);
  z-index: 2;
}

.exchange-card .ab-miniField.ab-miniField--deposit::after {
  content: none;
}

.exchange-card .ab-miniField.ab-miniField--receive {
  position: relative;
  z-index: 1;
  border-color: rgba(220, 226, 240, 0.7);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(248, 250, 255, 0.85) 100%);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}

.exchange-card .ab-miniField__label {
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.5);
  text-transform: uppercase;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 16px;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0);
}

.exchange-card .ab-miniField__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1;
  padding: 4px 0;
  min-height: 140px;
}

.exchange-card .ab-miniField__logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(220, 226, 240, 0.5);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.exchange-card .ab-miniField__logo:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.1);
}

.exchange-card .ab-miniField__logo img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: contain;
}

.exchange-card .ab-miniField__amountRow {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.exchange-card .ab-miniField__value {
  font-size: 22px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.2;
  text-align: center;
  letter-spacing: -0.01em;
}

.exchange-card .ab-miniField__tokenName {
  font-size: 18px;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.75);
  line-height: 1.2;
}

.exchange-card .ab-miniField__sub {
  font-size: 13px;
  color: rgba(15, 23, 42, 0.6);
  line-height: 1.4;
  text-align: center;
  font-weight: 600;
  margin-top: 2px;
}

.exchange-card .ab-miniField__action {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(220, 226, 240, 0.6);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 88px;
  box-sizing: border-box;
}

.exchange-card .ab-walletBtn--inline {
  width: 100%;
  height: 50px;
  min-height: 50px;
  max-height: 50px;
  margin: 0;
  font-size: 13px;
  justify-content: flex-start;
  padding-left: 14px;
  padding-right: 14px;
  box-sizing: border-box;
  flex-shrink: 0;
}

.exchange-card .ab-depositVault {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  min-height: 74px;
  box-sizing: border-box;
  justify-content: flex-start;
}

.exchange-card .ab-depositVault__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 20px;
  box-sizing: border-box;
}

.exchange-card .ab-depositVault__info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.exchange-card .ab-depositVault__icon {
  width: 16px;
  height: 16px;
  color: rgba(46, 107, 255, 0.85);
  flex-shrink: 0;
}

.exchange-card .ab-depositVault__label {
  font-weight: 700;
  color: rgba(0, 72, 215, 0.85);
  font-size: 13px;
  line-height: 1.4;
}

.exchange-card .ab-depositVault__address {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 1);
  border: 1px solid rgba(229, 231, 235, 1);
  min-height: unset;
  height: auto;
  box-sizing: border-box;
}

.exchange-card .ab-depositVault__addressValue,
.exchange-card #abDepositAddressShort {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  color: rgba(15, 23, 42, 1);
  font-weight: 500;
  line-height: 1.5;
  word-break: break-all;
  flex: 1;
  text-align: left;
  transition: all 0.3s ease;
}

.exchange-card .ab-depositVault__copy {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(220, 226, 240, 0.9);
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 160ms ease, background 160ms ease;
  flex-shrink: 0;
  padding: 0;
}

.exchange-card .ab-depositVault__copy:hover {
  transform: translateY(-1px);
  background: #fff;
}

.exchange-card .ab-depositVault__copy img {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.exchange-card .ab-miniField__address {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(220, 226, 240, 0.6);
  width: 100%;
  min-height: 88px;
  box-sizing: border-box;
}

.exchange-card .ab-destinationVault {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.exchange-card .ab-destinationVault__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 20px;
  box-sizing: border-box;
}

.exchange-card .ab-destinationVault__info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.exchange-card .ab-destinationVault__icon {
  width: 16px;
  height: 16px;
  color: rgba(46, 107, 255, 0.85);
  flex-shrink: 0;
}

.exchange-card .ab-destinationVault__label {
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.5);
  line-height: 1.4;
  text-transform: uppercase;
}

.exchange-card .ab-destinationVault__address {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 1);
  border: 1px solid rgba(229, 231, 235, 1);
  color: rgba(31, 41, 51, 1);
  min-height: unset;
  box-sizing: border-box;
}

.exchange-card .ab-destinationVault__addressValue {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.75);
  font-weight: 500;
  line-height: 1.5;
  word-break: break-all;
  flex: 1;
  text-align: left;
}

.exchange-card .ab-destinationVault__lock {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(220, 226, 240, 0.9);
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
  flex-shrink: 0;
  padding: 0;
}

.exchange-card .ab-destinationVault__lock:hover {
  transform: translateY(-1px);
  background: #fff;
  border-color: rgba(46, 107, 255, 0.3);
}

.exchange-card .ab-destinationVault__lock[aria-pressed="false"] {
  background: rgba(46, 107, 255, 0.1);
  border-color: rgba(46, 107, 255, 0.3);
}

.exchange-card .ab-destinationVault__lockIcon {
  width: 14px;
  height: 14px;
  color: rgba(15, 23, 42, 0.5);
  transition: opacity 160ms ease;
}

.exchange-card .ab-destinationVault__lockIcon--unlocked {
  display: none;
}

.exchange-card .ab-destinationVault__lock[aria-pressed="false"] .ab-destinationVault__lockIcon--locked {
  display: none !important;
}

.exchange-card .ab-destinationVault__lock[aria-pressed="false"] .ab-destinationVault__lockIcon--unlocked {
  display: block !important;
}

.exchange-card .ab-stepper {
  margin-top: 12px;
  border-radius: 12px;
  border: none;
  background: #f3f4f6;
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  position: relative;
}

.exchange-card .ab-step {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.exchange-card .ab-step__dot {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.1);
  display: grid;
  place-items: center;
  position: relative;
  overflow: visible;
}

.exchange-card .ab-step__dot img {
  width: 16px;
  height: 16px;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.exchange-card .ab-step--active .ab-step__dot img {
  opacity: 1;
}

.exchange-card .ab-step__dot img[src*="token"] {
  width: 20px;
  height: 20px;
}

.exchange-card .ab-step__label {
  font-size: 12px;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.55);
}

.exchange-card .ab-step--active .ab-step__dot {
  background: var(--color-gradient);
  border-color: var(--color-gradient);
  box-shadow: 0 12px 28px rgba(0, 72, 215, 0.25);
}

/* Pending step spinner â€“ reuse abSpin animation but slower */
.exchange-card .ab-step:first-child.ab-step--active .ab-step__dot::before {
  content: '';
  position: absolute;
  inset: 12px; /* 40px dot â†’ 16px inner ring */
  border-radius: 999px;
  /* Thinner, longer white dashes for a finer ring */
  border: 1.5px dashed rgba(255, 255, 255, 0.92);
  border-top-color: rgba(255, 255, 255, 0.92);
  animation: abSpin 3400ms linear infinite;
}

.exchange-card .ab-step--active .ab-step__label {
  color: var(--color-gradient);
}

.exchange-card .ab-stepConnector {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-6px);
}

.exchange-card .ab-stepConnector--dots {
  gap: 5px;
  padding: 0 10px;
  height: 2px;
  align-items: center;
}

.exchange-card .ab-stepConnector__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.2);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.exchange-card .ab-stepConnector--dots.ab-stepConnector--active .ab-stepConnector__dot {
  background: rgba(46, 107, 255, 0.9);
  width: 6px;
  height: 6px;
  box-shadow: 0 0 8px rgba(46, 107, 255, 0.5);
  animation: stepDotPulse 2400ms ease-in-out infinite;
}

.exchange-card .ab-stepConnector--dots.ab-stepConnector--active .ab-stepConnector__dot:nth-child(2) {
  animation-delay: 0.25s;
}

.exchange-card .ab-stepConnector--dots.ab-stepConnector--active .ab-stepConnector__dot:nth-child(3) {
  animation-delay: 0.5s;
}

.exchange-card .ab-stepConnector--line {
  height: 2px;
  background: rgba(15, 23, 42, 0.2);
  border-radius: 999px;
  flex: 1;
  min-width: 20px;
  max-width: 40px;
  position: relative;
  transition: all 0.3s ease;
}

.exchange-card .ab-stepConnector--line.ab-stepConnector--active {
  background: rgba(46, 107, 255, 0.9);
  box-shadow: 0 0 10px rgba(46, 107, 255, 0.4);
}

.exchange-card .ab-stepConnector--line.ab-stepConnector--active::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(46, 107, 255, 1);
  box-shadow: 0 0 12px rgba(46, 107, 255, 0.6);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes stepDotPulse {
  0%, 100% {
    opacity: 0.95;
    transform: scale(1);
  }
  50% {
    opacity: 0.65;
    transform: scale(1.4);
  }
}

.exchange-card .ab-stepper__meta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 12px;
  height: 60px;
  padding: 8px 12px;
  border: 1px solid rgba(229, 231, 235, 1);
  border-radius: 12px;
  background: #f3f4f6;
  font-size: 14px;
  line-height: 20px;
}

.exchange-card .ab-stepper__left {
  font-weight: 500;
  color: rgba(24, 24, 27, 1);
}

.exchange-card .ab-stepper__right {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111827;
  font-weight: 700;
  flex-shrink: 0;
}

.exchange-card .ab-stepper__right img {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.exchange-card .ab-stepper__right strong {
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  color: #111827;
}

.exchange-card .ab-primaryBtn {
  margin-top: 14px;
  width: 100%;
  height: 60px;
  padding: 8px 32px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 20px;
  color: #ffffff;
  background: #0048d7;
  box-shadow: 0px 4px 15px 0px rgba(0, 72, 215, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: filter 0.15s ease;
}

.exchange-card .ab-primaryBtn:hover {
  filter: brightness(1.06);
}

.exchange-card .ab-transfer {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.exchange-card .ab-transfer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
  font-size: 14px;
}

.exchange-card .ab-transfer__label {
  font-weight: 500;
  color: rgba(24, 24, 27, 1);
  flex-shrink: 0;
}

.exchange-card .ab-transfer__value {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  color: #9ca3af;
  font-weight: 400;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 60%;
}

.exchange-card .ab-spin {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: rgba(255, 255, 255, 0.95);
  animation: abSpin 900ms linear infinite;
}

@keyframes abSpin {
  to {
    transform: rotate(360deg);
  }
}

.exchange-card .ab-terms {
  margin-top: 10px;
  text-align: center;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.55);
}

.exchange-card .ab-terms a {
  color: var(--color-gradient);
  text-decoration: none;
  font-weight: 500;
}

@media (max-width: 620px) {
  .exchange-card .ab-depositTop {
    grid-template-columns: 1fr;
  }

  .exchange-card .ab-stepper {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .exchange-card .ab-stepLine {
    display: none;
  }

  .exchange-card .ab-step {
    grid-template-columns: 34px 1fr;
    justify-items: start;
    align-items: center;
    gap: 12px;
  }

  .exchange-card .ab-step__label {
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .exchange-confirm-grid {
    grid-template-columns: 1fr;
  }
}

.exchange-extra {
  margin-top: 18px;
  border-top: 1px solid rgba(220, 226, 240, 0.8);
  padding-top: 16px;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.7);
}

.exchange-extra .exchange-input {
  margin-top: 8px;
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(220, 226, 240, 0.9);
  font-size: 14px;
  font-weight: 600;
  background: rgba(248, 250, 255, 0.7);
}

@media (max-width: 980px) {
  .exchange-page__inner {
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 24px;
    width: 100%;
    max-width: 600px;
  }

  .exchange-rail {
    max-width: 100%;
    width: 100%;
    padding-top: 0;
  }

  .exchange-rail__menuIcon--chevron {
    display: none;
  }

  .exchange-rail__menuIcon--bars {
    display: block;
  }

  .exchange-rail__connect {
    margin-bottom: 20px;
  }

  .exchange-steps {
    flex-direction: row;
    gap: 8px;
  }

  .exchange-step {
    grid-template-columns: auto 1fr;
    grid-template-rows: unset;
    justify-items: start;
    text-align: left;
    gap: 8px;
    min-height: 0;
    flex: 1;
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.6);
  }

  .exchange-step.is-active {
    background: rgba(0, 72, 215, 0.06);
  }

  .exchange-step:not(:last-child)::before {
    display: none;
  }

  .exchange-step__label {
    font-size: 11px;
    line-height: 1.2;
  }

  .exchange-step__badge {
    width: 22px;
    height: 22px;
    font-size: 10px;
  }

  .exchange-guard {
    margin-top: 16px;
  }
}

.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 2rem;
  padding: 0 1rem;
}

.logo {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-slate);
}

.logo-icon {
  display: inline-flex;
  width: 2.2rem;
  height: 1.4rem;
  color: var(--color-primary);
}

.logo-icon svg {
  width: 100%;
  height: 100%;
}

.chip-button {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-slate);
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow-card);
}

.ticker {
  max-width: 1200px;
  margin: 0 auto 2rem;
  overflow: hidden;
  padding: 0.3rem 1rem;
}

.ticker-track {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  animation: ticker-scroll 18s linear infinite;
  color: var(--color-muted);
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  font-weight: 600;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-transform: uppercase;
}

.ticker-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.ticker-item.muted {
  opacity: 0.5;
}

.token-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
}

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

.token-icon.eth {
  background: #627eea;
}

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

.token-icon.arb {
  background: #2b67f6;
}

.token-icon.dot {
  background: #e6007a;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero: original gradient */
.hero-swap {
  position: relative;
  padding: clamp(1.6rem, 2.4vw, 2.4rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(0, 72, 215, 0.35), rgba(18, 35, 65, 0.92));
  color: #fff;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(320px, 1fr);
  gap: clamp(1rem, 1.2vw, 2rem);
  align-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero-swap::before,
.hero-swap::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(25px);
  opacity: 0.5;
  z-index: 0;
}

.hero-swap::before {
  top: -60px;
  right: -30px;
  background: radial-gradient(circle, rgba(122, 167, 255, 0.7), transparent 60%);
}

.hero-swap::after {
  bottom: -80px;
  left: -40px;
  background: radial-gradient(circle, rgba(46, 107, 255, 0.65), transparent 60%);
}

.hero-swap__text {
  position: relative;
  z-index: 1;
}

.eyebrow-row {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.eyebrow-row .logo-icon {
  color: #9ab7ff;
}

.hero-swap__text h1 {
  font-size: clamp(var(--text-3xl), 3.2vw, var(--text-4xl));
  margin: 0.35rem 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-subtext {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  max-width: 320px;
  font-size: var(--text-md);
}

.hero-swap__divider {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.hero-swap__divider span {
  width: 2px;
  height: 65px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0));
  border-radius: 999px;
}

.hero-swap__card, .home-hero__swap {
  position: relative;
  z-index: 1;
  justify-self: center;
}

.hero-swap__card {
  max-width: 420px;
}

.home-hero__swap {
  max-width: 100%;
  width: 100%;
}

.hero-swap__card .swap-card, .home-hero__swap:not(.hsw--exchange) .swap-card{
  margin: 0;
  max-width: 100%;
  overflow: hidden;
  padding: 1.1rem;
  border-radius: 18px;
  gap: 0.85rem;
}

.home-hero__swap.hsw.hsw--exchange .swap-card,
.home-hero__swap.hsw.hsw--exchange .hsw__card {
  width: 100% !important;
  max-width: 100% !important;
  min-height: unset !important;
  padding: 28px !important;
  gap: 24px !important;
  border-radius: 22px !important;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(220, 226, 240, 0.9);
  background: #ffffff;
  box-sizing: border-box;
}

.home-hero__swap.hsw.hsw--hero .swap-card,
.home-hero__swap.hsw.hsw--hero .hsw__card {
  max-width: 531px !important;
}

/* Keep asset pills inside the card (no overflow); grid aligns amount row with pills */
.hero-swap__card .swap-field, .home-hero__swap:not(.hsw) .swap-field{
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto;
  align-items: center;
  gap: 0.2rem 0.5rem;
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
}
.hero-swap__card .swap-field > div:first-child, .home-hero__swap:not(.hsw) .swap-field > div:first-child{
  min-width: 0;
  display: contents;
}
.hero-swap__card .swap-field .field-label, .home-hero__swap:not(.hsw) .swap-field .field-label{
  grid-column: 1 / -1;
  grid-row: 1;
}
.hero-swap__card .swap-field .field-input,
.hero-swap__card, .home-hero__swap:not(.hsw) .swap-field .field-value, .home-hero__swap:not(.hsw) .swap-field .field-input,
.hero-swap__card, .home-hero__swap:not(.hsw) .swap-field .field-value{
  grid-row: 2;
  grid-column: 1;
}
.hero-swap__card .swap-field .field-sub, .home-hero__swap:not(.hsw) .swap-field .field-sub{
  grid-row: 3;
  grid-column: 1;
}
.hero-swap__card .swap-field .asset-pill-wrap,
.hero-swap__card, .home-hero__swap:not(.hsw) .swap-field > .asset-picker, .home-hero__swap:not(.hsw) .swap-field .asset-pill-wrap,
.hero-swap__card, .home-hero__swap:not(.hsw) .swap-field > .asset-picker{
  grid-row: 2 / 4;
  grid-column: 2;
  align-self: center;
  min-width: 0;
}
.hero-swap__card .asset-pill-wrap, .home-hero__swap:not(.hsw) .asset-pill-wrap{
  min-width: 0;
}
.hero-swap__card .asset-picker, .home-hero__swap:not(.hsw) .asset-picker{
  min-width: 0;
  max-width: 100%;
}
.hero-swap__card .swap-card .asset-pill,
.hero-swap__card, .home-hero__swap:not(.hsw) .asset-pill.asset-pill-toggle, .home-hero__swap:not(.hsw) .swap-card .asset-pill,
.hero-swap__card, .home-hero__swap:not(.hsw) .asset-pill.asset-pill-toggle{
  min-width: 0;
  width: auto;
  max-width: 100%;
}
.hero-swap__card .swap-card .asset-pill__text, .home-hero__swap .swap-card .asset-pill__text{
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Hero card: pair-style mode toggle and CTA (mimic SwapWidgetCard) */
.hero-swap__card .swap-widget-card__mode, .home-hero__swap .swap-widget-card__mode{
  display: flex;
  align-items: center;
  width: 100%;
  border-radius: 10px;
  background: rgba(0, 72, 215, 0.05);
  padding: 0.3rem;
  border: 1px solid rgba(0, 72, 215, 0.15);
  margin-bottom: 0.35rem;
}
.hero-swap__card .swap-widget-card__mode-btn, .home-hero__swap .swap-widget-card__mode-btn{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
}
.hero-swap__card .swap-widget-card__mode-btn:hover, .home-hero__swap .swap-widget-card__mode-btn:hover{ color: #0f172a; }
.hero-swap__card .swap-widget-card__mode-btn--active, .home-hero__swap .swap-widget-card__mode-btn--active{
  background: #0048d7;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 72, 215, 0.25);
}

/* HomeSwapWidget CTA — swap blue (#0048D7) */
.home-hero__swap.hsw .hsw__cta,
.home-hero__swap.hsw .swap-widget-card__cta,
.home-hero__swap.hsw a.swap-action.hsw__cta,
.home-hero__swap.hsw button.swap-action.hsw__cta {
  background: #0048d7 !important;
  color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(0, 72, 215, 0.28) !important;
}

.home-hero__swap.hsw .hsw__tab.active {
  background: #0048d7 !important;
  box-shadow: 0 2px 8px rgba(0, 72, 215, 0.28) !important;
}

.hero-swap__card .swap-widget-card__cta, .home-hero__swap:not(.hsw) .swap-widget-card__cta{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
  width: 100%;
  padding: 0.75rem 1.25rem;
  border-radius: 14px;
  background: #0048d7;
  color: #fff;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 72, 215, 0.28);
  transition: filter 0.15s ease;
}
.hero-swap__card .swap-widget-card__cta:hover, .home-hero__swap:not(.hsw) .swap-widget-card__cta:hover{ filter: brightness(1.1); }
.hero-swap__card .swap-widget-card__cta-main, .home-hero__swap:not(.hsw) .swap-widget-card__cta-main{
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3;
}
.hero-swap__card .swap-widget-card__cta-sub, .home-hero__swap .swap-widget-card__cta-sub{
  display: block;
  margin-top: 0.15rem;
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.hero-swap__card .swap-footer, .home-hero__swap .swap-footer{
  gap: 0.4rem;
}
.hero-swap__card .swap-time, .home-hero__swap:not(.hsw) .swap-time{
  padding: 0.6rem 0.85rem;
  border-radius: 12px;
}
.hero-swap__card .swap-field .field-input,
.hero-swap__card, .home-hero__swap .swap-field .field-value, .home-hero__swap .swap-field .field-input,
.hero-swap__card, .home-hero__swap .swap-field .field-value{
  font-size: 1.35rem;
}
.hero-swap__card .swap-card .asset-pill, .home-hero__swap .swap-card .asset-pill{
  padding: 0.5rem 0.75rem;
  min-width: 0;
  border-radius: 12px;
}
.hero-swap__card .swap-card .asset-name, .home-hero__swap .swap-card .asset-name{
  font-size: 0.875rem;
}
.hero-swap__card .swap-card .asset-tag, .home-hero__swap .swap-card .asset-tag{
  font-size: 0.625rem;
  padding: 2px 6px;
}

/* Homepage hero: larger swap card (pair page unchanged; .hsw uses component styles) */
.home-hero__swap:not(.hsw) .swap-card {
  padding: 1.35rem;
  border-radius: 22px;
  gap: 1rem;
}
.home-hero__swap:not(.hsw) .swap-field {
  padding: 0.95rem 1.1rem;
  border-radius: 16px;
}
.home-hero__swap:not(.hsw) .swap-field .field-input,
.home-hero__swap:not(.hsw) .swap-field .field-value {
  font-size: 1.55rem;
}
.home-hero__swap:not(.hsw) .swap-card .asset-pill {
  padding: 0.6rem 0.85rem;
  border-radius: 14px;
}
.home-hero__swap:not(.hsw) .swap-card .asset-name {
  font-size: 0.9375rem;
}
.home-hero__swap:not(.hsw) .swap-widget-card__cta {
  padding: 0.9rem 1.5rem;
  border-radius: 16px;
}
.home-hero__swap:not(.hsw) .swap-widget-card__cta-main {
  font-size: 1.05rem;
}
.home-hero__swap:not(.hsw) .swap-time {
  padding: 0.75rem 1rem;
  border-radius: 14px;
}

/* Hero swap card: mobile â€“ keep content within card */
@media (max-width: 768px) {
  .hero-swap {
    grid-template-columns: 1fr;
  }
  .hero-swap__card, .home-hero__swap {
    min-width: 0;
    max-width: 100%;
  }
  .hero-swap__card .swap-card, .home-hero__swap .swap-card{
    max-width: 100%;
    min-width: 0;
    padding: 1rem;
    box-sizing: border-box;
  }
  .hero-swap__card .swap-field, .home-hero__swap .swap-field{
    padding: 0.875rem 1rem;
    min-width: 0;
    flex-wrap: nowrap;
  }
  .hero-swap__card .swap-field .field-input,
  .hero-swap__card, .home-hero__swap .swap-field .field-value, .home-hero__swap .swap-field .field-input,
  .hero-swap__card, .home-hero__swap .swap-field .field-value{
    max-width: 100%;
    box-sizing: border-box;
  }
  .hero-swap__card .asset-pill-wrap, .home-hero__swap .asset-pill-wrap{
    flex-wrap: nowrap;
    min-width: 0;
    gap: 0.4rem;
  }
  .hero-swap__card .swap-card .asset-pill, .home-hero__swap .swap-card .asset-pill{
    min-width: 0;
    width: auto;
    max-width: 100%;
    padding: 0.5rem 0.65rem;
    gap: 0.35rem 0.5rem;
    border-radius: 12px;
  }
  .hero-swap__card .swap-card .asset-pill .token-img,
  .hero-swap__card, .home-hero__swap .swap-card .asset-pill img[alt], .home-hero__swap .swap-card .asset-pill .token-img,
  .hero-swap__card, .home-hero__swap .swap-card .asset-pill img[alt]{
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
  }
  .hero-swap__card .swap-card .asset-name, .home-hero__swap .swap-card .asset-name{
    font-size: 0.875rem;
    line-height: 1.1;
  }
  .hero-swap__card .swap-card .asset-tag, .home-hero__swap .swap-card .asset-tag{
    font-size: 0.625rem;
    padding: 2px 6px;
    min-width: 0;
  }
  .hero-swap__card .swap-card .asset-pill__text, .home-hero__swap .swap-card .asset-pill__text{
    min-width: 0;
    gap: 2px;
  }
  .hero-swap__card .asset-boost, .home-hero__swap:not(.hsw) .asset-boost{
    padding: 0.35rem 0.6rem;
    font-size: 0.75rem;
  }
  .hero-swap__card .swap-field .field-input,
  .hero-swap__card, .home-hero__swap .swap-field .field-value, .home-hero__swap .swap-field .field-input,
  .hero-swap__card, .home-hero__swap .swap-field .field-value{
    font-size: 1.35rem;
  }
  .hero-swap__card .swap-step,
  .hero-swap__card, .home-hero__swap .swap-stack,
  .hero-swap__card, .home-hero__swap .swap-pair, .home-hero__swap .swap-step,
  .hero-swap__card, .home-hero__swap .swap-stack,
  .hero-swap__card, .home-hero__swap .swap-pair{
    min-width: 0;
  }
}

/* Index: swap-hero header block inside hero-swap (light text on dark) */
.hero-swap .swap-hero {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
  backdrop-filter: blur(12px);
}
.hero-swap .swap-hero__blur {
  position: absolute;
  pointer-events: none;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(60px);
}
.hero-swap .swap-hero__blur--r {
  top: -6rem;
  right: -6rem;
  background: rgba(255, 255, 255, 0.08);
}
.hero-swap .swap-hero__blur--l {
  top: 4rem;
  left: -6rem;
  background: rgba(255, 255, 255, 0.05);
}
.hero-swap .swap-hero__veil {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 160px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
}
.hero-swap .swap-hero__content {
  position: relative;
  z-index: 1;
  padding: 1.5rem 1.25rem;
}
@media (min-width: 640px) {
  .hero-swap .swap-hero__content { padding-top: 2rem; }
}
@media (min-width: 1024px) {
  .hero-swap .swap-hero__content { padding: 2rem 2rem 1.5rem; }
}
.hero-swap .swap-hero__breadcrumbs {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
}
.hero-swap .swap-hero__breadcrumb-text { opacity: 0.9; }
.hero-swap .swap-hero__grid { display: block; margin-top: 0.75rem; }
.hero-swap .swap-hero__title {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 0.5rem 0;
}
.hero-swap .swap-hero__subline {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 52ch;
  margin: 0.75rem 0 0 0;
}
@media (min-width: 640px) {
  .hero-swap .swap-hero__subline { font-size: 1rem; }
}
.hero-swap .swap-hero__meta-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.hero-swap .swap-hero__meta-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* =========================
   HERO PROOF STRIP (outside hero)
   Calm + typography-first
   ========================= */
.hero-proof {
  background: transparent;
  padding: 0 0 12px;
  margin-top: 0.75rem;
}

.hero-proof__inner {
  max-width: var(--container, 1200px);
  margin: 0 auto;
  padding: 0 16px;
}

.hero-proof__powered {
  margin: 0.75rem 0 0;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.45);
  font-weight: 600;
}

.hero-proof__header {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.hero-proof__eyebrow {
  margin: 0 0 0.35rem;
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.55);
  font-weight: 700;
}

.hero-proof__title {
  margin: 0;
  font-size: clamp(var(--text-lg), 1.6vw, var(--text-xl));
  color: rgba(15, 23, 42, 0.92);
}

.hero-proof__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
}

.hero-proof__metric {
  padding: 1.25rem 1.75rem;
  min-width: 0;
  transition: background 0.2s ease;
}

.hero-proof__metric:hover {
  background: rgba(255, 255, 255, 0.5);
}

.hero-proof__metric:not(:first-child) {
  border-left: 1px solid rgba(15, 23, 42, 0.08);
}

.hero-proof__metric-inner {
  margin: 0;
}

.hero-proof__metric-inner .hero-proof__value {
  margin: 0;
}

.hero-proof__label {
  margin: 0.5rem 0 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.5);
  font-weight: 700;
  line-height: 1.3;
}

.hero-proof__dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #0048d7;
  box-shadow: 0 0 0 3px rgba(0, 72, 215, 0.2);
  flex-shrink: 0;
}

.hero-proof__value {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: rgba(15, 23, 42, 0.95);
}

/* =========================
   VALUE STRIP (3 cards)
   ========================= */
.value-strip {
  margin-top: 44px;
  margin-bottom: 18px;
}

.value-strip-inner {
  max-width: var(--container, 1180px);
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

/* =========================
   WHY ALLBLU (Bottom section)
   ========================= */
.why-exists {
  background: transparent;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(3rem, 5vw, 4rem) clamp(1rem, 3vw, 2rem);
}

.why-exists__inner {
  width: 100%;
  margin: 0;
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.why-exists__grid {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.why-exists__copy {
  flex: 1;
  min-width: 0;
  max-width: 640px;
  padding-right: clamp(1.5rem, 4vw, 3rem);
}

.why-exists__cta-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1.25rem;
  padding: 0.625rem 1.25rem;
  border-radius: 12px;
  background: #0048d7;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: filter 0.2s ease, box-shadow 0.2s ease;
}

.why-exists__cta-link:hover {
  filter: brightness(1.08);
  box-shadow: 0 4px 14px rgba(0, 72, 215, 0.35);
}

.why-exists__eyebrow {
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-muted);
  font-weight: 700;
  margin: 0 0 0.6rem;
}

.why-exists__title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--color-slate);
}
@media (min-width: 640px) {
  .why-exists__title {
    font-size: 1.875rem;
  }
}

.why-exists__lead {
  margin: 0.6rem 0 0;
  font-size: var(--text-sm);
  color: rgba(51, 65, 85, 0.95);
  line-height: 1.6;
}

.why-exists__sub {
  margin: 0.5rem 0 0;
  font-size: var(--text-sm);
  color: rgba(71, 85, 105, 0.95);
  line-height: 1.6;
}

.why-exists__tags {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.why-exists__tags span {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(248, 250, 252, 0.9);
  padding: 0.35rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(71, 85, 105, 0.9);
}

.why-exists__proof {
  flex: 1;
  min-width: 0;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.why-exists__proof .value-card--feed {
  border: none;
  box-shadow: none;
  padding: 1rem;
  border-radius: 0;
}

.why-exists__proof .value-card--feed .value-card-head {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: 8px;
  width: 100%;
  margin-bottom: 10px;
}

.why-exists__proof .value-tabs {
  flex: 0 1 auto;
  width: auto;
  max-width: 100%;
  display: flex;
  min-width: 0;
  padding: 3px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #f8fafc;
}

.why-exists__proof .value-tab {
  flex: 1 1 auto;
  min-width: 0;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 6px;
  border-radius: 9px;
  font-size: 11px;
  line-height: 1.2;
  text-align: center;
}

.why-exists__proof .swap-feed-list {
  gap: 8px;
}

.why-exists__proof .swap-row {
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 10px 12px;
  gap: 10px;
}

.why-exists__cta {
  border-radius: 32px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: #fff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.why-exists__cta h3 {
  margin: 0;
  font-size: var(--text-lg);
  color: var(--color-primary);
}

.why-exists__cta p {
  margin: 0.4rem 0 0;
  font-size: var(--text-sm);
  color: rgba(71, 85, 105, 0.95);
}

.why-exists__cta-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

@media (max-width: 980px) {
  .why-exists__grid {
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
  }

  .why-exists__copy {
    padding-right: 0;
    width: 100%;
    max-width: none;
  }

  .why-exists__proof {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
  }

  .why-exists__cta {
    grid-template-columns: 1fr;
  }

  .why-exists__proof .value-card-head {
    margin-bottom: 8px;
  }

  .why-exists__proof .value-tab {
    font-size: 10px;
    padding: 8px 4px;
  }

  .why-exists__proof .swap-feed-list {
    max-height: none;
    overflow: visible;
    padding-right: 0;
    margin: 0;
    max-width: none;
  }

  .why-exists__proof .swap-row {
    align-items: center;
  }

  .why-exists__proof .swap-right {
    min-width: 74px;
    flex-shrink: 0;
  }
}

@media (max-width: 640px) {
  .why-exists__tags {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    flex-wrap: nowrap;
    gap: 0.35rem;
  }

  .why-exists__tags span {
    min-width: 0;
    padding: 0.32rem 0.35rem;
    font-size: 0.625rem;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .why-exists__cta-link {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    margin-top: 1rem;
  }

  .why-exists__proof .value-card--feed {
    padding: 0.875rem;
  }

  .why-exists__proof .value-card-head {
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 8px;
  }

  .why-exists__proof .value-tabs {
    flex: 0 1 auto;
    width: auto;
    max-width: 100%;
    min-width: 0;
  }

  .why-exists__proof .value-tab {
    flex: 1 1 auto;
    padding: 8px 4px;
    font-size: 10px;
  }

  .why-exists__proof .swap-feed-pair {
    font-size: 0.8125rem;
  }

  .why-exists__proof .swap-feed-sub {
    font-size: 0.6875rem;
  }

  .why-exists__proof .swap-amt,
  .why-exists__proof .swap-time-text {
    font-size: 0.8125rem;
    white-space: nowrap;
  }

  .why-exists__proof .swap-time-text {
    font-size: 0.6875rem;
  }

  .cta-band__btn {
    align-self: stretch;
    width: 100%;
  }
}

/* =========================
   EXCHANGE STRIP (CTA 2)
   ========================= */
.exchange-strip {
  padding: 0 1rem 2.5rem;
}

.exchange-strip__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.exchange-strip__card {
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 247, 255, 0.9));
  border: none;
  box-shadow: 0px 28px 50px 0px rgba(0, 72, 215, 0.08);
  padding: clamp(1rem, 2vw, 1.4rem);
}

.exchange-strip__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  gap: 0.75rem;
  align-items: stretch;
}

.exchange-strip__field {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) 1px 148px;
  align-items: stretch;
  border-radius: 18px;
  border: 1px solid rgba(0, 72, 215, 0.14);
  background: #fff;
  overflow: hidden;
  height: 62px;
  min-height: 62px;
}

.exchange-strip__label {
  display: flex;
  align-items: center;
  padding: 0 1rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(71, 85, 105, 0.95);
  min-width: 0;
}

.exchange-strip__input {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 0.75rem 1rem;
  overflow: hidden;
}

.exchange-strip__amount {
  width: 100%;
  min-width: 0;
  border: none;
  background: transparent;
  font-size: var(--text-lg);
  font-weight: 700;
  color: rgba(15, 23, 42, 0.95);
  font-variant-numeric: tabular-nums;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.exchange-strip__amount:focus {
  outline: none;
}

.exchange-strip__value {
  width: 100%;
  min-width: 0;
  font-size: var(--text-lg);
  font-weight: 700;
  color: rgba(15, 23, 42, 0.95);
  font-variant-numeric: tabular-nums;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.exchange-strip__divider {
  width: 1px;
  flex-shrink: 0;
  align-self: stretch;
  background: rgba(148, 163, 184, 0.5);
}

.exchange-strip__controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.exchange-strip__swap-btn {
  width: 48px;
  height: 62px;
  min-height: 62px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
  text-decoration: none;
  color: inherit;
  padding: 0;
  flex-shrink: 0;
}

.exchange-strip__swap-btn:hover {
  background: rgba(248, 250, 252, 0.9);
}

.exchange-strip__swap-icon {
  display: block;
  width: 32px;
  height: 19px;
  pointer-events: none;
}

.exchange-strip__cta {
  border-radius: 18px;
  border: none;
  background: #0048d7;
  color: #fff;
  font-weight: 700;
  font-size: var(--text-sm);
  padding: 0 1.2rem;
  height: 62px;
  min-height: 62px;
  box-shadow: 0 18px 45px rgba(0, 72, 215, 0.3);
  cursor: pointer;
  transition: background 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.exchange-strip__cta:hover {
  filter: brightness(0.97);
}

.exchange-strip__trust {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: var(--text-sm);
  color: rgba(100, 116, 139, 0.9);
  padding: 0 0.2rem;
}

.exchange-strip__trust-list {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.exchange-strip__dot {
  opacity: 0.5;
}

.exchange-strip__trust-time span {
  font-weight: 700;
  color: rgba(51, 65, 85, 0.95);
}

.exchange-strip__estimate {
  display: none;
}

.exchange-strip__estimate-label {
  font-size: 14px;
  font-weight: 500;
  color: #18181b;
}

.exchange-strip__estimate-value {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 20px;
  color: #111827;
  flex-shrink: 0;
}

.exchange-strip__estimate-value img {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.exchange-strip__estimate-value strong {
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  color: #111827;
}

@media (max-width: 980px) {
  .exchange-strip {
    padding: 0 1rem 2rem;
  }

  .exchange-strip__card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 72, 215, 0.1);
    padding: 1rem;
  }

  .exchange-strip__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .exchange-strip__field {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    grid-template-areas:
      "label label"
      "input token";
    gap: 0.65rem 0.75rem;
    height: auto;
    min-height: 0;
    padding: 0.875rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: #f8fafc;
  }

  .exchange-strip__label {
    grid-area: label;
    padding: 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #64748b;
  }

  .exchange-strip__input {
    grid-area: input;
    padding: 0;
    align-items: center;
  }

  .exchange-strip__divider {
    display: none;
  }

  .exchange-strip__amount,
  .exchange-strip__value {
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.2;
  }

  .exchange-strip .exchange-strip__token {
    grid-area: token;
    align-self: center;
    width: auto;
    height: auto;
    min-height: 0;
    min-width: 0;
    max-width: none;
    padding: 0.375rem 0.5rem 0.375rem 0.375rem;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: none;
    gap: 6px;
  }

  .exchange-strip .exchange-strip__token .asset-tag {
    display: none;
  }

  .exchange-strip .exchange-strip__token .asset-name {
    font-size: 0.8125rem;
    line-height: 1;
  }

  .exchange-strip .exchange-strip__token .token-logo--pill {
    width: 24px;
    height: 24px;
  }

  .exchange-strip .exchange-strip__token .asset-chevron {
    width: 10px;
    height: 10px;
  }

  .exchange-strip__controls {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0.35rem 0;
    gap: 0;
    position: relative;
    z-index: auto;
    background: transparent;
  }

  .exchange-strip__controls::before,
  .exchange-strip__controls::after {
    display: none;
  }

  .exchange-strip__swap-btn {
    width: auto;
    height: 28px;
    min-height: 28px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .exchange-strip__swap-btn:hover {
    background: transparent;
    opacity: 0.75;
  }

  .exchange-strip__swap-icon {
    width: 47px;
    height: 28px;
  }

  .exchange-strip__estimate {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    height: 52px;
    min-height: 52px;
    margin-top: 0.65rem;
    padding: 8px 12px;
    border-radius: 12px;
    background: #f3f4f6;
    border: none;
    box-sizing: border-box;
  }

  .exchange-strip__cta {
    width: 100%;
    height: 56px;
    min-height: 56px;
    margin-top: 0.65rem;
    font-size: 1rem;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(0, 72, 215, 0.28);
  }

  .exchange-strip__trust {
    margin-top: 0.85rem;
    padding: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
    font-size: 0.75rem;
  }

  .exchange-strip__trust-list {
    justify-content: center;
    gap: 0.45rem;
  }

  .exchange-strip__trust-time {
    display: none;
  }
}

@media (max-width: 420px) {
  .exchange-strip__card {
    padding: 0.875rem;
    border-radius: 18px;
  }

  .exchange-strip__field {
    grid-template-columns: 1fr;
    grid-template-areas:
      "label"
      "input"
      "token";
    gap: 0.5rem;
    padding: 0.875rem;
  }

  .exchange-strip .exchange-strip__token {
    width: auto;
    max-width: max-content;
    justify-content: flex-start;
  }

  .exchange-strip__amount,
  .exchange-strip__value {
    font-size: 1.25rem;
  }
}

/* =========================
   HOW IT WORKS (ORBIT)
   ========================= */
.how-orbit {
  padding: 5rem 1rem;
}

.how-orbit__container {
  max-width: 1200px;
  margin: 0 auto;
}

.how-orbit__header {
  text-align: center;
  margin-bottom: 3rem;
}

.how-orbit__header h2 {
  margin: 0;
  font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
  letter-spacing: -0.02em;
  color: var(--color-slate);
  font-weight: 600;
}

.how-orbit__em {
  font-style: italic;
}

.how-orbit__header p {
  margin: 0.8rem auto 0;
  max-width: 720px;
  font-size: var(--text-lg);
  color: rgba(71, 85, 105, 0.95);
}

.how-orbit__stage {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.how-orbit__desktop {
  position: relative;
  height: 560px;
}

.how-orbit__rings {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.how-orbit__center {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
}

.how-orbit__video-shell {
  position: relative;
  width: 420px;
  height: 360px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: #fff;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.16);
}

.how-orbit__video-shell--mobile {
  width: min(100%, 420px);
  height: auto;
  aspect-ratio: 7 / 6;
}

.how-orbit__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.how-orbit__label {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  pointer-events: none;
}

.how-orbit__label--mobile {
  bottom: 1rem;
}

.how-orbit__label-pill {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  padding: 0.55rem 1.2rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.how-orbit__label-pill span {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
}

.how-orbit__badges {
  position: absolute;
  left: 1.2rem;
  top: 1.2rem;
  display: flex;
  gap: 0.5rem;
}

.how-orbit__badges span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(6px);
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(51, 65, 85, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.how-orbit__pills {
  position: absolute;
  inset: 0;
}

.how-orbit__desc {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  padding: 0 1rem;
  text-align: center;
}

.how-orbit__desc h4 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
  color: var(--color-slate);
}

.how-orbit__desc p {
  margin: 0.6rem auto 0;
  max-width: 720px;
  font-size: 1rem;
  color: rgba(71, 85, 105, 0.9);
}

.step-pill {
  position: absolute;
  padding: 16px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  backdrop-filter: blur(10px);
  cursor: pointer;
  animation: floaty 7s ease-in-out infinite;
}

.step-pill:hover {
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  border-color: rgba(15, 23, 42, 0.18);
}

.step-pill--active {
  background: rgba(15, 23, 42, 0.92);
  color: #fff;
  border-color: rgba(15, 23, 42, 0.92);
}

.how-orbit__mobile {
  display: none;
}

.how-orbit__mobile-copy {
  text-align: center;
  padding: 0 1rem;
}

.how-orbit__mobile-copy h4 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
}

.how-orbit__mobile-copy p {
  margin: 0.5rem 0 0;
  color: rgba(71, 85, 105, 0.9);
}

.how-orbit__mobile-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 1rem;
}

.pill {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.pill:active {
  transform: scale(0.98);
}

.pill--active {
  background: rgba(15, 23, 42, 0.92);
  color: #fff;
  border-color: rgba(15, 23, 42, 0.92);
}

@media (max-width: 980px) {
  .how-orbit__desktop {
    display: none;
  }

  .how-orbit__mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
}

@media (max-width: 720px) {
  .swap-card {
    padding: 1.1rem;
    border-radius: 18px;
  }

  .swap-tabs {
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .swap-tab {
    font-size: var(--text-sm);
  }

  .swap-stack {
    gap: 0.75rem;
  }

  .swap-pair {
    gap: 0.75rem;
  }

  .swap-field {
    padding: 0.9rem 1rem;
    align-items: flex-start;
  }

  .field-input,
  .field-value {
    font-size: 1.45rem;
  }

  .field-input {
    width: 100%;
  }

  .asset-pill {
    padding: 0.4rem 0.6rem;
  }

  .swap-divider-toggle {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
    margin: -4px auto;
  }

  .swap-footer {
    gap: 0.5rem;
  }

  .swap-time.brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .swap-action {
    font-size: var(--text-md);
  }
}

.value-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 22px 22px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
}

.value-card h3 {
  margin: 0 0 10px 0;
  font-size: var(--text-lg);
  font-weight: 700;
  color: rgba(15, 23, 42, 0.92);
  letter-spacing: -0.01em;
}

.value-card p {
  margin: 0 0 12px 0;
  font-size: var(--text-sm);
  line-height: 1.6;
  color: rgba(71, 85, 105, 0.95);
}

.value-meta {
  font-size: var(--text-xs);
  color: rgba(100, 116, 139, 1);
}

.value-meta--tight {
  margin-top: 12px;
  opacity: 0.9;
}

/* Card #3 â€” Recent swaps embedded */
.value-card--feed {
  padding: 18px 18px;
}

.value-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}

.value-title {
  margin: 0;
  font-size: var(--text-md);
  font-weight: 700;
  color: rgba(15, 23, 42, 0.92);
}

.value-tabs {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(248, 250, 252, 0.9);
}

.value-tab {
  border: 0;
  background: transparent;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(71, 85, 105, 0.9);
  cursor: pointer;
}

.value-tab.is-active {
  background: #fff;
  color: rgba(15, 23, 42, 0.92);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08);
}

.value-tabs-meta {
  display: inline-flex;
  align-items: center;
}

.value-panels {
  display: grid;
  gap: 10px;
}

.value-panel {
  display: none;
}

.value-panel.is-active {
  display: block;
}

.recent-swaps {
  display: grid;
  gap: 10px;
  max-height: 320px;
  overflow-y: auto;
  padding-right: 4px;
}

.value-card--feed .swap-feed-list {
  display: grid;
  gap: 8px;
  margin: 0;
  max-width: none;
  max-height: none;
  overflow: visible;
  padding-right: 0;
}

.swap-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 14px;
  padding: 10px 14px;
}

.swap-left {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  column-gap: 10px;
  row-gap: 2px;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.swap-left > .swap-icon-stack {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
}

.swap-feed-pair {
  grid-column: 2;
  grid-row: 1;
  font-size: var(--text-sm);
  font-weight: 700;
  color: rgba(15, 23, 42, 0.92);
  line-height: 1.2;
  min-width: 0;
}

.swap-feed-sub {
  grid-column: 2;
  grid-row: 2;
  font-size: var(--text-xs);
  color: rgba(100, 116, 139, 0.9);
  line-height: 1.2;
  min-width: 0;
}

.swap-icon-stack {
  position: relative;
  width: 28px;
  height: 28px;
}

.swap-icon-img {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
}

.swap-icon-img--primary {
  top: 0;
  right: 0;
  z-index: 2;
  width: 22px;
  height: 22px;
}

.swap-icon-img--secondary {
  left: -3px;
  bottom: 3px;
  z-index: 1;
}

.swap-right {
  text-align: right;
  min-width: 84px;
}

.swap-amt {
  font-size: var(--text-sm);
  font-weight: 700;
  color: rgba(15, 23, 42, 0.95);
}

.swap-time-text {
  font-size: var(--text-xs);
  color: rgba(100, 116, 139, 0.9);
  margin-top: 2px;
  line-height: 1.2;
  text-transform: lowercase;
}

/* =========================
   HOW IT WORKS
   ========================= */
.how-it-works {
  margin-top: 44px;
  margin-bottom: 34px;
}

.how-inner {
  max-width: var(--container, 1180px);
  margin: 0 auto;
  padding: 0 16px;
}

.how-head {
  max-width: 720px;
}

.how-kicker {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(100, 116, 139, 0.9);
  margin-bottom: 10px;
  font-weight: 800;
}

.how-head h2 {
  margin: 0 0 10px 0;
  font-size: 30px;
  letter-spacing: -0.02em;
  color: rgba(15, 23, 42, 0.95);
}

.how-head p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(71, 85, 105, 0.95);
}

.how-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.how-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 18px 18px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
}

.how-num {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 13px;
  color: rgba(0, 72, 215, 1);
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.18);
  margin-bottom: 10px;
}

.how-card h3 {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.92);
}

.how-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(71, 85, 105, 0.95);
}

.how-foot {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(100, 116, 139, 1);
}

.value-section {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 2vw, 2.5rem);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.value-section__title {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.value-section__subtitle {
  margin: 0;
  color: var(--color-muted);
  max-width: 520px;
}

@media (max-width: 900px) {
  .hero-swap {
    grid-template-columns: 1fr;
  }

  .hero-swap__divider {
    flex-direction: row;
    justify-content: center;
    gap: 0.75rem;
  }

  .hero-swap__divider span {
    width: 60px;
    height: 2px;
  }

  .hero-proof__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-proof__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-proof__metric:not(:first-child) {
    border-left: none;
  }

  .hero-proof__metric:nth-child(2n) {
    border-left: 1px solid rgba(15, 23, 42, 0.08);
  }

  .hero-proof__metric:nth-child(n + 3) {
    border-top: 1px solid rgba(15, 23, 42, 0.08);
  }
}

@media (max-width: 520px) {
  .hero-proof__grid {
    grid-template-columns: 1fr;
  }

  .hero-proof__metric:nth-child(2n),
  .hero-proof__metric:nth-child(n + 3) {
    border-left: none;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
  }

  .hero-proof__metric:first-child {
    border-top: none;
  }
}

@media (max-width: 980px) {
  .value-strip-inner {
    grid-template-columns: 1fr;
  }

  .value-card--feed {
    padding: 18px 18px;
  }

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

  .how-head h2 {
    font-size: 24px;
  }
}

.hero-copy {
  background: var(--color-soft);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-muted);
  margin: 0 0 1rem;
  font-size: var(--text-xs);
  font-weight: 700;
}

.eyebrow-row {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.eyebrow-row .eyebrow {
  margin: 0;
  line-height: 1;
}

.eyebrow-row .logo-icon {
  width: 2rem;
  height: 1.2rem;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  margin-bottom: 1rem;
}

.lead {
  color: var(--color-muted);
  line-height: 1.6;
}

.hero-actions {
  margin: 2rem 0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.tutorial-controls {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  min-width: 220px;
}

.tutorial-label {
  font-size: 0.85rem;
  color: var(--color-muted);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.tutorial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(0, 72, 215, 0.12);
}

.tutorial-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.tutorial-arrow {
  border: none;
  background: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-card);
}

.btn {
  border: none;
  font-size: 1rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: #0048d7;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 72, 215, 0.28);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn.primary:hover {
  filter: brightness(1.08);
  box-shadow: 0 12px 28px rgba(0, 72, 215, 0.32);
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(37, 52, 90, 0.5);
  color: var(--color-slate);
}

.btn.full {
  width: 100%;
}

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

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stats-grid article {
  background: #fff;
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.stat-label {
  margin: 0;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
}

.stat-value {
  margin: 0.4rem 0 0;
  font-size: var(--text-lg);
  font-weight: 700;
}

.swap-card {
  background: #fff;
  padding: 1.6rem;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.swap-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: #f3f4f6;
  border-radius: 16px;
  padding: 0.35rem;
  gap: 0.4rem;
}

.swap-tab {
  border: none;
  background: transparent;
  padding: 0.6rem 1rem;
  border-radius: 14px;
  font-weight: 600;
  color: var(--color-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.swap-tab.active {
  background: #0048d7;
  color: #fff;
  box-shadow: 0 10px 20px rgba(0, 72, 215, 0.25);
}

.swap-tab-icon {
  width: 14px;
  height: 14px;
  opacity: 0.9;
}

.swap-tab.active .swap-tab-icon {
  opacity: 1;
}

.swap-step {
  display: none;
  flex-direction: column;
  gap: 1rem;
}

.swap-step.active {
  display: flex;
}

.swap-field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.field-label {
  margin: 0 0 0.4rem;
  color: rgba(100, 116, 139, 0.85);
  font-size: var(--text-xs);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
}

.field-value {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--color-slate);
}

.field-input {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--color-slate);
  width: 120px;
  font-family: "Inter", "IBM Plex Mono", monospace;
}

.field-input::-webkit-outer-spin-button,
.field-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.field-input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

.field-input:focus {
  outline: none;
  box-shadow: none;
}

.is-typing {
  animation: typingPulse 0.4s ease;
  color: var(--color-slate);
}

.field-sub {
  margin: 0.2rem 0 0;
  color: rgba(100, 116, 139, 0.85);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.mono {
  font-family: "Inter", "IBM Plex Mono", monospace;
  font-size: 0.75rem;
}

.asset-pill {
  border: 1px solid var(--color-border);
  background: #fff;
  padding: 0.6rem 0.9rem;
  border-radius: 14px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.2rem 0.6rem;
  align-items: center;
  min-width: 180px;
  width: 180px;
  text-align: left;
  box-shadow: var(--shadow-card);
  cursor: pointer;
}

.asset-pill span {
  font-size: 0.85rem;
  font-weight: 600;
}

/* Exchange strip token picker — inline segment of the field row (not global .asset-pill) */
.exchange-strip .exchange-strip__token {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  align-self: stretch;
  box-sizing: border-box;
  gap: 8px;
  min-width: 0;
  width: 100%;
  max-width: none;
  padding: 0 0.625rem 0 0.5rem;
  margin: 0;
  border: none;
  border-radius: 0;
  background: rgba(248, 250, 252, 0.55);
  box-shadow: none;
  cursor: pointer;
  text-align: left;
  white-space: nowrap;
  text-decoration: none;
  color: inherit;
  line-height: 1;
  flex-shrink: 0;
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
}

.exchange-strip .exchange-strip__token:hover {
  background: rgba(241, 245, 249, 0.95);
}

.exchange-strip .exchange-strip__token .token-logo {
  position: relative;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.exchange-strip .exchange-strip__token .token-logo--pill {
  width: 28px;
  height: 28px;
}

.exchange-strip .exchange-strip__token .token-logo__img {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
  display: block;
}

.exchange-strip .exchange-strip__token .token-logo__network {
  position: absolute;
  right: -2px;
  bottom: -1px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1.5px solid #ffffff;
  border-radius: 30%;
  background: #f3f4f6;
  width: 14px;
  height: 14px;
}

.exchange-strip .exchange-strip__token .token-logo__network[hidden] {
  display: none;
}

.exchange-strip .exchange-strip__token .token-logo__network-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.exchange-strip .exchange-strip__token .asset-pill__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1px;
  min-width: 0;
  flex: 1;
  overflow: hidden;
}

.exchange-strip .exchange-strip__token .asset-name {
  font-size: 13px;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.95);
  line-height: 16px;
}

.exchange-strip .exchange-strip__token .asset-tag {
  display: block;
  padding: 0;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 0;
  font-size: 11px;
  font-weight: 400;
  line-height: 13px;
  background: transparent;
  color: #64748b;
}

.exchange-strip .exchange-strip__token .asset-chevron {
  width: 12px;
  height: 12px;
  opacity: 0.45;
  flex-shrink: 0;
}

.asset-name {
  font-weight: 700;
}

.asset-meta {
  display: block;
  font-size: 0.72rem;
  color: var(--color-muted);
  margin-top: 0.1rem;
}

.swap-card .asset-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(220, 226, 240, 0.95);
  background: linear-gradient(180deg, #ffffff 0%, #f5f7ff 100%);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
  font-weight: 700;
  color: #0f172a;
}

.swap-card .asset-pill__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  min-width: 88px;
}

.swap-card .asset-name {
  font-size: 16px;
  line-height: 1.1;
}

.swap-card .asset-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 3px 8px;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.swap-card .asset-tag--orange {
  background: rgba(245, 158, 11, 0.16);
  color: #b45309;
}

.swap-card .asset-tag--blue {
  background: rgba(59, 130, 246, 0.18);
  color: #0048d7;
}

.asset-pill-wrap {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.asset-pill-wrap > * {
  flex: 0 0 auto;
}

.asset-boost {
  border: 1px solid rgba(0, 72, 215, 0.22);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  background: rgba(0, 72, 215, 0.08);
  color: var(--color-gradient);
  font-weight: 600;
  cursor: pointer;
  box-shadow: none;
  transition: transform 0.2s ease, opacity 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.asset-boost.is-active {
  background: linear-gradient(90deg, var(--color-gradient), var(--color-brand-light));
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(0, 72, 215, 0.22);
  transform: translateY(-1px);
  color: #fff;
}

.boost-icon {
  width: 14px;
  height: 14px;
  display: block;
  color: currentColor;
}

.asset-boost.is-hidden {
  display: none;
}

.token-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-row: span 2;
  object-fit: cover;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.token-img.small {
  width: 22px;
  height: 22px;
}

.asset-meta {
  font-size: 0.7rem;
  color: var(--color-muted);
  font-weight: 500;
}

.swap-divider-toggle {
  border: 2px solid #fff;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #f3f4f6;
  color: var(--color-slate);
  font-size: 0.9rem;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.1);
  cursor: pointer;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.swap-divider-toggle:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.swap-stack {
  display: grid;
  gap: 0.2rem;
}

.swap-widget > .swap-pair,
.hsw__stack.swap-pair {
  position: relative;
  display: grid;
  gap: 0.2rem;
}

.swap-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  color: rgba(100, 116, 139, 0.85);
  padding: 0 0.1rem;
}

.swap-footer {
  display: grid;
  gap: 0.6rem;
}

.swap-time {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.9rem 1.1rem;
  border-radius: 16px;
  background: #eef3ff;
  font-size: var(--text-sm);
  gap: 0.4rem;
}

/* HomeSwapWidget estimate row — label + value on one line */
.home-hero__swap.hsw .hsw__estimate-timer-icon {
  display: block !important;
  flex-shrink: 0;
  color: #18181b !important;
  opacity: 1 !important;
  filter: none !important;
}

.home-hero__swap.hsw .hsw__estimate-label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  min-width: 0;
}

.home-hero__swap.hsw .hsw__estimate,
.home-hero__swap.hsw .swap-time.hsw__estimate {
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.swap-time.brand {
  background: rgba(239, 246, 255, 0.7);
  border: 1px solid #93c5fd;
  color: var(--color-slate);
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.swap-time.brand strong {
  color: #0048d7;
  font-size: var(--text-sm);
  font-weight: 700;
}

.swap-time-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.swap-time-label {
  color: rgba(100, 116, 139, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: var(--text-xs);
  font-weight: 700;
}

.swap-time-note {
  color: rgba(100, 116, 139, 0.85);
  font-size: var(--text-xs);
}

.asset-picker {
  position: relative;
}

.asset-chevron {
  width: 16px;
  height: 16px;
  opacity: 0.7;
  margin-left: auto;
}

.coin-menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 0;
  left: 0;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.2);
  padding: 0.5rem 0;
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  z-index: 10;
}

.coin-menu button {
  border: none;
  background: transparent;
  padding: 0.55rem 1.1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--color-slate);
  cursor: pointer;
}

.coin-menu button:hover {
  background: #f5f7ff;
}

.coin-menu-meta {
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--color-muted);
}

.asset-picker .coin-menu.is-open {
  display: flex;
}

@keyframes typingPulse {
  0% {
    opacity: 0.5;
    transform: translateY(2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.swap-time strong {
  font-size: 0.95rem;
}

.time-icon {
  width: 16px;
  height: 16px;
}

.bolt-pill {
  margin-left: auto;
  width: 30px;
  height: auto;
}

.swap-time.compact {
  margin-top: 0.8rem;
}

.swap-action {
  margin-top: 0.5rem;
}

.swap-input {
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 0.9rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--color-muted);
  background: #fff;
}

.swap-input .placeholder {
  color: #a1a7b7;
}

.swap-qr {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem;
  border-radius: 18px;
  border: 1px solid var(--color-border);
  background: #fff;
}

.qr-box {
  width: 96px;
  height: 96px;
  border-radius: 18px;
  background: #fff;
  position: relative;
  border: 1px solid var(--color-border);
  display: grid;
  place-items: center;
}

.qr-image {
  width: 78px;
  height: 78px;
  object-fit: cover;
}

.bolt-badge {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: auto;
  box-shadow: 0 6px 14px rgba(124, 77, 255, 0.35);
}

.copy-btn {
  border: 1px solid var(--color-border);
  background: #fff;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  cursor: pointer;
  box-shadow: var(--shadow-card);
}

.copy-btn img {
  width: 16px;
  height: 16px;
}

.swap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.mini-card {
  border-radius: 14px;
  border: 1px solid var(--color-border);
  padding: 0.9rem;
  background: #fff;
  position: relative;
  display: grid;
  gap: 0.35rem;
}

.swap-progress {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-muted);
}

.swap-progress span {
  background: #f6f7fb;
  padding: 0.55rem 0.4rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.progress-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #eef1fb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.progress-icon img {
  width: 12px;
  height: 12px;
}

.swap-progress .active {
  background: var(--color-tint);
  color: var(--color-primary);
  font-weight: 600;
}

.recent-swaps {
  margin: 3rem auto 0;
  max-width: 1200px;
}

.recent-swaps--split .recent-split {
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) minmax(320px, 0.8fr);
  gap: 2rem;
  align-items: start;
}

.recent-copy {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  padding: 2rem;
  display: grid;
  gap: 1rem;
  min-height: 340px;
  width: 100%;
  max-width: 520px;
  justify-self: start;
}

.recent-copy__cards,
.recent-bitcoin__cards {
  display: grid;
  gap: 0.8rem;
}

.recent-card-item {
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.recent-card-toggle {
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  padding: 0.9rem 1rem;
  font-weight: 700;
  color: var(--color-slate);
  cursor: pointer;
}

.recent-card-body {
  display: none;
  padding: 0 1rem 1rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.recent-card-item.is-open {
  border-color: rgba(0, 72, 215, 0.3);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.recent-card-item.is-open .recent-card-body {
  display: block;
}

.recent-copy h2 {
  margin: 0;
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
}

.recent-copy p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.6;
}

.recent-copy__accent {
  color: var(--color-slate);
  font-weight: 600;
}

.recent-highlight h3 {
  margin: 0 0 0.4rem;
}

.recent-highlight__meta {
  margin-top: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.highlight-tag {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-primary);
  background: rgba(0, 72, 215, 0.12);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
}

.highlight-hint {
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-left: auto;
}

.highlight-card {
  margin-top: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  border-left: 3px solid rgba(0, 72, 215, 0.25);
  box-shadow: none;
  padding: 1.4rem;
  display: grid;
  gap: 1rem;
}

.highlight-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.highlight-badge {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-primary);
  background: rgba(0, 72, 215, 0.12);
  border-radius: 999px;
  padding: 0.3rem 0.6rem;
}

.highlight-badge--time {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 600;
  color: var(--color-muted);
  background: rgba(0, 72, 215, 0.08);
}

.highlight-time-text {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.highlight-badge--time .highlight-badge-value {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-muted);
  letter-spacing: -0.01em;
}

.highlight-badge--time .highlight-badge-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--color-muted);
}

.highlight-wheel {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
  max-height: 360px;
  overflow-y: auto;
  padding-right: 0.1rem;
  padding-left: 0.4rem;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  mask-image: linear-gradient(180deg, #000 75%, transparent 100%);
}

.hero-highlights {
  margin: 1.5rem auto 0;
  max-width: 1200px;
  padding: 0 1rem;
}

.hero-highlights__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.hero-highlights__header h3 {
  margin: 0 0 0.35rem;
}

.highlight-wheel--horizontal {
  margin-top: 0;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  max-height: none;
  padding: 0.4rem 0;
  mask-image: linear-gradient(90deg, #000 0%, #000 92%, transparent 100%);
}

.highlight-wheel--horizontal .highlight-card {
  min-width: 320px;
  flex: 0 0 320px;
}

.highlight-wheel--horizontal::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.highlight-wheel::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.highlight-wheel::-webkit-scrollbar-thumb {
  background: rgba(0, 72, 215, 0.25);
  border-radius: 999px;
}

.highlight-wheel::-webkit-scrollbar-track {
  background: rgba(0, 72, 215, 0.08);
  border-radius: 999px;
}

.highlight-pair {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: var(--text-sm);
}

.highlight-pair .token-img {
  border: 2px solid #fff;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
}

.highlight-pair .token-img + .token-img {
  margin-left: -10px;
}

.highlight-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.highlight-metrics > div {
  background: #fff;
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(0, 72, 215, 0.12);
}

.highlight-metrics .stat-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--text-xs);
}

.highlight-metrics .stat-value {
  font-size: var(--text-lg);
}

.recent-grid--compact .recent-card {
  padding: 0.85rem 1rem;
}

.recent-grid--compact .recent-top {
  margin-bottom: 0.4rem;
}

.recent-grid--compact .recent-amount {
  font-size: 0.95rem;
}

.highlight-note {
  margin: 0;
  color: var(--color-muted);
  font-size: var(--text-xs);
  background: rgba(0, 72, 215, 0.08);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  width: fit-content;
}

.recent-list .recent-grid {
  grid-template-columns: 1fr;
}

.recent-list {
  position: relative;
}

.recent-list .recent-grid {
  max-height: 320px;
  overflow-y: auto;
  padding-right: 0.3rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  mask-image: linear-gradient(180deg, #000 70%, transparent 100%);
}

.recent-list .recent-grid::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.recent-list::after {
  content: "Scroll to explore";
  position: absolute;
  right: 0;
  top: -1.4rem;
  font-size: 0.75rem;
  color: var(--color-muted);
}

@media (max-width: 980px) {
  .recent-swaps--split .recent-split {
    grid-template-columns: 1fr;
  }
}

.recent-bitcoin {
  margin: 3rem auto 0;
  max-width: 1200px;
}

.recent-bitcoin__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.recent-bitcoin__copy {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  padding: 2rem;
  display: grid;
  gap: 1rem;
  min-height: 340px;
  width: 100%;
  max-width: 520px;
  justify-self: start;
}

.recent-bitcoin__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

@media (max-width: 980px) {
  .recent-bitcoin__grid {
    grid-template-columns: 1fr;
  }
}

.recent-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0 0.5rem;
}

.recent-status--inline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.6rem 0.5rem;
  font-size: var(--text-xs);
  color: var(--color-muted);
}

.section-header {
  max-width: 820px;
  margin: 0 auto 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: center;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(var(--text-2xl), 2.6vw, var(--text-3xl));
  letter-spacing: -0.02em;
}

.section-subtitle {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.6;
  font-size: var(--text-md);
}

.stats-showcase {
  margin: 3rem auto 0;
  max-width: 1200px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 3vw, 2.8rem);
  box-shadow: var(--shadow-soft);
}

/* ===== Protocol Proof (Uniswap-style left copy / right stats) ===== */
.protocol-proof {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(3.5rem, 5vw, 5rem) 1rem;
}

.protocol-proof__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
}

.protocol-proof-2 .protocol-proof__grid {
  grid-template-columns: 0.85fr 1.15fr;
  grid-template-areas: "feed copy";
}

.protocol-proof-2 .protocol-proof__copy {
  grid-area: copy;
}

.protocol-proof-2 .value-card--feed {
  grid-area: feed;
}

.protocol-proof__grid--single {
  grid-template-columns: 1fr;
}

.protocol-proof__copy {
  max-width: 640px;
}

.protocol-proof__visual {
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #f7f6f2;
  padding: 2.5rem;
  text-align: center;
  color: var(--color-muted);
  font-size: var(--text-sm);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.protocol-proof__eyebrow {
  margin: 0 0 0.6rem;
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
  font-weight: 700;
}

.protocol-proof__title {
  margin: 0 0 1rem;
  font-size: clamp(var(--text-2xl), 2.6vw, var(--text-3xl));
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-slate);
}

.protocol-proof__lead {
  margin: 0 0 0.8rem;
  font-size: var(--text-md);
  line-height: 1.6;
  color: var(--color-slate);
  max-width: 52ch;
}

.protocol-proof__sub {
  margin: 0 0 1.2rem;
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--color-muted);
  max-width: 56ch;
}

.protocol-proof__sub strong {
  color: var(--color-slate);
}

.protocol-proof__actions {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.btn.ghost {
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-slate);
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow-card);
  text-decoration: none;
}

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

.protocol-proof__micro {
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.protocol-proof__metrics {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8rem;
}

.metric-pill {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  box-shadow: var(--shadow-card);
}

.metric-label {
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-muted);
  font-weight: 600;
}

.metric-value {
  margin: 0.5rem 0 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-slate);
}

.protocol-proof__stats {
  display: grid;
  gap: 1rem;
}

.stats-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.1rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  box-shadow: var(--shadow-card);
  color: var(--color-muted);
  font-weight: 700;
}

.stats-pill__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #16a34a;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12);
}

.stats-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.35rem 1.35rem 1.5rem;
  box-shadow: var(--shadow-card);
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stat-card__label {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-muted);
  font-weight: 700;
}

.stat-card__value {
  margin: 0.85rem 0 0;
  font-size: clamp(2.2rem, 3vw, 3.1rem);
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--color-slate);
}

.stat-card.accent {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.08), rgba(22, 163, 74, 0.12));
  border-color: rgba(22, 163, 74, 0.18);
}

.stat-card.accent .stat-card__label {
  color: #15803d;
}

.stat-card.accent .stat-card__value {
  color: #15803d;
}

@media (max-width: 980px) {
  .protocol-proof__grid {
    grid-template-columns: 1fr;
  }

  .protocol-proof__copy {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .stats-cards {
    grid-template-columns: 1fr;
  }
}

.steps-section,
.audience-section,
.toolkit-section {
  margin: 3rem auto 0;
  max-width: 1200px;
}

/* ===== Toolkit (How to swap) â€” v2 (3Commas-style, on-brand) ===== */
.toolkit-header {
  text-align: center;
  margin: 0 auto 1.75rem;
  max-width: 820px;
}

.toolkit-header h2 {
  margin: 0;
  font-size: clamp(2rem, 2.6vw, 2.6rem);
  letter-spacing: -0.03em;
}

.toolkit-layout--v2 {
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: start;
}

.toolkit-list--v2 {
  gap: 0.9rem;
}

.toolkit-item--v2 {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.toolkit-trigger--v2 {
  padding: 1.15rem 1.15rem;
  grid-template-columns: auto 1fr auto;
  gap: 0.9rem;
}

.toolkit-icon--v2 {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(0, 72, 215, 0.12);
}

.toolkit-title--v2 {
  font-size: 1rem;
  font-weight: 700;
}

.toolkit-chevron--v2 {
  width: 34px;
  height: 34px;
  font-size: 0.95rem;
  background: rgba(15, 23, 42, 0.06);
}

.toolkit-body--v2 {
  margin: 0;
  padding: 0 1.15rem 1.15rem 1.15rem;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.toolkit-item--v2 .toolkit-body {
  display: none;
}

.toolkit-item--v2.is-active .toolkit-body {
  display: block;
}

.toolkit-item--v2.is-active {
  border-color: rgba(0, 72, 215, 0.28);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.toolkit-item--v2.is-active .toolkit-icon--v2 {
  background: rgba(0, 72, 215, 0.16);
}

.toolkit-item--v2.is-active .toolkit-chevron--v2 {
  transform: rotate(0deg);
  background: rgba(0, 72, 215, 0.14);
  color: var(--color-primary);
}

.toolkit-media--v2 {
  margin: 0;
}

.toolkit-frame--v2 {
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 2.4vw, 1.8rem);
  background: linear-gradient(180deg, rgba(237, 232, 255, 0.75), rgba(238, 242, 255, 0.85));
  border: 1px solid rgba(224, 228, 239, 0.9);
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 96px;
}

.toolkit-frame--v2 img {
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  border: 10px solid #fff;
  box-shadow: 0 12px 35px rgba(32, 49, 49, 0.18);
}

@media (max-width: 980px) {
  .toolkit-layout--v2 {
    grid-template-columns: 1fr;
  }

  .toolkit-frame--v2 {
    position: relative;
    top: auto;
  }
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.step-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.6rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 0.8rem;
}

.step-badge {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(0, 72, 215, 0.12);
  color: var(--color-primary);
  font-weight: 700;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.audience-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.4rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.audience-card h4 {
  margin: 0 0 0.4rem;
}

.toolkit-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: start;
}

.toolkit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.toolkit-item {
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.toolkit-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.8rem;
  align-items: center;
  padding: 0.8rem 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--color-slate);
  font-weight: 600;
}

.toolkit-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0, 72, 215, 0.12);
}

.toolkit-icon img {
  width: 18px;
  height: 18px;
}

.toolkit-title {
  text-align: left;
}

.toolkit-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.08);
  font-size: 0.9rem;
  transform: rotate(180deg);
  transition: transform 0.2s ease;
}

.toolkit-body {
  margin: 0 0 1rem 3.6rem;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  display: none;
}

.toolkit-item.is-active .toolkit-body {
  display: block;
}

.toolkit-item.is-active .toolkit-chevron {
  transform: rotate(0deg);
  background: rgba(0, 72, 215, 0.16);
  color: var(--color-primary);
}

.toolkit-media {
  margin: 0;
}

.toolkit-frame {
  background: linear-gradient(180deg, rgba(234, 245, 237, 0.95), rgba(234, 245, 245, 0.95));
  border-radius: 24px;
  padding: 1.5rem;
  display: grid;
  place-items: center;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.15);
}

.toolkit-frame img {
  width: 100%;
  max-width: 360px;
  border-radius: 18px;
  border: 10px solid #fff;
  box-shadow: 0 12px 35px rgba(32, 49, 49, 0.2);
}

.recent-header h3 {
  margin: 0;
}

.recent-header span {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.recent-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.recent-bubbles {
  display: inline-flex;
  gap: 0.2rem;
}

.recent-bubbles span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: 0.4;
  animation: bubblePulse 1.4s infinite ease-in-out;
}

.recent-bubbles span:nth-child(2) {
  animation-delay: 0.2s;
}

.recent-bubbles span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bubblePulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.recent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.recent-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: none;
  padding: 1rem 1.2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.recent-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}

.recent-pair {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.recent-amount {
  font-weight: 600;
  color: var(--color-slate);
}

.recent-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.recent-card.is-updating {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
}

.value-props {
  margin: 3rem auto 0;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.value-prop {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: 1.6rem;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2rem;
  align-items: center;
}

.value-prop.reverse {
  grid-template-columns: 1fr 180px;
}

.value-media {
  display: grid;
  place-items: center;
}

.value-prop.reverse .value-media {
  order: 2;
}

.value-prop.reverse .value-body {
  order: 1;
}

.value-prop h3 {
  margin: 0 0 0.6rem;
}

.value-prop p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.6;
}

.value-icon {
  width: 120px;
  height: auto;
}

.cta-band {
  margin: 3rem auto 0;
  max-width: 1200px;
  background: #0048d7;
  color: #fff;
  border-radius: 20px;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 10px 40px rgba(0, 72, 215, 0.25);
}

.cta-band__inner {
  max-width: 560px;
  margin: 0 auto;
}

.cta-band__content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cta-band__title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #fff;
}

@media (min-width: 640px) {
  .cta-band__title {
    font-size: 1.875rem;
  }
}

.cta-band__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.cta-band__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  background: #fff;
  color: #0048d7;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  align-self: flex-start;
}

.cta-band__btn:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

/* Legacy class for any other uses */
.cta-band p {
  color: rgba(255, 255, 255, 0.9);
}

.cta-content {
  max-width: 520px;
}

.how-to-guide {
  margin: 3rem auto 0;
  max-width: 1200px;
  background: #0f172a;
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  align-items: center;
}

.guide-copy p {
  color: rgba(255, 255, 255, 0.75);
}

.guide-media img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.25);
}

.convert-widget {
  margin: 2rem auto 0;
  max-width: 1200px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 1rem;
  box-shadow: var(--shadow-card);
}

.cta-convert {
  background: #f3f6ff;
  border-radius: 20px;
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.6rem;
  align-items: center;
}

.cta-field {
  background: #fff;
  padding: 0.7rem;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.cta-field span {
  font-size: 0.75rem;
  opacity: 0.8;
}

.cta-field strong {
  font-size: 1rem;
}

.cta-asset {
  background: #fff;
  padding: 0.7rem;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-asset strong {
  font-size: 0.9rem;
}

.cta-asset small {
  font-size: 0.7rem;
  opacity: 0.8;
}

.cta-swap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-swap button {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: none;
  background: #e7edff;
  color: var(--color-primary);
  font-size: 1rem;
  cursor: pointer;
}

.cta-cta {
  background: #0d6efd;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 14px;
  padding: 0.9rem 1rem;
  text-align: center;
}

.site-footer {
  margin: 3rem auto 0;
  max-width: 1200px;
  border-top: 1px solid var(--color-border);
  padding: 2rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.site-footer h4 {
  margin: 0 0 0.6rem;
}

.site-footer a {
  display: block;
  color: var(--color-muted);
  text-decoration: none;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.site-footer a:hover {
  color: var(--color-primary);
}

.swap-card:hover {
  box-shadow: 0 35px 70px rgba(0, 72, 215, 0.25);
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy {
    padding: 2rem;
  }

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

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

  .swap-field {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .tutorial-controls {
    width: 100%;
    justify-content: space-between;
  }

  .recent-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .cta-convert {
    grid-template-columns: 1fr 1fr;
  }

  .value-prop {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   STATUS PAGE — Check swap status (ab-v2 / exchange-card)
========================================================= */
.status-page .ab-header__strip {
  display: none;
}

body.status-page .page {
  padding-top: 0.5rem;
}

body.status-page.status-page--detail .page {
  padding-top: 0;
}

.status-page {
  padding: 1rem 0 3rem;
}

body.status-page.status-page--detail .status-page {
  padding-top: 0.5rem;
}

.status-page__inner {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.status-widget.exchange-card {
  width: 100%;
  max-width: 600px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

body.status-page.status-page--detail .status-widget.exchange-card:has(.ab-confirm-v2) {
  max-width: 600px;
}

.status-lookup__card {
  display: grid;
  gap: 14px;
}

.status-lookup__header {
  margin-bottom: 0;
}

.status-lookup__body {
  padding: 4px 0 0;
}

.status-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.status-page .ab-v2-fieldset--lookup {
  margin: 0;
}

.status-page .ab-v2-fieldset--lookup .ab-v2-fieldset__box {
  padding: 16px 14px;
}

.status-page .ab-v2-fieldset--lookup .status-field__input {
  flex: 1;
  width: 100%;
  min-width: 0;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 0.95rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  color: #0f172a;
  box-sizing: border-box;
}

.status-page .ab-v2-fieldset--lookup .status-field__input::placeholder {
  color: rgba(100, 116, 139, 0.6);
}

.status-page .ab-v2-fieldset--lookup .status-field__input:focus {
  outline: none;
}

.status-field__hint {
  margin: -2px 0 0;
  font-size: 0.8rem;
  color: rgba(100, 116, 139, 0.75);
}

.status-field__error {
  margin: 0;
  font-size: 0.85rem;
  color: #b91c1c;
  font-weight: 500;
}

.status-form__submit {
  margin-top: 4px;
}

.status-recent {
  margin-top: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(220, 226, 240, 0.7);
}

.status-recent__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.5);
  margin-bottom: 0.5rem;
}

.status-recent__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.status-chip {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(220, 226, 240, 0.9);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.8);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.status-chip:hover {
  background: rgba(46, 107, 255, 0.08);
  border-color: rgba(46, 107, 255, 0.25);
}

.status-detail__back {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2e6bff;
  text-decoration: none;
}

.status-detail__back:hover {
  text-decoration: underline;
}

.status-detail__loading {
  margin-top: 0.25rem;
}

.status-skeleton {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(220, 226, 240, 0.9);
  padding: 24px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.status-skeleton__header {
  height: 92px;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.06) 25%, rgba(15, 23, 42, 0.12) 50%, rgba(15, 23, 42, 0.06) 75%);
  background-size: 200% 100%;
  animation: statusShimmer 1.2s ease-in-out infinite;
  margin-bottom: 12px;
}

.status-skeleton__stepper {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 12px;
}

.status-skeleton__line {
  height: 120px;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.06) 25%, rgba(15, 23, 42, 0.1) 50%, rgba(15, 23, 42, 0.06) 75%);
  background-size: 200% 100%;
  animation: statusShimmer 1.2s ease-in-out infinite;
}

.status-skeleton__line:nth-child(2) { animation-delay: 0.15s; }
.status-skeleton__line:nth-child(3) { animation-delay: 0.3s; }

.status-skeleton__card {
  height: 180px;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.06) 25%, rgba(15, 23, 42, 0.1) 50%, rgba(15, 23, 42, 0.06) 75%);
  background-size: 200% 100%;
  animation: statusShimmer 1.2s ease-in-out infinite;
  animation-delay: 0.2s;
}

@keyframes statusShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.status-detail__content {
  width: 100%;
  min-width: 0;
}

.status-page .exchange-card .ab-v2-stepper .ab-stepper__meta {
  width: 100%;
  margin-top: 14px;
}

.ab-v2-swapPanel--meta {
  padding: 16px 18px 18px;
}

.status-meta-dl {
  margin: 0;
  display: grid;
  gap: 10px;
}

.status-meta-dl__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  line-height: 1.4;
}

.status-meta-dl__row dt {
  margin: 0;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.55);
  flex-shrink: 0;
}

.status-meta-dl__row dd {
  margin: 0;
  font-weight: 600;
  color: #0f172a;
  text-align: right;
  word-break: break-word;
}

.status-explorer-wrap {
  margin-top: 4px;
}

.status-explorer-btn {
  width: 100%;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  box-sizing: border-box;
}

.status-detail__actions {
  margin-top: 4px;
  text-align: center;
}

.status-help {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2e6bff;
  text-decoration: none;
}

.status-help:hover {
  color: #0048d7;
  text-decoration: underline;
}

.status-detail__error-card {
  text-align: center;
  display: grid;
  gap: 12px;
}

.status-detail__error-card .btn {
  margin-top: 4px;
}

.status-help-section {
  max-width: 600px;
  margin: 2rem auto 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(220, 226, 240, 0.8);
  scroll-margin-top: 5rem;
}

.status-help-section__title {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
}

.status-help-section__text {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: rgba(15, 23, 42, 0.75);
  line-height: 1.55;
}

.status-help-section__actions .status-help-section__text {
  margin-bottom: 0.75rem;
}

.status-help-section__copy {
  width: 100%;
  max-width: 280px;
}

.status-footer .footer-grid {
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .status-page {
    padding: 1.5rem 0 2.5rem;
  }
}

/* ===== Coins about block (About token on network) â€” standard layout for all coin pages ===== */
.coins-about {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 2vw, 2rem);
}

.coins-about__row1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .coins-about__row1 {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 1.5rem;
  }
}

.coins-about__flat {
  min-width: 0;
}
.coins-about__flat .coins-about__title {
  margin: 0 0 0.5rem 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.25;
}
@media (min-width: 640px) {
  .coins-about__flat .coins-about__title { font-size: 1.875rem; }
}
.coins-about__flat .coins-about__body {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #475569;
}

.coins-about__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}
@media (min-width: 768px) {
  .coins-about__visual {
    min-height: 140px;
    justify-content: center;
  }
}
.coins-about__visual--card {
  padding: 2rem 2.5rem;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  width: 100%;
}
.coins-about__visual__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.coins-about__visual__img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.coins-about__visual__img--right {
  width: 72px;
  height: 72px;
}
@media (min-width: 768px) {
  .coins-about__visual__img {
    width: 72px;
    height: 72px;
  }
  .coins-about__visual__img--right {
    width: 80px;
    height: 80px;
  }
}
.coins-about__visual__arrow {
  font-size: 1.5rem;
  color: #94a3b8;
}
.coins-about__visual__swap-to {
  margin: 1rem 0 0.5rem 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #64748b;
  text-align: center;
}
.coins-about__visual__tokens {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.coins-about__visual__token {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: contain;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

/* ===== Coins ecosystem block (Why use X?) ===== */
.coins-ecosystem {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 3vw, 2rem);
}

.coins-ecosystem__inner {
  width: 100%;
}

.coins-ecosystem__title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
}

.coins-ecosystem__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (max-width: 640px) {
  .coins-ecosystem__grid {
    grid-template-columns: 1fr;
  }
}

.coins-ecosystem__card {
  padding: 1.25rem 1.5rem;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  border: 1px solid rgba(220, 226, 240, 0.9);
  background: #fff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}
.coins-ecosystem__card-image {
  width: 100%;
  min-height: 80px;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.8);
  overflow: hidden;
}
.coins-ecosystem__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coins-ecosystem__card-title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.coins-ecosystem__card-body {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(15, 23, 42, 0.78);
}

/* ===== Coins extra sections (What can you do, How to get, Coin FAQ, Related coins) ===== */
.coins-extra {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 3vw, 2rem);
}

.coins-extra__inner {
  width: 100%;
}

/* What can you do: why-exists style â€” list left, image right */
.coins-extra__inner--grid {
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 980px) {
  .coins-extra__inner--grid {
    flex-direction: column;
    align-items: stretch;
  }
}

.coins-extra--what .coins-extra__copy {
  flex: 1;
  min-width: 0;
  max-width: 640px;
  padding-right: clamp(1rem, 3vw, 2rem);
}
@media (max-width: 980px) {
  .coins-extra--what .coins-extra__copy {
    max-width: none;
    padding-right: 0;
  }
}

.coins-extra--what .coins-extra__visual {
  flex: 1;
  min-width: 0;
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.coins-extra__visual-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 2rem;
  background: rgba(248, 250, 252, 0.6);
}

.coins-extra__visual-img {
  width: 160px;
  height: 160px;
  object-fit: contain;
}

/* How to get: two columns â€” Pairs (left) + Related assets (right) */
.coins-extra__how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .coins-extra__how-grid {
    grid-template-columns: 1fr;
  }
}

.coins-extra__how-col {
  min-width: 0;
}

.coins-extra__how-label {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #64748b;
}

.coins-extra__pairs-grid {
  margin-top: 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 640px) {
  .coins-extra__pairs-grid {
    grid-template-columns: 1fr;
  }
}

.coins-extra--how .swap-other-pairs__card-footer {
  justify-content: center;
}

.coins-extra--how .swap-other-pairs__card-time {
  display: none;
}

.coins-extra--how .swap-other-pairs__card-btn {
  position: static;
  transform: none;
  opacity: 1;
}

.coins-extra__title {
  margin: 0 0 1rem;
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.coins-extra__p {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(15, 23, 42, 0.85);
}

.coins-extra__list {
  margin: 0;
  padding-left: 1.25rem;
  list-style: disc;
}

.coins-extra__list-item {
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(15, 23, 42, 0.85);
}

.coins-extra__list-item:last-child {
  margin-bottom: 0;
}

.coins-extra__link {
  color: #0048d7;
  text-decoration: none;
  font-weight: 500;
}

.coins-extra__link:hover {
  text-decoration: underline;
}

.coins-extra__note {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #64748b;
}

.coins-extra__faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.coins-extra__faq-item {
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  background: #fff;
}

.coins-extra__faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #0f172a;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.coins-extra__faq-item summary::-webkit-details-marker {
  display: none;
}

.coins-extra__faq-item p {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(15, 23, 42, 0.8);
}

.coins-extra__related-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.coins-extra__related-item {
  margin: 0;
}

.coins-extra__related-item .coins-extra__link {
  display: inline-block;
  padding: 0.35rem 0.5rem 0;
  font-size: 0.9375rem;
}

/* ===== How Allblu Works (homepage trade flow) ===== */
.how-allblu-works__quote-pill {
  opacity: 0;
  transform: translateY(6px);
  animation: how-allblu-quote-in 0.7s ease 1.2s forwards;
}

@keyframes how-allblu-quote-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .how-allblu-works__quote-pill {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ===== Popular Swap Routes (used on index + coin "How to get" section) ===== */
.popular-swap-routes {
  padding: 48px 0 56px;
  border-top: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #f8fafc 0%, transparent 100%);
}

.popular-swap-routes__wrap {
  max-width: 72rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.popular-swap-routes__header {
  text-align: center;
  margin-bottom: 2rem;
}

.popular-swap-routes__title {
  margin: 0 0 0.375rem 0;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
  color: #0f172a;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .popular-swap-routes__title {
    font-size: 1.875rem;
  }
}

.popular-swap-routes__subtitle {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #64748b;
  max-width: 44ch;
  margin-left: auto;
  margin-right: auto;
}

.popular-swap-routes__columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .popular-swap-routes__columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    align-items: start;
  }
}

.popular-swap-routes__column-title {
  margin: 0 0 0.75rem 0;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}

.popular-swap-routes__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.popular-swap-routes__card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  color: #0f172a;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.popular-swap-routes__card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
  background: #fff;
}

.popular-swap-routes__rank {
  flex-shrink: 0;
  width: 1.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #94a3b8;
}

.popular-swap-routes__pair {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
}

.popular-swap-routes__pair--single {
  flex: 1;
}

.popular-swap-routes__asset {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.popular-swap-routes__asset > .token-logo {
  flex-shrink: 0;
}

.popular-swap-routes__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
}

.popular-swap-routes__symbol {
  font-weight: 600;
  color: #0f172a;
}

.popular-swap-routes__arrow {
  flex-shrink: 0;
  color: #94a3b8;
  font-weight: 400;
  font-size: 1rem;
}

.popular-swap-routes__go {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: color 0.15s ease, transform 0.15s ease;
}

.popular-swap-routes__card:hover .popular-swap-routes__go {
  color: #0048d7;
  transform: translateX(2px);
}

.popular-swap-routes__cta-wrap {
  margin: 0;
  text-align: center;
}

.popular-swap-routes__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0048d7;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
}

.popular-swap-routes__cta:hover {
  background: rgba(0, 72, 215, 0.08);
  color: #0048d7;
}

/* ===== Exchange confirm v2 (awaiting deposit) ===== */
.exchange-card:has(.ab-confirm-v2.is-active) {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  max-width: 600px;
}

.exchange-card:has(.ab-confirm-v2.is-active) .exchange-state--form {
  display: none !important;
}

.ab-v2 {
  display: grid;
  gap: 12px;
  width: 100%;
  min-width: 0;
}

.ab-v2-card {
  border-radius: 18px;
  border: 1px solid rgba(220, 226, 240, 0.9);
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 8px 60px 0 #eeefff;
  min-width: 0;
  overflow: visible;
}

.ab-v2-card--deposit {
  padding: 20px;
}

.ab-v2-alert {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  min-height: 92px;
  padding: 18px 18px;
  border-radius: 14px;
  background: var(--ab-v2-alert-bg, rgba(255, 237, 213, 0.9));
  border: 1px solid var(--ab-v2-alert-border, rgba(251, 191, 36, 0.28));
  box-shadow: 0 8px 60px 0 #eeefff;
}

.ab-v2-alert__copy {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ab-v2-alert__order {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  align-self: stretch;
  min-width: 104px;
  min-height: 52px;
  padding: 10px 14px;
  border: 1px solid var(--ab-v2-alert-border, rgba(251, 191, 36, 0.28));
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
}

.ab-v2-alert__orderLabel {
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.45);
}

.ab-v2-alert__orderValue {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.03em;
  color: #0f172a;
}

.ab-v2-alert__icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: #ffffff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: var(--ab-v2-alert-icon-shadow, 0 2px 8px rgba(245, 158, 11, 0.12));
}

.ab-v2-alert__icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.ab-v2-alert__title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ab-v2-alert-title, #ea580c);
}

.ab-v2-alert__text {
  margin: 2px 0 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #0f172a;
}

.ab-v2-alert__text b {
  font-weight: 700;
}

.ab-v2-alert--btc {
  --ab-v2-alert-bg: rgba(255, 237, 213, 0.9);
  --ab-v2-alert-border: rgba(251, 191, 36, 0.28);
  --ab-v2-alert-title: #ea580c;
  --ab-v2-alert-icon-shadow: 0 2px 8px rgba(245, 158, 11, 0.12);
}

.ab-v2-alert--eth {
  --ab-v2-alert-bg: rgba(236, 241, 255, 0.95);
  --ab-v2-alert-border: rgba(98, 126, 234, 0.32);
  --ab-v2-alert-title: #627eea;
  --ab-v2-alert-icon-shadow: 0 2px 8px rgba(98, 126, 234, 0.18);
}

.ab-v2-alert--usdc {
  --ab-v2-alert-bg: rgba(230, 242, 255, 0.95);
  --ab-v2-alert-border: rgba(39, 117, 202, 0.28);
  --ab-v2-alert-title: #2775ca;
  --ab-v2-alert-icon-shadow: 0 2px 8px rgba(39, 117, 202, 0.16);
}

.ab-v2-alert--usdt {
  --ab-v2-alert-bg: rgba(232, 250, 243, 0.95);
  --ab-v2-alert-border: rgba(38, 161, 123, 0.28);
  --ab-v2-alert-title: #26a17b;
  --ab-v2-alert-icon-shadow: 0 2px 8px rgba(38, 161, 123, 0.16);
}

.ab-v2-alert--arb {
  --ab-v2-alert-bg: rgba(230, 245, 255, 0.95);
  --ab-v2-alert-border: rgba(40, 160, 240, 0.28);
  --ab-v2-alert-title: #28a0f0;
  --ab-v2-alert-icon-shadow: 0 2px 8px rgba(40, 160, 240, 0.16);
}

.ab-v2-alert--sol {
  --ab-v2-alert-bg: rgba(243, 232, 255, 0.92);
  --ab-v2-alert-border: rgba(153, 69, 255, 0.28);
  --ab-v2-alert-title: #9945ff;
  --ab-v2-alert-icon-shadow: 0 2px 8px rgba(153, 69, 255, 0.16);
}

.ab-v2-alert--dot {
  --ab-v2-alert-bg: rgba(255, 236, 245, 0.95);
  --ab-v2-alert-border: rgba(230, 0, 122, 0.22);
  --ab-v2-alert-title: #e6007a;
  --ab-v2-alert-icon-shadow: 0 2px 8px rgba(230, 0, 122, 0.14);
}

.ab-v2-alert--expired {
  --ab-v2-alert-bg: #f3f4f6;
  --ab-v2-alert-border: rgba(107, 114, 128, 0.35);
  --ab-v2-alert-title: #4b5563;
  --ab-v2-alert-icon-shadow: none;
  background: #f3f4f6;
  border-color: rgba(107, 114, 128, 0.35);
}

.ab-v2-alert--expired .ab-v2-alert__title {
  color: #374151;
}

.ab-v2-alert--expired .ab-v2-alert__text {
  color: rgba(55, 65, 81, 0.82);
}

.ab-v2-alert--expired .ab-v2-alert__icon {
  background: #e5e7eb;
  box-shadow: none;
  color: #6b7280;
}

.ab-v2-alert--expired .ab-v2-alert__icon img {
  display: none;
}

.ab-v2-alert__expiryIcon {
  display: none;
  width: 24px;
  height: 24px;
  color: #6b7280;
  flex-shrink: 0;
}

.ab-v2-alert--expired .ab-v2-alert__expiryIcon {
  display: block;
}

.ab-retry-dots {
  display: inline-flex;
  gap: 1px;
  margin-left: 1px;
}

.ab-retry-dots span {
  animation: abRetryDotPulse 1.2s ease-in-out infinite;
  opacity: 0.25;
}

.ab-retry-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.ab-retry-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes abRetryDotPulse {
  0%, 80%, 100% {
    opacity: 0.25;
  }
  40% {
    opacity: 1;
  }
}

.ab-v2-depositBody {
  display: grid;
  grid-template-columns: minmax(0, 148px) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.ab-v2-depositLeft {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.ab-v2-qrBox {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(220, 226, 240, 0.9);
  background: #ffffff;
  padding: 16px 14px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
}

.ab-v2-qrLabel {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.45);
  text-align: center;
}

.ab-v2-qrBox__code {
  position: relative;
  width: 124px;
  height: 124px;
  display: grid;
  place-items: center;
}

.ab-v2-qrBox .ab-qrFake {
  width: 124px;
  height: 124px;
  border-radius: 8px;
}

.ab-v2-depositQr {
  width: 124px;
  height: 124px;
  border-radius: 8px;
  display: block;
}

.ab-v2-qrToken {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #ffffff;
  padding: 6px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
  object-fit: contain;
}

.exchange-card .ab-v2-expiry {
  width: 100%;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(220, 226, 240, 0.75);
  justify-content: center;
  font-size: 14px;
  color: rgba(15, 23, 42, 0.5);
}

.exchange-card .ab-v2-expiry .ab-expiry__text strong,
.exchange-card #abExpiryTime {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
}

.ab-v2-depositAction {
  width: 100%;
  margin-top: 10px;
}

.exchange-card .ab-v2-connectBtn,
.exchange-rail .ab-v2-connectBtn {
  margin-top: 0;
  width: 100%;
  height: 48px;
  border: 1.5px solid rgba(0, 72, 215, 0.38);
  border-radius: 14px;
  background: #ffffff;
  color: #0048d7;
  font-size: 14px;
  font-weight: 700;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.exchange-card .ab-v2-connectBtn:hover,
.exchange-rail .ab-v2-connectBtn:hover {
  transform: none;
  filter: none;
  background: rgba(0, 72, 215, 0.04);
  border-color: #0048d7;
  box-shadow: none;
  color: #0048d7;
}

.exchange-card .ab-v2-connectBtn .ab-walletBtn__icon,
.exchange-rail .ab-v2-connectBtn .ab-walletBtn__icon {
  width: 18px;
  height: 18px;
  color: #0048d7;
  flex-shrink: 0;
}

.ab-v2-depositVaultMsg {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(220, 226, 240, 0.9);
  background: rgba(248, 250, 252, 0.95);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(15, 23, 42, 0.72);
  text-align: center;
}

.ab-v2-depositVaultMsg #abDepositAddressShort {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.55);
  word-break: break-all;
}

.ab-v2-depositRight {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  padding-top: 0;
  align-items: stretch;
}

.ab-v2-depositPay {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  width: 100%;
}

.ab-v2-depositTitle {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  color: #0f172a;
  text-align: left;
}

.ab-v2-depositAmount {
  margin: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1;
}

.ab-v2-depositAmount__value {
  font-size: 44px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.03em;
}

.ab-v2-depositAmount__token {
  font-size: 44px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: 1px;
}

/* Deposit pay block — shared by BTC, ETH, and all send tokens */
.ab-confirm-v2 #abDepositHeading {
  margin: 0;
  text-align: left;
}

.ab-confirm-v2 p.ab-v2-depositAmount {
  margin: 0;
}

.ab-confirm-v2 #abDepositAmount,
.ab-confirm-v2 .ab-v2-depositAmount__value {
  color: #0f172a;
}

.ab-confirm-v2 #abDepositTokenName,
.ab-confirm-v2 .ab-v2-depositAmount__token {
  color: #0f172a;
}

.ab-confirm-v2 .ab-v2-alert {
  min-height: 92px;
  padding: 18px;
}

.ab-confirm-v2 .ab-v2-alert__order {
  min-width: 108px;
  min-height: 52px;
  padding: 11px 14px;
  border-radius: 12px;
}

.ab-confirm-v2 .ab-v2-alert__orderLabel {
  font-size: 11px;
}

.ab-confirm-v2 .ab-v2-alert__orderValue {
  font-size: 16px;
}

.ab-confirm-v2 .ab-v2-depositBody {
  --ab-v2-deposit-inset: 16px;
  display: grid;
  grid-template-columns: 188px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  align-items: stretch;
  min-height: 226px;
  height: auto;
  border: none;
}

.ab-confirm-v2 .ab-v2-depositLeft {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-self: stretch;
  min-width: 0;
}

.ab-confirm-v2 .ab-v2-depositRight {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: stretch;
  gap: 0;
  min-width: 0;
  min-height: 0;
}

.ab-confirm-v2 .ab-v2-depositPay {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  padding: var(--ab-v2-deposit-inset) 0 0;
  margin: 0;
}

.ab-confirm-v2 .ab-v2-depositTitle {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  color: #0f172a;
}

.ab-confirm-v2 p.ab-v2-depositAmount {
  margin: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}

.ab-confirm-v2 .ab-v2-depositAmount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1;
  flex-wrap: nowrap;
}

.ab-confirm-v2 #abDepositAmount,
.ab-confirm-v2 .ab-v2-depositAmount__value,
.ab-confirm-v2 #abDepositTokenName,
.ab-confirm-v2 .ab-v2-depositAmount__token {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #0f172a;
}

.ab-confirm-v2 .ab-v2-depositSubline {
  margin: 6px 0 0;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #64748b;
}

.ab-confirm-v2 .ab-v2-depositAddress {
  flex: 0 0 auto;
  margin-top: auto;
  margin-bottom: 0;
  padding: 0;
  width: 100%;
}

.ab-confirm-v2 .ab-v2-fieldset--deposit {
  position: relative;
  padding-top: 8px;
  margin: 0;
}

.ab-confirm-v2 .ab-v2-fieldset--deposit .ab-v2-fieldset__label {
  position: absolute;
  top: 0;
  left: 14px;
  z-index: 1;
  display: block;
  padding: 0 6px;
  margin: 0;
  background: #f8fafc;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: rgba(15, 23, 42, 0.55);
  transition: color 160ms ease, background 160ms ease;
}

.ab-confirm-v2 .ab-v2-fieldset--deposit .ab-v2-fieldset__box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 14px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  box-shadow: none;
  min-width: 0;
}

.ab-confirm-v2 .ab-v2-fieldset--deposit .ab-v2-fieldset__box:hover {
  border-color: #cbd5e1;
  background: #f1f5f9;
}

.ab-confirm-v2 .ab-v2-fieldset--deposit:has(.ab-v2-fieldset__box:hover) .ab-v2-fieldset__label {
  background: #f1f5f9;
  color: #0048d7;
}

.ab-confirm-v2 .ab-v2-fieldset--deposit:focus-within .ab-v2-fieldset__box {
  border-color: #cbd5e1;
  box-shadow: 0 0 0 2px rgba(0, 72, 215, 0.08);
  background: #f1f5f9;
}

.ab-confirm-v2 .ab-v2-fieldset--deposit:focus-within .ab-v2-fieldset__label {
  background: #f1f5f9;
  color: #0048d7;
}

.ab-confirm-v2 .ab-v2-fieldset--deposit .ab-v2-fieldset__value {
  flex: 1;
  min-width: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  color: #0f172a;
  word-break: break-all;
  white-space: normal;
}

.ab-confirm-v2 .ab-v2-fieldset--deposit .ab-v2-fieldset__copy {
  align-self: center;
  width: 32px;
  height: 32px;
  margin: 0;
  padding: 0;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
}

.ab-confirm-v2 .ab-v2-fieldset--deposit .ab-v2-fieldset__copy:hover {
  background: #ffffff;
  border-color: #cbd5e1;
}

.ab-confirm-v2 .ab-v2-fieldset--deposit .ab-v2-fieldset__copy img {
  width: 14px;
  height: 14px;
  opacity: 0.65;
}

.ab-confirm-v2 .ab-v2-depositAction {
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: 0;
  padding-top: 0;
  border: none;
}

.ab-confirm-v2 .ab-v2-depositAction:empty,
.ab-confirm-v2 .ab-v2-depositAction[style*="display: none"] {
  display: none !important;
  padding: 0;
  border: none;
}

.ab-confirm-v2 .ab-v2-qrBox {
  box-sizing: border-box;
  width: 100%;
  height: auto;
  padding: var(--ab-v2-deposit-inset);
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
}

.ab-confirm-v2 .ab-v2-qrLabel {
  margin: 0 0 12px;
  flex-shrink: 0;
}

.ab-confirm-v2 .ab-v2-qrBox__code {
  flex-shrink: 0;
}

.ab-confirm-v2 .ab-v2-qrBox__code,
.ab-confirm-v2 .ab-v2-qrBox .ab-qrFake {
  width: 120px;
  height: 120px;
}

.ab-confirm-v2 .ab-v2-qrToken {
  width: 32px;
  height: 32px;
  padding: 4px;
}

.ab-confirm-v2 .ab-v2-qrBox .ab-v2-expiry {
  width: 100%;
  margin-top: 12px;
  margin-bottom: 0;
  padding-top: 12px;
  padding-bottom: 0;
  border-top: 1px solid rgba(220, 226, 240, 0.75);
  font-size: 11px;
  white-space: nowrap;
  flex-shrink: 0;
}

.ab-confirm-v2 .ab-v2-qrBox .ab-v2-expiry .ab-expiry__text {
  white-space: nowrap;
}

.ab-confirm-v2 .ab-v2-qrBox .ab-v2-expiry .ab-expiry__text strong,
.ab-confirm-v2 .ab-v2-qrBox #abExpiryTime {
  font-size: 11px;
}

.ab-confirm-v2 .ab-v2-addressHint {
  margin-top: 6px;
  font-size: 11px;
  line-height: 1.4;
}

.ab-confirm-v2 .ab-v2-card--deposit {
  padding: 20px;
  border: none;
  box-shadow: none;
}

.ab-v2-depositAddress {
  min-width: 0;
  margin-top: 0;
  width: 100%;
}

.ab-v2-addressHint {
  margin: 10px 0 0;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(15, 23, 42, 0.55);
}

.ab-v2-fieldset {
  position: relative;
  padding-top: 8px;
  width: 100%;
}

.ab-v2-fieldset__label {
  position: absolute;
  top: 0;
  left: 14px;
  padding: 0 6px;
  background: #ffffff;
  font-size: 12px;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.45);
  line-height: 1;
  z-index: 1;
  transition: color 160ms ease;
}

.ab-v2-fieldset__box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 20px 14px 20px;
  border: 1px solid rgba(220, 226, 240, 0.95);
  border-radius: 14px;
  background: #ffffff;
  min-width: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.ab-v2-fieldset__box:hover {
  border-color: rgba(0, 72, 215, 0.22);
}

.ab-v2-fieldset:focus-within .ab-v2-fieldset__label {
  color: #0048d7;
}

.ab-v2-fieldset:has(.ab-v2-fieldset__box:hover) .ab-v2-fieldset__label {
  color: #0048d7;
}

.ab-v2-fieldset:focus-within .ab-v2-fieldset__box {
  border-color: rgba(0, 72, 215, 0.32);
  box-shadow: 0 0 0 3px rgba(0, 72, 215, 0.08);
}

.ab-v2-fieldset__value {
  flex: 1;
  min-width: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 13px;
  line-height: 1.55;
  color: #0f172a;
  word-break: break-all;
}

.ab-v2-fieldset__copy {
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 0;
}

.ab-v2-card--receive {
  padding: 20px;
}

.ab-v2-receiveHeader {
  margin-bottom: 18px;
}

.ab-v2-receiveTitle {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  color: #0f172a;
}

.ab-v2-receiveSubtitle {
  margin: 6px 0 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(15, 23, 42, 0.55);
}

.ab-v2-swapDetailsStack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  --ab-progress-blue: var(--color-gradient);
  --ab-progress-blue-rgb: 0, 72, 215;
}

.ab-v2-swapPanel {
  border-radius: 14px;
  border: 1px solid rgba(226, 232, 240, 1);
  background: #ffffff;
  min-width: 0;
}

.ab-v2-swapPanel--refund,
.ab-v2-swapPanel--destination,
.ab-v2-swapPanel--minReceive,
.ab-v2-swapPanel--lowLiquidity,
.ab-v2-swapPanel--dca,
.ab-v2-swapPanel--email {
  padding: 16px 18px 18px;
}

.ab-v2-swapReceipt.ab-v2-swapPanel--minReceive {
  padding: 0;
  overflow: visible;
}

.ab-v2-swapReceipt.is-expanded {
  overflow: hidden;
}

.ab-v2-swapReceipt__summary {
  display: flex;
  align-items: stretch;
  gap: 10px;
  padding: 12px 14px;
}

.ab-v2-receiptIcon {
  display: inline-flex;
  flex-shrink: 0;
  align-self: center;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.ab-v2-receiptIcon--dual {
  width: auto;
  gap: 4px;
}

.ab-v2-receiptRefund {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: rgba(217, 119, 6, 0.1);
  color: #b45309;
  cursor: help;
  transition: background 0.15s ease, color 0.15s ease;
}

.ab-v2-receiptRefund--summary {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.ab-v2-receiptRefund--inline {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: transparent;
}

.ab-v2-receiptRefund--partial.ab-v2-receiptRefund--inline:hover,
.ab-v2-receiptRefund--partial.ab-v2-receiptRefund--inline:focus-visible {
  background: transparent;
  color: #92400e;
}

.ab-v2-swapReceipt__refundLabel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 22px;
}

.ab-v2-swapReceipt__refundLabel > span {
  line-height: 1.35;
}

.ab-v2-swapReceipt__refundLabel .ab-v2-receiptRefund--inline {
  flex-shrink: 0;
  align-self: center;
  margin: 0;
  transform: translateY(0.5px);
}

.ab-v2-swapReceipt__refundLabel .ab-v2-receiptRefund svg {
  width: 14px;
  height: 14px;
}

.exchange-card .ab-v2-stepper .ab-step__label .ab-retry-dots {
  display: inline-flex;
  vertical-align: baseline;
  margin-left: 1px;
}

.ab-v2-receiptRefund--failed {
  background: rgba(239, 68, 68, 0.1);
  color: #b91c1c;
}

.ab-v2-receiptRefund:hover,
.ab-v2-receiptRefund:focus-visible {
  outline: none;
}

.ab-v2-receiptRefund--partial:hover,
.ab-v2-receiptRefund--partial:focus-visible {
  background: rgba(217, 119, 6, 0.16);
  color: #92400e;
}

.ab-v2-receiptRefund--failed:hover,
.ab-v2-receiptRefund--failed:focus-visible {
  background: rgba(239, 68, 68, 0.16);
  color: #991b1b;
}

.ab-v2-receiptShield {
  display: inline-flex;
  flex-shrink: 0;
  align-self: center;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: rgba(0, 72, 215, 0.06);
  color: rgba(15, 23, 42, 0.55);
  cursor: help;
  transition: background 0.15s ease, color 0.15s ease;
}

.ab-v2-receiptShield:hover,
.ab-v2-receiptShield:focus-visible {
  background: rgba(0, 72, 215, 0.1);
  color: #0048d7;
  outline: none;
}

.ab-v2-receiptSent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0, 72, 215, 0.06);
  color: #0048d7;
}

.ab-v2-receiptIcon--sent .ab-v2-receiptShield {
  display: none;
}

.ab-v2-swapReceipt__toggle {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
}

.ab-v2-swapReceipt__toggle:focus-visible {
  outline: 2px solid rgba(0, 72, 215, 0.35);
  outline-offset: 2px;
  border-radius: 8px;
}

.ab-v2-swapReceipt__headline {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ab-v2-swapReceipt__headlineLabel {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(15, 23, 42, 0.48);
}

.ab-v2-swapReceipt__headlineValue {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 15px;
  line-height: 1.3;
  color: #0f172a;
}

.ab-v2-swapReceipt__headlineValue strong {
  font-weight: 700;
}

.ab-v2-swapReceipt__headlineValue span:last-child {
  font-weight: 800;
}

.ab-v2-swapReceipt__chevron {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  color: rgba(15, 23, 42, 0.38);
  transition: transform 0.2s ease, color 0.2s ease;
}

.ab-v2-swapReceipt.is-expanded .ab-v2-swapReceipt__chevron {
  transform: rotate(180deg);
  color: rgba(15, 23, 42, 0.58);
}

.ab-v2-swapReceipt__body {
  border-top: 1px solid rgba(226, 232, 240, 1);
  background: #fafbfc;
}

.ab-v2-swapReceipt__grid {
  margin: 0;
  padding: 4px 16px 0;
}

.ab-v2-swapReceipt__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}

.ab-v2-swapReceipt__item:last-child {
  border-bottom: none;
}

.ab-v2-swapReceipt__item dt {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(15, 23, 42, 0.5);
  min-width: 0;
  padding-right: 8px;
}

.ab-v2-swapReceipt__item dd {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: #0f172a;
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.ab-v2-swapReceipt__unit {
  margin-left: 0.25rem;
  font-size: inherit;
  font-weight: 600;
  color: inherit;
}

.ab-v2-swapReceipt__metaStack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 4px 16px 12px;
}

.ab-v2-swapReceipt__metaBox {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid rgba(226, 232, 240, 1);
  background: #ffffff;
}

.ab-v2-swapReceipt__metaLabel {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(15, 23, 42, 0.5);
}

.ab-v2-swapReceipt__metaValue {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: #0f172a;
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.ab-v2-swapReceipt__notice {
  margin: 0 16px 12px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

.ab-v2-swapReceipt__notice--failed {
  background: #fef2f2;
  border: 1px solid rgba(239, 68, 68, 0.16);
  color: rgba(127, 29, 29, 0.88);
}

.ab-v2-swapReceipt__notice--partial {
  background: #fffbeb;
  border: 1px solid rgba(217, 119, 6, 0.18);
  color: rgba(120, 53, 15, 0.88);
}

.ab-v2-swapReceipt__email {
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(226, 232, 240, 1);
  background: #ffffff;
  border-radius: 0 0 14px 14px;
}

.ab-v2-swapReceipt__emailLabel {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: rgba(15, 23, 42, 0.78);
}

.ab-v2-swapReceipt__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ab-v2-swapReceipt__emailRow {
  width: 100%;
}

.ab-v2-swapReceipt__emailRow .ab-v2-swapReceipt__emailInput {
  flex: 1;
  min-width: 0;
  min-height: 44px;
}

.ab-v2-swapReceipt__emailInput {
  display: block;
  width: 100%;
  box-sizing: border-box;
  min-height: 44px;
  padding: 11px 12px;
  border-radius: 10px;
  border: 1px solid rgba(203, 213, 225, 1);
  background: #f8fafc;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #0f172a;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
  appearance: none;
  -webkit-appearance: none;
}

.ab-v2-swapReceipt__emailRow .ab-v2-swapReceipt__emailInput {
  border-radius: 12px;
  background: #ffffff;
  box-shadow: none;
}

.ab-v2-swapReceipt__emailInput::placeholder {
  color: rgba(15, 23, 42, 0.38);
}

.ab-v2-swapReceipt__emailInput:focus {
  outline: none;
  border-color: rgba(0, 72, 215, 0.4);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 72, 215, 0.1);
}

.ab-v2-swapReceipt__newsletter {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(15, 23, 42, 0.55);
  cursor: pointer;
}

.ab-v2-swapReceipt__newsletter input[type="checkbox"] {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  margin: 2px 0 0;
  accent-color: #0048d7;
  cursor: pointer;
}

.ab-v2-swapReceipt__email .ab-v2-emailConfirm {
  margin: 12px 0 0;
  font-size: 12px;
  text-align: left;
  color: rgba(15, 23, 42, 0.55);
}

.ab-v2-swapPair {
  display: flex;
  align-items: stretch;
  gap: 0;
  min-width: 0;
}

.ab-v2-swapPair__card {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
}

.ab-v2-swapPair__card .ab-v2-receiveCard {
  height: 100%;
}

.ab-v2-swapPair__connector {
  flex: 0 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  padding: 0 2px;
}

.ab-v2-swapPair__line {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(148, 163, 184, 0.42);
}

.ab-v2-receiveCard {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(220, 226, 240, 0.95);
  border-radius: 14px;
  background: #ffffff;
  overflow: hidden;
}

.ab-v2-receiveCard__title {
  margin: 0;
  padding: 16px 14px 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: rgba(15, 23, 42, 0.85);
}

.ab-v2-receiveCard__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 14px 16px;
  text-align: center;
  flex: 1;
}

.ab-v2-receiveCard__iconWrap {
  position: relative;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.ab-v2-receiveCard__icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: cover;
  display: block;
}

.ab-v2-receiveCard__network {
  position: absolute;
  right: -2px;
  bottom: -2px;
  z-index: 2;
  width: 17px;
  height: 17px;
  border-radius: 30%;
  background: #f3f4f6;
  border: 1.5px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: none;
}

.ab-v2-receiveCard__network[hidden] {
  display: none;
}

.ab-v2-receiveCard__network-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ab-v2-receiveCard__amount {
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.ab-v2-receiveCard__value {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.ab-v2-receiveCard__token {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
  color: #0f172a;
}

.ab-v2-receiveCard__usd {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(15, 23, 42, 0.5);
}

.ab-v2-swapPanel--minReceive {
  position: relative;
  padding: 12px 14px;
  background: #fafbfc;
  overflow: visible;
}

.ab-v2-minReceive {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.ab-v2-minReceive__shield {
  display: inline-flex;
  flex-shrink: 0;
  color: rgba(15, 23, 42, 0.6);
}

.ab-v2-minReceive__text {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(15, 23, 42, 0.62);
}

.ab-v2-minReceive__label {
  font-weight: 600;
  color: rgba(15, 23, 42, 0.62);
}

.ab-v2-minReceive__shield--warn {
  color: #d97706;
}

.ab-v2-swapPanel--lowLiquidity {
  padding: 12px 14px;
  background: #fffbeb;
  border: 1px solid rgba(217, 119, 6, 0.18);
}

.ab-v2-lowLiquidity__body {
  color: rgba(15, 23, 42, 0.62);
}

.ab-v2-swapPanel--dca {
  padding: 10px 14px;
  background: #f8fafc;
}

.ab-v2-dcaProgress {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.55);
}

.ab-v2-receiveCard--muted {
  opacity: 0.45;
  border: 1px solid rgba(220, 226, 240, 0.95) !important;
  box-shadow: none !important;
}

/* Never mute active send/receive highlight cards */
.ab-v2-receiveCard--sending.ab-v2-receiveCard--muted,
.ab-v2-receiveCard--complete-ring.ab-v2-receiveCard--muted {
  opacity: 1 !important;
}

.ab-v2-receiveCard--exchanging {
  --chunk-progress: 0;
}

.ab-v2-receiveCard--exchanging .ab-v2-receiveCard__body {
  opacity: calc(1 - var(--chunk-progress, 0) * 0.62);
}

.ab-v2-receiveCard--exchanging .ab-v2-receiveCard__title {
  color: rgba(15, 23, 42, calc(1 - var(--chunk-progress, 0) * 0.5));
}

.ab-v2-receiveCard--sending,
.ab-v2-receiveCard--complete-ring {
  position: relative;
  z-index: 1;
  opacity: 1 !important;
  border: 2px solid var(--ab-progress-blue) !important;
  background: #fff;
  overflow: visible;
  box-shadow: 0 4px 16px rgba(var(--ab-progress-blue-rgb), 0.14);
}

.ab-v2-receiveCard--sending .ab-v2-receiveCard__title,
.ab-v2-receiveCard--complete-ring .ab-v2-receiveCard__title {
  color: var(--ab-progress-blue) !important;
  font-weight: 700;
}

.ab-v2-receiveCard--sending .ab-v2-receiveCard__value,
.ab-v2-receiveCard--sending .ab-v2-receiveCard__token,
.ab-v2-receiveCard--sending .ab-v2-receiveCard__usd,
.ab-v2-receiveCard--complete-ring .ab-v2-receiveCard__value,
.ab-v2-receiveCard--complete-ring .ab-v2-receiveCard__token,
.ab-v2-receiveCard--complete-ring .ab-v2-receiveCard__usd {
  opacity: 1;
  color: #0f172a;
}

.ab-v2-receiveCard--sending .ab-v2-receiveCard__usd,
.ab-v2-receiveCard--complete-ring .ab-v2-receiveCard__usd {
  color: rgba(15, 23, 42, 0.55);
}

.ab-v2-receiveCard--exchanged-partial .ab-v2-receiveCard__title {
  color: var(--ab-progress-blue);
  font-weight: 700;
}

.ab-v2-receiveCard--receiving {
  border: 1px solid rgba(220, 226, 240, 0.95);
  box-shadow: none;
}

.ab-v2-receiveCard--receiving .ab-v2-receiveCard__title {
  color: var(--ab-progress-blue);
}

.ab-v2-receiveCard--refund-ring {
  border: none;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.42);
}

.ab-v2-receiveCard--refund .ab-v2-receiveCard__title,
.ab-v2-receiveCard--refund-ring .ab-v2-receiveCard__title {
  color: #b91c1c;
}

.ab-v2-receiveCard--muted .ab-v2-receiveCard__amount,
.ab-v2-receiveCard--muted .ab-v2-receiveCard__usd {
  color: rgba(15, 23, 42, 0.45);
}

.ab-v2-receiveCard--complete .ab-v2-receiveCard__title {
  color: #059669;
}

.ab-v2-receiveCard--failed .ab-v2-receiveCard__title {
  color: #b91c1c;
  cursor: default;
  text-decoration: none;
}

.ab-progress-mock--details {
  margin-top: 4px;
}

.ab-progress-mock__row--chunks {
  align-items: center;
}

.ab-progress-mock__hint {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(0, 72, 215, 0.75);
  margin-right: 4px;
}

.ab-progress-meta__amount {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  white-space: nowrap;
}

.ab-stepper__meta--exchanging,
.ab-stepper__meta--sending,
.ab-stepper__meta--progress,
.ab-stepper__meta--chunk-retry {
  border-color: rgba(var(--ab-progress-blue-rgb), 0.22);
  background: rgba(var(--ab-progress-blue-rgb), 0.06);
}

.ab-stepper__meta--exchanging .ab-stepper__left,
.ab-stepper__meta--sending .ab-stepper__left,
.ab-stepper__meta--progress .ab-stepper__left,
.ab-stepper__meta--chunk-retry .ab-stepper__left {
  color: var(--ab-progress-blue);
  font-weight: 700;
}

.ab-stepper__meta--chunk-retry-expired {
  border-color: rgba(245, 158, 11, 0.28);
  background: rgba(255, 251, 235, 0.95);
}

.ab-stepper__meta--chunk-retry-expired .ab-stepper__left {
  color: #b45309;
  font-weight: 700;
}

.ab-stepper__meta--refunding {
  border-color: rgba(239, 68, 68, 0.28);
  background: rgba(254, 242, 242, 0.95);
}

.ab-stepper__meta--refunding .ab-stepper__left {
  color: #991b1b;
  font-weight: 700;
}

.ab-stepper__meta--stacked,
.exchange-card .ab-v2-stepper .ab-stepper__meta--stacked {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: auto;
  min-height: 60px;
}

.ab-stepper__meta--stacked .ab-stepper__left,
.exchange-card .ab-v2-stepper .ab-stepper__meta--stacked .ab-stepper__left {
  order: 1;
  flex: 1;
  min-width: 0;
  text-align: left;
}

.ab-stepper__meta--stacked .ab-stepper__right,
.exchange-card .ab-v2-stepper .ab-stepper__meta--stacked .ab-stepper__right {
  order: 2;
  flex-shrink: 0;
  margin-left: auto;
}

.ab-stepper__meta--stacked.ab-stepper__meta--status-only,
.exchange-card .ab-v2-stepper .ab-stepper__meta--stacked.ab-stepper__meta--status-only {
  justify-content: flex-start;
}

.ab-v2-statusRefund {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fef2f2;
  border: 1px solid rgba(239, 68, 68, 0.18);
}

.ab-v2-statusRefund__title {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 600;
  color: #b91c1c;
}

.ab-v2-statusRefund__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(127, 29, 29, 0.82);
}

.status-open-swap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.status-open-swap__label {
  font-size: 13px;
  font-weight: 600;
  color: #475569;
}

.status-open-swap__link {
  font-size: 13px;
  font-weight: 600;
  color: #0048d7;
  text-decoration: none;
  word-break: break-all;
}

.status-open-swap__link:hover {
  text-decoration: underline;
}

.ab-v2-minReceive__slip {
  display: none;
}

.ab-v2-minReceive__value {
  font-weight: 800;
  color: #0f172a;
}

.ab-v2-minReceive__token {
  font-weight: 800;
  color: #0f172a;
}

.ab-v2-minReceive__info {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(15, 23, 42, 0.35);
  cursor: help;
}

.ab-v2-minReceive__info:hover,
.ab-v2-minReceive__info:focus-visible {
  color: rgba(15, 23, 42, 0.55);
  outline: none;
}

.ab-v2-swapReceipt .ab-v2-minReceive__tooltip {
  left: 14px;
  right: auto;
  bottom: calc(100% + 6px);
}

.ab-v2-minReceive__tooltip {
  display: none;
  position: absolute;
  right: 12px;
  bottom: calc(100% + 8px);
  z-index: 30;
  flex-direction: column;
  gap: 6px;
  width: min(260px, calc(100% - 24px));
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(226, 232, 240, 1);
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(15, 23, 42, 0.65);
  text-align: left;
  pointer-events: none;
}

.ab-v2-swapPanel--minReceive:has(.ab-v2-minReceive__info:hover) .ab-v2-minReceive__tooltip,
.ab-v2-swapPanel--minReceive:has(.ab-v2-minReceive__info:focus-visible) .ab-v2-minReceive__tooltip,
.ab-v2-swapReceipt:has(.ab-v2-receiptShield:hover) .ab-v2-minReceive__tooltip,
.ab-v2-swapReceipt:has(.ab-v2-receiptShield:focus-visible) .ab-v2-minReceive__tooltip,
.ab-v2-swapReceipt:has(.ab-v2-receiptRefund:hover) .ab-v2-minReceive__tooltip,
.ab-v2-swapReceipt:has(.ab-v2-receiptRefund:focus-visible) .ab-v2-minReceive__tooltip {
  display: flex;
}

.ab-v2-minReceive__tooltipTitle {
  display: block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
}

.ab-v2-minReceive__tooltipBody {
  display: block;
}

.ab-v2-fieldset--receive {
  width: 100%;
  padding-top: 8px;
}

.ab-v2-fieldset__label--center {
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.8);
  white-space: nowrap;
}

.ab-v2-fieldset--receive .ab-v2-fieldset__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 14px 16px;
  text-align: center;
  border: 1px solid rgba(220, 226, 240, 0.95);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: none;
}

.ab-v2-swapPanel__receiveBody {
  min-width: 0;
}

.ab-v2-swapPanel__receiveIcon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}

.ab-v2-swapPanel__label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: rgba(15, 23, 42, 0.9);
}

.ab-v2-swapPanel__label--title {
  margin: 0;
  color: rgba(24, 24, 27, 0.55);
}

.ab-v2-swapPanel__desc {
  margin: 6px 0 10px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(15, 23, 42, 0.55);
}

.ab-v2-swapPanel__receiveAmount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.ab-v2-swapPanel__receiveValue {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.ab-v2-swapPanel__receiveToken {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
  color: #0f172a;
  letter-spacing: 1px;
}

.ab-v2-swapPanel__receiveUsd {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(15, 23, 42, 0.55);
}

.ab-v2-swapPanel__hint {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(15, 23, 42, 0.55);
}

.ab-v2-addressField--swap {
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(226, 232, 240, 1);
  background: rgba(248, 250, 252, 0.95);
}

.ab-v2-addressField--swap .ab-v2-addressField__value {
  font-size: 12px;
  line-height: 1.35;
  font-weight: 400;
  color: rgba(15, 23, 42, 0.78);
}

.ab-v2-addressField--swap .ab-v2-addressChip {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #f3f4f6;
}

.ab-v2-addressField--swap .ab-v2-addressChip__icon {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  object-fit: cover;
  opacity: 0.55;
  filter: grayscale(1);
}

.ab-v2-addressField--plain {
  border: none;
  background: transparent;
  padding: 0;
  border-radius: 0;
  min-height: 0;
}

.ab-v2-swapPanel--email {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ab-v2-emailHeader {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ab-v2-emailHeader__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(0, 72, 215, 0.08);
  color: #0048d7;
}

.ab-v2-emailHeader__icon svg {
  width: 18px;
  height: 18px;
}

.ab-v2-emailHeader__title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: rgba(15, 23, 42, 0.55);
}

.ab-v2-emailHeader__desc {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(15, 23, 42, 0.55);
}

.ab-v2-emailConfirm {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(15, 23, 42, 0.55);
  text-align: center;
}

.ab-v2-emailForm {
  display: flex;
  align-items: stretch;
  gap: 10px;
}

.ab-v2-emailForm .ab-v2-emailInput {
  flex: 1;
  min-width: 0;
}

.ab-v2-emailInput {
  box-sizing: border-box;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(226, 232, 240, 1);
  background: #ffffff;
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
  box-shadow: none;
}

.ab-v2-emailInput::placeholder {
  color: rgba(15, 23, 42, 0.42);
  font-weight: 500;
}

.ab-v2-emailInput:focus {
  outline: none;
  border-color: rgba(0, 72, 215, 0.32);
  box-shadow: none;
}

.ab-v2-emailBtn {
  flex-shrink: 0;
  padding: 0 18px;
  min-height: 44px;
  border: none;
  border-radius: 12px;
  background: #0048d7;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease, opacity 160ms ease;
}

.ab-v2-emailBtn:hover:not(:disabled) {
  background: #0039b8;
}

.ab-v2-emailBtn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.ab-v2-fieldset--destination {
  width: 100%;
}

.ab-v2-addressLock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: rgba(15, 23, 42, 0.38);
}

.ab-v2-addressLock svg {
  width: 18px;
  height: 18px;
}

.ab-v2-addressLock--field {
  width: 40px;
  height: 40px;
}

.ab-v2-addressLock--field svg {
  width: 20px;
  height: 20px;
}

.ab-v2-addressLock--fieldset {
  width: 28px;
  height: 28px;
  margin-top: 0;
}

.ab-v2-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ab-v2-field--primary {
  gap: 10px;
}

.ab-v2-field--primary .ab-v2-fieldLabel {
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.02em;
}

.ab-v2-field--receive {
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid rgba(220, 226, 240, 0.7);
}

.ab-v2-field--spaced {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(220, 226, 240, 0.7);
}

.ab-v2-fieldLabel {
  font-size: 12px;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.55);
}

.ab-v2-addressField {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(229, 231, 235, 1);
  background: rgba(248, 250, 255, 0.85);
  min-width: 0;
}

.ab-v2-addressField--primary {
  padding: 16px;
  border: 2px solid rgba(0, 72, 215, 0.18);
  background: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 4px 14px rgba(0, 72, 215, 0.1);
}

.ab-v2-addressField--primary .ab-v2-addressField__value {
  font-size: 13.5px;
  line-height: 1.6;
  color: #0f172a;
  font-weight: 500;
}

.ab-v2-addressField__value {
  flex: 1;
  min-width: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(15, 23, 42, 0.78);
  word-break: break-all;
}

.ab-v2-addressField__value--mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
}

.ab-v2-copyBtn {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  margin-top: 1px;
}

.ab-v2-copyBtn img {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

.ab-v2-verified {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  margin-top: 1px;
}

.ab-v2-verified svg {
  width: 22px;
  height: 22px;
}

.ab-v2-statusHeader {
  margin-bottom: 16px;
}

.ab-v2-statusTitle {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
}

.ab-v2-statusSubtitle {
  margin: 6px 0 0;
  font-size: 14px;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.6);
  line-height: 1.45;
}

.ab-v2-statusSubtitle strong {
  font-weight: 700;
  color: #0f172a;
}

.ab-v2-stepper {
  margin-top: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 8px 12px 0;
  --ab-progress-blue: var(--color-gradient);
  --ab-progress-blue-rgb: 0, 72, 215;
}

.exchange-card .ab-stepper.ab-v2-stepper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  padding: 4px 8px 0;
  background: transparent;
  border: none;
}

.exchange-card .ab-v2-stepper .ab-step {
  flex: 0 0 96px;
  width: 96px;
  gap: 8px;
  justify-items: center;
  min-width: 0;
}

.exchange-card .ab-v2-stepper .ab-step__label {
  width: 100%;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.exchange-card .ab-v2-stepper .ab-stepConnector {
  flex: 0 0 auto;
  transform: translateY(-9.5px);
  align-self: center;
}

.exchange-card .ab-v2-stepper .ab-stepConnector--dots {
  width: 36px;
  gap: 5px;
  padding: 0;
  height: auto;
  align-items: center;
  justify-content: center;
}

.exchange-card .ab-v2-stepper .ab-stepConnector--line {
  width: 44px;
  min-width: 36px;
  max-width: 48px;
}

.exchange-card .ab-v2-stepper .ab-stepConnector--flow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-width: 36px;
  max-width: 48px;
  height: 12px;
  background: transparent;
  position: relative;
  overflow: visible;
}

.ab-stepConnector__flowTrack {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.1);
  overflow: visible;
}

.ab-stepConnector__flowDash {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(var(--ab-progress-blue-rgb), 0.12) 35%,
    rgba(var(--ab-progress-blue-rgb), 0.95) 50%,
    rgba(var(--ab-progress-blue-rgb), 0.12) 65%,
    transparent 100%
  );
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.exchange-card .ab-v2-stepper .ab-stepConnector--flow.ab-stepConnector--flow-active .ab-stepConnector__flowDash {
  opacity: 1;
  animation: abConnectorFlowShimmer 2.2s linear infinite;
}

/* Sending: outbound packet pulses toward destination (loops until complete) */
.exchange-card .ab-v2-stepper .ab-stepConnector--flow-outbound.ab-stepConnector--flow-active .ab-stepConnector__flowDash {
  background: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 6px,
    rgba(var(--ab-progress-blue-rgb), 0.18) 6px,
    rgba(var(--ab-progress-blue-rgb), 0.88) 11px,
    rgba(var(--ab-progress-blue-rgb), 0.18) 14px,
    transparent 18px,
    transparent 30px
  );
  background-size: 30px 100%;
  animation: abConnectorSendOutbound 1.35s linear infinite;
}

.exchange-card .ab-v2-stepper .ab-stepConnector--flow.ab-stepConnector--active:not(.ab-stepConnector--flow-active) .ab-stepConnector__flowTrack {
  background: rgba(var(--ab-progress-blue-rgb), 0.45);
}

@keyframes abConnectorFlowShimmer {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: -100% 0;
  }
}

@keyframes abConnectorSendOutbound {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 30px 0;
  }
}

.exchange-card .ab-v2-stepper .ab-step--active .ab-step__dot {
  box-shadow: 0 8px 18px rgba(var(--ab-progress-blue-rgb), 0.2);
}

/* V2: disable legacy first-step spinner — it misaligns with the 48px stage dot */
.exchange-card .ab-v2-stepper .ab-step.ab-step--active .ab-step__dot::before,
.exchange-card .ab-v2-stepper .ab-step:first-child.ab-step--active .ab-step__dot::before {
  content: none;
  display: none;
}

.exchange-card .ab-v2-stepper[data-progress-stage="awaiting_deposit"] [data-step="deposit"].ab-step--active .ab-step__dot {
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.exchange-card .ab-v2-stepper .ab-step__dot {
  width: 48px;
  height: 48px;
}

.exchange-card .ab-v2-stepper .ab-step__dot--stage {
  overflow: visible;
}

.exchange-card .ab-v2-stepper .ab-step__dot img {
  width: 22px;
  height: 22px;
  position: relative;
  z-index: 1;
  display: block;
}

.exchange-card .ab-v2-stepper .ab-step__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  overflow: hidden;
}

.exchange-card .ab-v2-stepper[data-progress-stage="awaiting_deposit"] [data-step="deposit"].ab-step--active .ab-step__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.85) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  animation: abDepositIconShimmer 2.8s ease-in-out infinite;
  pointer-events: none;
}

.exchange-card .ab-v2-stepper[data-progress-stage="awaiting_deposit"] [data-step="deposit"].ab-step--active .ab-step__icon img {
  animation: abDepositPendingReveal 2.8s ease-in-out infinite;
}

.exchange-card .ab-v2-stepper .ab-step__dot img[src*="token"] {
  width: 26px;
  height: 26px;
}

.exchange-card .ab-v2-stepper .ab-step:not(.ab-step--active):not(.ab-step--done) .ab-step__dot img {
  opacity: 0.32;
  filter: grayscale(1) saturate(0.2);
}

.exchange-card .ab-v2-stepper .ab-step--active .ab-step__dot img,
.exchange-card .ab-v2-stepper .ab-step--done .ab-step__dot img {
  transform: none;
}

.exchange-card .ab-v2-stepper .ab-step--active.ab-step--progress .ab-step__icon img,
.exchange-card .ab-v2-stepper[data-progress-stage="confirming"] [data-step="deposit"].ab-step--active .ab-step__icon img {
  filter: none;
  opacity: 1;
  animation: none;
}

.exchange-card .ab-v2-stepper .ab-step--active:not(.ab-step--progress) .ab-step__dot img {
  opacity: 1;
  filter: none;
}

.exchange-card .ab-v2-stepper .ab-step--done:not(.ab-step--active) .ab-step__dot {
  background: #fff;
  border: none;
  box-shadow: none;
}

.exchange-card .ab-v2-stepper .ab-step--done:not(.ab-step--active) .ab-step__ring {
  opacity: 1;
}

.exchange-card .ab-v2-stepper .ab-step--done:not(.ab-step--active) .ab-step__ring-track {
  stroke: rgba(var(--ab-progress-blue-rgb), 0.14);
}

.exchange-card .ab-v2-stepper .ab-step--done:not(.ab-step--active) .ab-step__ring-fill {
  stroke: rgba(var(--ab-progress-blue-rgb), 0.22);
  stroke-dasharray: 144.51;
  stroke-dashoffset: 0;
}

.exchange-card .ab-v2-stepper .ab-step--done:not(.ab-step--active) .ab-step__icon img,
.exchange-card .ab-v2-stepper .ab-step--done:not(.ab-step--active) .ab-step__dot > img {
  opacity: 0.52;
  filter: saturate(0.72);
}

.exchange-card .ab-v2-stepper .ab-step--done:not(.ab-step--active) .ab-step__label {
  color: rgba(var(--ab-progress-blue-rgb), 0.72);
  font-weight: 700;
}

/* Legacy done selectors — keep for specificity fallbacks */
.exchange-card .ab-v2-stepper .ab-step--done .ab-step__dot {
  background: #fff;
  border: none;
  box-shadow: none;
}

.exchange-card .ab-v2-stepper .ab-step--done .ab-step__ring {
  opacity: 1;
}

.exchange-card .ab-v2-stepper .ab-step--done .ab-step__ring-track {
  stroke: rgba(var(--ab-progress-blue-rgb), 0.14);
}

.exchange-card .ab-v2-stepper .ab-step--done .ab-step__ring-fill {
  stroke: rgba(var(--ab-progress-blue-rgb), 0.22);
  stroke-dasharray: 144.51;
  stroke-dashoffset: 0;
}

.exchange-card .ab-v2-stepper .ab-step--done .ab-step__icon img,
.exchange-card .ab-v2-stepper .ab-step--done .ab-step__dot > img {
  opacity: 0.52;
  filter: saturate(0.72);
}

.exchange-card .ab-v2-stepper .ab-step--done .ab-step__label {
  color: rgba(var(--ab-progress-blue-rgb), 0.72);
  font-weight: 700;
}

.exchange-card .ab-v2-stepper .ab-step--active .ab-step__label {
  color: var(--ab-progress-blue);
}

.exchange-card .ab-v2-stepper .ab-step--active.ab-step--progress .ab-step__label {
  color: var(--ab-progress-blue);
}

.exchange-card .ab-v2-stepper .ab-step:not(.ab-step--active):not(.ab-step--done) .ab-step__label {
  color: rgba(15, 23, 42, 0.38);
}

.exchange-card .ab-v2-stepper .ab-step__glow {
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0;
}

.exchange-card .ab-v2-stepper[data-progress-stage="awaiting_deposit"] [data-step="deposit"].ab-step--active .ab-step__glow {
  opacity: 0;
}

.exchange-card .ab-v2-stepper[data-progress-stage="confirming"] [data-step="deposit"].ab-step--active .ab-step__glow {
  opacity: 0;
}

.exchange-card .ab-v2-stepper .ab-step--active.ab-step--progress .ab-step__dot {
  background: #fff;
  border: none;
  box-shadow: 0 4px 16px rgba(var(--ab-progress-blue-rgb), 0.1);
}

.exchange-card .ab-v2-stepper .ab-step--active.ab-step--progress .ab-step__ring {
  opacity: 1;
}

.exchange-card .ab-v2-stepper .ab-step--active.ab-step--progress .ab-step__ring-track {
  stroke: rgba(var(--ab-progress-blue-rgb), 0.18);
}

.exchange-card .ab-v2-stepper .ab-step--active.ab-step--progress .ab-step__ring-fill {
  stroke: var(--ab-progress-blue);
}

/* Sending: spin the ring SVG for a seamless loop (not the arc itself) */
.exchange-card .ab-v2-stepper[data-progress-stage="sending"] [data-step="sending"].ab-step--active.ab-step--progress .ab-step__ring {
  opacity: 1;
  transform-origin: center center;
  animation: abSendingRingOrbit 1.4s linear infinite;
}

.exchange-card .ab-v2-stepper[data-progress-stage="sending"] [data-step="sending"].ab-step--active.ab-step--progress #abSendingRingFill {
  stroke: var(--ab-progress-blue);
  stroke-dasharray: 36 108.51;
  stroke-dashoffset: 0;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}

.exchange-card .ab-v2-stepper[data-progress-stage="sending"] [data-step="sending"].ab-step--active.ab-step--progress .ab-step__icon img {
  animation: abSendingIconPulse 2.6s ease-in-out infinite;
}

@keyframes abSendingRingOrbit {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes abSendingIconPulse {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(-1.5px);
    opacity: 0.88;
  }
}

@keyframes abDepositIconShimmer {
  0% {
    transform: translateX(-120%);
  }

  45%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes abDepositPendingReveal {
  0%,
  100% {
    filter: grayscale(1) saturate(0.15);
    opacity: 0.38;
  }

  50% {
    filter: grayscale(0) saturate(1);
    opacity: 1;
  }
}

.exchange-card .ab-v2-stepper[data-progress-stage="sending"] [data-step="sending"].ab-step--active .ab-step__glow--send {
  opacity: 0;
}

.exchange-card .ab-v2-stepper .ab-step__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  overflow: visible;
  transition: opacity 0.25s ease;
}

.exchange-card .ab-v2-stepper .ab-step__ring-track {
  stroke: rgba(var(--ab-progress-blue-rgb), 0.18);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.exchange-card .ab-v2-stepper .ab-step__ring-fill {
  stroke: var(--ab-progress-blue);
  stroke-width: 2;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  transition: stroke-dashoffset 0.45s ease;
}

@keyframes abProgressGlow {
  0%,
  100% {
    opacity: 0.72;
  }

  50% {
    opacity: 1;
  }
}

@keyframes abProgressFlow {
  0% {
    transform: translateX(-100%);
  }

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

.exchange-card .ab-v2-stepper {
  background: transparent;
  border: none;
}

@media (prefers-reduced-motion: reduce) {
  .exchange-card .ab-v2-stepper .ab-step__glow,
  .exchange-card .ab-v2-stepper[data-progress-stage="awaiting_deposit"] [data-step="deposit"].ab-step--active .ab-step__icon img,
  .exchange-card .ab-v2-stepper[data-progress-stage="awaiting_deposit"] [data-step="deposit"].ab-step--active .ab-step__icon::after,
  .exchange-card .ab-v2-stepper .ab-stepConnector--flow.ab-stepConnector--flow-active .ab-stepConnector__flowDash,
  .exchange-card .ab-v2-stepper .ab-stepConnector--flow-outbound.ab-stepConnector--flow-active .ab-stepConnector__flowDash,
  .exchange-card .ab-v2-stepper[data-progress-stage="sending"] [data-step="sending"].ab-step--active.ab-step--progress .ab-step__ring,
  .exchange-card .ab-v2-stepper[data-progress-stage="sending"] [data-step="sending"].ab-step--active.ab-step--progress .ab-step__icon img {
    animation: none;
  }
}

.ab-v2-stepper .ab-step {
  gap: 8px;
}

.exchange-card .ab-v2-stepper .ab-stepper__meta {
  flex: 0 0 100%;
  width: 100%;
  border: 1px solid rgba(229, 231, 235, 1);
  border-radius: 12px;
  background: #f3f4f6;
  margin-top: 12px;
  min-height: 60px;
  height: auto;
  padding: 8px 12px;
  width: 100%;
  box-sizing: border-box;
}

.exchange-card .ab-v2-stepper .ab-stepper__left {
  color: rgba(24, 24, 27, 0.6);
}

.exchange-card .ab-v2-stepper .ab-stepper__right strong,
.exchange-card .ab-v2-stepper #abEstTimeValue {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  color: #0f172a;
}

.ab-progress-complete {
  display: none;
}

.ab-stepper__meta--complete {
  border-color: rgba(var(--ab-progress-blue-rgb), 0.22);
  background: rgba(var(--ab-progress-blue-rgb), 0.06);
}

.ab-stepper__meta--complete .ab-stepper__left {
  color: var(--ab-progress-blue);
  font-weight: 700;
}

.ab-stepper__meta--failed {
  border-color: rgba(239, 68, 68, 0.28);
  background: rgba(254, 242, 242, 0.95);
}

.ab-stepper__meta--failed .ab-stepper__left {
  color: #991b1b;
  font-weight: 700;
}

.ab-progress-meta__live,
.ab-progress-meta__done {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ab-progress-meta__check {
  display: inline-flex;
  width: 22px;
  height: 22px;
  color: var(--ab-progress-blue);
  flex-shrink: 0;
}

.ab-progress-meta__check svg {
  display: block;
  width: 100%;
  height: 100%;
}

.ab-progress-meta__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--ab-progress-blue);
  text-decoration: none;
  white-space: nowrap;
}

.ab-progress-meta__link:hover {
  color: var(--ab-progress-blue);
  text-decoration: underline;
  opacity: 0.88;
}

.ab-progress-meta__outcomes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.ab-progress-meta__outcome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
}

.ab-progress-meta__outcome--refund .ab-progress-meta__outcome-label {
  color: #64748b;
}

.ab-progress-meta__outcome-label {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  white-space: nowrap;
}

.ab-stepper__meta--dual-outcome {
  flex-wrap: wrap;
  align-items: stretch;
}

.ab-stepper__meta--dual-outcome .ab-stepper__right {
  flex: 1 1 100%;
  width: 100%;
  margin-left: 0;
  justify-content: stretch;
}

.ab-stepper__meta--dual-outcome .ab-progress-meta__done {
  width: 100%;
}

.ab-progress-meta__single {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ab-progress-mock {
  margin-top: 14px;
  padding: 12px;
  border-radius: 12px;
  border: 1px dashed rgba(0, 72, 215, 0.28);
  background: rgba(0, 72, 215, 0.04);
}

.ab-v2-fieldset--deposit.ab-v2-fieldset--copied .ab-v2-fieldset__box {
  border-color: rgba(34, 197, 94, 0.45);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.ab-v2-fieldset--deposit.ab-v2-fieldset--copied .ab-v2-fieldset__label {
  color: #16a34a;
}

.ab-v2-swapAgain {
  margin-top: 0;
}

.ab-confirm-v2 .ab-v2-swapAgain__cta {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  height: calc(60px * 600 / 531);
  min-height: calc(60px * 600 / 531);
  padding: 0 28px;
  border: none;
  border-radius: 12px;
  gap: 8px;
  background: #0048d7;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 72, 215, 0.28);
  transition: filter 0.15s ease;
  cursor: pointer;
}

.ab-confirm-v2 .ab-v2-swapAgain__cta:hover {
  filter: brightness(1.08);
  color: #ffffff;
}

.ab-confirm-v2 .ab-v2-swapAgain__cta .swap-widget-card__cta-main {
  font-size: 15px;
  font-weight: 700;
  line-height: 21px;
}

.ab-confirm-v2 .ab-v2-swapAgain__cta .hsw__cta-icon {
  width: 14px;
  height: 12px;
  flex-shrink: 0;
}

.ab-v2-swapDetailsActive {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.ab-v2-swapPanel--detailGroup {
  padding: 0;
  overflow: hidden;
}

.ab-v2-swapPanel__detailRow {
  padding: 14px 18px;
}

.ab-v2-swapPanel__detailRow + .ab-v2-swapPanel__detailRow {
  border-top: 1px solid rgba(226, 232, 240, 1);
}

.ab-v2-swapPanel__detailRow[hidden] {
  display: none;
}

.ab-v2-minReceive__text--stacked {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.ab-v2-minReceive__value--mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.ab-progress-mock__label {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(0, 72, 215, 0.75);
}

.ab-progress-mock__scenarioSteps {
  display: none;
}

.ab-progress-mock__scenarioSteps.is-active {
  display: block;
}

.ab-progress-mock__scenarioSteps .ab-progress-mock__group-label {
  margin-top: 10px;
}

.ab-progress-mock__group-label {
  margin: 10px 0 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.45);
}

.ab-progress-mock__group-label:first-of-type {
  margin-top: 0;
}

.ab-progress-mock__row--autocycle {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed rgba(0, 72, 215, 0.18);
}

.ab-progress-mock__row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ab-progress-mock__row + .ab-progress-mock__row {
  margin-top: 8px;
}

.ab-progress-mock__btn {
  appearance: none;
  border: 1px solid rgba(0, 72, 215, 0.22);
  border-radius: 999px;
  background: #fff;
  color: #0f172a;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  cursor: pointer;
}

.ab-progress-mock__btn:hover {
  border-color: rgba(0, 72, 215, 0.45);
  background: rgba(0, 72, 215, 0.06);
}

.ab-progress-mock__btn--secondary {
  border-color: rgba(15, 23, 42, 0.14);
  color: rgba(15, 23, 42, 0.72);
}

.ab-progress-mock__btn--selected {
  border-color: rgba(0, 72, 215, 0.55);
  background: rgba(0, 72, 215, 0.12);
  color: #0048d7;
  box-shadow: inset 0 0 0 1px rgba(0, 72, 215, 0.12);
}

.ab-progress-mock__btn--accent {
  border-color: rgba(0, 72, 215, 0.45);
  background: rgba(0, 72, 215, 0.1);
  color: #0048d7;
}

.ab-progress-mock__btn--danger {
  border-color: rgba(239, 68, 68, 0.35);
  color: #b91c1c;
}

.ab-progress-mock__btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.ab-v2-refundIntro {
  margin-bottom: 14px;
}

.ab-v2-refundTitle {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.ab-v2-refundOptional {
  font-weight: 500;
  color: rgba(15, 23, 42, 0.5);
}

.ab-v2-refundDesc {
  margin: 6px 0 0;
  font-size: 13px;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.55);
  line-height: 1.45;
}

.ab-v2-addressField--refund {
  background: rgba(248, 250, 255, 0.85);
}

.ab-v2-emailSection {
  width: 100%;
}

.ab-v2-footer {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.5);
  text-align: center;
}

.ab-v2-footer--prompt {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(220, 226, 240, 0.9);
  background: #ffffff;
  box-shadow: 0 8px 60px 0 #eeefff;
}

.ab-v2-emailLabel {
  font-size: 13px;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.65);
  text-align: center;
}

.ab-v2-emailInput {
  width: 100%;
  box-sizing: border-box;
}

.ab-v2-footer__icon {
  width: 16px;
  height: 16px;
  color: rgba(15, 23, 42, 0.4);
  flex-shrink: 0;
}

@media (max-width: 620px) {
  .ab-confirm-v2 .ab-v2-card {
    padding: 16px;
  }

  .ab-confirm-v2 .ab-v2-depositBody {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    height: auto;
    grid-template-columns: unset;
    grid-template-rows: unset;
  }

  .ab-confirm-v2 .ab-v2-depositLeft,
  .ab-confirm-v2 .ab-v2-depositRight {
    display: contents;
  }

  .ab-confirm-v2 .ab-v2-depositAction {
    order: 4;
    grid-column: unset;
    grid-row: unset;
    margin-top: 12px;
  }

  .ab-confirm-v2 .ab-v2-depositPay {
    order: 1;
    padding: 0;
    margin: 0 0 20px;
    width: 100%;
  }

  .ab-confirm-v2 .ab-v2-depositTitle {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .ab-confirm-v2 .ab-v2-qrBox {
    order: 2;
    box-sizing: border-box;
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0 0 24px;
    padding: 16px;
  }

  .ab-confirm-v2 .ab-v2-qrBox__code,
  .ab-confirm-v2 .ab-v2-qrBox .ab-qrFake {
    width: 148px;
    height: 148px;
  }

  .ab-confirm-v2 .ab-v2-qrBox .ab-v2-expiry {
    margin-top: 12px;
  }

  .ab-confirm-v2 .ab-v2-depositAddress {
    order: 3;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    width: 100%;
  }

  .ab-confirm-v2 .ab-v2-fieldset--deposit .ab-v2-fieldset__value {
    font-size: 12px;
    line-height: 1.45;
  }

  .ab-confirm-v2 #abDepositAmount,
  .ab-confirm-v2 .ab-v2-depositAmount__value,
  .ab-confirm-v2 #abDepositTokenName,
  .ab-confirm-v2 .ab-v2-depositAmount__token {
    font-size: 36px;
  }

  .ab-confirm-v2 .ab-v2-depositSubline {
    font-size: 13px;
    margin-top: 6px;
  }

  .ab-confirm-v2 .ab-v2-statusHeader {
    margin-bottom: 12px;
  }

  .ab-confirm-v2 .ab-v2-statusSubtitle {
    font-size: 13px;
    line-height: 1.5;
  }

  .ab-v2-depositAmount__value,
  .ab-v2-depositAmount__token {
    font-size: 34px;
  }

  .ab-v2-depositTitle {
    font-size: 17px;
  }

  .ab-v2-swapPair {
    flex-direction: column;
  }

  .ab-v2-swapPair__connector {
    flex: 0 0 auto;
    width: auto;
    height: 20px;
    padding: 2px 0;
  }

  .ab-v2-swapPair__line {
    width: 1px;
    height: 100%;
    background: rgba(148, 163, 184, 0.42);
  }

  .ab-v2-emailForm {
    flex-direction: column;
  }

  .ab-v2-emailBtn {
    width: 100%;
  }

  .exchange-card .ab-v2-stepper {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    border-radius: 14px;
    border: 1px solid rgba(220, 226, 240, 0.9);
    background: #f8fafc;
  }

  .exchange-card .ab-v2-stepper .ab-stepConnector {
    display: none;
  }

  .exchange-card .ab-v2-stepper .ab-step {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-height: 48px;
    padding: 6px 8px;
    border-radius: 10px;
    box-sizing: border-box;
  }

  .exchange-card .ab-v2-stepper .ab-step--active {
    background: rgba(0, 72, 215, 0.07);
  }

  .exchange-card .ab-v2-stepper .ab-step__dot {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
  }

  .exchange-card .ab-v2-stepper .ab-step__dot img {
    width: 16px;
    height: 16px;
  }

  .exchange-card .ab-v2-stepper .ab-step__dot img[src*="token"] {
    width: 20px;
    height: 20px;
  }

  .exchange-card .ab-v2-stepper .ab-step__ring {
    width: 36px;
    height: 36px;
  }

  .exchange-card .ab-v2-stepper .ab-progress-complete {
    margin-top: 8px;
  }

  .exchange-card .ab-v2-stepper .ab-step__label {
    flex: 1;
    width: auto;
    text-align: left;
    white-space: normal;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
  }

  .exchange-card .ab-v2-stepper .ab-stepper__meta {
    margin-top: 8px;
    min-height: 60px;
    padding: 8px 12px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 1px solid rgba(229, 231, 235, 1);
    border-radius: 12px;
    background: #f3f4f6;
  }

  .exchange-card .ab-v2-stepper .ab-stepper__meta--stacked {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    height: auto;
  }

  .exchange-card .ab-v2-stepper .ab-stepper__meta--stacked .ab-stepper__left {
    order: 1;
    flex: 1;
    min-width: 0;
    width: auto;
    text-align: left;
  }

  .exchange-card .ab-v2-stepper .ab-stepper__meta--stacked .ab-stepper__right {
    order: 2;
    flex-shrink: 0;
    margin-left: auto;
    align-self: center;
  }

  .exchange-card .ab-v2-stepper .ab-stepper__meta--stacked.ab-stepper__meta--status-only {
    justify-content: flex-start;
  }

  .exchange-card .ab-v2-stepper .ab-stepper__left {
    font-size: 14px;
    line-height: 1.35;
    color: rgba(24, 24, 27, 0.6);
  }

  .exchange-card .ab-v2-stepper .ab-stepper__right {
    align-self: center;
    flex-shrink: 0;
  }

  .exchange-card .ab-v2-stepper .ab-stepper__right strong,
  .exchange-card .ab-v2-stepper #abEstTimeValue {
    font-size: 15px;
  }
}
