:root {
  color-scheme: light;
  --page-bg: #f5f7f4;
  --surface: #ffffff;
  --surface-soft: #eef2ed;
  --surface-strong: #17211d;
  --text: #18201d;
  --text-soft: #68736d;
  --line: #dce3de;
  --accent: #0b7d59;
  --accent-strong: #075e44;
  --accent-soft: #e2f5ed;
  --positive: #078554;
  --negative: #d1495b;
  --warning: #c88212;
  --shadow: 0 18px 46px rgba(27, 45, 36, 0.09);
  --radius: 8px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--page-bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
select {
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

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

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

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

svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--surface-strong);
  color: #fff;
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  backdrop-filter: blur(16px);
}

.header-inner,
.section-shell,
.exchange-section,
.footer-inner,
.footer-bottom {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 72px;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: 154px;
  height: auto;
}

.brand-logo-light {
  display: none;
}

footer .brand-logo-dark {
  display: none;
}

footer .brand-logo-light {
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.main-nav a {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 650;
  transition: color 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.support-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  gap: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-size: 13px;
  font-weight: 650;
}

.support-link {
  padding: 0 13px;
}

.language-picker {
  position: relative;
}

.language-trigger {
  display: inline-flex;
  min-width: 142px;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  padding: 4px 10px 4px 5px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.language-trigger:hover,
.language-trigger:focus-visible,
.language-picker.is-open .language-trigger {
  border-color: color-mix(in srgb, var(--accent) 58%, var(--line));
  background: var(--surface-soft);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 9%, transparent);
  outline: 0;
}

.language-trigger-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 5px;
  background: var(--accent-soft);
  color: var(--accent);
}

.language-trigger-icon svg {
  width: 16px;
  height: 16px;
}

.language-chevron {
  width: 14px;
  height: 14px;
  margin-left: auto;
  color: var(--text-soft);
  transition: transform 160ms ease;
}

.language-picker.is-open .language-chevron {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  z-index: 150;
  display: grid;
  width: 196px;
  gap: 3px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(20, 31, 25, 0.16);
}

.language-menu[hidden] {
  display: none;
}

.language-menu button {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 16px;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  padding: 4px 8px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 650;
  text-align: left;
}

.language-menu button:hover,
.language-menu button:focus-visible {
  background: var(--surface-soft);
  color: var(--text);
  outline: 0;
}

.language-menu button[aria-selected="true"] {
  background: var(--accent-soft);
  color: var(--text);
}

.language-menu button > svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  opacity: 0;
}

.language-menu button[aria-selected="true"] > svg {
  opacity: 1;
}

.language-code {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--surface);
  color: var(--text-soft);
  font-size: 9px;
  font-weight: 800;
}

.ticker-tape {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  min-height: 44px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
  font-size: 12px;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--warning);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--warning) 16%, transparent);
}

.market-online .status-dot,
.rate-badge .status-dot {
  background: var(--positive);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--positive) 16%, transparent);
}

.market-offline .status-dot {
  background: var(--negative);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--negative) 16%, transparent);
}

.ticker-track {
  display: flex;
  align-items: center;
  min-width: 0;
  width: 100%;
  height: 100%;
  margin-inline: auto;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

.ticker-track::-webkit-scrollbar {
  display: none;
}

.ticker-track:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--accent) 42%, transparent);
  outline-offset: -2px;
}

.ticker-control {
  display: grid;
  z-index: 1;
  width: 32px;
  height: 32px;
  place-self: center;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--surface);
  color: var(--text-soft);
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease, opacity 160ms ease;
}

.ticker-control:hover:not(:disabled),
.ticker-control:focus-visible:not(:disabled) {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
  outline: 0;
}

.ticker-control:disabled {
  cursor: default;
  opacity: 0.3;
}

.ticker-control svg {
  width: 16px;
  height: 16px;
}

.ticker-item {
  display: inline-flex;
  align-items: baseline;
  flex: 0 0 auto;
  gap: 7px;
  padding: 0 18px;
  border-left: 1px solid var(--line);
  white-space: nowrap;
}

