/* ═══════════════════════════════════════════════════════════════
   3PAY Design System — V4 Dark Navy
   Deep navy-black theme with blue brand accents
   ═══════════════════════════════════════════════════════════════ */

/* ─── CSS Variables ─── */
:root {
  /* Backgrounds */
  --bg-primary: #0B0F19;
  --bg-secondary: #111827;
  --bg-tertiary: #1F2937;
  --bg-elevated: #162032;

  /* Text */
  --text-primary: #F9FAFB;
  --text-secondary: #9CA3AF;
  --text-tertiary: #6B7280;

  /* Brand */
  --brand-blue: #2D7BF5;
  --brand-blue-light: #4A9FFF;
  --brand-blue-dark: #1E3A5F;
  --accent-green: #00D4AA;
  --accent-green-dark: #0a7c65;

  /* Borders */
  --border: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.10);
  --border-blue: rgba(45, 123, 245, 0.20);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 16px 50px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 20px rgba(45, 123, 245, 0.15);
  --shadow-glow-strong: 0 0 40px rgba(45, 123, 245, 0.25);

  /* Spacing */
  --section-pad: 120px;
  --section-pad-mobile: 80px;
  --container-max: 1200px;
  --container-pad: 24px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.3s;
}

/* ─── Reset ─── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  background: var(--bg-primary);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-primary);
  line-height: 1.15;
  font-weight: 700;
}

h1 {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h4 {
  font-size: 20px;
  font-weight: 600;
}

.mono {
  font-family: 'JetBrains Mono', monospace;
}

.label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-blue);
}

.section-subtitle {
  font-size: clamp(16px, 1.3vw, 20px);
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.7;
}

/* ─── Layout ─── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .label {
  margin-bottom: 16px;
  display: block;
}

.section-header h2 {
  margin-bottom: 20px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
  position: relative;
}

.btn--primary {
  background: var(--brand-blue);
  color: #fff;
  box-shadow: 0 0 20px rgba(45, 123, 245, 0.3), var(--shadow-md);
}

.btn--primary:hover {
  background: var(--brand-blue-light);
  box-shadow: 0 0 30px rgba(45, 123, 245, 0.45), var(--shadow-lg);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

.btn--outline:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue-light);
  background: rgba(45, 123, 245, 0.06);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn--lg {
  padding: 18px 36px;
  font-size: 16px;
}

.btn svg {
  width: 16px;
  height: 16px;
}

/* ─── Cards ─── */
.card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--duration) var(--ease);
}

.card:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.card--glow:hover {
  border-color: var(--border-blue);
  box-shadow: var(--shadow-glow), var(--shadow-lg);
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(45, 123, 245, 0.1);
  border: 1px solid rgba(45, 123, 245, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--brand-blue-light);
}

.card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.card__text,
.card__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── Grid Layouts ─── */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ═══════════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s var(--ease);
  background: transparent;
}

.nav--scrolled {
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 32px;
  width: auto;
}

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

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--duration) var(--ease);
}

.nav__link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.nav__link svg {
  width: 10px;
  height: 10px;
  transition: transform var(--duration) var(--ease);
}

/* Dropdown */
.nav__dd {
  position: relative;
}

.nav__dd:hover .nav__link svg {
  transform: rotate(180deg);
}

.nav__dd:hover .dd-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dd-menu {
  position: absolute;
  top: 100%;
  left: -8px;
  padding: 8px;
  min-width: 280px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s var(--ease);
}

.dd-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius-sm);
  transition: background var(--duration) var(--ease);
}

.dd-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.dd-item__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(45, 123, 245, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  color: var(--brand-blue-light);
}

.dd-item__title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.dd-item__desc {
  display: block;
  font-size: 13px;
  color: var(--text-tertiary);
}

/* Nav Actions */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__login {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 14px;
  transition: color var(--duration) var(--ease);
}

.nav__login:hover {
  color: var(--text-primary);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

#heroCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 1;
}

.hero__fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--bg-primary));
  z-index: 1;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  padding-top: 40px;
}

.hero__title {
  margin-bottom: 24px;
}

.hero__title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
}

.hero__subtitle {
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 40px;
  opacity: 0;
}

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  opacity: 0;
}

.hero__trust {
  font-size: 14px;
  color: var(--text-tertiary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0;
}

/* ═══════════════════════════════════════════════════════════════
   CHAINS BAR
   ═══════════════════════════════════════════════════════════════ */
.chains {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.chains__label {
  text-align: center;
  margin-bottom: 32px;
}

.chains__track-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.chains__track {
  display: flex;
  gap: 16px;
  animation: scroll-chains 30s linear infinite;
  width: max-content;
}

.chains__track:hover {
  animation-play-state: paused;
}

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

.chain-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  flex-shrink: 0;
  transition: all var(--duration) var(--ease);
}

.chain-tag:hover {
  border-color: var(--border-light);
  color: var(--text-primary);
}

.chain-tag__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-blue);
}

