
:root {
  color-scheme: dark;
  background: #282629;
  --main-color: rgb(255, 182, 0);
  --button-color: rgb(249, 169, 0);
  --heading-color: #ffb600;
  --accent-color: rgb(255, 209, 122);
  --surface-color: rgba(255, 240, 204, 0.04);
  --border-color: rgba(255, 182, 0, 0.16);
  --text-color: #fff0cc;
  --text-soft: rgba(255, 240, 204, 0.82);
  --muted-color: rgba(255, 240, 204, 0.6);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background: #282629;
  touch-action: pan-y;
}

body {
  min-height: 100vh;
  color: var(--text-color);
  font-family: 'Roboto', Helvetica, Arial, Lucida, sans-serif;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  position: relative;
  width: 100%;
  background: #282629;
}

.site-header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 20;
  width: 100%;
  border-bottom: 1px solid rgba(255, 240, 204, 0.06);
  background: #282629;
  transition: border-color 280ms ease, box-shadow 280ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(255, 182, 0, 0.16);
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.8);
}

.site-header-inner {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
}

.site-brand-mark {
  width: min(186px, 44vw);
  height: auto;
  flex: 0 0 auto;
}

.site-header-download {
  min-height: 46px;
  padding: 0 18px;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav__link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #f9a900;
  transition: color 160ms ease;
}

.site-nav__link:hover {
  color: #c47a00;
}


.page-content {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding: 96px 0 108px;
  background:
    linear-gradient(180deg, #282629 0%, #232125 22%, #211f23 60%, #211f23 100%);
}

.page-content-inner {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 52px 0 0;
}

.content-section {
  margin-top: 92px;
  padding: 32px 0;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: 40px;
  align-items: center;
  min-height: auto;
  padding-top: 0;
}

.hero-copy h2,
.section-header h2,
.narrow-copy h2,
.split-copy h2 {
  margin: 0;
  color: var(--heading-color);
}

.hero-copy h2 {
  max-width: 16ch;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-header h2,
.narrow-copy h2,
.split-copy h2 {
  letter-spacing: -0.02em;
}

.eyebrow {
  margin: 0 0 16px;
  color: rgba(255, 182, 0, 0.84);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-lead,
.section-header p,
.narrow-copy p,
.split-copy p {
  margin: 20px 0 0;
  color: var(--text-color);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.6;
}

.hero-lead {
  max-width: 620px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button-row--stacked {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.button--primary {
  color: #241c00;
  background: var(--button-color);
  border-color: transparent;
}

.button--primary:hover,
.button--primary:active {
  border-color: #7a5e00;
}

.button--ghost {
  background: #322e35;
  border-color: transparent;
  color: var(--text-color);
}

.button--ghost:hover,
.button--ghost:active {
  border-color: #6b6570;
}

.hero-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.platform-icon,
.trust-label,
.device-pill,
.device-label,
.p2p-device__top span,
.p2p-note span {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-points li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 240, 204, 0.78);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--main-color);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-device,
.device-frame,
.p2p-device,
.multichain-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  background:
    radial-gradient(circle at top, rgba(255, 182, 0, 0.18), rgba(255, 182, 0, 0) 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.hero-device {
  width: min(100%, 440px);
  min-height: 560px;
  padding: 22px;
}

.device-top,
.device-frame__header,
.p2p-device__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.device-pill,
.device-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.62);
}

.device-pill {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 182, 0, 0.1);
}

.device-pill--quiet {
  background: rgba(255, 255, 255, 0.05);
}

.device-chart {
  position: relative;
  height: 230px;
  margin-top: 26px;
  border-radius: 26px;
  border: 1px solid rgba(255, 182, 0, 0.12);
  background:
    linear-gradient(180deg, rgba(32, 30, 33, 0) 0%, rgba(32, 30, 33, 0.72) 100%),
    linear-gradient(135deg, rgba(255, 182, 0, 0.14), rgba(255, 209, 122, 0.12));
  overflow: hidden;
}

.chart-line {
  position: absolute;
  left: -15%;
  right: -15%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 182, 0, 0), rgba(255, 182, 0, 0.9), rgba(255, 209, 122, 0));
  filter: blur(0.4px);
}

.chart-line--one {
  top: 32%;
  animation: drift-line 6.8s ease-in-out infinite;
}

.chart-line--two {
  top: 55%;
  animation: drift-line 8.3s ease-in-out infinite reverse;
}

.chart-line--three {
  top: 76%;
  animation: drift-line 7.5s ease-in-out infinite;
}

.device-stack {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.device-card {
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.device-card strong {
  display: block;
  margin-top: 6px;
  font-size: 20px;
  line-height: 1.1;
}

.platform-section {
  margin-top: 120px;
}

.section-header {
  max-width: 720px;
}

.section-header h2,
.narrow-copy h2,
.split-copy h2 {
  font-size: 56px;
  font-weight: 500;
  line-height: 1.05;
}

.section-header p {
  max-width: 640px;
  margin-top: 16px;
}

.platform-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.platform-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 72px;
  padding: 0 36px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: #322e35;
  color: var(--text-color);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.platform-card:hover {
  border-color: #6b6570;
}

.platform-card__inner {
  display: flex;
  align-items: center;
  gap: 14px;
}

.platform-os-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  color: #fff0cc;
}

.platform-os-icon svg,
.platform-os-icon img {
  width: 26px;
  height: 26px;
  display: block;
}

.platform-os-icon--tux .tux-mask {
  width: 28px;
  height: 28px;
  background: currentColor;
  -webkit-mask: url("../public/linux.png") center / contain no-repeat;
  mask: url("../public/linux.png") center / contain no-repeat;
}

.platform-card__text span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #a09aab;
  line-height: 1;
  margin-bottom: 3px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.platform-card__text strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #fff0cc;
  line-height: 1;
}


