/* ── DESIGN TOKENS ── */
:root {
  /* Surfaces */
  --bg:       #ffffff;
  --bg-soft:  #f8f7fd;
  --bg-card:  #ffffff;

  /* Text */
  --text:     #111827;
  --muted:    #6b7280;
  --dim:      #9ca3af;

  /* Borders */
  --border:    rgba(0,0,0,0.07);
  --border-hi: rgba(0,0,0,0.12);

  /* Brand — violet + emerald */
  --a1:        #7c3aed;
  --a2:        #059669;
  --a1-soft:   rgba(124,58,237,0.08);
  --a2-soft:   rgba(5,150,105,0.07);
  --grad:      linear-gradient(135deg, #7c3aed 0%, #059669 100%);
  --green:     #059669;
  --green-soft:rgba(5,150,105,0.08);

  /* Nav */
  --nav-bg:   rgba(255,255,255,0.93);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow:    0 4px 16px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.11);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.18);

  /* Radii */
  --r:    16px;
  --r-sm: 10px;
  --r-xs: 7px;
}

[data-theme="dark"] {
  --bg:        #0d0a18;
  --bg-soft:   #130f22;
  --bg-card:   #1a1430;
  --text:      #f1f5f9;
  --muted:     rgba(241,245,249,0.55);
  --dim:       rgba(241,245,249,0.3);
  --border:    rgba(255,255,255,0.08);
  --border-hi: rgba(255,255,255,0.14);
  --a1:        #a78bfa;
  --a2:        #34d399;
  --a1-soft:   rgba(167,139,250,0.10);
  --a2-soft:   rgba(52,211,153,0.08);
  --grad:      linear-gradient(135deg, #a78bfa 0%, #34d399 100%);
  --green:     #34d399;
  --green-soft:rgba(52,211,153,0.08);
  --nav-bg:    rgba(13,10,24,0.92);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.30);
  --shadow:    0 4px 16px rgba(0,0,0,0.28);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.40);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.55);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 17px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg); color: var(--text); line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  transition: background .3s, color .3s;
}
img, svg { display: block; }
a { color: inherit; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 72px;
  background: var(--nav-bg);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 0 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: inline-flex; align-items: center; gap: .75rem;
  text-decoration: none; flex-shrink: 0;
}
.logo .wordmark { font-family: 'Outfit', sans-serif; line-height: 1; }
.logo .wordmark .top {
  display: block; font-size: 1.55rem; font-weight: 800; letter-spacing: -.05em;
}
.logo .wordmark .top .mesh { color: var(--a1); }
.logo .wordmark .top .fx   { color: var(--a2); }
.logo .wordmark .sub {
  display: block; font-size: .46rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--dim); margin-top: .12rem;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: .95rem; font-weight: 500; color: var(--muted); text-decoration: none;
  transition: color .15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.btn-nav {
  font-size: .92rem; font-weight: 700; padding: .52rem 1.25rem;
  border-radius: var(--r-sm); background: var(--grad); color: #fff;
  border: none; cursor: pointer; text-decoration: none; transition: opacity .15s;
}
.btn-nav:hover { opacity: .9; }
.theme-btn {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--r-xs); padding: .38rem .7rem; cursor: pointer;
  font-size: .9rem; color: var(--muted); line-height: 1; transition: border-color .15s;
}
.theme-btn:hover { border-color: var(--a1); }
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  font-size: 1.4rem; color: var(--muted); padding: .25rem;
}
.mobile-menu {
  display: none; flex-direction: column;
  position: fixed; top: 72px; left: 0; right: 0; z-index: 99;
  background: var(--nav-bg); backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2.5rem; gap: 1.1rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1rem; font-weight: 500; color: var(--muted); text-decoration: none; }
.mobile-menu a:hover { color: var(--text); }

/* ── HERO BRAND BLOCK (large logo in hero) ── */
.hero-brand {
  display: flex; align-items: center; gap: 1.1rem;
  margin-bottom: 2.5rem;
}
.hero-brand-name {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem; font-weight: 900; letter-spacing: -.055em; line-height: 1;
}
.hero-brand-name .mesh { color: var(--a1); }
.hero-brand-name .fx   { color: var(--a2); }
.hero-brand-sub {
  display: block; font-size: .72rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--dim); margin-top: .35rem;
}