.chains__tokens {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-tertiary);
}

/* ═══════════════════════════════════════════════════════════════
   TWO PATHS
   ═══════════════════════════════════════════════════════════════ */
.paths__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.path-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  transition: all 0.4s var(--ease);
}

.path-card:hover {
  border-color: var(--border-blue);
  box-shadow: var(--shadow-glow), var(--shadow-lg);
}

.path-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(45, 123, 245, 0.1);
  border: 1px solid rgba(45, 123, 245, 0.15);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-blue-light);
  margin-bottom: 24px;
}

.path-card__badge--green {
  background: rgba(0, 212, 170, 0.1);
  border-color: rgba(0, 212, 170, 0.15);
  color: var(--accent-green);
}

.path-card h3 {
  font-size: clamp(22px, 2vw, 28px);
  margin-bottom: 16px;
}

.path-card__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.path-card__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.path-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.path-card__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-blue);
  flex-shrink: 0;
  margin-top: 8px;
}

.path-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--brand-blue-light);
  transition: all var(--duration) var(--ease);
}

.path-card__cta:hover {
  gap: 12px;
}

.path-card__cta svg {
  width: 16px;
  height: 16px;
}

/* ═══════════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════════ */
.steps {
  position: relative;
}

.steps__wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.steps__line {
  position: absolute;
  left: 24px;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--border);
}

.steps__line-fill {
  position: absolute;
  left: 24px;
  top: 0;
  width: 2px;
  height: 0;
  background: var(--brand-blue);
  border-radius: 2px;
  transition: height 0.1s linear;
}

.step {
  display: flex;
  gap: 32px;
  padding: 40px 0;
  opacity: 0.3;
  transition: opacity 0.4s var(--ease);
}

.step.active {
  opacity: 1;
}

.step__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-tertiary);
  flex-shrink: 0;
  transition: all 0.4s var(--ease);
  position: relative;
  z-index: 2;
}

.step.active .step__number {
  border-color: var(--brand-blue);
  color: var(--brand-blue-light);
  background: rgba(45, 123, 245, 0.1);
  box-shadow: 0 0 20px rgba(45, 123, 245, 0.2);
}

.step__content h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.step__content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   EXCHANGE
   ═══════════════════════════════════════════════════════════════ */
.exchange__card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.exchange__card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-blue), transparent);
  opacity: 0.6;
}

.exchange__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
}

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

.exchange__token-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.exchange__token-icon--usdt {
  box-shadow: 0 0 16px rgba(38, 161, 123, 0.25);
}

.exchange__token-icon--usdc {
  box-shadow: 0 0 16px rgba(39, 117, 202, 0.25);
}

.exchange__token-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
}

.exchange__token-chain {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 2px;
}

.exchange__amount {
  font-family: 'JetBrains Mono', monospace;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
}

.exchange__amount--green {
  color: var(--accent-green);
}

.exchange__arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 0;
  position: relative;
}

.exchange__arrow-line {
  width: 1px;
  height: 12px;
  background: linear-gradient(to bottom, var(--border), var(--brand-blue), var(--border));
}

.exchange__arrow-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(45, 123, 245, 0.1);
  border: 1px solid rgba(45, 123, 245, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue-light);
  position: relative;
  z-index: 1;
}

.exchange__arrow-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--brand-blue);
  transform: translate(-50%, -50%);
  animation: exchangePulse 2s ease-out infinite;
}

@keyframes exchangePulse {
  0% {
    width: 38px;
    height: 38px;
    opacity: 0.5;
  }
  100% {
    width: 70px;
    height: 70px;
    opacity: 0;
  }
}

.exchange__fee {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  margin-top: 16px;
}

.exchange__fee span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: var(--text-tertiary);
}

.exchange__fee strong {
  color: var(--accent-green);
}

/* ═══════════════════════════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════════════════════════ */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all var(--duration) var(--ease);
}

.stat-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}

.stat-card__number {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-card__number .accent {
  color: var(--brand-blue-light);
}

.stat-card__label {
  font-size: 14px;
  color: var(--text-tertiary);
}

/* ═══════════════════════════════════════════════════════════════
   SECURITY
   ═══════════════════════════════════════════════════════════════ */
.security__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.security-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--duration) var(--ease);
}

.security-card:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow-md);
}

.security-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(0, 212, 170, 0.08);
  border: 1px solid rgba(0, 212, 170, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--accent-green);
}

.security-card h4 {
  margin-bottom: 12px;
}

.security-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   EARNINGS TABLE
   ═══════════════════════════════════════════════════════════════ */
.earnings__table-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.earnings__table {
  width: 100%;
  border-collapse: collapse;
}