.intro-section {
  display: grid;
  place-items: center;
  text-align: center;
  padding-top: 32px;
}

.narrow-copy {
  max-width: 760px;
}

.narrow-copy p {
  margin-top: 18px;
}

.split-section,
.trust-section,
.p2p-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 22px;
  align-items: stretch;
}

.feature-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  margin-top: 12px;
  padding-left: 18px;
  color: rgba(255, 240, 204, 0.76);
  line-height: 1.55;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--main-color);
}

.p2p-feature-list {
  margin-top: 22px;
}

.split-visual,
.p2p-visual {
  display: grid;
  gap: 16px;
}

.p2p-visual {
  height: 100%;
}

.p2p-visual > .trade-card {
  min-height: 100%;
}

.device-frame {
  min-height: 410px;
  padding: 18px;
}

.device-frame__body {
  position: relative;
  min-height: 332px;
  margin-top: 16px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 25% 22%, rgba(255, 182, 0, 0.22), rgba(255, 182, 0, 0) 24%),
    radial-gradient(circle at 75% 76%, rgba(255, 209, 122, 0.18), rgba(255, 209, 122, 0) 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  overflow: hidden;
}

.pulse-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  opacity: 0.8;
  animation: pulse 5.5s ease-in-out infinite;
}

.pulse-orb--one {
  top: 22px;
  right: 26px;
  width: 86px;
  height: 86px;
  background: rgba(255, 182, 0, 0.24);
}

.pulse-orb--two {
  bottom: 38px;
  left: 34px;
  width: 56px;
  height: 56px;
  background: rgba(255, 209, 122, 0.2);
  animation-delay: -2.6s;
}

.balance-card {
  position: absolute;
  left: 22px;
  top: 22px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(32, 30, 33, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.balance-card span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.balance-card strong {
  display: block;
  margin-top: 4px;
  font-size: 24px;
}

.chart-grid {
  position: absolute;
  inset: 108px 18px 18px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: end;
  gap: 10px;
}

.chart-grid span {
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, rgba(255, 182, 0, 0.18), rgba(255, 209, 122, 0.82));
  box-shadow: 0 0 32px rgba(255, 209, 122, 0.18);
}

.chip-marquee {
  display: flex;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.chip-marquee__track {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  padding: 12px;
  animation: marquee 24s linear infinite;
}

.chip-marquee__track span,
.chain-node,
.trust-card,
.p2p-note {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.chip-marquee__track span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 10px;
  border-radius: 14px;
  flex-shrink: 0;
}

.chip-marquee__track img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.chain-node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  padding: 10px;
}

.chain-node img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.multichain-section {
  padding-top: 24px;
}

.multichain-section .section-header {
  max-width: none;
}

.multichain-section .section-header p,
.multichain-section .section-header ul {
  max-width: none;
}

#features .section-header {
  max-width: none;
}

#features .section-header p,
#features .section-header ul {
  max-width: none;
}

.feature-list--two-col {
  display: inline-grid;
  grid-template-columns: repeat(2, auto);
  gap: 0 48px;
}

#features {
  padding-top: 44px;
  padding-bottom: 56px;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 64px;
}

.feature-card {
  padding: 34px 30px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.025);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 290px;
  transition: border-color 200ms ease, background 200ms ease;
}

.feature-card:hover {
  border-color: rgba(255, 182, 0, 0.2);
  background: rgba(255, 182, 0, 0.03);
}

.feature-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(255, 182, 0, 0.08);
  border: 1px solid rgba(255, 182, 0, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-color);
  flex-shrink: 0;
  margin-bottom: 4px;
}

.feature-card__icon svg {
  width: 22px;
  height: 22px;
}

.feature-card strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: #fff0cc;
  line-height: 1.3;
}

.feature-card p {
  margin: 0;
  font-size: 14.5px;
  color: rgba(255, 240, 204, 0.6);
  line-height: 1.65;
}

@media (max-width: 980px) {
  .feature-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

.mc-stage {
  position: relative;
  margin-top: 48px;
  width: 100%;
}

.mc-marquee {
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.mc-track {
  display: flex;
  gap: 16px;
  width: max-content;
}

.mc-track--left { animation: mc-marquee-left 46s linear infinite; }
.mc-track--right { animation: mc-marquee-right 54s linear infinite; }

@keyframes mc-marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes mc-marquee-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.mc-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  padding: 11px 22px 11px 11px;
  border-radius: 999px;
  background: rgba(255, 240, 204, 0.04);
  border: 1px solid rgba(255, 240, 204, 0.08);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-color);
  white-space: nowrap;
}

.mc-chip__ic {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 7px;
  border-radius: 50%;
  background: linear-gradient(150deg, #fff4cb 0%, #f6cf63 52%, #e7b53e 100%);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

.mc-chip__ic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.mc-chip--mt {
  background: linear-gradient(90deg, rgba(249, 169, 0, 0.22), rgba(249, 169, 0, 0.06));
  border-color: rgba(249, 169, 0, 0.5);
  color: var(--heading-color);
  font-weight: 700;
}

.mc-chip--mt .mc-chip__ic {
  background: #241c00;
}

.mc-chip--mt .mc-chip__ic svg {
  width: 100%;
  height: 100%;
  color: var(--main-color);
}

@media (prefers-reduced-motion: reduce) {
  .mc-track { animation: none; }
}


.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.trust-card {
  padding: 22px;
  border-radius: 24px;
}

.trust-label {
  display: block;
  margin-bottom: 16px;
  color: rgba(255, 182, 0, 0.72);
  font-size: 11px;
}

.trust-card strong {
  display: block;
  font-size: 26px;
  line-height: 1.05;
}

.trust-card span:last-child {
  display: block;
  margin-top: 10px;
  color: var(--muted-color);
}

/* ============ Security section ============ */

.security-section .section-header {
  max-width: none;
  margin-bottom: 48px;
}

.security-section .section-header p {
  max-width: none;
}

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

.security-card {
  padding: 26px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.025);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 200ms ease, background 200ms ease;
}

.security-card:hover {
  border-color: rgba(255, 182, 0, 0.2);
  background: rgba(255, 182, 0, 0.03);
}

.security-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 182, 0, 0.08);
  border: 1px solid rgba(255, 182, 0, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-color);
  flex-shrink: 0;
}