.ticker-item strong {
  font-size: 12px;
}

.ticker-item .price {
  font-variant-numeric: tabular-nums;
}

.market-change {
  color: var(--text-soft);
  font-variant-numeric: tabular-nums;
}

.positive {
  color: var(--positive) !important;
}

.negative {
  color: var(--negative) !important;
}

.exchange-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  align-items: center;
  gap: 78px;
  min-height: 690px;
  padding-top: 62px;
  padding-bottom: 70px;
}

.exchange-intro {
  min-width: 0;
}

.eyebrow,
.section-kicker,
.panel-kicker,
.modal-kicker {
  color: var(--accent);
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 7px 10px;
  border: 1px solid color-mix(in srgb, var(--accent) 24%, var(--line));
  background: var(--accent-soft);
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.exchange-intro h1 {
  max-width: 670px;
  margin: 0;
  font-size: 54px;
  line-height: 1.12;
  font-weight: 760;
}

.hero-description {
  max-width: 610px;
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.85;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 28px;
}

.trust-row > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
}

.trust-row svg {
  color: var(--accent);
}

.hero-quote {
  max-width: 590px;
  margin-top: 38px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.hero-quote-heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.quote-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--positive);
}

.quote-live span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.hero-quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 72px;
  align-items: center;
  gap: 18px;
}

.hero-quote-grid > div {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.hero-quote-grid img {
  width: 34px;
  height: 34px;
}

.hero-quote-grid span {
  display: flex;
  flex-direction: column;
  font-weight: 700;
}

.hero-quote-grid small {
  color: var(--text-soft);
  font-size: 10px;
  font-weight: 600;
}

.hero-quote-grid strong {
  font-size: 19px;
  font-variant-numeric: tabular-nums;
}

.hero-quote-grid > .market-change {
  display: block;
  text-align: right;
  font-size: 13px;
}

.exchange-panel {
  width: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.panel-heading h2 {
  margin: 1px 0 0;
  font-size: 25px;
  line-height: 1.25;
}

.rate-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-soft);
  font-size: 11px;
  white-space: nowrap;
}

.rate-badge .status-dot {
  width: 6px;
  height: 6px;
}

.asset-field {
  position: relative;
  padding: 17px 17px 15px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-soft);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.asset-field:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 10%, transparent);
}

.field-label,
.asset-input-row,
.quote-summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.field-label {
  margin-bottom: 9px;
  color: var(--text-soft);
  font-size: 12px;
}

.field-label label {
  color: var(--text);
  font-size: 13px;
  font-weight: 720;
}

.field-label strong {
  color: var(--accent);
  font-weight: 650;
}

.bonus-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--positive);
}

.bonus-label svg {
  width: 14px;
  height: 14px;
}

.asset-input-row input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 27px;
  font-weight: 720;
  line-height: 1.25;
  font-variant-numeric: tabular-nums;
}

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

.asset-select-wrap {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 6px;
  min-width: 106px;
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--surface);
}

.asset-select-wrap select {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-weight: 750;
  appearance: none;
}

.asset-select-wrap svg {
  width: 15px;
  height: 15px;
}

.fiat-estimate {
  display: block;
  min-height: 19px;
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.field-error {
  display: none;
  margin: 7px 0 0;
  color: var(--negative);
  font-size: 12px;
}

.field-error:not(:empty) {
  display: block;
}

.swap-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  height: 28px;
}

.swap-row > span {
  height: 1px;
  background: var(--line);
}

.swap-button {
  display: grid;
  z-index: 1;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--accent);
  transition: transform 180ms ease, border-color 180ms ease;
}

.swap-button:hover,
.swap-button:focus-visible {
  border-color: var(--accent);
  transform: rotate(180deg);
}

.quote-summary {
  display: grid;
  gap: 7px;
  margin: 20px 1px;
}

.quote-summary > div {
  color: var(--text-soft);
  font-size: 12px;
}

