/* ---------- Base & Variables ---------- */
:root {
  --bg: #050f0c;
  --bg-glow: #0a2b21;
  --card-bg: #0c1f19;
  --card-bg-2: #12291f;
  --field-bg: #163227;
  --border: rgba(255, 255, 255, 0.08);
  --text: #eefcf5;
  --text-dim: #8fb3a3;
  --text-faint: #587266;
  --green: #00d800;
  --teal: #14b8a6;
  --blue: #38bdf8;
  --purple: #a855f7;
  --pink: #ec4899;
  --gradient: linear-gradient(90deg, var(--green), var(--teal) 55%, var(--blue));
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: radial-gradient(ellipse 1200px 600px at 50% -10%, var(--bg-glow) 0%, var(--bg) 55%) fixed;
  color: var(--text);
  line-height: 1.5;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { line-height: 1.15; margin: 0 0 12px; }
p { margin: 0 0 8px; color: var(--text-dim); }
a { color: inherit; text-decoration: none; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 8px 24px rgba(20, 184, 166, 0.35);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(20, 184, 166, 0.5); }
.btn-primary:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.btn-block { width: 100%; padding: 14px; font-size: 16px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 19, 15, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 20px;
}
.logo-icon {
  height: 34px;
  width: auto;
  display: block;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.logo:hover .logo-icon,
.logo:focus-visible .logo-icon,
.logo:active .logo-icon {
  transform: scale(1.15);
  filter: brightness(1.35) drop-shadow(0 0 10px rgba(0, 216, 0, 0.55));
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  margin-right: 32px;
  padding: 9px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.main-nav a { color: var(--text-dim); font-weight: 500; font-size: 15px; }
.main-nav a:hover { color: var(--text); }
.nav-backdrop { display: none; }
.mobile-nav-header { display: none; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text);
  display: block;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; text-align: center; padding: 72px 0 40px; }
.hero::before {
  content: "";
  position: absolute;
  top: -45%;
  right: -20%;
  width: 62%;
  height: 150%;
  background:
    radial-gradient(ellipse at center, rgba(20, 184, 166, 0.22) 0%, rgba(56, 189, 248, 0.16) 48%, transparent 75%),
    radial-gradient(ellipse at 55% 45%, rgba(0, 216, 0, 0.16) 0%, transparent 55%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }
.hero h1 { font-size: clamp(32px, 5.5vw, 56px); font-weight: 800; max-width: 900px; margin: 0 auto 20px; }
.tagline {
  color: var(--teal);
  font-weight: 700;
  letter-spacing: .04em;
  font-size: 14px;
  margin-bottom: 40px;
}

/* ---------- Swap Card ---------- */
.swap-card {
  max-width: 460px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: left;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.swap-tabs { display: flex; }
.swap-tab {
  flex: 1;
  padding: 18px 12px;
  background: var(--card-bg-2);
  border: none;
  color: var(--text-faint);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
}
.swap-tab.active {
  color: var(--text);
  background: var(--card-bg);
  border-bottom: 3px solid transparent;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
  position: relative;
}
.swap-tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: var(--gradient);
}
.swap-tab.disabled { cursor: not-allowed; }
.soon { display: block; font-size: 10px; color: var(--text-faint); font-weight: 500; }

.swap-body { padding: 24px; position: relative; }
.field-group { margin-bottom: 6px; }
.field-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.info-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--field-bg);
  color: var(--text-faint);
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: help;
}
.field-row {
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #1d4a37, var(--field-bg));
  border-radius: var(--radius-md);
  border: 1px solid rgba(20, 184, 166, 0.18);
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.amount-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 22px;
  font-weight: 700;
  padding: 16px;
  width: 100%;
  min-width: 0;
}
.amount-input[readonly] { color: var(--text-dim); }
.text-input {
  width: 100%;
  background: var(--field-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text);
  padding: 14px 16px;
  font-size: 14px;
  outline: none;
}
.text-input:focus, .amount-input:focus { outline: 2px solid var(--blue); outline-offset: -2px; }

.currency-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--card-bg-2);
  border: none;
  color: var(--text);
  font-weight: 700;
  padding: 10px 16px;
  margin: 6px 6px 6px 0;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}