.security-card__icon svg {
  width: 18px;
  height: 18px;
}

.security-card strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #fff0cc;
  line-height: 1.3;
}

.security-card p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 240, 204, 0.6);
  line-height: 1.6;
}

/* Partner ticker */

.partner-ticker-wrap {
  margin-top: 48px;
  position: relative;
}

.partner-ticker-wrap::before,
.partner-ticker-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 1;
  pointer-events: none;
}

.partner-ticker-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #211f23, transparent);
}

.partner-ticker-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, #211f23, transparent);
}

.partner-ticker {
  display: flex;
  overflow: hidden;
}

.partner-ticker__track {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  animation: marquee 36s linear infinite;
}

.partner-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  flex-shrink: 0;
}

.partner-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.partner-chip--wallet::before { background: rgba(255, 209, 122, 0.8); }
.partner-chip--audit::before  { background: rgba(255, 182, 0, 0.8); }
.partner-chip--fund::before   { background: rgba(255, 160, 100, 0.8); }

/* ============ Payments section ============ */

.payments-section {
  text-align: left;
}

.payments-section .section-header {
  max-width: none;
  margin: 0 0 44px;
}

.payments-section .section-header p {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.payment-card {
  padding: 30px 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.025);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  text-align: left;
  transition: border-color 200ms ease, background 200ms ease;
}

.payment-card:hover {
  border-color: rgba(255, 182, 0, 0.2);
  background: rgba(255, 182, 0, 0.03);
}

.payment-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255, 182, 0, 0.08);
  border: 1px solid rgba(255, 182, 0, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-color);
  flex-shrink: 0;
}

.payment-card__icon svg {
  width: 26px;
  height: 26px;
}

.payment-card strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: #fff0cc;
  line-height: 1.3;
}

.payment-card > span:not(.payment-card__icon) {
  font-size: 14.5px;
  color: rgba(255, 240, 204, 0.6);
  line-height: 1.5;
}