.quote-summary strong {
  color: var(--text);
  font-weight: 650;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.quote-summary .free-text {
  color: var(--positive);
}

.primary-button {
  display: inline-flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--accent);
  border-radius: 5px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 750;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  border-color: var(--accent-strong);
  background: var(--accent-strong);
}

.primary-button:active {
  transform: translateY(1px);
}

.primary-button.is-loading,
.primary-button.is-loading:hover,
.primary-button.is-loading:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
  cursor: wait;
  opacity: 0.86;
  transform: none;
}

.primary-button.is-loading svg {
  animation: submit-spin 800ms linear infinite;
}

@keyframes submit-spin {
  to {
    transform: rotate(360deg);
  }
}

.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 13px 0 0;
  color: var(--text-soft);
  font-size: 11px;
  text-align: center;
}

.secure-note svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

.market-section,
.process-section {
  padding-top: 88px;
  padding-bottom: 88px;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading h2 {
  margin: 6px 0 0;
  font-size: 34px;
  line-height: 1.25;
}

.section-heading p {
  margin: 10px 0 0;
  color: var(--text-soft);
}

.centered-heading {
  max-width: 680px;
  margin-right: auto;
  margin-bottom: 40px;
  margin-left: auto;
  text-align: center;
}

.market-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.market-updated {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 7px;
  color: var(--text-soft);
  font-size: 11px;
}

.market-updated svg {
  width: 14px;
  height: 14px;
}

.market-updated strong {
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.market-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.market-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.market-table th,
.market-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: right;
  white-space: nowrap;
}

.market-table th:first-child,
.market-table td:first-child {
  text-align: left;
}

.market-table th {
  background: var(--surface-soft);
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 650;
}

.market-table td {
  font-size: 13px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.market-table tbody tr:last-child td {
  border-bottom: 0;
}

.market-table tbody tr {
  transition: background 140ms ease;
}

.market-table tbody tr:hover {
  background: color-mix(in srgb, var(--accent-soft) 45%, transparent);
}

.asset-identity {
  display: flex;
  align-items: center;
  gap: 11px;
}

.asset-identity img,
.coin-fallback {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.coin-fallback {
  display: none;
  place-items: center;
  background: var(--surface-strong);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.asset-identity > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.asset-identity strong {
  font-size: 13px;
}

.asset-identity small {
  color: var(--text-soft);
  font-size: 10px;
  font-weight: 600;
}

.table-action {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 0;
  background: transparent;
  color: var(--accent);
  font-size: 12px;
  font-weight: 720;
}

.table-action svg {
  width: 14px;
  height: 14px;
}

.market-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 15px 0 0;
  color: var(--text-soft);
  font-size: 11px;
}

.market-disclaimer svg {
  width: 15px;
  height: 15px;
  margin-top: 1px;
}

.benefits-section {
  padding: 88px 0;
  background: var(--surface-strong);
  color: #fff;
}

.benefits-section .section-heading p {
  color: rgba(255, 255, 255, 0.63);
}

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

.benefit-card {
  position: relative;
  min-width: 0;
  min-height: 330px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.benefit-number {
  position: absolute;
  top: 15px;
  right: 18px;
  color: rgba(255, 255, 255, 0.13);
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
}

.benefit-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.benefit-icon svg {
  width: 22px;
  height: 22px;
}

.benefit-tag {
  color: #76d9ad;
  font-size: 11px;
  font-weight: 740;
}

.benefit-card h3 {
  margin: 8px 0 12px;
  font-size: 21px;
  line-height: 1.35;
}

.benefit-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.benefit-card a,
.text-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 24px;
  border: 0;
  background: transparent;
  color: #fff;
  font-weight: 700;
}

.benefit-card a svg,
.text-button svg {
  width: 15px;
  height: 15px;
}

.featured-benefit {
  border-color: color-mix(in srgb, var(--accent) 72%, #fff);
  background: color-mix(in srgb, var(--accent) 62%, #163027);
}

.benefit-example {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 23px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}

.benefit-example strong {
  color: #fff;
  font-size: 16px;
}

.service-strip {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 32px;
  padding-bottom: 32px;
}

.service-grid > div {
  display: grid;
  grid-template-columns: 34px auto;
  grid-template-rows: auto auto;
  align-items: center;
  padding: 0 26px;
  border-right: 1px solid var(--line);
}

.service-grid > div:first-child {
  padding-left: 0;
}

.service-grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.service-grid svg {
  grid-row: 1 / 3;
  color: var(--accent);
}

.service-grid strong {
  font-size: 18px;
  line-height: 1.2;
}

.service-grid span {
  color: var(--text-soft);
  font-size: 11px;
}

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

.process-grid article {
  position: relative;
  padding-top: 18px;
  text-align: center;
}

.process-grid article::after {
  position: absolute;
  top: 42px;
  left: calc(50% + 50px);
  width: calc(100% - 65px);
  height: 1px;
  background: var(--line);
  content: "";
}

.process-grid article:last-child::after {
  display: none;
}

.process-grid article > span {
  position: absolute;
  top: 0;
  right: calc(50% - 42px);
  display: grid;
  z-index: 1;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 2px solid var(--page-bg);
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.process-grid article > svg {
  width: 48px;
  height: 48px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--accent);
}

.process-grid h3 {
  margin: 17px 0 9px;
  font-size: 17px;
}

.process-grid p {
  max-width: 285px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: 13px;
}

.help-section {
  padding: 88px 0;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.help-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
  gap: 80px;
  align-items: start;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 2px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary svg {
  color: var(--text-soft);
  transition: transform 160ms ease;
}

.faq-list details[open] summary svg {
  transform: rotate(180deg);
}

.faq-list details p {
  max-width: 690px;
  margin: -5px 40px 19px 2px;
  color: var(--text-soft);
  font-size: 13px;
}

.support-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.support-availability {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--positive);
  font-size: 11px;
  font-weight: 700;
}

.support-availability > span:first-child {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.support-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-top: 22px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--accent);
}

.support-icon svg {
  width: 25px;
  height: 25px;
}

.support-panel h2 {
  margin: 17px 0 8px;
  font-size: 23px;
}

.support-panel p {
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
}

.support-button {
  display: flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  border-radius: 5px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 720;
}

.support-panel > strong {
  display: block;
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 12px;
  text-align: center;
}

footer {
  background: #111714;
  color: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px 70px;
  padding-top: 55px;
  padding-bottom: 34px;
}

.footer-brand p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px 28px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.footer-legal {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}

.modal[hidden],
.toast[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 11, 0.68);
  backdrop-filter: blur(5px);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  padding: 36px;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 13px;
  right: 13px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--surface-soft);
}

.success-icon {
  display: grid;
  width: 66px;
  height: 66px;
  margin: 0 auto 19px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
}

.success-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 2.5;
}

.modal-dialog h2 {
  margin: 5px 0 9px;
  font-size: 26px;
}

.modal-dialog > p {
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
}

.order-preview {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-soft);
}