.earnings__table th {
  text-align: left;
  padding: 16px 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.earnings__table td {
  padding: 16px 24px;
  font-size: 15px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.earnings__table tr:last-child td {
  border-bottom: none;
}

.earnings__table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.earnings__table .highlight {
  color: var(--accent-green);
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
}

.earnings__table .volume {
  font-family: 'JetBrains Mono', monospace;
  color: var(--text-primary);
  font-weight: 500;
}

.earnings__note {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-tertiary);
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════
   REFERRAL / NETWORK
   ═══════════════════════════════════════════════════════════════ */
.referral__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
  min-height: 300px;
  position: relative;
}

.referral__node {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
}

.referral__node--center {
  width: 80px;
  height: 80px;
  background: var(--brand-blue);
  box-shadow: 0 0 40px rgba(45, 123, 245, 0.4);
  z-index: 2;
}

.referral__node--partner {
  width: 48px;
  height: 48px;
  background: var(--bg-tertiary);
  border: 2px solid var(--border-light);
}

.referral__node--merchant {
  width: 32px;
  height: 32px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
}

.referral__line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-blue), transparent);
  transform-origin: left center;
  opacity: 0;
}

.referral__node svg {
  width: 50%;
  height: 50%;
  color: var(--text-primary);
}

.referral__content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.referral__content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   COMPETITOR COMPARISON
   ═══════════════════════════════════════════════════════════════ */
.comparison__table-wrapper {
  overflow-x: auto;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  -webkit-overflow-scrolling: touch;
}

.comparison__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.comparison__table th {
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-tertiary);
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  white-space: nowrap;
}

.comparison__table th:first-child {
  text-align: left;
}

.comparison__table th.highlight-col {
  color: var(--brand-blue-light);
  background: rgba(45, 123, 245, 0.06);
}

.comparison__table td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.comparison__table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--text-primary);
}

.comparison__table td.highlight-col {
  color: var(--text-primary);
  background: rgba(45, 123, 245, 0.04);
  font-weight: 500;
}

.comparison__table tr:last-child td {
  border-bottom: none;
}

.check {
  color: var(--accent-green);
  font-weight: 600;
}

.cross {
  color: #ef4444;
}

.partial {
  color: #f59e0b;
}

/* ═══════════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════════ */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  transition: all var(--duration) var(--ease);
}

.pricing-card--recommended {
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-glow);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--brand-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius-full);
  letter-spacing: 0.03em;
}

.pricing-card__name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.pricing-card__price {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-card__price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-tertiary);
}