@media (max-width: 860px) {
  .payment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .payment-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .security-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

.p2p-device {
  min-height: 440px;
  padding: 20px;
}

.p2p-device__feed {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.p2p-device__feed div {
  padding: 16px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.p2p-device__feed span {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.p2p-device__feed strong {
  display: block;
  margin-top: 6px;
  font-size: 18px;
}

.p2p-graph {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 238px;
  margin-top: 18px;
  padding: 18px 14px 14px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top, rgba(255, 209, 122, 0.16), rgba(255, 209, 122, 0) 38%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.p2p-graph span {
  flex: 1;
  border-radius: 14px 14px 8px 8px;
  background: linear-gradient(180deg, rgba(255, 182, 0, 0.32), rgba(255, 209, 122, 0.9));
  box-shadow: 0 0 30px rgba(255, 209, 122, 0.12);
  animation: pulse 5.5s ease-in-out infinite;
}

.p2p-note {
  padding: 20px;
  border-radius: 24px;
}

.p2p-note span {
  display: block;
  color: rgba(255, 182, 0, 0.72);
  font-size: 11px;
}

.p2p-note strong {
  display: block;
  margin-top: 10px;
  font-size: 24px;
  line-height: 1.1;
}

.download-section {
  text-align: left;
  display: block;
}

.download-section .section-header {
  max-width: none;
  margin: 0 0 44px;
}

.download-section .section-header p {
  max-width: none;
}

.download-section .button-row {
  justify-content: flex-start;
}

.faq-section {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.faq-header {
  margin-bottom: 32px;
}

.faq-kicker {
  margin: 0 0 16px;
  color: #fff0cc;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
}

.faq-header h2 {
  font-size: 56px;
  font-weight: 500;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  color: var(--heading-color);
  line-height: 1.05;
}

.faq-header p:not(.faq-kicker) {
  font-size: clamp(16px, 1.7vw, 20px);
  color: var(--text-color);
  line-height: 1.6;
  max-width: none;
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-item {
  border-radius: 14px;
  background: #383440;
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-color);
  text-align: left;
  font-family: inherit;
}

.faq-trigger span {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
}

.faq-trigger:hover span {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.6);
  transition: transform 0.25s ease;
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
}

.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.faq-item.is-open .faq-body {
  grid-template-rows: 1fr;
}

.faq-body-inner {
  overflow: hidden;
}

.faq-body-inner p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.65;
}

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

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

@keyframes orbit {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.72;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes drift-line {
  0%,
  100% {
    transform: translateX(-1%);
  }

  50% {
    transform: translateX(1%);
  }
}

@media (max-width: 980px) {
  .hero-section,
  .split-section,
  .trust-section,
  .p2p-section {
    grid-template-columns: 1fr;
  }

  .hero-copy h2 {
    max-width: 16ch;
  }

  .hero-visual {
    justify-content: flex-start;
  }

  .platform-grid {
    gap: 10px;
  }

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

  .content-section {
    margin-top: 72px;
  }

  .mc-chip {
    font-size: 14px;
    padding: 9px 18px 9px 9px;
  }

  .mc-chip__ic {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 860px) {
  .site-nav {
    display: none;
  }
}

@media (max-width: 720px) {
  .page-content-inner {
    width: min(100% - 32px, 1160px);
    padding-top: 40px;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-copy h2 {
    font-size: clamp(28px, 7.5vw, 42px);
    max-width: none;
  }

  .hero-device {
    min-height: 480px;
    padding: 18px;
  }

  .device-frame,
  .p2p-device {
    min-height: auto;
  }

  .device-frame__body {
    min-height: 280px;
  }

  .trade-snapshot {
    grid-template-columns: 1fr;
  }

  .p2p-device__feed {
    grid-template-columns: 1fr;
  }
}

/* ============ Feature list subtle variant ============ */

.feature-list--subtle li {
  font-size: 13px;
  color: var(--text-soft);
}

.feature-list--subtle li::before {
  width: 7px;
  height: 7px;
  background: var(--main-color);
  top: 0.66em;
}

/* ============ Portfolio card ============ */

.portfolio-card {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, #2d2a2f 0%, #211f23 100%);
  box-shadow:
    0 40px 90px -30px rgba(0, 0, 0, 0.7),
    0 0 60px -30px rgba(255, 182, 0, 0.14);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.portfolio-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.portfolio-card__label {
  display: block;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.portfolio-card__value {
  display: block;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff0cc;
  line-height: 1;
}

.portfolio-card__delta {
  display: inline-block;
  margin-top: 6px;
  color: var(--main-color);
  font-size: 13px;
  font-weight: 600;
}

.portfolio-card__period {
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}

.portfolio-card__sparkline {
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.015);
}

.portfolio-card__sparkline svg {
  width: 100%;
  height: 100%;
  display: block;
}

.portfolio-card__alloc {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.portfolio-alloc-bar {
  display: flex;
  height: 6px;
  border-radius: 999px;
  overflow: hidden;
  gap: 2px;
}

.portfolio-alloc-bar span {
  border-radius: 999px;
}

.portfolio-alloc-legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.portfolio-alloc-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 600;
}

.portfolio-alloc-legend i {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.portfolio-card__assets {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.portfolio-row {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.portfolio-row:last-child {
  border-bottom: none;
}

.portfolio-row img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: contain;
}

.portfolio-row__name strong {
  display: block;
  color: #fff0cc;
  font-size: 14px;
  font-weight: 700;
}

.portfolio-row__name span {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
}

.portfolio-row__val {
  text-align: right;
}

.portfolio-row__val strong {
  display: block;
  color: #fff0cc;
  font-size: 14px;
  font-weight: 700;
}

.portfolio-row__val span {
  display: block;
  margin-top: 2px;
  font-size: 11px;
}

.portfolio-row__val span.up {
  color: var(--main-color);
}

.portfolio-row__val span.muted {
  color: rgba(255, 255, 255, 0.35);
}

.portfolio-card__footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
  font-weight: 600;
}

.portfolio-sync {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  color: rgba(255, 182, 0, 0.6) !important;
}

.portfolio-sync i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--main-color);
  box-shadow: 0 0 8px rgba(255, 182, 0, 0.7);
  animation: wallet-pulse 2s ease-in-out infinite;
}

/* ============ Story device (P2P mockup for split-section--story) ============ */

.story-device {
  position: relative;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, #2d2a2f 0%, #211f23 100%);
  box-shadow:
    0 40px 90px -30px rgba(0, 0, 0, 0.7),
    0 0 60px -30px rgba(255, 182, 0, 0.18);
}

.story-device__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.story-device__title strong {
  display: block;
  color: #fff0cc;
  font-size: 15px;
  font-weight: 700;
}

.story-device__title span {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

.story-device__chart {
  height: 130px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.story-device__chart svg {
  width: 100%;
  height: 100%;
  display: block;
}

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

.story-device__offer {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.story-device__offer--best {
  border-color: rgba(255, 182, 0, 0.4);
  background: linear-gradient(135deg, rgba(255, 182, 0, 0.07), rgba(255, 182, 0, 0.01));
}

.story-offer__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 182, 0, 0.15);
  color: var(--main-color);
  font-size: 12px;
  font-weight: 700;
}

.story-offer__info strong {
  display: block;
  color: #fff0cc;
  font-size: 14px;
  font-weight: 700;
}

.story-offer__info span {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
}

.story-offer__price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.story-offer__price strong {
  color: var(--main-color);
  font-size: 14px;
  font-weight: 700;
}

/* ============ Trade card (P2P active trade mockup) ============ */

.trade-card {
  width: 100%;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, #2d2a2f 0%, #211f23 100%);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.7), 0 0 60px -30px rgba(255,182,0,0.15);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.trade-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.trade-card__counterparty {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trade-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,182,0,0.15);
  color: var(--main-color);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trade-card__counterparty strong {
  display: block;
  color: #fff0cc;
  font-size: 15px;
  font-weight: 700;
}

.trade-card__counterparty span {
  display: block;
  margin-top: 2px;
  color: rgba(255,255,255,0.45);
  font-size: 12px;
}

.trade-card__amount {
  text-align: right;
}

.trade-card__amount strong {
  display: block;
  color: var(--main-color);
  font-size: 18px;
  font-weight: 800;
}

.trade-card__amount span {
  display: block;
  margin-top: 2px;
  color: rgba(255,255,255,0.4);
  font-size: 12px;
}

.trade-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
}

.trade-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  position: relative;
}

.trade-step + .trade-step {
  border-top: 1px solid rgba(255,255,255,0.04);
}

.trade-step__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.15);
}

.trade-step--done .trade-step__dot {
  background: var(--main-color);
  border-color: var(--main-color);
}

.trade-step--active .trade-step__dot {
  background: rgba(255,182,0,0.3);
  border-color: var(--main-color);
  box-shadow: 0 0 10px rgba(255,182,0,0.5);
  animation: pulse 1.8s ease-in-out infinite;
}

.trade-step__label {
  flex: 1;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.trade-step--done .trade-step__label { color: rgba(255,255,255,0.85); }
.trade-step--active .trade-step__label { color: #fff0cc; font-weight: 600; }

.trade-step__time {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}

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

.trade-snapshot {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.trade-snapshot__item span {
  display: block;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trade-snapshot__item strong {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1.35;
}

.trade-msg {
  display: flex;
}

.trade-msg--out {
  justify-content: flex-end;
}

.trade-msg span {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 14px;
  font-size: 13px;
  max-width: 78%;
}

.trade-msg--in span {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.8);
  border-bottom-left-radius: 4px;
}

.trade-msg--out span {
  background: rgba(255,182,0,0.12);
  border: 1px solid rgba(255,182,0,0.2);
  color: rgba(255,255,255,0.9);
  border-bottom-right-radius: 4px;
}

.trade-card__actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

/* ============ Hero Wallet App Mockup ============ */

.hero-visual {
  perspective: 1800px;
  width: 100%;
}

.wallet-app {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin-left: auto;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, #2d2a2f 0%, #211f23 100%);
  box-shadow:
    0 60px 120px -20px rgba(0, 0, 0, 0.7),
    0 30px 70px -30px rgba(255, 182, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
  animation: wallet-float 8s ease-in-out infinite;
  transform-origin: center;
}

.wallet-app::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 182, 0, 0.35), rgba(255, 182, 0, 0) 30%, rgba(255, 182, 0, 0) 70%, rgba(255, 182, 0, 0.18));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.wallet-app__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.4);
}

.wallet-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.wallet-dot--red { background: #ff5f57; }
.wallet-dot--yellow { background: #febc2e; }
.wallet-dot--green { background: #28c840; }

.wallet-app__address {
  flex: 1;
  height: 22px;
  margin-left: 16px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.wallet-app__body {
  display: grid;
  grid-template-columns: 56px minmax(0, 1.25fr) minmax(0, 1fr);
  min-height: 480px;
}

.wallet-app__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(0, 0, 0, 0.35);
}

.wallet-nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-weight: 700;
}

.wallet-nav-icon svg {
  width: 18px;
  height: 18px;
}

.wallet-nav-icon--active {
  background: var(--button-color);
  color: #241c00;
  box-shadow: 0 0 22px rgba(249, 169, 0, 0.35);
}

.wallet-nav-icon:not(.wallet-nav-icon--active) + .wallet-nav-icon:not(.wallet-nav-icon--active) {
  /* spacer placeholder */
}

.wallet-app__main {
  padding: 22px 22px 22px 18px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.wallet-balance {
  position: relative;
  padding: 22px 22px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 182, 0, 0.42);
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(255, 182, 0, 0.18), rgba(255, 182, 0, 0) 55%),
    linear-gradient(180deg, rgba(255, 182, 0, 0.08), rgba(255, 182, 0, 0.02));
  overflow: hidden;
}

.wallet-balance__glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 20% 30%, rgba(255, 182, 0, 0.18), transparent 50%);
  filter: blur(20px);
  animation: wallet-glow 6s ease-in-out infinite;
  pointer-events: none;
}

.wallet-balance__label {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.wallet-balance__value {
  display: block;
  margin-top: 6px;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff0cc;
}

.wallet-balance__delta {
  display: inline-block;
  margin-top: 6px;
  color: var(--main-color);
  font-size: 12px;
  font-weight: 600;
}

.wallet-balance__actions {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.wallet-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 600;
}

.wallet-action--primary {
  background: var(--button-color);
  border-color: transparent;
  color: #241c00;
}

.wallet-assets__title {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  margin-bottom: 6px;
}

.wallet-assets__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wallet-asset {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.wallet-asset:last-child {
  border-bottom: none;
}

.wallet-asset img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: contain;
}

.wallet-asset__name strong,
.wallet-asset__price strong {
  display: block;
  color: #fff0cc;
  font-size: 14px;
  font-weight: 700;
}

.wallet-asset__name span,
.wallet-asset__price span {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wallet-asset__price {
  text-align: right;
}

.wallet-asset__price span {
  color: var(--main-color);
  text-transform: none;
  letter-spacing: 0;
}

.wallet-asset__price span.muted {
  color: rgba(255, 255, 255, 0.4);
}

.wallet-app__p2p {
  padding: 22px 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.wallet-p2p__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.wallet-p2p__header strong {
  color: #fff0cc;
  font-size: 15px;
}

.wallet-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 99, 71, 0.12);
  color: #ff8866;
  font-size: 11px;
  font-weight: 600;
}

.wallet-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff5e3a;
  box-shadow: 0 0 10px rgba(255, 94, 58, 0.8);
  animation: wallet-pulse 1.6s ease-in-out infinite;
}

.wallet-offer {
  position: relative;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.wallet-offer--best {
  border-color: rgba(255, 182, 0, 0.38);
  background:
    linear-gradient(180deg, rgba(255, 182, 0, 0.06), rgba(255, 182, 0, 0.01));
}

.wallet-offer__badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(255, 99, 71, 0.15);
  color: #ff8866;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.wallet-offer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.wallet-offer__name strong {
  display: block;
  color: #fff0cc;
  font-size: 14px;
}

.wallet-offer__name span {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
}

.wallet-offer__price {
  text-align: right;
}

.wallet-offer__price strong {
  display: block;
  color: var(--main-color);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.wallet-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 600;
}

.wallet-pill--primary {
  background: var(--button-color);
  border-color: transparent;
  color: #241c00;
}

@keyframes wallet-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes wallet-glow {
  0%, 100% { opacity: 0.6; transform: translate(0, 0); }
  50% { opacity: 1; transform: translate(8%, 5%); }
}

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

@media (max-width: 980px) {
  .wallet-app {
    margin: 0 auto;
  }
  .wallet-app__body {
    grid-template-columns: 56px minmax(0, 1fr);
  }
  .wallet-app__p2p {
    grid-column: 1 / -1;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
  }
}

@media (max-width: 720px) {
  .wallet-app__body {
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: auto;
  }
  .wallet-app__nav {
    padding: 16px 0;
    gap: 12px;
  }
  .wallet-nav-icon {
    width: 32px;
    height: 32px;
  }
  .wallet-balance__value {
    font-size: 28px;
  }
}

.site-footer {
  position: relative;
  z-index: 1;
  background: #3d3944;
  padding: 36px 0 32px;
}

.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.site-footer .site-brand-mark {
  width: min(140px, 32vw);
}

.site-footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0;
}

.site-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.site-footer-nav__link {
  font-size: 14px;
  font-weight: 400;
  color: #f9a900;
  transition: color 160ms ease;
}

.site-footer-nav__link:hover {
  color: #c47a00;
}

.site-footer-copy {
  font-size: 12px;
  color: #f9a900;
  white-space: nowrap;
}

.site-footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.5);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.social-icon svg {
  width: 15px;
  height: 15px;
  display: block;
}

.social-icon:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
}

.consent-popups[hidden] {
  display: none;
}

.consent-popups {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 80;
  width: min(1200px, calc(100% - 60px));
  transform: translateX(-50%);
  pointer-events: none;
}

.consent-popup {
  pointer-events: auto;
  display: grid;
  grid-template-columns: minmax(260px, auto) 1fr;
  gap: 24px;
  align-items: center;
  width: 100%;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  background: rgba(17, 17, 17, 0.94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
}

.consent-popup-header h2 {
  margin: 0;
  color: var(--text-color);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.consent-popup-header p {
  margin: 8px 0 0;
  color: var(--muted-color);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.consent-popup-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  min-width: 0;
}

.consent-link-button {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-align: right;
  text-decoration: none;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 180ms ease;
}

.consent-link-button:hover {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: underline;
}

.consent-popup-button {
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--button-color);
  color: #241c00;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.consent-popup-button:hover {
  border-color: #7a5e00;
}

@media (max-width: 760px) {
  .consent-popups {
    bottom: 14px;
    width: calc(100% - 28px);
  }

  .consent-popup {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 18px 18px;
    border-radius: 20px;
    text-align: left;
  }

  .consent-popup-header h2 {
    font-size: 18px;
  }

  .consent-popup-header p,
  .consent-link-button {
    font-size: 14px;
  }

  .consent-popup-right {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .consent-link-button {
    text-align: left;
  }

  .consent-popup-button {
    min-height: 48px;
    width: 100%;
    font-size: 14px;
  }
}

/* ── Support chat ── */
#support-chat {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 100;
}

.support-fab {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--button-color);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #241c00;
  box-shadow: 0 4px 20px rgba(255, 182, 0, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.support-fab:hover {
  transform: scale(1.07);
  box-shadow: 0 6px 28px rgba(255, 182, 0, 0.45);
}

.support-fab__icon {
  width: 22px;
  height: 22px;
  position: absolute;
  transition: opacity 0.2s, transform 0.2s;
}

.support-fab__icon--close {
  opacity: 0;
  transform: rotate(-90deg) scale(0.7);
}

.support-fab.is-open .support-fab__icon--chat {
  opacity: 0;
  transform: rotate(90deg) scale(0.7);
}

.support-fab.is-open .support-fab__icon--close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.support-window {
  position: absolute;
  bottom: 64px;
  right: 0;
  width: 340px;
  background: #383440;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(12px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.support-window.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.support-window__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: #322e35;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.support-window__avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #241c00;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.support-window__avatar svg {
  width: 20px;
  height: 20px;
}

.support-window__title {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.support-window__title strong {
  font-size: 14px;
  font-weight: 700;
  color: #f9a900;
}

.support-window__title span {
  font-size: 12px;
  color: rgba(255, 240, 204, 0.5);
}

.support-messages {
  flex: 1;
  min-height: 220px;
  max-height: 320px;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
}

.support-msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
  word-break: break-word;
}

.support-msg--bot {
  background: #444049;
  color: rgba(255, 240, 204, 0.88);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.support-msg--user {
  background: #ffb600;
  color: #241c00;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  font-weight: 500;
}

.support-msg--typing {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 16px;
}

.support-msg--typing span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 240, 204, 0.4);
  animation: typing-dot 1.2s ease-in-out infinite;
}

.support-msg--typing span:nth-child(2) { animation-delay: 0.2s; }
.support-msg--typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-dot {
  0%, 80%, 100% { transform: scale(1); opacity: 0.4; }
  40% { transform: scale(1.3); opacity: 1; }
}

.support-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.support-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 14px;
  font-family: inherit;
  color: rgba(255, 240, 204, 0.9);
  outline: none;
  transition: border-color 0.15s;
}

.support-input::placeholder {
  color: rgba(255, 240, 204, 0.4);
}

.support-input:focus {
  border-color: rgba(255, 182, 0, 0.5);
}

.support-input:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.support-send {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #ffb600;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #241c00;
  flex-shrink: 0;
  transition: opacity 0.15s, transform 0.15s;
}

.support-send:hover {
  transform: scale(1.08);
}

.support-send:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

/* ===== Device mockups (laptop + phone) ===== */
.device-laptop {
  width: min(100%, 720px);
  margin-left: auto;
}

.device-laptop__screen {
  border: 14px solid #1c1a20;
  border-bottom-width: 16px;
  border-radius: 22px 22px 6px 6px;
  background: #0f0e11;
  overflow: hidden;
  box-shadow:
    0 40px 90px -25px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 182, 0, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.device-laptop .wallet-app {
  max-width: none;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  animation: none;
}

.device-laptop .wallet-app::before {
  display: none;
}

.device-laptop__base {
  position: relative;
  height: 16px;
  margin: 0 -7%;
  border-radius: 0 0 16px 16px;
  background: linear-gradient(180deg, #3a3640 0%, #211f23 100%);
  box-shadow: 0 18px 34px -12px rgba(0, 0, 0, 0.6);
}

.device-laptop__notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 7px;
  border-radius: 0 0 8px 8px;
  background: rgba(0, 0, 0, 0.45);
}

.split-visual--settings {
  display: block;
}

.settings-window {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, #2d2a2f 0%, #211f23 100%);
  box-shadow:
    0 40px 90px -25px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 182, 0, 0.08);
  overflow: hidden;
}

.settings-window__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.4);
}

