/* ─────────────────────────────────────────
   HERO — centered layout with escrow pipeline
───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 880px;
  margin: 0 auto;
  padding: 5rem 2rem 5rem;
  gap: 3rem;
  position: relative;
  text-align: center;
  overflow: hidden;
}

/* Security scan line sweeping down the hero */
.hero::before {
  content: '';
  position: absolute;
  left: -40vw; right: -40vw;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(0,229,153,0.0) 15%,
    rgba(0,229,153,0.55) 40%,
    rgba(0,229,153,0.85) 50%,
    rgba(0,229,153,0.55) 60%,
    rgba(0,229,153,0.0) 85%,
    transparent 100%
  );
  top: 0;
  animation: heroScan 8s ease-in-out 2s infinite;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
}
@keyframes heroScan {
  0%   { top: 4%;  opacity: 0; }
  6%   { opacity: 1; }
  94%  { opacity: 0.35; }
  100% { top: 96%; opacity: 0; }
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -50vw; right: -50vw;
  height: 160px;
  background: linear-gradient(to bottom, transparent 0%, var(--bg) 100%);
  pointer-events: none;
  z-index: 1;
}

/* ── Status bar (terminal-style) ── */
.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  position: relative;
  z-index: 2;
}

.hero-status-bar {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 0.38rem 0.85rem;
  border-radius: 100px;
}
.hsb-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 7px rgba(0,229,153,0.7);
  animation: dotPulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes dotPulse {
  0%,100% { box-shadow: 0 0 6px rgba(0,229,153,0.6); opacity: 1; }
  50%     { box-shadow: 0 0 14px rgba(0,229,153,0.9); opacity: 0.7; }
}
.hsb-label { color: var(--accent); }
.hsb-sep   { opacity: 0.3; }
.hsb-tx code { color: var(--blue); font-size: inherit; }
.hsb-live  { color: var(--accent); opacity: 0.7; }

.hero-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(3.2rem, 7.5vw, 5.6rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.97;
  background-image: radial-gradient(
    circle 380px at var(--lx, 50%) var(--ly, 30%),
    rgba(255,255,255,0.97) 0%,
    var(--accent-light) 28%,
    rgba(0,180,110,0.5) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: filter 0.1s ease;
}

.hero-tagline {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(0.8rem, 1.4vw, 0.95rem);
  color: var(--accent);
  letter-spacing: 0.08em;
  opacity: 0.65;
  margin-top: -0.4rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: var(--text-secondary);
  line-height: 1.72;
  max-width: 560px;
  margin: 0 auto;
}
.hero-subtitle strong { color: var(--text-primary); font-weight: 600; }

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 0.4rem;
}

/* ── Escrow pipeline widget ── */
.escrow-flow {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 720px;
  background: rgba(8,13,22,0.80);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
/* Top accent line */
.escrow-flow::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%, var(--accent) 25%, var(--blue) 75%, transparent 100%
  );
  opacity: 0.28;
}

.ef-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1.1rem 0.5rem 0.9rem;
  position: relative;
  transition: background 0.45s ease;
  border-right: 1px solid rgba(255,255,255,0.05);
  cursor: default;
}
.ef-step:last-child { border-right: none; }

/* Arrow connector between steps */
.ef-step:not(:last-child)::after {
  content: '\203A';
  position: absolute;
  right: -7px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.15);
  z-index: 2;
  transition: color 0.4s ease;
  line-height: 1;
}
.ef-step--active:not(:last-child)::after { color: rgba(0,229,153,0.5); }

.ef-step--active { background: rgba(0,229,153,0.05); }
.ef-step--done   { opacity: 0.4; }

/* Top indicator dot */
.ef-indicator {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  transition: background 0.45s ease, box-shadow 0.45s ease;
  margin-bottom: 0.15rem;
  flex-shrink: 0;
}
.ef-step--active .ef-indicator {
  background: var(--accent);
  box-shadow: 0 0 8px rgba(0,229,153,0.65);
}
.ef-step--done .ef-indicator { background: rgba(0,229,153,0.28); }

.ef-icon {
  font-size: 1.2rem;
  line-height: 1;
}
.ef-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-primary);
  text-align: center;
  white-space: nowrap;
}
.ef-sub {
  font-size: 0.58rem;
  color: var(--text-muted);
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  white-space: nowrap;
}

/* ─────────────────────────────────────────
   HOW IT WORKS — sticky scroll storytelling
───────────────────────────────────────── */
.how-it-works { position: relative; height: 380vh; }
.hiw-sticky { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hiw-inner { max-width: 700px; width: 100%; padding: 0 40px; display: flex; flex-direction: column; gap: 44px; position: relative; z-index: 1; }

/* Ghost chapter number behind content */
.hiw-inner::before {
  content: '02';
  position: absolute;
  top: -0.15em; left: -0.1em;
  font-size: 18rem;
  font-weight: 800;
  font-family: 'JetBrains Mono', monospace;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,229,153,0.06);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: -1;
  letter-spacing: -0.06em;
}