.order-preview > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--text-soft);
  font-size: 12px;
}

.order-preview strong {
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.reviewing {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--warning) !important;
}

.reviewing > span:first-child {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.modal-support {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 16px;
  color: var(--text-soft);
  font-size: 11px;
}

.modal-support svg {
  width: 14px;
  height: 14px;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 600;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--surface-strong);
  color: #fff;
  box-shadow: var(--shadow);
  font-size: 12px;
  font-weight: 650;
}

.toast svg {
  color: #70d5a9;
}

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

  .header-actions {
    margin-left: auto;
  }

  .exchange-section {
    gap: 42px;
  }

  .exchange-intro h1 {
    font-size: 44px;
  }

  .help-layout {
    gap: 45px;
  }
}

@media (max-width: 880px) {
  .exchange-section {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 48px;
  }

  .exchange-intro h1,
  .hero-description {
    max-width: none;
  }

  .exchange-panel {
    max-width: 600px;
    margin-inline: auto;
  }

  .benefit-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 0;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 30px;
  }

  .service-grid > div:nth-child(2) {
    border-right: 0;
  }

  .service-grid > div:nth-child(3) {
    padding-left: 0;
  }

  .process-grid {
    gap: 32px;
  }

  .process-grid article::after {
    display: none;
  }

  .help-layout {
    grid-template-columns: 1fr;
  }

  .market-table {
    min-width: 600px;
  }

  .market-table th:nth-child(4),
  .market-table td:nth-child(4),
  .market-table th:nth-child(5),
  .market-table td:nth-child(5) {
    display: none;
  }

  .support-panel {
    max-width: 520px;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 76px;
  }

  .header-inner,
  .section-shell,
  .exchange-section,
  .footer-inner,
  .footer-bottom {
    width: min(calc(100% - 28px), var(--content));
  }

  .header-inner {
    min-height: 64px;
    gap: 10px;
  }

  .brand-logo {
    width: 114px;
  }

  .header-actions {
    gap: 7px;
  }

  .support-link {
    width: 40px;
    padding: 0;
    justify-content: center;
  }

  .support-link span {
    display: none;
  }

  .language-picker {
    min-height: 0;
  }

  .language-trigger {
    min-width: 43px;
    min-height: 40px;
    padding: 4px;
  }

  .language-trigger > span#currentLanguage,
  .language-chevron {
    display: none;
  }

  .language-trigger-icon {
    width: 30px;
    height: 30px;
  }

  .language-menu {
    right: 0;
    width: 184px;
  }

  .ticker-tape {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    min-height: 40px;
  }

  .ticker-item {
    flex: 0 0 auto;
    justify-content: center;
    padding: 0 12px;
  }

  .ticker-control {
    width: 28px;
    height: 28px;
  }

  .exchange-section {
    gap: 34px;
    padding-top: 40px;
    padding-bottom: 54px;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 10px;
  }

  .exchange-intro h1 {
    font-size: 36px;
    line-height: 1.18;
  }

  .hero-description {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.75;
  }

  .trust-row {
    gap: 10px 16px;
    margin-top: 22px;
  }

  .trust-row > span {
    font-size: 11px;
  }

  .hero-quote {
    margin-top: 28px;
  }

  .hero-quote-grid {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .hero-quote-grid > .market-change {
    display: none;
  }

  .exchange-panel {
    padding: 18px;
  }

  .panel-heading h2 {
    font-size: 22px;
  }

  .asset-field {
    padding: 14px;
  }

  .asset-input-row input {
    font-size: 23px;
  }

  .asset-select-wrap {
    min-width: 92px;
  }

  .market-section,
  .process-section,
  .benefits-section,
  .help-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .market-heading {
    display: block;
  }

  .market-table {
    min-width: 100%;
    table-layout: fixed;
  }

  .market-table th,
  .market-table td {
    padding: 13px 9px;
  }

  .market-table th:first-child {
    width: 44%;
  }

  .market-table th:nth-child(2),
  .market-table th:nth-child(3) {
    width: 28%;
  }

  .market-table th:nth-child(6),
  .market-table td:nth-child(6) {
    display: none;
  }

  .asset-identity img,
  .coin-fallback {
    width: 29px;
    height: 29px;
  }

  .asset-identity {
    gap: 8px;
  }

  .asset-identity strong,
  .market-table td {
    font-size: 11px;
  }

  .asset-identity small {
    font-size: 9px;
  }

  .market-updated {
    margin-top: 16px;
  }

  .benefit-grid {
    gap: 12px;
  }

  .service-grid {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .service-grid > div {
    grid-template-columns: 26px auto;
    padding: 0 12px;
  }

  .service-grid strong {
    font-size: 16px;
  }

  .service-grid span {
    font-size: 10px;
  }

  .service-grid svg {
    width: 17px;
    height: 17px;
  }

  .help-layout {
    gap: 45px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    gap: 12px 20px;
  }

  .modal-dialog {
    padding: 32px 20px 24px;
  }

  .toast {
    right: 14px;
    bottom: 14px;
    left: 14px;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