/* ── HERO (light — Wise-style) ── */
.hero-section {
  background: var(--bg);
  padding-top: 72px;
}
.hero-wrap {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 400px; gap: 5rem;
  padding: 5.5rem 2.5rem 4.5rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--a1); margin-bottom: 1.3rem;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 3px; border-radius: 99px;
  background: var(--grad); flex-shrink: 0;
}
.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.6rem, 4.5vw, 4rem); font-weight: 900;
  line-height: 1.05; letter-spacing: -.05em;
  color: var(--text); margin-bottom: 1.25rem;
}
.hero h1 .grad {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 1.1rem; color: var(--muted);
  max-width: 490px; margin-bottom: 2.25rem; line-height: 1.82;
}
.hero-trust-pills {
  display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 2rem;
}
.trust-pill {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .78rem; font-weight: 600; color: var(--a1);
  background: var(--a1-soft); border: 1px solid rgba(124,58,237,0.18);
  border-radius: 999px; padding: .28rem .85rem; letter-spacing: .01em;
}
.trust-pill::before { content: '✓'; font-weight: 800; color: var(--a2); font-size: .78rem; }
.hero-btns { display: flex; gap: .85rem; flex-wrap: wrap; }
.btn-hero-primary {
  background: var(--grad); color: #fff;
  font-size: 1rem; font-weight: 700;
  padding: .82rem 1.8rem; border-radius: var(--r-sm);
  text-decoration: none; display: inline-block;
  box-shadow: 0 4px 18px rgba(124,58,237,0.35);
  transition: box-shadow .15s, transform .15s;
}
.btn-hero-primary:hover { box-shadow: 0 6px 28px rgba(124,58,237,0.45); transform: translateY(-1px); }
.btn-hero-outline {
  background: transparent; color: var(--text);
  font-size: 1rem; font-weight: 600;
  padding: .82rem 1.8rem; border-radius: var(--r-sm);
  border: 1.5px solid var(--border-hi);
  text-decoration: none; display: inline-block;
  transition: background .15s, border-color .15s;
}
.btn-hero-outline:hover { background: var(--bg-soft); border-color: var(--a1); }

/* ── EXCHANGE WIDGET ── */
.exchange-widget {
  background: var(--bg-card); border-radius: 20px;
  border: 1.5px solid var(--border);
  padding: 1.75rem; box-shadow: var(--shadow-md); width: 100%;
}
.ew-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--dim); margin-bottom: 1.25rem;
}
.ew-preview-tag {
  display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--a1);
  background: var(--a1-soft); border-radius: 6px; padding: .2rem .55rem;
  margin-left: .5rem; vertical-align: middle;
}
.ew-field {
  background: var(--bg-soft); border: 1.5px solid var(--border);
  border-radius: 12px; padding: 1rem 1.2rem; margin-bottom: .75rem;
}
.ew-field-top { font-size: .75rem; font-weight: 600; color: var(--dim); margin-bottom: .55rem; }
.ew-field-body { display: flex; align-items: center; justify-content: space-between; }
.ew-currency-sel { display: flex; align-items: center; gap: .55rem; }
.ew-curr-badge {
  width: 34px; height: 34px; border-radius: 9px; background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: .58rem; font-weight: 800; color: #fff; font-family: monospace;
  letter-spacing: .02em; flex-shrink: 0;
}
.ew-curr-name { font-size: 1rem; font-weight: 700; color: var(--text); }
.ew-amount {
  font-size: 1.65rem; font-weight: 800; color: var(--text);
  letter-spacing: -.03em; font-family: 'Outfit', sans-serif;
}
.ew-amount.receive { color: var(--green); }
.ew-mid { display: flex; align-items: center; padding: .25rem 0 .5rem; gap: .85rem; }
.ew-swap {
  width: 34px; height: 34px; border-radius: 50%; background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem; flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(124,58,237,0.3);
}
.ew-rate { font-size: .82rem; font-weight: 500; color: var(--muted); }
.ew-meta {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--green-soft); border: 1px solid rgba(5,150,105,0.15);
  border-radius: 9px; padding: .7rem 1rem; margin: .9rem 0 1.1rem;
}
.ew-fee  { font-size: .82rem; color: var(--muted); font-weight: 500; }
.ew-speed { font-size: .82rem; color: var(--green); font-weight: 700; }
.ew-cta {
  display: block; width: 100%; text-align: center; padding: .9rem;
  border-radius: var(--r-sm); background: var(--grad); color: #fff;
  font-size: 1rem; font-weight: 700; text-decoration: none; transition: opacity .15s;
}
.ew-cta:hover { opacity: .92; }
.ew-note {
  font-size: .8rem; color: var(--dim); text-align: center;
  padding-top: .75rem; border-top: 1px solid var(--border);
}