/* Horizontal rule eyebrow — full width with text centered */
.hiw-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.55;
}
.hiw-eyebrow::before,
.hiw-eyebrow::after {
  content: '';
  height: 1px;
  flex: 1;
}
.hiw-eyebrow::before { background: linear-gradient(90deg, transparent, rgba(0,229,153,0.35)); }
.hiw-eyebrow::after  { background: linear-gradient(90deg, rgba(0,229,153,0.35), transparent); }
.hiw-title { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; letter-spacing: -0.04em; line-height: 1.08; color: var(--text-primary); margin: -20px 0 0; }
.hiw-steps { display: flex; flex-direction: column; gap: 28px; }
.hiw-step {
  display: flex; gap: 24px; align-items: flex-start;
  opacity: 0.1; transform: translateX(28px);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.hiw-step--active { opacity: 1; transform: translateX(0); }
.hiw-step--done   { opacity: 0.28; transform: translateX(0); }
.hiw-num { flex: 0 0 auto; font-family: 'JetBrains Mono', monospace; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; color: var(--accent); padding-top: 6px; min-width: 26px; }
.hiw-step-body h3 { font-size: clamp(1.1rem, 2.4vw, 1.5rem); font-weight: 700; letter-spacing: -0.025em; line-height: 1.2; margin: 0 0 7px; color: var(--text-primary); transition: color 0.4s ease; }
.hiw-step--active .hiw-step-body h3 {
  background-image: radial-gradient(circle 220px at 0% 50%, rgba(255,255,255,0.95) 0%, var(--accent-light) 35%, rgba(0,160,100,0.65) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hiw-step-body p { font-size: 0.94rem; color: var(--text-secondary); line-height: 1.65; margin: 0; max-width: 480px; }
.hiw-cta-hint {
  font-family: 'JetBrains Mono', monospace; font-size: 0.73rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(0,229,153,0.4); margin-top: -16px;
  opacity: 0; transform: translateY(10px); transition: opacity 0.55s ease, transform 0.55s ease;
}
.hiw-cta-hint.hiw-cta-hint--visible { opacity: 1; transform: translateY(0); }
.hiw-progress-bar {
  position: absolute; left: max(24px, calc(50% - 400px)); top: 50%; transform: translateY(-50%);
  width: 2px; height: 160px; background: rgba(0,229,153,0.08); border-radius: 2px;
}
.hiw-progress-fill {
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(0,229,153,0.15), var(--accent));
  transform: scaleY(0); transform-origin: top center; border-radius: 2px;
}

/* ─────────────────────────────────────────
   FEATURES
───────────────────────────────────────── */
.features { max-width: 1200px; margin: 0 auto; padding: 6rem 2rem; }
.features-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.9;
  margin-bottom: 1.4rem;
  padding: 0.45rem 0.9rem 0.45rem 0.75rem;
  border-left: 3px solid var(--accent);
  background: linear-gradient(90deg, rgba(0,229,153,0.08) 0%, transparent 100%);
  border-radius: 0 4px 4px 0;
}
.features-eyebrow::before {
  content: '//';
  color: var(--accent);
  opacity: 0.5;
  font-size: 0.7rem;
}
.features-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; letter-spacing: -0.035em;
  line-height: 1.1; color: var(--text-primary); margin-bottom: 3.5rem; max-width: 580px;
}
.features-title em {
  font-style: italic;
  background-image: linear-gradient(135deg, var(--accent) 0%, var(--blue) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }

.feat-card {
  background: var(--panel); border: 1px solid var(--border-color); border-radius: var(--radius-lg);
  padding: 2rem; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
  opacity: 0; transform: translateY(36px);
}
.feat-card.reveal-visible {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.34,1.56,0.64,1), border-color 0.25s ease, box-shadow 0.25s ease;
}
.feat-card:nth-child(2) { transition-delay: 0.12s; }
.feat-card:nth-child(3) { transition-delay: 0.24s; }
.feat-card:hover { border-color: rgba(0,229,153,0.22); box-shadow: 0 8px 32px rgba(0,229,153,0.08), 0 2px 8px rgba(0,0,0,0.4); }