.currency-btn:hover { background: #1b3b2c; }
/* .currency-btn sets display:flex, which would otherwise fight the native
   hidden attribute (used to toggle fiat-display vs coin-picker per slot
   in the Buy/Sell panel) — force it to actually hide. */
.currency-btn[hidden] { display: none; }
.currency-btn-static { cursor: default; }
.currency-btn-static:hover { background: var(--card-bg-2); }

/* ---------- Buy Crypto tab ---------- */
.country-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  background: var(--field-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-bottom: 18px;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}
.country-btn:hover { border-color: var(--teal); }
.country-flag { font-size: 24px; line-height: 1; flex-shrink: 0; }
.country-flag img {
  width: 30px;
  height: 22px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.flag-icon {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.flag-icon img {
  width: 24px;
  height: 18px;
  object-fit: cover;
  border-radius: 3px;
  display: block;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.country-info { display: flex; flex-direction: column; flex: 1; gap: 2px; }
.country-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-faint); }
.country-name { font-size: 14px; font-weight: 700; }
.country-change { font-size: 12px; font-weight: 700; color: var(--teal); }

.payment-methods { display: flex; flex-direction: column; gap: 8px; }
.payment-method-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: var(--field-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}
.payment-method-btn:hover { border-color: var(--teal); }
.payment-method-btn.selected {
  border-color: var(--green);
  color: var(--text);
  background: rgba(0, 216, 0, 0.06);
}
.payment-icon { font-size: 16px; display: inline-flex; align-items: center; }
.payment-icon img {
  width: 28px;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  border-radius: 3px;
  display: block;
}

/* ---------- Trade tab ---------- */
.section-note {
  font-size: 13px;
  color: var(--text-faint);
  background: var(--field-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}
.rate-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.rate-pill {
  flex: 1;
  min-width: 70px;
  background: var(--field-bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-dim);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 12px;
  cursor: pointer;
}
.rate-pill:hover { border-color: var(--teal); }
.rate-pill.selected {
  background: rgba(0, 216, 0, 0.1);
  border-color: var(--green);
  color: var(--text);
}
.timeframe-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.3);
  border-radius: 999px;
  padding: 6px 14px;
  margin: 14px 0 6px;
}

/* ---------- Trade order popup ---------- */
.modal-body { padding: 20px; }
.order-summary { font-size: 14px; color: var(--text-dim); margin-bottom: 18px; line-height: 1.6; }
.order-summary strong { color: var(--text); }
.order-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-faint);
  margin-bottom: 8px;
}
.modal-body .rate-note code { color: var(--teal); word-break: break-all; }
.coin-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  overflow: hidden;
  flex-shrink: 0;
}
.coin-icon img { width: 100%; height: 100%; display: block; }
/* Falls back to this look only if a coin's icon file fails to load. */
.coin-icon.icon-fallback { background: var(--gradient); }
.chevron { width: 14px; height: 14px; color: var(--text-faint); }

