﻿/* ═══════════════════════════════════════════════════
   SawixWallet — Landing Page Styles
   ═══════════════════════════════════════════════════ */

/* ── Base ───────────────────────────────────────────── */
.landing-body {
  overflow-x: hidden;
  background: var(--bg-base);
}

/* ── Nav ─────────────────────────────────────────────── */
.land-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8, 13, 23, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(99,135,190,0.1);
  transition: background 0.3s;
}
.land-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.land-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
  flex-shrink: 0;
}
.land-brand-icon {
  color: var(--accent);
  font-size: 1.4rem;
}
.land-nav-links {
  display: flex;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}
.land-nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.15s;
}
.land-nav-links a:hover { color: var(--text-primary); }
.land-nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.btn-ghost {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius);
  transition: color 0.15s;
}
.btn-ghost:hover { color: var(--text-primary); }
.btn-land-primary {
  background: var(--accent);
  color: #fff;
  font-size: 0.83rem;
  font-weight: 700;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: 0 2px 16px var(--accent-glow);
  transition: all 0.2s;
  display: inline-block;
}
.btn-land-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 24px var(--accent-glow);
}
.land-mobile-menu {
  display: none;
  background: none;
  color: var(--text-secondary);
  font-size: 1.2rem;
  margin-left: auto;
}

/* ── Hero ─────────────────────────────────────────────── */
.land-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

/* Ambient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,0.18) 0%, transparent 70%);
  top: -200px; left: -150px;
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(16,185,129,0.12) 0%, transparent 70%);
  top: 50%; right: -100px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  bottom: -50px; left: 40%;
  animation: orbFloat 12s ease-in-out infinite;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(20px, -30px); }
}

.hero-inner {
  max-width: 740px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.25);
  color: var(--accent-light);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.75rem;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.hero-headline {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}
.headline-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.btn-hero-primary {
  background: var(--accent);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px var(--accent-glow);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s;
}
.btn-hero-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px var(--accent-glow);
}
.btn-hero-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}
.btn-hero-ghost:hover {
  color: var(--text-primary);
  border-color: var(--border-bright);
  background: var(--bg-raised);
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.trust-sep { opacity: 0.4; }

/* ── Floating UI Cards ────────────────────────────────── */
.hero-card-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 340px;
  margin: 3rem auto 0;
}
.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  backdrop-filter: blur(20px);
  animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
}
.card-label { font-size: 0.8rem; font-weight: 700; color: var(--text-secondary); }
.card-date  { font-size: 0.72rem; color: var(--text-muted); }