.settings-window__title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted-color);
}

.settings-window__crown {
  display: inline-flex;
  color: var(--main-color);
}

.settings-window__crown svg {
  width: 18px;
  height: 18px;
}

.settings-list {
  list-style: none;
  margin: 0;
  padding: 0 8px;
  display: flex;
  flex-direction: column;
}

.settings-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 9px 12px;
}

.settings-row + .settings-row {
  border-top: 1px solid rgba(255, 240, 204, 0.06);
}

.settings-row__icon {
  display: inline-flex;
  flex-shrink: 0;
  width: 26px;
  color: var(--main-color);
}

.settings-row__icon svg {
  width: 24px;
  height: 24px;
}

.settings-row__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.settings-row__text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-color);
}

.settings-row__text span {
  font-size: 11px;
  color: var(--muted-color);
}

.settings-row--version .settings-row__text span {
  color: rgba(255, 240, 204, 0.45);
}

.settings-list--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 22px;
  padding: 10px 18px 16px;
}

.settings-list--grid .settings-row {
  padding: 11px 8px;
  border-top: none;
  border-bottom: 1px solid rgba(255, 240, 204, 0.06);
}

@media (max-width: 720px) {
  .settings-list--grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Swap card (built-in exchange) ===== */
.swap-box {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0;
}

.swap-leg {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 240, 204, 0.03);
}