.swap-direction {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--card-bg-2);
  border: 1.5px solid var(--teal);
  color: var(--teal);
  margin: 8px auto;
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.08), 0 4px 14px rgba(20, 184, 166, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.swap-direction:hover {
  background: #1b3b2c;
  box-shadow: 0 0 0 5px rgba(20, 184, 166, 0.12), 0 6px 18px rgba(20, 184, 166, 0.4);
  transform: scale(1.06);
}
.swap-direction svg { width: 18px; height: 18px; }
.swap-direction svg path { stroke-width: 2.4; }

.rate-note { font-size: 12px; color: var(--text-faint); margin: 8px 0 16px; }
.how-link {
  display: block;
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  color: var(--teal);
  font-weight: 600;
}
.status-msg { text-align: center; font-size: 13px; margin-top: 10px; min-height: 18px; color: var(--blue); }
.status-msg.error { color: #f59e0b; }

.swap-result {
  margin-top: 16px;
  padding: 18px;
  background: var(--field-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.result-label { font-size: 13px; margin-bottom: 10px; }
.result-label strong { color: var(--text); }
.deposit-address-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin-bottom: 10px;
}
.deposit-address-row code {
  flex: 1;
  word-break: break-all;
  font-size: 12px;
  color: var(--text);
}
.btn-copy {
  background: var(--card-bg-2);
  border: 1px solid var(--border);
  color: var(--teal);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
}
.result-status { font-size: 13px; margin-bottom: 14px; }
.result-status span { color: var(--teal); font-weight: 700; text-transform: capitalize; }
.btn-secondary {
  background: var(--card-bg-2);
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-secondary:hover { background: #1b3b2c; }

/* ---------- Stats ---------- */
.stats-bar { padding: 48px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.stat {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stat strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 6px;
  color: #fff;
  position: relative;
  z-index: 1;
}
.stat span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  position: relative;
  z-index: 1;
}
.stat-accent { background: var(--gradient); }
.stat-accent span, .stat-accent strong { color: #fff; }

/* Glowing wireframe globe, pushed down and left so its bottom crops away
   against the card edges and only its upper portion shows. Purple/blue/pink
   blended stroke via the SVG's own gradient, plus a soft blurred radial
   "haloGrad" circle behind it for an ambient glow bloom. */
.stat-globe {
  position: absolute;
  left: -100px;
  bottom: -90px;
  width: 250px;
  height: 250px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

/* Neon blue/purple circuit-trace texture, anchored to the left edge and
   masked out before the horizontal center so it never crosses under the
   text. Lives on ::before so it can carry its own mask without fading the
   card's actual text content (a sibling, unaffected by the mask). */
.stat-circuit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='70' height='70'%3E%3Cg fill='none' stroke='%2338bdf8' stroke-width='1' opacity='0.55'%3E%3Cpath d='M4 4 H30 V24 H54'/%3E%3Cpath d='M4 34 H20 V54'/%3E%3Cpath d='M40 4 V18 H60'/%3E%3Cpath d='M54 40 V60 H34'/%3E%3C/g%3E%3Cg fill='none' stroke='%23a855f7' stroke-width='1' opacity='0.5'%3E%3Cpath d='M30 24 V44 H50'/%3E%3Cpath d='M4 54 H16'/%3E%3Cpath d='M60 18 V38'/%3E%3C/g%3E%3Cg fill='%2338bdf8' opacity='0.75'%3E%3Ccircle cx='4' cy='4' r='1.8'/%3E%3Ccircle cx='30' cy='24' r='1.8'/%3E%3Ccircle cx='54' cy='40' r='1.8'/%3E%3Ccircle cx='40' cy='4' r='1.8'/%3E%3Ccircle cx='4' cy='34' r='1.8'/%3E%3C/g%3E%3Cg fill='%23a855f7' opacity='0.7'%3E%3Ccircle cx='50' cy='44' r='1.8'/%3E%3Ccircle cx='60' cy='18' r='1.8'/%3E%3Ccircle cx='34' cy='60' r='1.8'/%3E%3Ccircle cx='20' cy='54' r='1.8'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 70px 70px;
  background-position: left center;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 26%, transparent 46%);
  mask-image: linear-gradient(90deg, #000 0%, #000 26%, transparent 46%);
  filter: drop-shadow(0 0 3px rgba(56, 189, 248, 0.35)) drop-shadow(0 0 4px rgba(168, 85, 247, 0.25));
  opacity: 0.85;
  z-index: 0;
}

/* ---------- Sections ---------- */
section { padding: 64px 0; }
.eyebrow { color: var(--green); font-weight: 700; text-transform: uppercase; font-size: 13px; letter-spacing: .06em; margin-bottom: 8px; }
.features h2, .how-it-works h2, .pairs h2, .faq h2 { font-size: clamp(26px, 4vw, 36px); text-align: center; }
.section-sub { text-align: center; color: var(--text-dim); max-width: 560px; margin: 0 auto 40px; }

/* Decorative Ripple mark drifting in from the right behind "What Is a
   No-Account Crypto Exchange?". Same pattern as .how-works-solana — parallax
   movement handled by js/parallax.js (targets .parallax-bg). TO REVERT:
   remove the <img class="about-privacy-ripple"> from index.html and delete
   this rule block down to .info-card below (leave the plain rules that
   follow it). */
.about-privacy { position: relative; overflow: hidden; text-align: center; }
.about-privacy > .container { position: relative; z-index: 1; }
.about-privacy-ripple {
  position: absolute;
  right: -100px;
  top: 30px;
  width: 400px;
  max-width: none;
  height: auto;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
@media (max-width: 900px) {
  .about-privacy-ripple { width: 280px; right: -70px; top: 30px; opacity: 0.16; }
}
@media (max-width: 640px) {
  .about-privacy-ripple { display: none; }
}

.about-privacy .eyebrow { text-align: center; }
.about-privacy h2 { font-size: clamp(26px, 4vw, 36px); }
.info-card {
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
}
.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
}
.info-card p { font-size: 15px; line-height: 1.75; margin-bottom: 18px; }
.info-card p:last-child { margin-bottom: 0; }
.info-card strong { color: var(--text); }
.accent-teal { color: var(--teal); font-weight: 600; }
.accent-green { color: var(--green); font-weight: 600; }

.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
}
.feature-icon { margin-bottom: 14px; }
.feature-icon img { width: 40px; height: 40px; display: block; }
.feature-card h3 { font-size: 18px; }
.feature-card p { font-size: 14px; margin: 0; }

/* Decorative Solana mark drifting in from the left behind "How InviSwap
   Works". Parallax movement is handled by js/parallax.js (targets
   .parallax-bg). TO REVERT: remove the <img class="how-works-solana"> and
   the <script src="js/parallax.js"> tag from index.html, delete
   js/parallax.js, and delete this rule block down to .steps above. */
.how-it-works { position: relative; overflow: hidden; }
.how-it-works > .container { position: relative; z-index: 1; }
.how-works-solana {
  position: absolute;
  left: -100px;
  top: 30px;
  width: 320px;
  max-width: none;
  height: auto;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
@media (max-width: 900px) {
  .how-works-solana { width: 340px; left: -120px; top: 30px; opacity: 0.16; }
}
@media (max-width: 640px) {
  .how-works-solana { display: none; }
}

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
}
.step-num {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.step h3 { font-size: 16px; }
.step p { font-size: 13px; margin: 0; }

.press-section { padding: 48px 0 64px; }
.press-section h2 { text-align: center; font-size: clamp(22px, 3.5vw, 30px); margin-bottom: 36px; }
.press-viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.press-track {
  display: flex;
  gap: 40px;
  width: max-content;
}
.press-slot {
  width: 180px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.press-slot img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.press-slot img:hover { opacity: 1; }

.pairs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.pair-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
}
.pair-btn:hover { border-color: var(--teal); }
.pair-btn .coin-icon { width: 18px; height: 18px; font-size: 10px; }
.pair-arrow { color: var(--text-faint); font-size: 13px; }

/* ---------- Trusted By ---------- */
.trust-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0 64px;
  text-align: center;
}
.trust-globe {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1400px, 160vw);
  max-width: none;
  height: auto;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black 0%, black 55%, transparent 92%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 55%, transparent 92%);
}
.trust-heading {
  position: relative;
  z-index: 1;
  font-size: clamp(30px, 5vw, 48px);
  margin-bottom: 44px;
}
.trust-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.trust-stat { padding: 0 16px; border-left: 1px solid rgba(255, 255, 255, 0.12); }
.trust-stat:first-child { border-left: none; }
.trust-stat strong { display: block; font-size: clamp(28px, 4vw, 40px); font-weight: 800; margin-bottom: 8px; }
.trust-stat span { font-size: 14px; color: var(--text-dim); }

/* ---------- Testimonials ---------- */
.testimonials { text-align: center; }
.testimonials .eyebrow-badge { margin-bottom: 20px; }
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
  margin-right: 6px;
  vertical-align: middle;
}
.testimonials h2 { font-size: clamp(26px, 4vw, 36px); margin-bottom: 12px; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  text-align: left;
}
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
}
.quote-mark {
  font-size: 34px;
  font-weight: 800;
  color: var(--teal);
  opacity: 0.55;
  line-height: 1;
  margin-bottom: 6px;
}
.testimonial-card p { font-size: 14px; line-height: 1.7; flex: 1; margin-bottom: 22px; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 14px; flex: 1; }
.testimonial-stars { color: #f5b400; font-size: 13px; letter-spacing: 1px; white-space: nowrap; }

/* ---------- Limitless Exchange ---------- */
.limitless-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.limitless-visual {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 40px;
}
.infinity-graphic {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}
.floating-coins {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.floating-coin {
  position: absolute;
  border-radius: 50%;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.45));
  animation: coin-float 4s ease-in-out infinite;
}
.floating-coin.coin-1 { width: 30px; height: 30px; top: 2%; left: 20%; animation-delay: 0s; }
.floating-coin.coin-2 { width: 42px; height: 42px; top: -4%; left: 46%; animation-delay: 0.6s; }
.floating-coin.coin-3 { width: 26px; height: 26px; top: 6%; right: 16%; animation-delay: 1.2s; }
.floating-coin.coin-4 { width: 24px; height: 24px; top: 18%; left: 6%; animation-delay: 1.8s; }
.floating-coin.coin-5 { width: 28px; height: 28px; top: 12%; right: 30%; animation-delay: 2.4s; }
@keyframes coin-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.limitless-content h2 { font-size: clamp(28px, 4vw, 40px); }
.limitless-content > p { font-size: 15px; max-width: 460px; margin-bottom: 30px; }

.limit-scale { max-width: 460px; margin-bottom: 26px; }
.limit-track {
  position: relative;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  margin-bottom: 10px;
}
.limit-arrow {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: var(--green);
  display: flex;
  animation: arrow-travel 1.5s ease-in-out infinite;
}
@keyframes arrow-travel {
  0% { left: 0; opacity: 0; }
  10% { opacity: 1; }
  85% { opacity: 1; }
  100% { left: calc(100% - 20px); opacity: 0; }
}
.limit-labels {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 600;
}
.limit-labels .infinity-label { font-size: 18px; line-height: 1; }

.more-details-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-weight: 700;
  font-size: 15px;
}
.more-details-link:hover { color: var(--teal); }