.pricing-card__desc {
  font-size: 14px;
  color: var(--text-tertiary);
  margin-bottom: 28px;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pricing-card__features li::before {
  content: '\2713';
  color: var(--accent-green);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card .btn {
  width: 100%;
}

/* Additional Fees */
.pricing__fees {
  max-width: 600px;
  margin: 48px auto 0;
}

.pricing__fees-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing__fees-table td {
  padding: 12px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}

.pricing__fees-table td:first-child {
  color: var(--text-secondary);
}

.pricing__fees-table td:last-child {
  text-align: right;
  font-family: 'JetBrains Mono', monospace;
  color: var(--text-primary);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: #f59e0b;
  font-size: 16px;
}

.testimonial-card__text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card__author {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-card__role {
  font-size: 13px;
  color: var(--text-tertiary);
}

/* ═══════════════════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════════════════ */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(45, 123, 245, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.cta-section .section-subtitle {
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

.cta-section .hero__ctas {
  position: relative;
  z-index: 1;
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
  background: var(--bg-primary);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer__brand {
  max-width: 260px;
}

.footer__brand img {
  height: 28px;
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 14px;
  color: var(--text-tertiary);
  line-height: 1.7;
}

.footer__col-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 14px;
  color: var(--text-tertiary);
  transition: color var(--duration) var(--ease);
}

.footer__links a:hover {
  color: var(--text-secondary);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-tertiary);
}

.footer__socials {
  display: flex;
  gap: 16px;
}

.footer__socials a {
  color: var(--text-tertiary);
  transition: color var(--duration) var(--ease);
  font-size: 18px;
}

.footer__socials a:hover {
  color: var(--text-primary);
}

/* ═══════════════════════════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════════════════════════ */
.text-center { text-align: center; }
.text-brand { color: var(--brand-blue-light); }
.text-green { color: var(--accent-green); }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ═══════════════════════════════════════════════════════════════
   SUBPAGE COMPONENTS — Shared across all product/solution pages
   ═══════════════════════════════════════════════════════════════ */

/* Page Hero */
.page-hero {
  text-align: center;
  padding: 160px var(--container-pad) 80px;
  max-width: 900px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.page-hero__subtitle,
.page-hero .section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 32px;
}

.page-hero__cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Card Grid (subpages) */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* Data Table Wrapper */
.data-table-wrapper {
  max-width: 800px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Data Table (subpages) */
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.data-table thead th {
  padding: 16px 24px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  border-bottom: 1px solid var(--border);
}

.data-table tbody td {
  padding: 16px 24px;
  font-size: 15px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.data-table tbody td:first-child {
  color: var(--text-primary);
  font-weight: 600;
}

.data-table .highlight {
  color: var(--brand-blue);
  font-weight: 600;
}

.data-table .highlight-green {
  color: var(--accent-green);
  font-weight: 600;
}

/* Steps Timeline */
.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 0;
}

.step-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step-item__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.step-item__content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.step-item__content p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 15px;
}

/* Revenue Cards */
.revenue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.revenue-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}

.revenue-card__label {
  font-size: 14px;
  color: var(--text-tertiary);
  margin-bottom: 4px;
}

.revenue-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.revenue-card__amount {
  font-family: 'JetBrains Mono', monospace;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 12px;
}

.revenue-card__details {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.5;
}

/* Fee Highlight */
.fee-highlight {
  font-family: 'JetBrains Mono', monospace;
  font-size: 48px;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 16px;
}

/* Flow Diagram (Exchange page) */
.flow-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 40px 0;
}

.flow-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  min-width: 200px;
}

.flow-card__label {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.flow-card__token {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.flow-card__chain {
  font-size: 14px;
  color: var(--text-secondary);
}

.flow-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--brand-blue);
}

.flow-arrow__icon {
  font-size: 24px;
}

.flow-arrow__label {
  font-size: 12px;
  color: var(--text-tertiary);
  text-align: center;
}

.flow-arrow__fee {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: var(--brand-blue);
  font-weight: 600;
}

/* Section Note */
.section-note {
  font-size: 14px;
  color: var(--text-tertiary);
  text-align: center;
  font-style: italic;
  margin-top: 24px;
}

/* ═══════════════════════════════════════════════════════════════
   CHECKOUT FLOW MOCKUP — Payment Gateway hero visual
   ═══════════════════════════════════════════════════════════════ */
.checkout-mockup {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 820px;
  margin: 48px auto 0;
  position: relative;
}

.checkout-mockup__step {
  flex: 1;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: 24px 20px;
  position: relative;
  text-align: center;
}

.checkout-mockup__step:first-child {
  border-radius: 16px 0 0 16px;
}

.checkout-mockup__step:last-child {
  border-radius: 0 16px 16px 0;
}

.checkout-mockup__step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--brand-blue), var(--accent-green));
  z-index: 1;
}

.checkout-mockup__step--complete {
  border-color: var(--accent-green);
  box-shadow: 0 0 20px rgba(0, 212, 170, 0.15);
}

.checkout-mockup__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.checkout-mockup__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.checkout-mockup__badges {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.checkout-mockup__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.checkout-mockup__badge-icon {
  flex-shrink: 0;
  border-radius: 50%;
}

.checkout-mockup__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.checkout-mockup__badge-dot--blue { background: var(--brand-blue); }
.checkout-mockup__badge-dot--green { background: var(--accent-green); }

.checkout-mockup__detail {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 8px;
  line-height: 1.6;
}

.checkout-mockup__detail strong {
  color: var(--text-primary);
  font-size: 18px;
  display: block;
  margin-bottom: 4px;
}

.checkout-mockup__btn {
  display: inline-block;
  margin-top: 12px;
  background: var(--brand-blue);
  color: #fff;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

.checkout-mockup__check {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 24px;
}

.checkout-mockup__confirm-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--accent-green);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════
   STAT BAR — Horizontal stat pills
   ═══════════════════════════════════════════════════════════════ */
.stat-bar {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 48px 0;
}

.stat-pill {
  text-align: center;
  padding: 24px 32px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  min-width: 140px;
}

.stat-pill__number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 32px;
  font-weight: 700;
  color: var(--brand-blue-light);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-pill__label {
  font-size: 13px;
  color: var(--text-tertiary);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════
   CHAIN GRID — Blockchain support cards with icons
   ═══════════════════════════════════════════════════════════════ */
.chain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .chain-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.chain-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.chain-pill:hover {
  border-color: var(--border-blue);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.chain-pill__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(45, 123, 245, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue-light);
}

.chain-pill__icon svg {
  width: 22px;
  height: 22px;
}

.chain-pill__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.chain-pill__time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--accent-green);
  font-weight: 500;
  background: rgba(0, 212, 170, 0.08);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.chain-pill__speed {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent-green);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════
   EXCHANGE HIGHLIGHTS — Inline feature items
   ═══════════════════════════════════════════════════════════════ */
.highlight-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-secondary);
}

.highlight-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--brand-blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