.swap-leg__label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-color);
}

.swap-leg__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.swap-token {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--text-color);
}

.swap-token img {
  width: 24px;
  height: 24px;
}

.swap-leg__amount {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-color);
}

.swap-leg__fiat {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted-color);
}

.swap-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--button-color);
  border: 3px solid #211f23;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.swap-arrow svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 720px) {
  .device-laptop {
    margin: 0 auto;
  }
}

.support-send svg {
  width: 16px;
  height: 16px;
}

/* ===== Hero glow + Monarch wallet mock ===== */
.hero-visual {
  position: relative;
}

.hero-glow {
  position: absolute;
  z-index: 0;
  top: 48%;
  left: 54%;
  width: 130%;
  height: 120%;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(249, 169, 0, 0.3), rgba(249, 169, 0, 0.06) 52%, transparent 72%);
  pointer-events: none;
}

.device-laptop {
  position: relative;
  z-index: 1;
}

.wallet-app--monarch {
  animation: none;
}

.wallet-app__body--monarch {
  grid-template-columns: 56px minmax(0, 1fr);
  min-height: auto;
}

.mw-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.mw-add {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 8px;
  background: var(--button-color);
  color: #241c00;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.mw-total {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.mw-total strong {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-color);
}

.mw-total span {
  font-size: 13px;
  color: var(--muted-color);
}