.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  padding: 20px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-icon { color: var(--teal); font-size: 20px; transition: transform .2s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.faq-answer p { padding: 0 4px 20px; font-size: 14px; }
.faq-item.open .faq-answer { max-height: 200px; }

/* ---------- FAQ CTA ---------- */
.faq-cta-card {
  position: relative;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 64px 40px;
  text-align: center;
}
.faq-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 20%, rgba(0, 216, 0, 0.18), transparent 45%),
    radial-gradient(circle at 75% 15%, rgba(56, 189, 248, 0.18), transparent 45%);
  pointer-events: none;
}
.faq-cta-card h2 { position: relative; font-size: clamp(30px, 5vw, 44px); margin-bottom: 14px; }
.faq-cta-card p { position: relative; color: var(--text-dim); margin-bottom: 28px; }
.faq-cta-btn { position: relative; padding: 14px 36px; }

/* ---------- Contact Page ---------- */
.contact-hero { text-align: center; padding: 72px 0 24px; }
.eyebrow-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: var(--teal);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.contact-hero h1 { font-size: clamp(36px, 6vw, 56px); font-weight: 800; margin-bottom: 20px; }
.contact-hero .section-sub { max-width: 640px; }

.contact-cards { padding: 24px 0 88px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 24px; align-items: start; }
.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 20px;
}
.contact-card h3 { font-size: 19px; margin-bottom: 10px; }
.contact-card > p { font-size: 14px; margin-bottom: 20px; }
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-weight: 700;
  font-size: 15px;
}
.contact-link:hover { color: var(--teal); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-faint);
}
.form-row input,
.form-row textarea {
  background: var(--field-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text);
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  resize: vertical;
}
.form-row input:focus,
.form-row textarea:focus { outline: 2px solid var(--blue); outline-offset: -2px; }

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