/* Flow arrow pulse animation */
.flow-arrow {
  position: relative;
}

.flow-arrow__line {
  position: relative;
  width: 80px;
  height: 2px;
  background: var(--brand-blue-dark);
  overflow: visible;
}

.flow-arrow__line::after {
  content: '';
  position: absolute;
  top: -3px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 8px var(--accent-green);
  animation: pulse-travel 2.5s ease-in-out infinite;
}

@keyframes pulse-travel {
  0% { left: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: calc(100% - 8px); opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════════
   INTEGRATION ROW — Horizontal method icons
   ═══════════════════════════════════════════════════════════════ */
.integration-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.integration-item {
  text-align: center;
  padding: 24px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  min-width: 120px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.integration-item:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}

.integration-item__icon {
  font-size: 28px;
  margin-bottom: 8px;
  display: block;
}

.integration-item__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

/* ═══════════════════════════════════════════════════════════════
   DASHBOARD MOCKUP — White-Label centerpiece visual
   ═══════════════════════════════════════════════════════════════ */
.dashboard-mockup {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(45, 123, 245, 0.08), 0 0 120px rgba(45, 123, 245, 0.04);
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 380px;
}

.dashboard-mockup__sidebar {
  background: var(--bg-tertiary);
  padding: 20px 0;
  border-right: 1px solid var(--border);
}

.dashboard-mockup__sidebar-brand {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-blue-light);
  padding: 0 16px 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
}

.dashboard-mockup__sidebar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--text-tertiary);
  cursor: default;
  transition: color 0.2s;
}

.dashboard-mockup__sidebar-item--active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
  border-right: 2px solid var(--brand-blue);
}

.dashboard-mockup__main {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dashboard-mockup__topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dashboard-mockup__topbar-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.dashboard-mockup__search {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--text-tertiary);
  min-width: 160px;
}

.dashboard-mockup__cursor {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: var(--brand-blue-light);
  animation: blink-cursor 1s step-end infinite;
}

@keyframes blink-cursor {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.dashboard-mockup__stats {
  display: flex;
  gap: 12px;
}

.dashboard-mockup__stat-card {
  flex: 1;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
}

.dashboard-mockup__stat-label {
  font-size: 11px;
  color: var(--text-tertiary);
  margin-bottom: 4px;
}

.dashboard-mockup__stat-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.dashboard-mockup__stat-value--green {
  color: var(--accent-green);
}

.dashboard-mockup__chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
  padding: 12px 14px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.dashboard-mockup__chart-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  transform-origin: bottom;
  min-height: 4px;
}

.dashboard-mockup__chart-bar:nth-child(odd) {
  background: var(--brand-blue);
}

.dashboard-mockup__chart-bar:nth-child(even) {
  background: var(--brand-blue-dark);
}

.dashboard-mockup__table {
  flex: 1;
}

.dashboard-mockup__table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 8px;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
}

.dashboard-mockup__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 8px;
  padding: 10px 12px;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
}

.dashboard-mockup__row:last-child {
  border-bottom: none;
}

.dashboard-mockup__cell {
  color: var(--text-secondary);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
}

.dashboard-mockup__cell--wallet {
  color: var(--text-primary);
}

.dashboard-mockup__cell--amount {
  font-weight: 600;
  color: var(--text-primary);
}

.dashboard-mockup__badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}

.dashboard-mockup__badge--confirmed {
  background: rgba(0, 212, 170, 0.15);
  color: var(--accent-green);
}

.dashboard-mockup__badge--pending {
  background: rgba(74, 159, 255, 0.15);
  color: var(--brand-blue-light);
}

/* ═══════════════════════════════════════════════════════════════
   EARNINGS STRIP — 3 bold numbers in a row
   ═══════════════════════════════════════════════════════════════ */
.earnings-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.earnings-strip__item {
  text-align: center;
  padding: 32px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.earnings-strip__amount {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--accent-green);
  line-height: 1;
  margin-bottom: 8px;
}

.earnings-strip__label {
  font-size: 14px;
  color: var(--text-tertiary);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════
   PAYOUT FLOW — 3-step horizontal flow
   ═══════════════════════════════════════════════════════════════ */
.payout-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 700px;
  margin: 40px auto 0;
}

.payout-flow__step {
  text-align: center;
  flex: 0 0 auto;
  width: 140px;
}

.payout-flow__circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brand-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  margin: 0 auto 12px;
  box-shadow: 0 0 20px rgba(45, 123, 245, 0.3);
}

.payout-flow__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.payout-flow__desc {
  font-size: 13px;
  color: var(--text-tertiary);
}

.payout-flow__connector {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 24px;
}

.payout-flow__line {
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    var(--border-light) 0px,
    var(--border-light) 6px,
    transparent 6px,
    transparent 12px
  );
  position: relative;
  min-width: 40px;
}