.card-txn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}
.card-txn:last-of-type { border-bottom: none; }
.txn-icon {
  width: 32px; height: 32px;
  border-radius: var(--radius);
  display: grid; place-items: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.gave-icon { background: var(--gave-dim); color: var(--gave); }
.got-icon  { background: var(--got-dim);  color: var(--got); }
.txn-info  { flex: 1; }
.txn-name  { font-size: 0.82rem; font-weight: 600; display: block; }
.txn-desc  { font-size: 0.7rem; color: var(--text-muted); }
.txn-amount { font-family: var(--font-data); font-size: 0.83rem; font-weight: 700; }
.gave-amt    { color: var(--gave); }
.got-amt     { color: var(--got); }
.settled-amt { color: var(--text-muted); text-decoration: line-through; }

.card-footer {
  display: flex;
  gap: 1rem;
  padding-top: 0.85rem;
  margin-top: 0.25rem;
  border-top: 1px solid var(--border);
}
.cf-item { flex: 1; }
.cf-label { font-size: 0.68rem; color: var(--text-muted); display: block; }
.cf-val   { font-size: 0.9rem; font-weight: 700; font-family: var(--font-data); display: block; }
.gave-col { color: var(--gave); }
.got-col  { color: var(--got); }
.cf-divider { width: 1px; background: var(--border); }

/* Mini bar chart card */
.hero-card-2 {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  animation: cardFloat 8s ease-in-out infinite 1s;
}
.mini-label { font-size: 0.72rem; font-weight: 600; color: var(--text-muted); margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
.mini-bars  { display: flex; gap: 0.5rem; align-items: flex-end; height: 48px; margin-bottom: 0.75rem; }
.mini-bar-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.3rem; height: 100%; justify-content: flex-end; }
.mini-bar {
  width: 100%;
  background: var(--bg-raised);
  border-radius: 4px 4px 0 0;
  min-height: 6px;
  transition: height 0.3s;
}
.mini-bar.active { background: var(--accent); }
.mini-bar-wrap span { font-size: 0.62rem; color: var(--text-muted); }
.mini-total { font-family: var(--font-data); font-size: 0.9rem; font-weight: 700; color: var(--text-primary); }
.mini-total span { font-size: 0.72rem; color: var(--text-muted); font-family: var(--font-display); }

/* ── Stats Banner ─────────────────────────────────────── */
.stats-banner {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 2rem;
}
.stats-banner .stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 0;
}
.stat-num {
  display: block;
  font-family: var(--font-data);
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Sections ─────────────────────────────────────────── */
.land-section {
  padding: 5rem 2rem;
}
.land-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
  max-width: 600px;
}
.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent) 0%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Features Grid ────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(59,130,246,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.feature-card:hover::before { opacity: 1; }
.feat-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  font-size: 1rem;
  margin-bottom: 1rem;
  background: color-mix(in srgb, var(--fi-color) 12%, transparent);
  color: var(--fi-color);
  border: 1px solid color-mix(in srgb, var(--fi-color) 25%, transparent);
}
.feature-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.feature-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── Currency Grid ────────────────────────────────────── */
.currency-section { background: var(--bg-surface); }
.currency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
}
.currency-pill {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: border-color 0.2s;
}
.currency-pill:hover { border-color: var(--border-bright); }
.cur-flag   { font-size: 1.1rem; }
.cur-symbol { font-family: var(--font-data); font-size: 0.9rem; font-weight: 700; color: var(--accent-light); }
.cur-code   { font-size: 0.78rem; font-weight: 700; color: var(--text-primary); }
.cur-name   { font-size: 0.68rem; color: var(--text-muted); margin-left: auto; }

/* ── How It Works ─────────────────────────────────────── */
.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.how-step {
  flex: 1;
  min-width: 220px;
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: border-color 0.2s;
}
.how-step:hover { border-color: var(--accent); }
.step-num {
  width: 48px; height: 48px;
  background: var(--accent-dim);
  color: var(--accent-light);
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 auto 1rem;
  font-family: var(--font-data);
}
.how-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.how-step p  { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }
.how-arrow {
  color: var(--text-muted);
  font-size: 1rem;
  padding-top: 2.5rem;
  flex-shrink: 0;
}

/* ── CTA Section ─────────────────────────────────────── */
.land-cta {
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.cta-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.cta-orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(16,185,129,0.1) 0%, transparent 70%);
  bottom: 0; right: 20%;
}
.cta-inner { position: relative; z-index: 2; }
.land-cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.land-cta p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}
.btn-cta { padding: 1rem 2.5rem; font-size: 1rem; }
.cta-sub { font-size: 0.8rem; color: var(--text-muted); margin-top: 1.25rem; }
.cta-sub a { color: var(--accent-light); }

/* ── Footer ──────────────────────────────────────────── */
.land-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-tagline { color: var(--text-muted); font-size: 0.82rem; font-weight: 400; }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.footer-links a { font-size: 0.82rem; color: var(--text-secondary); }
.footer-links a:hover { color: var(--text-primary); }
.footer-copy { font-size: 0.75rem; color: var(--text-muted); }