.feat-icon { width: 44px; height: 44px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; font-size: 1.3rem; }
.feat-icon--green  { background: rgba(0,229,153,0.1);  border: 1px solid rgba(0,229,153,0.18); }
.feat-icon--blue   { background: rgba(79,158,255,0.1); border: 1px solid rgba(79,158,255,0.18); }
.feat-icon--violet { background: rgba(167,139,250,0.1);border: 1px solid rgba(167,139,250,0.18); }
.feat-card h3 { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.02em; color: var(--text-primary); margin-bottom: 0.6rem; }
.feat-card p  { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; }
.feat-card p strong { color: var(--text-primary); }

/* ─────────────────────────────────────────
   GLOBAL ACCESS
───────────────────────────────────────── */
.global-section {
  max-width: 1200px; margin: 0 auto; padding: 4rem 2rem 6rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.34,1.56,0.64,1);
}
.global-section.reveal-visible { opacity: 1; transform: translateY(0); }

.global-text-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0a0f19;
  background: linear-gradient(90deg, var(--blue) 0%, rgba(167,139,250,0.85) 100%);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.4rem;
  box-shadow: 0 0 18px rgba(79,158,255,0.25);
}
.global-text-eyebrow::before {
  content: '◈';
  font-size: 0.6rem;
  opacity: 0.7;
}
.global-title { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; letter-spacing: -0.035em; line-height: 1.15; color: var(--text-primary); margin-bottom: 1.2rem; }
.global-body { font-size: 0.96rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 1.5rem; }
.global-body strong { color: var(--text-primary); }
.global-stats { display: flex; gap: 2.5rem; padding-top: 0.5rem; }
.stat-item { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-value { font-family: 'JetBrains Mono', monospace; font-size: 1.6rem; font-weight: 700; color: var(--accent); line-height: 1; }
.stat-label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

.globe-visual { position: relative; height: 280px; display: flex; align-items: center; justify-content: center; }
.globe-rings { position: relative; width: 220px; height: 220px; }
.globe-ring {
  position: absolute; border-radius: 50%; border: 1px solid;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: ringPulse 3.5s ease-in-out infinite;
}
.globe-ring-1 { width:  80px; height:  80px; border-color: rgba(0,229,153,0.60); animation-delay: 0s; }
.globe-ring-2 { width: 130px; height: 130px; border-color: rgba(0,229,153,0.30); animation-delay: 0.5s; }
.globe-ring-3 { width: 180px; height: 180px; border-color: rgba(0,229,153,0.15); animation-delay: 1s; }
.globe-ring-4 { width: 220px; height: 220px; border-color: rgba(0,229,153,0.06); animation-delay: 1.5s; }
@keyframes ringPulse {
  0%,100% { opacity: 1; transform: translate(-50%,-50%) scale(1); }
  50%     { opacity: 0.5; transform: translate(-50%,-50%) scale(1.04); }
}
.globe-center {
  position: absolute; width: 48px; height: 48px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(0,229,153,0.5) 0%, rgba(0,180,110,0.2) 50%, transparent 100%);
  border: 1px solid rgba(0,229,153,0.4); top: 50%; left: 50%; transform: translate(-50%,-50%);
  box-shadow: 0 0 32px rgba(0,229,153,0.25);
}
.country-dot {
  position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 8px rgba(0,229,153,0.6);
  animation: dotOrbit 4s ease-in-out infinite;
}
.country-dot:nth-child(1) { top: 18%; left: 72%; animation-delay: 0s; }
.country-dot:nth-child(2) { top: 65%; left: 20%; animation-delay: 0.8s; background: var(--blue); box-shadow: 0 0 8px rgba(79,158,255,0.6); }
.country-dot:nth-child(3) { top: 28%; left: 22%; animation-delay: 1.6s; }
.country-dot:nth-child(4) { top: 74%; left: 68%; animation-delay: 2.4s; background: var(--blue); box-shadow: 0 0 8px rgba(79,158,255,0.6); }
.country-dot:nth-child(5) { top: 48%; left: 88%; animation-delay: 3.2s; background: var(--violet); box-shadow: 0 0 8px rgba(167,139,250,0.6); }
@keyframes dotOrbit {
  0%,100% { transform: scale(1); opacity: 1; }
  50%     { transform: scale(1.5); opacity: 0.7; }
}