/* ---------- Live Activity Map ---------- */
/* Decorative Litecoin mark peeking in from the right behind "Live Swap
   Activity". Same pattern as .how-works-solana / .about-privacy-ripple —
   parallax movement handled by js/parallax.js (targets .parallax-bg). Sized
   so its lower half tucks behind the opaque .activity-map card instead of
   awkwardly overlapping the map content. TO REVERT: remove the
   <img class="activity-litecoin"> from index.html and delete this rule
   block down to .activity-section h2 below. */
.activity-section { position: relative; overflow: hidden; text-align: center; }
.activity-section > .container { position: relative; z-index: 1; }
.activity-litecoin {
  position: absolute;
  right: -100px;
  top: 30px;
  width: 400px;
  max-width: none;
  height: auto;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
@media (max-width: 900px) {
  .activity-litecoin { width: 280px; right: -70px; top: 30px; opacity: 0.16; }
}
@media (max-width: 640px) {
  .activity-litecoin { display: none; }
}

.activity-section h2 { font-size: clamp(26px, 4vw, 36px); margin-bottom: 10px; }
.activity-caption { color: var(--text-faint); font-size: 13px; font-style: italic; margin-bottom: 28px; }

.activity-map {
  position: relative;
  width: 100%;
  aspect-ratio: 1667 / 852;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border);
}
.activity-map-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: hue-rotate(-35deg) saturate(0.55) brightness(0.85);
  opacity: 0.55;
}