/* ── Ecosystem Section ────────────────────────────────── */
.ecosystem-section {
  background: linear-gradient(180deg, var(--bg-base) 0%, rgba(30,41,59,0.4) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ecosystem-motto {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent-light);
  letter-spacing: -0.02em;
  margin: 0.2rem 0 2.5rem;
  font-style: italic;
}
.ecosystem-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}
.eco-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.eco-card:hover {
  border-color: rgba(99,102,241,0.35);
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.eco-card-current {
  border-color: rgba(99,102,241,0.5);
  background: rgba(99,102,241,0.06);
  box-shadow: 0 0 0 1px rgba(99,102,241,0.2), 0 4px 20px rgba(99,102,241,0.08);
}
.eco-card-soon {
  opacity: 0.72;
  filter: grayscale(15%);
}
.eco-card-soon:hover { opacity: 0.95; filter: grayscale(0); }
.eco-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.eco-info { flex: 1; min-width: 0; }
.eco-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.eco-here {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--accent-light);
  background: rgba(99,102,241,0.15);
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
  font-style: normal;
}
.eco-tagline {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.eco-domain {
  font-size: 0.72rem;
  color: var(--accent-light);
  margin-top: 0.2rem;
  opacity: 0.75;
}
.eco-domain-tbd { color: var(--text-muted); opacity: 0.6; }
.eco-badge {
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.eco-badge.live    { background: rgba(16,185,129,0.12); color: #10b981; }
.eco-badge.active  { background: rgba(99,102,241,0.15); color: #818cf8; }
.eco-badge.soon    { background: rgba(245,158,11,0.12); color: #f59e0b; }
.eco-badge.dev     { background: rgba(239,68,68,0.1);   color: #f87171; }
.ecosystem-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.eco-brand-tag {
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: var(--text-primary);
}
.eco-site-link {
  font-size: 0.82rem;
  color: var(--accent-light);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.15s;
}
.eco-site-link:hover { opacity: 1; }
.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 0.2rem;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
  .land-hero {
    flex-direction: column;
    padding-top: 5rem;
  }
  .stats-banner .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .land-nav-links { display: none; }
  .land-mobile-menu { display: block; }
  .land-nav-cta { display: none; }
  .hero-headline { font-size: 2.2rem; }
  .how-arrow { display: none; }
  .how-steps { flex-direction: column; }
}

@media (max-width: 600px) {
  .stats-banner .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-card-wrap { display: none; }
  .stat-num { font-size: 1.8rem; }
}

/* ═══════════════════════════════════════════════════════
   ULTRA PREMIUM — Scroll Animations & Visual Effects
   ═══════════════════════════════════════════════════════ */

/* 1 ── Scroll Progress Bar */
#scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 9999;
  background: linear-gradient(90deg, #3b82f6 0%, #818cf8 50%, #10b981 100%);
  transform-origin: left center;
  transform: scaleX(0);
  will-change: transform;
  pointer-events: none;
}

/* 2 ── Cursor Glow */
#cursor-glow {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  width: 650px; height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.045) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  will-change: left, top;
}

/* 3 ── Reveal Animation System */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal="up"]    { transform: translateY(48px); }
[data-reveal="left"]  { transform: translateX(-48px); }
[data-reveal="right"] { transform: translateX(48px); }
[data-reveal="scale"] { transform: scale(0.88); }
[data-reveal].revealed {
  opacity: 1 !important;
  transform: none !important;
}

/* Stagger delays */
[data-delay="1"] { transition-delay: 0.08s; }
[data-delay="2"] { transition-delay: 0.16s; }
[data-delay="3"] { transition-delay: 0.24s; }
[data-delay="4"] { transition-delay: 0.32s; }
[data-delay="5"] { transition-delay: 0.40s; }
[data-delay="6"] { transition-delay: 0.48s; }
[data-delay="7"] { transition-delay: 0.56s; }
[data-delay="8"] { transition-delay: 0.64s; }

/* 4 ── Animated Gradient Headline */
@keyframes gradientFlow {
  0%   { background-position: 0%   50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0%   50%; }
}
.headline-accent {
  background: linear-gradient(135deg, #3b82f6 0%, #818cf8 33%, #10b981 66%, #3b82f6 100%);
  background-size: 250% 250%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 5s ease infinite;
}

/* 5 ── CTA Button Shimmer */
.btn-hero-primary { position: relative; overflow: hidden; }
.btn-hero-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -120%; width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg);
  animation: btnShimmer 3.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes btnShimmer {
  0%        { left: -120%; }
  40%, 100% { left: 180%; }
}

/* 6 ── Section Eyebrow Line Draw */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
  flex-shrink: 0;
  border-radius: 2px;
}
.section-eyebrow.revealed::before { width: 26px; }

/* 7 ── Enhanced Feature Card Hover */
.feature-card:hover {
  box-shadow: 0 24px 64px rgba(0,0,0,0.45),
              0 0 0 1px rgba(59,130,246,0.18),
              inset 0 1px 0 rgba(255,255,255,0.04);
}

/* 8 ── How Step Enhanced Hover */
.how-step {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.how-step:hover {
  box-shadow: 0 0 0 1px var(--accent), 0 12px 40px rgba(59,130,246,0.12);
  transform: translateY(-5px);
}

/* 9 ── Stats divider lines */
.stat-item { position: relative; }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: var(--border);
}

/* 10 ── Currency pills stagger on section reveal */
.currency-section .currency-pill {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.42s ease, transform 0.42s ease;
}
.currency-section.revealed .currency-pill { opacity: 1; transform: none; }
.currency-section.revealed .currency-grid .currency-pill:nth-child(1)  { transition-delay: 0.02s; }
.currency-section.revealed .currency-grid .currency-pill:nth-child(2)  { transition-delay: 0.04s; }
.currency-section.revealed .currency-grid .currency-pill:nth-child(3)  { transition-delay: 0.06s; }
.currency-section.revealed .currency-grid .currency-pill:nth-child(4)  { transition-delay: 0.08s; }
.currency-section.revealed .currency-grid .currency-pill:nth-child(5)  { transition-delay: 0.10s; }
.currency-section.revealed .currency-grid .currency-pill:nth-child(6)  { transition-delay: 0.12s; }
.currency-section.revealed .currency-grid .currency-pill:nth-child(7)  { transition-delay: 0.14s; }
.currency-section.revealed .currency-grid .currency-pill:nth-child(8)  { transition-delay: 0.16s; }
.currency-section.revealed .currency-grid .currency-pill:nth-child(9)  { transition-delay: 0.18s; }
.currency-section.revealed .currency-grid .currency-pill:nth-child(10) { transition-delay: 0.20s; }
.currency-section.revealed .currency-grid .currency-pill:nth-child(11) { transition-delay: 0.22s; }
.currency-section.revealed .currency-grid .currency-pill:nth-child(12) { transition-delay: 0.24s; }
.currency-section.revealed .currency-grid .currency-pill:nth-child(13) { transition-delay: 0.26s; }
.currency-section.revealed .currency-grid .currency-pill:nth-child(14) { transition-delay: 0.28s; }
.currency-section.revealed .currency-grid .currency-pill:nth-child(15) { transition-delay: 0.30s; }
.currency-section.revealed .currency-grid .currency-pill:nth-child(16) { transition-delay: 0.32s; }

/* 11 ── Two-column hero on large screens */
@media (min-width: 1100px) {
  .land-hero {
    flex-direction: row;
    text-align: left;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    padding: 6rem 4rem;
  }
  .hero-inner  { max-width: 520px; flex-shrink: 0; }
  .hero-actions { justify-content: flex-start; }
  .hero-trust   { justify-content: flex-start; }
  .hero-badge   { align-self: flex-start; }
  .hero-card-wrap { margin: 0; flex-shrink: 0; }
}

/* 12 ── Reduced motion — disable all premium effects */
@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal].revealed {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
  .headline-accent { animation: none; }
  .btn-hero-primary::after { animation: none; }
  .hero-orb, .hero-card, .hero-card-2, .badge-dot { animation: none !important; }
  #cursor-glow { display: none; }
  .currency-section .currency-pill {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
  .section-eyebrow::before { width: 26px; transition: none; }
}