/* ─────────────────────────────────────────
   LIVE TICKER
───────────────────────────────────────── */
.ticker-section {
  padding: 5rem 0; overflow: hidden;
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.ticker-section.reveal-visible { opacity: 1; transform: translateY(0); }
.ticker-header { max-width: 1200px; margin: 0 auto 2rem; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; }
.ticker-header h3 { font-size: 1rem; font-weight: 600; color: var(--text-primary); }
.ticker-header p  { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.2rem; font-family: 'JetBrains Mono', monospace; }

.ticker-live-badge {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent);
  border: 1px solid rgba(0,229,153,0.25); padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill); background: rgba(0,229,153,0.06);
}
.ticker-live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: livePulse 1.5s ease-in-out infinite; }
@keyframes livePulse {
  0%,100% { opacity: 1; box-shadow: 0 0 4px rgba(0,229,153,0.6); }
  50%     { opacity: 0.5; box-shadow: 0 0 10px rgba(0,229,153,0.3); }
}
.ticker-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.ticker-track { display: flex; gap: 1rem; width: max-content; animation: tickerScroll 40s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-card { flex: 0 0 300px; background: var(--panel); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 1.1rem 1.25rem; backdrop-filter: blur(10px); }
.tc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.6rem; }
.tc-org { font-size: 0.8rem; font-weight: 600; color: var(--text-primary); }
.tc-sev { font-family: 'JetBrains Mono', monospace; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.2rem 0.5rem; border-radius: var(--radius-pill); }
.tc-sev--critical { background: rgba(248,81,73,0.12);  color: #f85149; border: 1px solid rgba(248,81,73,0.22); }
.tc-sev--high     { background: rgba(240,136,62,0.12); color: #f0883e; border: 1px solid rgba(240,136,62,0.22); }
.tc-sev--medium   { background: rgba(227,179,65,0.12); color: #e3b341; border: 1px solid rgba(227,179,65,0.22); }
.tc-sev--low      { background: rgba(0,229,153,0.10);  color: var(--accent); border: 1px solid rgba(0,229,153,0.20); }
.tc-desc { font-size: 0.83rem; color: var(--text-secondary); line-height: 1.45; margin-bottom: 0.75rem; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.tc-footer { display: flex; align-items: center; justify-content: space-between; }
.tc-reward { font-family: 'JetBrains Mono', monospace; font-size: 0.88rem; font-weight: 700; color: var(--accent); }
.tc-time   { font-family: 'JetBrains Mono', monospace; font-size: 0.68rem; color: var(--text-muted); }

/* ─────────────────────────────────────────
   CTA
───────────────────────────────────────── */
.cta-section {
  max-width: 1200px; margin: 0 auto; padding: 5rem 2rem 8rem;
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.34,1.56,0.64,1);
}
.cta-section.reveal-visible { opacity: 1; transform: translateY(0); }
.cta-inner {
  background: linear-gradient(135deg, rgba(0,229,153,0.06) 0%, rgba(79,158,255,0.04) 50%, rgba(0,229,153,0.06) 100%);
  border: 1px solid rgba(0,229,153,0.14); border-radius: var(--radius-xl);
  padding: 4rem 3rem; text-align: center; position: relative; overflow: hidden;
}
.cta-inner::before {
  content: ''; position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  width: 200px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent); border-radius: 2px;
}
.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.4rem;
}
.cta-eyebrow::before,
.cta-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}

.cta-title   { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; letter-spacing: -0.04em; line-height: 1.1; color: var(--text-primary); margin-bottom: 1rem; }
.cta-sub     { font-size: 1rem; color: var(--text-secondary); max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.65; }
.cta-btns    { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-roles   { display: flex; gap: 1rem; justify-content: center; margin-top: 3rem; flex-wrap: wrap; }

.cta-role-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border-color); border-radius: var(--radius-lg);
  padding: 1.4rem 2rem; text-align: left; min-width: 200px; flex: 1; max-width: 260px;
  transition: border-color 0.2s, background 0.2s; text-decoration: none; cursor: pointer;
}
.cta-role-card:hover { border-color: rgba(0,229,153,0.2); background: rgba(0,229,153,0.04); }
.cta-role-icon  { font-size: 1.4rem; margin-bottom: 0.7rem; display: block; }
.cta-role-title { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.3rem; }
.cta-role-desc  { font-size: 0.82rem; color: var(--text-secondary); }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { padding-top: 5rem; padding-bottom: 3rem; min-height: auto; gap: 2.5rem; }
  .escrow-flow { overflow-x: auto; }
  .ef-label, .ef-sub { font-size: 0.55rem; }
  .global-section { grid-template-columns: 1fr; gap: 2rem; }
  .globe-visual { height: 180px; }
  .how-it-works { height: 420vh; }
  .hiw-inner { padding: 0 24px; gap: 32px; }
  .hiw-progress-bar { display: none; }
  .hiw-title { font-size: 2rem; }
  .cta-roles { flex-direction: column; align-items: center; }
  .cta-role-card { max-width: 100%; }
}
@media (max-width: 640px) {
  .land-nav-inner { padding: 0 1.25rem; }
  .hero { padding: 3.5rem 1.25rem 3rem; }
  .features { padding: 4rem 1.25rem; }
  .ticker-header { padding: 0 1.25rem; }
  .cta-section { padding: 3rem 1.25rem 6rem; }
  .cta-inner { padding: 2.5rem 1.5rem; }
}