.activity-marker {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: activity-fade 5s ease-in-out forwards;
  pointer-events: none;
}
@keyframes activity-fade {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.9); }
  10% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  85% { opacity: 1; }
  100% { opacity: 0; }
}

.activity-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  box-shadow: 0 0 8px 2px rgba(0, 216, 0, 0.6);
}
.activity-dot::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--green);
  opacity: 0.6;
  animation: activity-ping 1.8s ease-out infinite;
}
@keyframes activity-ping {
  0% { transform: scale(0.6); opacity: 0.7; }
  100% { transform: scale(2.2); opacity: 0; }
}

.activity-bubble {
  display: flex;
  flex-direction: column;
  gap: 4px;
  white-space: nowrap;
}
.activity-sent,
.activity-got {
  padding: clamp(3px, 1.4vw, 5px) clamp(7px, 3vw, 12px);
  border-radius: 999px;
  font-size: clamp(8px, 2.6vw, 12px);
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}
.activity-sent { background: var(--green); color: #04210f; }
.activity-got { background: var(--card-bg-2); color: var(--text); border: 1px solid var(--border); }

@media (max-width: 640px) {
  .activity-marker { gap: 6px; }
  .activity-bubble { white-space: normal; max-width: 120px; line-height: 1.2; }
}

/* ---------- Blog ---------- */
.blog-hero { text-align: center; padding: 72px 0 24px; }
.blog-hero h1 { font-size: clamp(36px, 6vw, 56px); font-weight: 800; margin-bottom: 20px; }
.blog-hero .section-sub { max-width: 640px; }

.blog-list { padding: 24px 0 88px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--text);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--teal); }
.blog-card-img {
  width: 100%;
  aspect-ratio: 1200 / 630;
  object-fit: contain;
  background: #050f0c;
  display: block;
}
.blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 26px 26px;
}
.blog-card-tag {
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.15);
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.blog-card h3 { font-size: 18px; margin-bottom: 10px; line-height: 1.35; }
.blog-card p { font-size: 14px; color: var(--text-dim); flex: 1; margin-bottom: 18px; }
.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-faint);
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.blog-card-read { color: var(--green); font-weight: 700; }

/* ---------- Blog Post ---------- */
.post-article { padding: 64px 0 24px; }
.post-container { max-width: 760px; }
.post-back {
  display: inline-block;
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}
.post-back:hover { color: var(--teal); }
.post-container .blog-card-tag { margin-bottom: 18px; }
.post-container h1 { font-size: clamp(28px, 5vw, 42px); margin-bottom: 12px; line-height: 1.2; }
.post-date { color: var(--text-faint); font-size: 14px; margin-bottom: 28px; }
.post-hero-img {
  width: 100%;
  aspect-ratio: 1200 / 630;
  object-fit: contain;
  background: #050f0c;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin-bottom: 36px;
}

.post-body p { font-size: 16px; line-height: 1.8; color: var(--text-dim); margin-bottom: 22px; }
.post-body h2 { font-size: 22px; margin: 36px 0 16px; color: var(--text); }
.post-body strong { color: var(--text); }

.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.post-nav-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  color: var(--text);
  transition: border-color 0.2s ease;
}
.post-nav-link:hover { border-color: var(--teal); }
.post-nav-next { grid-column: 2; text-align: right; align-items: flex-end; }
.post-nav-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-faint); }
.post-nav-title { font-size: 14px; font-weight: 600; }

.related-section { padding: 24px 0 88px; }
.related-section h2 { font-size: clamp(24px, 3.5vw, 30px); margin-bottom: 28px; text-align: center; }

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .post-nav { grid-template-columns: 1fr; }
  .post-nav-next { grid-column: 1; text-align: left; align-items: flex-start; }
}

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding-top: 56px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; padding-bottom: 32px; }
.footer-brand p { font-size: 13px; max-width: 280px; }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .05em; color: var(--text-faint); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 14px; color: var(--text-dim); margin-bottom: 10px; }
.footer-col a:hover { color: var(--text); }