/* ── STATS BAND (violet→emerald, below hero) ── */
.stats-bar {
  background: linear-gradient(135deg, #3b0764 0%, #064e3b 100%);
  padding: 2.5rem 2.5rem;
}
.stats-bar-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  text-align: center;
}
.stat-item { padding: 0 1.5rem; border-right: 1px solid rgba(255,255,255,0.12); }
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child  { border-right: none; padding-right: 0; }
.stat-val {
  display: block; font-family: 'Outfit', sans-serif;
  font-size: 2.2rem; font-weight: 900; letter-spacing: -.04em;
  color: #fff; background: none; -webkit-text-fill-color: #fff;
  line-height: 1.1;
}
.stat-desc { display: block; font-size: .85rem; color: rgba(255,255,255,0.6); margin-top: .4rem; font-weight: 500; }

/* ── SECTION COMMONS ── */
section { padding: 5.5rem 2.5rem; }
.inner { max-width: 1180px; margin: 0 auto; }
.s-eyebrow {
  font-size: .75rem; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: var(--a1); margin-bottom: .85rem;
}
.s-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem); font-weight: 900;
  letter-spacing: -.04em; line-height: 1.1; margin-bottom: .9rem;
}
.s-sub {
  font-size: 1.05rem; color: var(--muted);
  max-width: 540px; line-height: 1.8; margin-bottom: 3.25rem;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--grad); color: #fff; font-size: 1rem; font-weight: 700;
  padding: .78rem 1.75rem; border-radius: var(--r-sm);
  border: none; cursor: pointer; text-decoration: none;
  display: inline-block; transition: opacity .15s;
}
.btn-primary:hover { opacity: .9; }
.btn-outline {
  background: transparent; color: var(--a1); font-size: 1rem; font-weight: 600;
  padding: .78rem 1.75rem; border-radius: var(--r-sm);
  border: 1.5px solid var(--a1); cursor: pointer; text-decoration: none;
  display: inline-block; transition: background .15s;
}
.btn-outline:hover { background: var(--a1-soft); }

/* ── HOW IT WORKS ── */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2.5rem; }
.step {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 2rem; box-shadow: var(--shadow);
}
.step-num {
  width: 52px; height: 52px; border-radius: 50%; background: var(--grad); color: #fff;
  font-family: 'Outfit', sans-serif; font-size: 1.4rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
  box-shadow: 0 4px 16px rgba(124,58,237,0.3);
}
.step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.step p  { font-size: .95rem; color: var(--muted); line-height: 1.75; }

/* ── SERVICE CARDS ── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.service-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-icon-wrap { padding: 1.75rem 1.75rem 0; }
.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.service-icon svg { width: 26px; height: 26px; }
.service-body { padding: 0 1.75rem 1.75rem; flex: 1; }
.service-tag {
  font-size: .72rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; margin-bottom: .55rem; color: var(--muted);
}
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.service-card p  { font-size: .95rem; color: var(--muted); line-height: 1.75; }
.service-footer {
  padding: 1rem 1.75rem;
  background: var(--bg-soft); border-top: 1px solid var(--border);
  font-size: .82rem; font-weight: 600; color: var(--muted);
}

/* ── CURRENCY GRID ── */
.currency-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.currency-chip {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 1.5rem; box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: 1rem;
  transition: box-shadow .15s, border-color .15s;
}
.currency-chip:hover { box-shadow: var(--shadow); border-color: var(--a1); }
.currency-badge {
  width: 48px; height: 48px; border-radius: 12px; background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: .68rem; font-weight: 800; letter-spacing: .03em;
  color: #fff; flex-shrink: 0; font-family: monospace;
}
.currency-code { font-size: 1.05rem; font-weight: 800; letter-spacing: -.01em; }
.currency-name { font-size: .85rem; color: var(--muted); margin-top: .15rem; }
.currency-backed { font-size: .72rem; color: var(--green); font-weight: 600; margin-top: .25rem; }