/* Use case pills */
.usecase-pills {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.usecase-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.usecase-pill__icon {
  font-size: 18px;
}

/* ═══════════════════════════════════════════════════════════════
   CTA SECTION — Final call-to-action with glow
   ═══════════════════════════════════════════════════════════════ */
.section--cta {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(45, 123, 245, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════
   PRICING HERO — Bold centered number
   ═══════════════════════════════════════════════════════════════ */
.pricing-hero {
  text-align: center;
}

.pricing-hero__number {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  color: var(--brand-blue);
  line-height: 1;
  margin-bottom: 12px;
}

.pricing-hero__sublabel {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — New visual components
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .checkout-mockup {
    flex-direction: column;
    max-width: 320px;
  }

  .checkout-mockup__step:first-child {
    border-radius: 16px 16px 0 0;
  }

  .checkout-mockup__step:last-child {
    border-radius: 0 0 16px 16px;
  }

  .checkout-mockup__step:not(:last-child)::after {
    right: 50%;
    top: auto;
    bottom: -1px;
    transform: translateX(50%);
    width: 40px;
    height: 2px;
  }

  .stat-bar {
    gap: 16px;
  }

  .stat-pill {
    min-width: 0;
    flex: 1 1 calc(50% - 8px);
    padding: 16px;
  }

  .stat-pill__number {
    font-size: 24px;
  }

  .dashboard-mockup {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .dashboard-mockup__sidebar {
    display: none;
  }

  .dashboard-mockup__stats {
    flex-wrap: wrap;
  }

  .dashboard-mockup__stat-card {
    flex: 1 1 calc(50% - 6px);
  }

  .earnings-strip {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .payout-flow {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .payout-flow__connector {
    padding: 8px 0;
    width: 2px;
    height: 30px;
  }

  .payout-flow__line {
    width: 2px;
    height: 100%;
    min-width: 2px;
    background: repeating-linear-gradient(
      to bottom,
      var(--border-light) 0px,
      var(--border-light) 6px,
      transparent 6px,
      transparent 12px
    );
  }

  .highlight-row {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .integration-row {
    gap: 12px;
  }

  .integration-item {
    min-width: 0;
    flex: 1 1 calc(50% - 6px);
    padding: 16px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   AMBIENT CANVAS — Subtle background for subpages
   ═══════════════════════════════════════════════════════════════ */
#ambientCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}

body.has-ambient .nav {
  z-index: 1000; /* nav already has this, just ensure it stays on top */
}

body.has-ambient .hero,
body.has-ambient .chains,
body.has-ambient .page-hero,
body.has-ambient .section,
body.has-ambient .cta-section,
body.has-ambient .section--cta,
body.has-ambient .footer {
  position: relative;
  z-index: 2;
}

/* Scroll reveal initial states (GSAP will animate these) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (768-1024px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root {
    --section-pad: 100px;
    --container-pad: 20px;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__brand {
    grid-column: span 3;
    max-width: none;
    margin-bottom: 16px;
  }

  .stats__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .security__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (<768px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --section-pad: 80px;
    --container-pad: 16px;
  }

  /* Nav Mobile */
  .nav__links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(11, 15, 25, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 88px 24px 140px;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    z-index: 998;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav__links.open {
    transform: translateX(0);
  }

  /* Solid nav bar when menu is open — prevents content bleeding through */
  .nav.nav--menu-open,
  .nav.nav--menu-open.nav--scrolled {
    background: var(--bg-primary);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
  }

  .nav__link {
    font-size: 22px;
    font-weight: 600;
    padding: 16px 4px;
    width: 100%;
    color: var(--text-primary);
    border-radius: 0;
    letter-spacing: -0.01em;
  }

  .nav__dd {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .dd-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 12px 0;
    display: none;
    min-width: auto;
  }

  .nav__dd.open .dd-menu {
    display: block;
  }

  .nav__dd.open > .nav__link svg {
    transform: rotate(180deg);
  }

  .dd-item {
    padding: 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 2px;
  }

  .dd-item__icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .dd-item__title {
    font-size: 15px;
  }

  .dd-item__desc {
    font-size: 12px;
    color: var(--text-tertiary);
  }

  /* Standalone nav links (Pricing, Docs, Blog) */
  .nav__links > a.nav__link {
    border-bottom: 1px solid var(--border);
    padding: 18px 4px;
  }

  .nav__links > a.nav__link:last-child {
    border-bottom: none;
  }

  .nav__actions {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px 24px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    background: rgba(11, 15, 25, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    z-index: 999;
    gap: 12px;
    flex-wrap: nowrap;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(100%);
  }

  .nav__links.open ~ .nav__actions {
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav__links.open ~ .nav__actions .nav__login {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 24px;
    flex: 1;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    color: var(--text-primary);
  }

  .nav__links.open ~ .nav__actions .btn--sm {
    padding: 14px 24px;
    font-size: 15px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  /* Grids */
  .grid-2,
  .grid-3,
  .grid-4,
  .paths__grid,
  .pricing__grid,
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  /* Path cards */
  .path-card {
    padding: 32px 24px;
  }

  /* Steps */
  .step {
    gap: 20px;
  }

  .step__number {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .steps__line,
  .steps__line-fill {
    left: 20px;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer__brand {
    grid-column: span 2;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  /* Touch targets */
  .footer__links a {
    padding: 8px 0;
    display: inline-block;
    min-height: 44px;
    line-height: 28px;
  }

  .footer__socials a {
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Scroll hint for table wrappers */
  .comparison__table-wrapper,
  .earnings__table-wrapper {
    position: relative;
  }

  .comparison__table-wrapper::after,
  .earnings__table-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    background: linear-gradient(to left, var(--bg-secondary), transparent);
    pointer-events: none;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  }

  /* Section header */
  .section-header {
    margin-bottom: 48px;
  }

  /* Exchange */
  .exchange__card {
    padding: 24px;
  }

  .exchange__row {
    padding: 16px;
  }

  .exchange__amount {
    font-size: 16px;
  }

  /* Earnings table scroll */
  .earnings__table-wrapper {
    overflow-x: auto;
  }

  .earnings__table {
    min-width: 500px;
  }

  /* Subpage responsive */
  .page-hero {
    padding: 120px var(--container-pad) 60px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .page-hero__subtitle {
    font-size: 16px;
  }

  .page-hero__cta {
    flex-direction: column;
    align-items: stretch;
  }

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

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

  .revenue-card__amount {
    font-size: 28px;
  }

  .fee-highlight {
    font-size: 36px;
  }

  .step-item {
    gap: 16px;
  }

  .step-item__number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .flow-diagram {
    flex-direction: column;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .data-table {
    display: block;
    overflow-x: auto;
  }

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

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Small Phone (<480px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  :root {
    --section-pad: 56px;
    --container-pad: 14px;
  }

  /* Nav header */
  .nav {
    padding: 12px 0;
  }

  .nav--scrolled {
    padding: 10px 0;
  }

  .logo img {
    height: 28px;
  }

  /* Mobile menu adjustments */
  .nav__links {
    padding: 76px 18px 130px;
  }

  .nav__link {
    font-size: 20px;
    padding: 14px 4px;
  }

  .nav__links > a.nav__link {
    padding: 16px 4px;
  }

  .nav__links.open ~ .nav__actions {
    padding: 14px 18px;
    padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  }

  .nav__links.open ~ .nav__actions .nav__login {
    font-size: 14px;
    padding: 12px 16px;
  }

  .nav__links.open ~ .nav__actions .btn--sm {
    padding: 12px 16px;
    font-size: 14px;
  }

  /* Typography floors */
  h1 {
    font-size: clamp(28px, 8vw, 40px);
  }

  h2 {
    font-size: clamp(22px, 6vw, 28px);
  }

  h3 {
    font-size: clamp(18px, 4.5vw, 22px);
  }

  /* Buttons */
  .btn {
    padding: 12px 22px;
    font-size: 14px;
  }

  .btn--lg {
    padding: 14px 28px;
    font-size: 15px;
  }

  /* Cards */
  .card {
    padding: 20px;
  }

  .path-card {
    padding: 24px 18px;
  }

  .pricing-card {
    padding: 28px 20px;
  }

  .stat-card {
    padding: 20px 16px;
  }

  .security-card {
    padding: 24px 18px;
  }

  .testimonial-card {
    padding: 24px 18px;
  }

  /* Section header */
  .section-header {
    margin-bottom: 32px;
  }

  .section-header .label {
    font-size: 11px;
    margin-bottom: 12px;
  }

  /* Stats grid — single column on small phones */
  .stats__grid {
    grid-template-columns: 1fr;
  }

  /* Hero */
  .hero {
    padding: 100px 0 60px;
  }

  /* ── Comparison table → card layout ── */
  .comparison__table-wrapper {
    overflow-x: visible;
    background: transparent;
    border: none;
  }

  .comparison__table {
    min-width: 0;
  }

  .comparison__table thead {
    display: none;
  }

  .comparison__table tbody {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .comparison__table tbody tr {
    display: block;
    padding: 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
  }

  .comparison__table tbody td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    text-align: right;
    font-size: 14px;
  }

  .comparison__table tbody td:last-child {
    border-bottom: none;
  }

  .comparison__table tbody td:first-child {
    font-weight: 700;
    font-size: 15px;
    display: block;
    text-align: left;
    padding-bottom: 12px;
    margin-bottom: 4px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-primary);
  }

  .comparison__table tbody td::before {
    content: attr(data-label);
    font-weight: 500;
    color: var(--text-tertiary);
    text-align: left;
    font-size: 13px;
    margin-right: 12px;
  }

  .comparison__table tbody td:first-child::before {
    display: none;
  }

  .comparison__table td.highlight-col {
    background: transparent;
    color: var(--brand-blue-light);
  }

  /* ── Earnings table ── */
  .earnings__table {
    min-width: 0;
  }

  .earnings__table th,
  .earnings__table td {
    padding: 12px 14px;
    font-size: 13px;
  }

  /* ── Exchange card ── */
  .exchange__card {
    max-width: 100%;
  }

  .exchange__row {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .exchange__amount {
    font-size: 15px;
    align-self: flex-end;
  }

  /* ── Fixed max-widths ── */
  .earnings__table-wrapper {
    max-width: 100%;
  }

  .pricing__grid {
    max-width: 100%;
  }

  /* ── Referral network ── */
  .referral__visual {
    min-height: 220px;
    transform: scale(0.75);
    transform-origin: center center;
  }

  /* ── Checkout mockup ── */
  .checkout-mockup {
    max-width: 100%;
  }

  /* ── Flow diagrams ── */
  .flow-arrow__line {
    width: 2px;
    height: 40px;
  }

  .flow-card {
    padding: 24px 18px;
    min-width: 0;
  }

  /* ── Dashboard mockup ── */
  .dashboard-mockup__topbar {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .dashboard-mockup__stat-card {
    flex: 1 1 100%;
  }

  .dashboard-mockup__stats {
    gap: 8px;
  }

  .dashboard-mockup__stat-value {
    font-size: 16px;
  }

  .dashboard-mockup__search {
    min-width: 0;
    width: 100%;
  }

  /* ── Revenue grid ── */
  .revenue-grid {
    grid-template-columns: 1fr;
  }

  .revenue-card__amount {
    font-size: 24px;
  }

  /* ── Earnings strip ── */
  .earnings-strip__item {
    padding: 24px 14px;
  }

  .earnings-strip__amount {
    font-size: clamp(24px, 6vw, 32px);
  }

  /* ── Stat pills ── */
  .stat-pill {
    flex: 1 1 100%;
  }

  /* ── Payout flow ── */
  .payout-flow__step {
    width: auto;
    max-width: 200px;
  }

  /* ── Subpage hero ── */
  .page-hero {
    padding: 100px var(--container-pad) 40px;
  }

  .page-hero h1 {
    font-size: 26px;
  }

  /* ── Hero polish ── */
  .hero__subtitle {
    font-size: 15px;
    line-height: 1.6;
  }

  .hero__trust {
    font-size: 13px;
  }

  .hero__ctas .btn {
    padding: 14px 20px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
  }

  /* ── Section subtitle ── */
  .section-subtitle {
    font-size: 15px;
  }

  /* ── Steps ── */
  .step {
    gap: 16px;
  }

  .step__number {
    width: 36px;
    height: 36px;
    font-size: 13px;
    flex-shrink: 0;
  }

  .step__content h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .step__content p {
    font-size: 14px;
  }

  .steps__line,
  .steps__line-fill {
    left: 18px;
  }

  /* ── Path cards ── */
  .path-card__icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .path-card h3 {
    font-size: 20px;
  }

  .path-card p {
    font-size: 14px;
  }

  /* ── Pricing card ── */
  .pricing-card__price {
    font-size: clamp(36px, 9vw, 48px);
  }

  .pricing-card__features li {
    font-size: 14px;
  }

  .fee-highlight {
    font-size: 32px;
  }

  .pricing-hero__number {
    font-size: clamp(40px, 10vw, 64px);
  }

  /* ── Testimonial ── */
  .testimonial-card__text {
    font-size: 14px;
    line-height: 1.6;
  }

  /* ── Footer ── */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__brand {
    grid-column: span 1;
  }

  .footer__group-title {
    font-size: 13px;
  }

  .footer__links a {
    font-size: 14px;
  }

  .footer__bottom {
    padding-top: 24px;
  }

  /* ── Card descriptions ── */
  .card__desc,
  .dd-item__desc {
    font-size: 13px;
  }

  .card__title {
    font-size: 17px;
  }

  /* ── Security cards ── */
  .security-card__icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  /* ── Stat card ── */
  .stat-card__number {
    font-size: clamp(28px, 7vw, 40px);
  }

  .stat-card__label {
    font-size: 13px;
  }

  /* ── Chain bar ── */
  .chain-tag {
    padding: 8px 14px;
    font-size: 13px;
    gap: 6px;
  }

  /* ── Integration items ── */
  .integration-item {
    padding: 12px 16px;
    font-size: 14px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .chains__track {
    animation: none;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }
}