.footer-pairs-section {
  border-top: 1px solid var(--border);
  padding: 28px 0 32px;
}
.footer-pairs-section h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-faint);
  margin-bottom: 16px;
}
.footer-pairs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 24px;
}
.footer-pairs-grid a { font-size: 13px; color: var(--text-dim); }
.footer-pairs-grid a:hover { color: var(--teal); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  font-size: 13px;
  color: var(--text-faint);
}

/* ---------- Currency Modal ---------- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 100;
  align-items: center;
  justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal {
  width: 92%;
  max-width: 380px;
  max-height: 70vh;
  background: var(--card-bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.modal-header { display: flex; align-items: center; gap: 8px; padding: 16px; border-bottom: 1px solid var(--border); }
.modal-title { flex: 1; font-weight: 700; font-size: 15px; }
#currency-search {
  flex: 1;
  background: var(--field-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  color: var(--text);
  outline: none;
}
.modal-close { background: none; border: none; color: var(--text-faint); font-size: 22px; cursor: pointer; }
.modal-list { overflow-y: auto; padding: 8px; }
.currency-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 14px;
  text-align: left;
}
.currency-row:hover { background: var(--field-bg); }
.currency-row .name { color: var(--text-faint); font-weight: 400; margin-left: 4px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .feature-grid, .steps, .pairs-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-pairs-grid { grid-template-columns: repeat(3, 1fr); }
  .limitless-grid { grid-template-columns: 1fr; text-align: center; }
  .limitless-content > p, .limit-scale { margin-left: auto; margin-right: auto; }
}
@media (max-width: 640px) {
  .testimonial-grid { grid-template-columns: 1fr; }
  .trust-card { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .trust-stat:nth-child(2n+1) { border-left: none; }
  .trust-stat:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, 0.12); padding-top: 20px; }
  .footer-pairs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 40;
  }
  .nav-backdrop.open {
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 288px;
    max-width: 80vw;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    background: rgb(9, 23, 18);
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 45;
  }
  .main-nav.mobile-open {
    transform: translateX(0);
  }

  .mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .mobile-nav-title { font-weight: 800; font-size: 17px; color: var(--text); }
  .mobile-nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: none;
    color: var(--text-dim);
    cursor: pointer;
  }
  .mobile-nav-close:hover { background: rgba(255, 255, 255, 0.12); color: var(--text); }

  .main-nav a {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text);
    font-weight: 600;
    transition: color 0.2s ease, transform 0.2s ease;
  }
  .main-nav a:hover { color: var(--teal); transform: translateX(4px); }
  .main-nav a:last-child { border-bottom: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; position: relative; z-index: 50; }
  .stats-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SCROLL-REVEAL ANIMATIONS — fade-in-up on scroll
   Added for the "Trusted by Millions" and FAQ sections.
   Purely additive: only adds .reveal-up / .reveal-delay-N classes
   on top of existing elements — nothing above this block was changed.

   TO REVERT: delete this entire block, remove the "reveal-up" and
   "reveal-delay-N" classes from index.html, and remove the
   <script src="js/scroll-reveal.js"> tag from index.html.
   ============================================================ */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up.revealed { opacity: 1; transform: translateY(0); }
.reveal-up.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-up.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-up.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-up.reveal-delay-4 { transition-delay: 0.4s; }

/* .trust-globe centers itself with transform: translateX(-50%). The base
   .reveal-up rule above would otherwise overwrite that with its own
   translateY(), knocking the globe off-center — so combine both here. */
.trust-globe.reveal-up { transform: translateX(-50%) translateY(28px); }
.trust-globe.reveal-up.revealed { transform: translateX(-50%) translateY(1); }

/* Respect users who've asked for less motion. */
@media (prefers-reduced-motion: reduce) {
  .reveal-up, .reveal-up.reveal-delay-1, .reveal-up.reveal-delay-2,
  .reveal-up.reveal-delay-3, .reveal-up.reveal-delay-4 {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .trust-globe.reveal-up { transform: translateX(-50%); }
}
/* ---------- END SCROLL-REVEAL ANIMATIONS ---------- */