/* ── WHY CARDS ── */
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.why-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 2rem; box-shadow: var(--shadow-sm);
}
.why-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.why-icon svg { width: 22px; height: 22px; }
.why-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.why-card p  { font-size: .95rem; color: var(--muted); line-height: 1.75; }

/* ── CTA SECTION ── */
.cta-section { background: linear-gradient(140deg, #f5f0ff 0%, #ecfdf5 100%); text-align: center; padding: 6rem 2.5rem; }
[data-theme="dark"] .cta-section { background: linear-gradient(140deg, #1e0a3c 0%, #022c22 100%); }
.cta-box { max-width: 560px; margin: 0 auto; }
.cta-box h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 900;
  letter-spacing: -.04em; margin-bottom: .9rem;
}
.cta-box p { color: var(--muted); font-size: 1.05rem; margin-bottom: 2rem; line-height: 1.8; }
.cta-btns { display: flex; gap: .85rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER (dark) ── */
footer { background: #0d0a18; padding: 3rem 2.5rem; }
.footer-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo .wordmark .top .mesh { color: #a78bfa; }
.footer-logo .wordmark .top .fx   { color: #34d399; }
.footer-logo .wordmark .sub       { color: #3d3553; }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a { font-size: .92rem; color: #6b7280; text-decoration: none; transition: color .15s; }
.footer-links a:hover { color: #d1d5db; }
.footer-copy { font-size: .85rem; color: #3d3553; }

/* ── INNER PAGES ── */
.page-hero-wrap { padding-top: 72px; background: var(--bg); }
.page-hero { padding: 5rem 2.5rem 4rem; max-width: 1180px; margin: 0 auto; }
.page-hero-inner { max-width: 680px; }
.page-h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
  letter-spacing: -.04em; line-height: 1.08; margin-bottom: 1rem;
}
.page-lead { font-size: 1.1rem; color: var(--muted); line-height: 1.8; max-width: 580px; margin-bottom: 2rem; }
.page-btns { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ── FEATURE ROW (2-col, inner pages) ── */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.feature-row-rev .feature-vis { order: -1; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: .65rem; margin-top: 1.5rem; }
.feature-list li {
  display: flex; align-items: center; gap: .65rem;
  font-size: .95rem; color: var(--muted);
}
.feature-list li::before { content: '✓'; color: var(--green); font-weight: 800; font-size: .85rem; flex-shrink: 0; }

/* ── FEATURE CARD ── */
.feature-card {
  background: var(--bg-card); border: 1.5px solid var(--border);
  border-radius: 20px; padding: 1.75rem; box-shadow: var(--shadow-md);
}
.fc-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--dim); margin-bottom: 1rem;
}
.fc-amount {
  font-family: 'Outfit', sans-serif; font-size: 1.8rem; font-weight: 900;
  letter-spacing: -.04em; margin-bottom: .75rem;
}
.fc-arrow { font-size: 1.2rem; color: var(--dim); margin-bottom: .75rem; }
.fc-result {
  display: flex; align-items: center; gap: .85rem;
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 12px; padding: 1rem;
}
.fc-result-amount { font-size: 1rem; font-weight: 700; }
.fc-result-sub { font-size: .78rem; color: var(--green); font-weight: 600; margin-top: .2rem; }

/* ── PAY FLOW ── */
.pay-flow { display: flex; flex-direction: column; gap: .55rem; }
.pay-step {
  display: flex; align-items: center; gap: 1rem; padding: .9rem 1rem;
  background: var(--bg-soft); border: 1px solid var(--border); border-radius: 12px;
}
.pay-step-num {
  width: 36px; height: 36px; border-radius: 50%; background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-size: .9rem; font-weight: 900; color: #fff; flex-shrink: 0;
}
.pay-step-text { font-size: .9rem; font-weight: 600; }
.pay-step-sub { font-size: .78rem; color: var(--muted); margin-top: .1rem; }
.pay-arrow-row { text-align: left; padding-left: 18px; color: var(--dim); font-size: 1rem; }

/* ── INFO GRID (3-col) ── */
.info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.info-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 2rem; box-shadow: var(--shadow-sm);
}
.info-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem;
}
.info-icon svg { width: 22px; height: 22px; }
.info-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .45rem; }
.info-card p  { font-size: .9rem; color: var(--muted); line-height: 1.7; }

/* ── LEGAL PAGE ── */
.legal-sidebar-grid { display: grid; grid-template-columns: 240px 1fr; gap: 3rem; align-items: start; }
.legal-sidebar-nav { position: sticky; top: 96px; display: flex; flex-direction: column; gap: .5rem; }
.legal-sidebar-label { font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--dim); margin-bottom: .5rem; }
.legal-sidebar-link { font-size: .9rem; font-weight: 500; color: var(--muted); text-decoration: none; transition: color .15s; }
.legal-sidebar-link:hover { color: var(--text); }
.legal-body { max-width: 720px; }
.legal-body h2 { font-family: 'Outfit', sans-serif; font-size: 1.3rem; font-weight: 800; letter-spacing: -.03em; margin: 2.5rem 0 .6rem; }
.legal-body div > h2:first-of-type { margin-top: 0.25rem; }
.legal-body p { font-size: .97rem; color: var(--muted); line-height: 1.82; margin-bottom: 1rem; }
.legal-body ul { list-style: disc; padding-left: 1.4rem; color: var(--muted); font-size: .97rem; line-height: 1.82; margin-bottom: 1rem; }
.legal-body .s-eyebrow { margin-bottom: 0.3rem; }
.legal-updated { font-size: .82rem; color: var(--dim); margin-bottom: 0.35rem; }

/* ── EXCHANGE PAGE LAYOUT ── */
.exch-layout { display: grid; grid-template-columns: 1fr 420px; gap: 4rem; align-items: center; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-wrap { grid-template-columns: 1fr; padding: 4rem 2.5rem 3rem; }
  .exchange-widget { max-width: 420px; }
  .services-grid, .steps-grid { grid-template-columns: 1fr; }
  .currency-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding: 1rem 0; }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .feature-row { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-row-rev .feature-vis { order: 0; }
  .info-grid { grid-template-columns: repeat(2,1fr); }
  .exch-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .exch-layout .exchange-widget { max-width: 480px; }
}
@media (max-width: 720px) {
  nav { padding: 0 1.25rem; height: 64px; }
  .mobile-menu { top: 64px; padding: 1.25rem 1.25rem; }
  .nav-links, .nav-right .btn-nav { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 3.5rem 1.25rem; }
  .stats-bar { padding: 2rem 1.25rem; }
  footer { padding: 2.5rem 1.25rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .footer-links { gap: 1.1rem; }
  .currency-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 3.5rem 1.25rem; }
  .hero-wrap { padding: 3rem 1.25rem 2.5rem; }
  .hero-brand { margin-bottom: 1.75rem; }
  .hero-brand-name { font-size: 2rem; }
  .hero h1 { font-size: clamp(2.1rem, 8vw, 3rem); }
  .page-hero { padding: 3.5rem 1.25rem 3rem; }
  .s-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .info-grid { grid-template-columns: 1fr; }
  .steps-grid { gap: 1.25rem; }
  .why-grid { gap: 1.25rem; }
  .feature-row { gap: 2rem; }
  .exchange-widget { padding: 1.25rem; }
  .ew-amount { font-size: 1.35rem; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btns a { text-align: center; }
  .page-btns { flex-direction: column; }
  .page-btns a { text-align: center; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { text-align: center; }
  .btn-hero-primary, .btn-hero-outline { padding: .9rem 1.5rem; }
  .legal-sidebar-grid { grid-template-columns: 1fr; gap: 0; }
  .legal-sidebar-nav { display: none; }
  .exch-layout { grid-template-columns: 1fr; gap: 2rem; }
}