.mw-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.mw-act {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 6px;
  border-radius: 12px;
  background: rgba(255, 240, 204, 0.04);
  border: 1px solid rgba(255, 240, 204, 0.06);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-soft);
}

.mw-act__ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.mw-act__ic svg {
  width: 24px;
  height: 24px;
}

.mw-act__ic--buy { color: #c79bff; }
.mw-act__ic--earn { color: #5fd07a; }
.mw-act__ic--swap { color: #5aa6e8; }
.mw-act__ic--pay { color: var(--main-color); }

.mw-coins {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.mw-coin {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px 14px 14px;
  border-radius: 10px;
  overflow: hidden;
}

.mw-coin__spark {
  flex: 1;
  min-width: 0;
  height: 24px;
  align-self: flex-end;
  margin-bottom: 2px;
}

.mw-coin__spark polyline {
  fill: none;
  stroke: rgba(255, 255, 255, 0.5);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.mw-coin__name {
  position: absolute;
  top: 8px;
  left: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.92);
}

.mw-coin__ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.mw-coin__ic--crown svg {
  width: 18px;
  height: 18px;
  color: var(--main-color);
}

.mw-coin__vals {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  text-align: right;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.25;
}

.mw-coin__vals b {
  color: #fff;
  font-weight: 700;
  font-size: 13px;
}

.mw-coin--btc { background: linear-gradient(90deg, #b3701b 0%, #f0a73a 55%, rgba(240, 167, 58, 0.12) 100%); }
.mw-coin--eth { background: linear-gradient(90deg, #3a4f78 0%, #6f86b4 55%, rgba(111, 134, 180, 0.12) 100%); }
.mw-coin--mt  { background: linear-gradient(90deg, #a8761f 0%, #efba4d 55%, rgba(239, 186, 77, 0.12) 100%); }
.mw-coin--bch { background: linear-gradient(90deg, #2f7d3f 0%, #79c07e 55%, rgba(121, 192, 126, 0.12) 100%); }
.mw-coin--xrp { background: linear-gradient(90deg, #2a6f9f 0%, #4aa6d8 55%, rgba(74, 166, 216, 0.12) 100%); }
.mw-coin--xlm { background: linear-gradient(90deg, #5a2f7c 0%, #9a59b8 55%, rgba(154, 89, 184, 0.12) 100%); }

/* ===== Exchange card (Monarch style) ===== */
.exch-card {
  display: flex;
  flex-direction: column;
}

.exch-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.exch-back {
  font-size: 24px;
  line-height: 1;
  color: var(--main-color);
}

.exch-head strong {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-color);
}

.exch-sub {
  margin: 12px 0 20px;
  font-size: 13px;
  color: var(--muted-color);
}

.exch-field__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-soft);
}

.exch-field__row {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.exch-input {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 13px 14px;
  border-radius: 10px;
  background: #fff0cc;
  color: #241c00;
  font-size: 18px;
  font-weight: 700;
}

.exch-input img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.exch-input span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.exch-input--receive {
  background: rgba(255, 240, 204, 0.1);
  color: var(--text-color);
}

.exch-token {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-radius: 10px;
  background: var(--button-color);
  color: #241c00;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.exch-token i {
  font-style: normal;
  font-size: 11px;
}

.exch-field__balance {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted-color);
}

.exch-field__balance span:last-child {
  color: var(--main-color);
}

.exch-swap {
  display: flex;
  justify-content: center;
  margin: 14px 0;
  color: var(--button-color);
}

.exch-swap svg {
  width: 30px;
  height: 30px;
}

.exch-value {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 20px 0;
}

.exch-value span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--main-color);
}

.exch-value strong {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-color);
}

.exch-next {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  background: var(--button-color);
  color: #241c00;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
}

/* ===== Shared laptop visual (all feature sections) ===== */
.content-section:has(.laptop-visual) {
  align-items: center;
}

.laptop-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.laptop-visual img {
  width: 100%;
  max-width: 1050px;
  height: auto;
  display: block;
  margin-right: -5%;
}

.laptop-visual--exchange img {
  width: 105%;
  max-width: 1102px;
  margin-right: -11%;
}

.laptop-visual--custody img {
  width: 104%;
  max-width: 1092px;
  margin-right: -9%;
}

@media (max-width: 980px) {
  .laptop-visual {
    justify-content: center;
  }
  .laptop-visual img {
    max-width: 837px;
    margin-right: 0;
  }
  .laptop-visual--exchange img {
    width: 100%;
    max-width: 837px;
    margin-right: 0;
  }
  .laptop-visual--custody img {
    width: 100%;
    max-width: 837px;
    margin-right: 0;
  }
}

/* ===== Lead hero (top) ===== */
.lead-hero {
  position: relative;
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 30px 0 70px;
}

.lead-hero__glow {
  position: absolute;
  top: 46%;
  left: 50%;
  width: 95%;
  height: 90%;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(249, 169, 0, 0.22), rgba(249, 169, 0, 0.05) 55%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.lead-hero__crown {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -56%);
  width: min(560px, 78%);
  color: rgba(255, 182, 0, 0.06);
  pointer-events: none;
  z-index: 0;
}

.lead-hero__crown svg {
  width: 100%;
  height: auto;
  display: block;
}

.lead-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.lead-hero__eyebrow {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--main-color);
}

.lead-hero__title {
  margin: 0;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.01em;
  font-size: clamp(60px, 12vw, 168px);
  background: linear-gradient(105deg, #ffb600 0%, #ffb600 18%, #ffd874 34%, #fff6dd 50%, #ffd874 66%, #ffb600 82%, #ffb600 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 0 55px rgba(249, 169, 0, 0.3));
  animation: gold-shimmer 6s linear infinite;
}

@keyframes gold-shimmer {
  0% { background-position: 200% 50%; }
  100% { background-position: 0% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .lead-hero__title { animation: none; }
}

.lead-hero__tagline {
  margin: 0;
  font-size: clamp(20px, 2.6vw, 34px);
  font-weight: 600;
  color: var(--text-color);
}

.lead-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 10px;
}

.lead-hero__stats {
  display: flex;
  gap: 48px;
  margin-top: 22px;
}

.lead-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lead-hero__stat strong {
  font-size: 30px;
  font-weight: 800;
  color: var(--heading-color);
}

.lead-hero__stat span {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-color);
}

.lead-hero__chains {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.lead-hero__chains-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-color);
}

.lead-hero__chain-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.lead-hero__chain-logos span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 8px;
  border-radius: 50%;
  background: linear-gradient(150deg, #fff4cb 0%, #f6cf63 52%, #e7b53e 100%);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.lead-hero__chain-logos img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 720px) {
  .lead-hero {
    min-height: auto;
    padding: 30px 0 50px;
  }

  .lead-hero__stats {
    gap: 28px;
  }

  .lead-hero__stat strong {
    font-size: 24px;
  }

  .lead-hero__chain-logos span {
    width: 36px;
    height: 36px;
  }
}
