@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg-primary: #020817;
  --bg-secondary: #0a0f1e;
  --bg-card: rgba(255,255,255,0.03);
  --accent: #3b82f6;
  --accent-2: #8b5cf6;
  --accent-glow: #06b6d4;
  --neon: #00f5ff;
  --gold: #f59e0b;
  --white: #ffffff;
  --text-muted: #94a3b8;
  --border: rgba(59,130,246,0.2);
  --border-bright: rgba(59,130,246,0.5);
  --radius: 16px;
  --container: 1100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--white);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

/* ── SOCIAL SIDEBAR ── */
.social-sidebar {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.social-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.25);
  color: #94a3b8;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  position: relative;
}

.social-icon svg {
  width: 22px;
  height: 22px;
  transition: transform 0.3s;
}

.social-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}

.social-icon:hover {
  border-color: transparent;
  color: #fff;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 30px rgba(59,130,246,0.5), 0 0 20px rgba(139,92,246,0.3);
}

.social-icon:hover::after { opacity: 1; }
.social-icon:hover svg { transform: scale(1.15); }

.social-line {
  width: 2px;
  height: 120px;
  background: linear-gradient(to bottom, rgba(59,130,246,0.6), transparent);
  margin-top: 4px;
  border-radius: 2px;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(2,8,23,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.2s;
}

.nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 0 80px;
  overflow: hidden;
  background: var(--bg-primary);
  width: 100%;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orb-float 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.18), transparent 70%);
  top: -100px; left: -150px;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139,92,246,0.15), transparent 70%);
  top: 20%; right: -150px;
  animation-delay: -3s;
}

.hero-orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(6,182,212,0.12), transparent 70%);
  bottom: 0; left: 30%;
  animation-delay: -5s;
}

@keyframes orb-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

#particles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(59,130,246,0.06) 0, rgba(59,130,246,0.06) 1px, transparent 1px, transparent 80px),
    repeating-linear-gradient(0deg, rgba(59,130,246,0.06) 0, rgba(59,130,246,0.06) 1px, transparent 1px, transparent 80px);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--neon);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--neon), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 40px;
}

/* ── STATS BAR ── */
.stats-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 48px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 32px;
  backdrop-filter: blur(10px);
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin: 0 32px;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* ── VIDEO FRAME ── */
.video-frame {
  width: min(100%, 820px);
  margin: 0 auto 36px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-bright);
  box-shadow: 0 0 60px rgba(59,130,246,0.2), 0 0 120px rgba(59,130,246,0.08);
  position: relative;
}

.video-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(59,130,246,0.4), rgba(139,92,246,0.4), rgba(6,182,212,0.4));
  z-index: -1;
}

.video-placeholder {
  aspect-ratio: 16/9;
  background: #050d1a;
  position: relative;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── CTA BUTTON ── */
.cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.glow-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 18px 48px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 30px rgba(37,99,235,0.4), 0 4px 20px rgba(0,0,0,0.3);
  min-width: 320px;
}

.glow-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s;
}

.glow-btn:hover::before { left: 100%; }

.glow-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(37,99,235,0.6), 0 8px 30px rgba(0,0,0,0.4);
}

.glow-btn span {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.glow-btn small {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}

.ref-link {
  font-size: 13px;
  color: var(--neon);
  word-break: break-all;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.ref-link:hover { opacity: 1; }

/* ── SECTION DIVIDER ── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-bright), transparent);
  margin: 0;
}

/* ── MARQUEE TICKER ── */
.ticker-wrap {
  background: rgba(59,130,246,0.06);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 60px;
  animation: ticker 25s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  flex-shrink: 0;
}

.ticker-item .up { color: #22c55e; }
.ticker-item .down { color: #ef4444; }
.ticker-price { color: #fff; font-weight: 700; margin-left: 4px; }

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── MAIN CONTENT ── */
.main-section {
  padding: 100px 0 0;
  background: var(--bg-secondary);
  position: relative;
}

.main-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── CRYPTO SECTION ── */
.crypto-section {
  padding-bottom: 80px;
}

.grad {
  background: linear-gradient(135deg, #f7931a, #627eea, #00aae4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.crypto-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.crypto-card {
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  background: rgba(255,255,255,0.03);
}

.crypto-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
  border-radius: 20px;
}

.btc-card { border-color: rgba(247,147,26,0.3); }
.btc-card::before { background: radial-gradient(circle at top left, #f7931a, transparent 70%); }
.eth-card { border-color: rgba(98,126,234,0.3); }
.eth-card::before { background: radial-gradient(circle at top left, #627eea, transparent 70%); }
.xrp-card { border-color: rgba(0,170,228,0.35); box-shadow: 0 0 30px rgba(0,170,228,0.08); }
.xrp-card::before { background: radial-gradient(circle at top left, #00aae4, transparent 70%); }

.crypto-card:hover {
  transform: translateY(-6px);
}
.btc-card:hover { box-shadow: 0 20px 50px rgba(247,147,26,0.15); }
.eth-card:hover { box-shadow: 0 20px 50px rgba(98,126,234,0.15); }
.xrp-card:hover { box-shadow: 0 20px 50px rgba(0,170,228,0.2); }

.crypto-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.crypto-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.crypto-logo svg { width: 100%; height: 100%; }

.crypto-name-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.crypto-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}

.crypto-ticker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 2px 8px;
  border-radius: 20px;
  width: fit-content;
}

.btc-ticker { background: rgba(247,147,26,0.15); color: #f7931a; }
.eth-ticker { background: rgba(98,126,234,0.15); color: #627eea; }
.xrp-ticker { background: rgba(0,170,228,0.15); color: #00aae4; }

.crypto-live-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(247,147,26,0.12);
  color: #f7931a;
  border: 1px solid rgba(247,147,26,0.25);
  white-space: nowrap;
}

.eth-badge { background: rgba(98,126,234,0.12); color: #627eea; border-color: rgba(98,126,234,0.25); }
.xrp-badge { background: rgba(0,170,228,0.12); color: #00aae4; border-color: rgba(0,170,228,0.3); }

.crypto-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.crypto-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.crypto-change {
  font-size: 12px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
}

.crypto-change.up { background: rgba(34,197,94,0.12); color: #22c55e; }
.crypto-change.down { background: rgba(239,68,68,0.12); color: #ef4444; }

.crypto-desc {
  font-size: 13.5px;
  line-height: 1.75;
  color: #94a3b8;
  margin-bottom: 20px;
}

.crypto-desc strong { color: #e2e8f0; }

.crypto-facts {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 16px;
}

.fact {
  flex: 1;
  text-align: center;
  padding: 0 8px;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.fact:last-child { border-right: none; }

.fact-val {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.fact-lbl {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* XRP Future */
.xrp-future {
  background: linear-gradient(135deg, rgba(0,170,228,0.06), rgba(59,130,246,0.06));
  border: 1px solid rgba(0,170,228,0.2);
  border-radius: 24px;
  padding: 56px 60px;
  position: relative;
  overflow: hidden;
  width: min(calc(100% - 80px), 1100px);
  margin: 0 auto 80px;
}

.xrp-future::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #00aae4, #3b82f6, #8b5cf6);
}

.xrp-future-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 36px;
}

.xrp-future-icon {
  font-size: 40px;
  line-height: 1;
  flex-shrink: 0;
}

.xrp-future-header h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.2;
}

.xrp-future-header p {
  font-size: 14px;
  color: var(--text-muted);
}

.xrp-reasons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.xrp-reason {
  display: flex;
  gap: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 20px;
  transition: border-color 0.3s;
}

.xrp-reason:hover { border-color: rgba(0,170,228,0.3); }

.reason-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: rgba(0,170,228,0.25);
  line-height: 1;
  flex-shrink: 0;
  min-width: 36px;
}

.reason-body h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.reason-body p {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.65;
}

.reason-body strong { color: #e2e8f0; }

.xrp-profit-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(0,170,228,0.1), rgba(59,130,246,0.1));
  border: 1px solid rgba(0,170,228,0.3);
  border-radius: 14px;
  padding: 24px;
}

.xrp-profit-icon { font-size: 32px; flex-shrink: 0; line-height: 1; }

.xrp-profit-box h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.xrp-profit-box p {
  font-size: 13.5px;
  color: #94a3b8;
  line-height: 1.7;
}

.xrp-profit-box strong { color: #00aae4; }

/* ── BANNER CARD ── */
.banner-card {
  background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(124,58,237,0.15));
  border: 1px solid var(--border-bright);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.banner-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(59,130,246,0.08), transparent 60%);
  pointer-events: none;
}

.banner-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #fff, var(--neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── INTRO GRID ── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.intro-copy h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: #fff;
}

.intro-copy h3 {
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
}

.intro-copy p {
  font-size: 15px;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 14px;
}

.intro-copy ul {
  padding-left: 0;
  list-style: none;
  margin: 16px 0;
}

.intro-copy ul li {
  font-size: 15px;
  line-height: 1.7;
  color: #cbd5e1;
  padding: 8px 0 8px 28px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.intro-copy ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.intro-copy strong { color: #fff; }

.intro-image-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-bright);
  box-shadow: 0 0 60px rgba(59,130,246,0.15);
  position: relative;
}

.intro-image-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,8,23,0.4), transparent 50%);
  pointer-events: none;
}

.intro-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
  display: block;
}

/* ── GLASS CARD ── */
.glass-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 80px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.glass-card p {
  font-size: 15px;
  line-height: 1.85;
  color: #cbd5e1;
  margin-bottom: 16px;
}

.glass-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.glass-card ul li {
  font-size: 15px;
  line-height: 1.7;
  color: #cbd5e1;
  padding: 10px 0 10px 32px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.glass-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}

.glass-card strong { color: #fff; }

.strong-line {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: #fff !important;
  background: rgba(59,130,246,0.1);
  border-left: 3px solid var(--accent);
  padding: 12px 16px !important;
  border-radius: 0 8px 8px 0;
  margin-top: 8px;
}

/* ── BENEFITS GRID ── */
.benefits { margin-bottom: 80px; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transition: transform 0.3s;
}

.benefit-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.benefit-card:hover::before { transform: scaleX(1); }

.benefit-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(139,92,246,0.2));
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.benefit-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── WHO SECTION ── */
.who-section {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 0;
}

.who-section h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

.who-section ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.who-section ul li {
  font-size: 15px;
  color: #cbd5e1;
  line-height: 1.6;
  padding: 14px 20px 14px 52px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 10px;
  position: relative;
}

.who-section ul li::before {
  content: '⚡';
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
}

/* ── FINAL SECTION ── */
.final-section {
  background: var(--bg-primary);
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

.final-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(59,130,246,0.08), transparent 70%);
  pointer-events: none;
}

.final-content { text-align: center; position: relative; z-index: 1; }

.final-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.final-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.final-section h2 .accent { color: var(--accent); }

.final-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.final-video {
  width: min(100%, 800px);
  margin: 0 auto 48px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-bright);
  box-shadow: 0 0 60px rgba(59,130,246,0.15);
}

.final-video .video-placeholder { aspect-ratio: 16/9; background: #050d1a; }

.final-btn {
  min-width: 360px;
  margin-bottom: 48px;
  background: linear-gradient(135deg, var(--gold), #d97706);
  box-shadow: 0 0 40px rgba(245,158,11,0.3);
}

.final-btn:hover {
  box-shadow: 0 0 60px rgba(245,158,11,0.5);
}

.final-graphic {
  width: min(100%, 480px);
  margin: 0 auto 48px;
  filter: drop-shadow(0 0 30px rgba(59,130,246,0.3));
}

.closing-box {
  width: min(100%, 760px);
  margin: 0 auto 60px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-bright);
  border-radius: 20px;
  padding: 40px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.closing-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--neon), var(--accent-2));
}

.closing-box p {
  font-size: 15px;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 12px;
}

.closing-box p:last-child { margin-bottom: 0; }
.closing-box strong { color: #fff; }

/* ── QR SECTION ── */
.qr-section {
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.qr-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}

.qr-card {
  position: relative;
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-bright);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 60px rgba(59,130,246,0.2), 0 0 120px rgba(59,130,246,0.06);
}

.qr-card canvas {
  display: block;
  border-radius: 8px;
}

.qr-glow {
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--accent), var(--neon), var(--accent-2), var(--accent));
  background-size: 300% 300%;
  animation: qr-border-spin 4s linear infinite;
  z-index: -1;
  opacity: 0.7;
}

@keyframes qr-border-spin {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.qr-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--neon);
  border-style: solid;
}
.qr-tl { top: 8px; left: 8px; border-width: 3px 0 0 3px; border-radius: 4px 0 0 0; }
.qr-tr { top: 8px; right: 8px; border-width: 3px 3px 0 0; border-radius: 0 4px 0 0; }
.qr-bl { bottom: 8px; left: 8px; border-width: 0 0 3px 3px; border-radius: 0 0 0 4px; }
.qr-br { bottom: 8px; right: 8px; border-width: 0 3px 3px 0; border-radius: 0 0 4px 0; }

.qr-user-id {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-bright);
  border-radius: 50px;
  padding: 10px 24px;
}

.qr-user-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}

.qr-user-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.qr-hint {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 320px;
  text-align: center;
  line-height: 1.6;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-divider {
  width: 1px;
  height: 24px;
  background: var(--border);
}

.footer a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer a:hover { color: var(--accent); }

.footer p {
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .footer { gap: 12px; }
  .footer-divider { display: none; }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */

/* Large screens 1280px+ — already default */

/* Tablet landscape 1100px */
@media (max-width: 1100px) {
  .social-sidebar { display: none; }
}

/* Tablet 900px */
@media (max-width: 900px) {
  .crypto-cards { grid-template-columns: 1fr; gap: 16px; }
  .xrp-reasons { grid-template-columns: 1fr; }
  .xrp-future { padding: 32px 28px; width: calc(100% - 40px); }
  .intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .intro-image-card img { min-height: auto; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { padding: 16px 20px; gap: 0; }
  .stat-divider { margin: 0 20px; }
  .stat-value { font-size: 22px; }
  .main-section { padding: 70px 0 0; }
  .final-section { padding: 70px 0 40px; }
  .banner-card { padding: 36px 28px; margin-bottom: 56px; }
  .intro-grid { margin-bottom: 56px; }
  .glass-card { margin-bottom: 56px; }
  .benefits { margin-bottom: 56px; }
  .section-header { margin-bottom: 40px; }
}

/* Mobile large 640px */
@media (max-width: 640px) {
  .container { width: calc(100% - 28px); }

  /* Fix overflow on mobile */
  main, .main-section, body { overflow-x: hidden; }

  /* Orbs — mobile pe chhote karo taake overflow na ho */
  .hero-orb-1 { width: 250px; height: 250px; left: -80px; }
  .hero-orb-2 { width: 200px; height: 200px; right: -80px; }
  .hero-orb-3 { width: 180px; height: 180px; }

  /* Crypto section */
  .crypto-cards { grid-template-columns: 1fr; gap: 14px; }
  .crypto-card { padding: 20px 16px; }
  .crypto-price { font-size: 18px; }
  .xrp-future { padding: 24px 20px; width: calc(100% - 28px); }
  .xrp-future-header { flex-direction: column; gap: 12px; }
  .xrp-future-icon { font-size: 30px; }
  .xrp-reasons { grid-template-columns: 1fr; gap: 12px; }
  .xrp-reason { padding: 16px; }
  .reason-num { font-size: 22px; }
  .xrp-profit-box { flex-direction: column; gap: 12px; padding: 18px; }

  /* Navbar */
  .nav-logo { font-size: 18px; }
  .nav-cta { padding: 8px 14px; font-size: 12px; border-radius: 6px; }

  /* Hero */
  .hero { padding: 70px 0 60px; min-height: auto; }
  .hero-content { padding: 0 4px; }
  .hero-eyebrow { font-size: 10px; padding: 5px 12px; margin-bottom: 18px; }
  .hero h1 { font-size: clamp(28px, 8vw, 42px); letter-spacing: -0.5px; margin-bottom: 16px; }
  .hero-subtitle { font-size: 14px; margin-bottom: 28px; }

  /* Stats bar — 2x2 grid on mobile */
  .stats-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 16px;
    width: 100%;
    margin-bottom: 28px;
  }
  .stat-divider { display: none; }
  .stat-item { padding: 12px 8px; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid var(--border); }
  .stat-value { font-size: 20px; }
  .stat-label { font-size: 10px; }

  /* Video */
  .video-frame { margin-bottom: 24px; border-radius: 10px; }

  /* CTA */
  .glow-btn { min-width: unset; width: 100%; padding: 16px 20px; border-radius: 10px; }
  .glow-btn span { font-size: 15px; }
  .glow-btn small { font-size: 10px; }
  .ref-link { font-size: 11px; text-align: center; }

  /* Main section */
  .main-section { padding: 50px 0 0; }
  .banner-card { padding: 28px 10px; margin-bottom: 16px; border-radius: 14px; }
  .banner-title { letter-spacing: 1px; }

  /* Intro grid */
  .intro-grid { gap: 24px; margin-bottom: 40px; }
  .intro-copy h2 { font-size: clamp(20px, 6vw, 28px); }
  .intro-copy h3 { font-size: 14px; }
  .intro-copy p, .intro-copy ul li { font-size: 14px; }

  /* Cards */
  .glass-card { padding: 20px 16px; margin-bottom: 32px; border-radius: 14px; }
  .glass-card p, .glass-card ul li { font-size: 14px; }
  .strong-line { font-size: 14px !important; }

  /* Benefits */
  .benefits { margin-bottom: 32px; }
  .benefits-grid { grid-template-columns: 1fr; gap: 12px; }
  .section-header { margin-bottom: 28px; }
  .section-header h2 { font-size: clamp(22px, 6vw, 32px); }
  .section-header p { font-size: 14px; }
  .benefit-card { padding: 20px 18px; border-radius: 12px; }
  .benefit-icon { width: 42px; height: 42px; font-size: 18px; }
  .benefit-card h4 { font-size: 14px; }
  .benefit-card p { font-size: 12px; }

  /* Who section */
  .who-section { padding: 20px 16px; border-radius: 14px; }
  .who-section h3 { font-size: 18px; margin-bottom: 16px; }
  .who-section ul li { font-size: 13px; padding: 10px 14px 10px 40px; }
  .who-section ul li::before { left: 14px; }

  /* Final section */
  .final-section { padding: 50px 0 40px; }
  .final-section h2 { font-size: clamp(24px, 7vw, 36px); letter-spacing: -0.5px; }
  .final-sub { font-size: 14px; margin-bottom: 28px; }
  .final-btn { min-width: unset; width: 100%; }
  .final-graphic { margin-bottom: 32px; }

  /* Closing box */
  .closing-box { padding: 24px 18px; border-radius: 14px; margin-bottom: 40px; }
  .closing-box p { font-size: 14px; }

  /* QR section */
  .qr-card { padding: 14px; }
  .qr-user-name { font-size: 16px; }
  .qr-hint { font-size: 12px; }

  /* Footer */
  .footer { padding: 24px 0; }
}

/* Mobile small 380px */
@media (max-width: 380px) {
  .hero h1 { font-size: 26px; }
  .nav-logo { font-size: 16px; }
  .nav-cta { padding: 7px 11px; font-size: 11px; }
  .stats-bar { padding: 12px; }
  .stat-value { font-size: 18px; }
  .glow-btn span { font-size: 13px; }
  .banner-title { font-size: 18px; letter-spacing: 0.5px; }
}

/* ── COMPARISON TABLE ── */
.comparison-section {
  margin-bottom: 60px;
}

.comparison-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.comparison-table thead tr {
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.comparison-table th {
  padding: 16px 18px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
  color: #94a3b8;
}

.comparison-table th:first-child { text-align: left; }

.comparison-table td {
  padding: 14px 18px;
  text-align: center;
  color: #94a3b8;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  vertical-align: middle;
}

.comparison-table tbody tr:last-child td { border-bottom: none; }

.comparison-table tbody tr:hover { background: rgba(255,255,255,0.02); }

.cat-label {
  text-align: left !important;
  font-weight: 600;
  color: #cbd5e1 !important;
  white-space: nowrap;
}

.btc-col { color: #f7931a !important; }
.eth-col { color: #627eea !important; }

.xrp-winner-col {
  background: rgba(0,170,228,0.06);
  color: #00aae4 !important;
  font-weight: 700;
}

.xrp-winner-col strong { color: #00f5ff; }

.comparison-table th.xrp-winner-col {
  color: #00aae4 !important;
  background: rgba(0,170,228,0.1);
  border-left: 1px solid rgba(0,170,228,0.2);
  border-right: 1px solid rgba(0,170,228,0.2);
}

.comparison-table td.xrp-winner-col {
  border-left: 1px solid rgba(0,170,228,0.15);
  border-right: 1px solid rgba(0,170,228,0.15);
}

.winner-crown {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #f59e0b;
  margin-top: 4px;
}

.comparison-verdict {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(0,170,228,0.08), rgba(59,130,246,0.08));
  border: 1px solid rgba(0,170,228,0.25);
  border-radius: 14px;
  padding: 24px;
}

.verdict-icon { font-size: 36px; flex-shrink: 0; line-height: 1; }

.comparison-verdict h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.comparison-verdict p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.7;
}

.comparison-verdict strong { color: #00aae4; }

/* ── XRP PREDICTION SECTION ── */
.xrp-prediction {
  margin-bottom: 60px;
  background: linear-gradient(135deg, rgba(0,170,228,0.04), rgba(59,130,246,0.04));
  border: 1px solid rgba(0,170,228,0.15);
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.xrp-prediction::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #00aae4, #3b82f6, #8b5cf6, #f59e0b);
}

.prediction-timeline {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 40px;
}

.pred-card {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pred-card:hover { transform: translateY(-4px); }

.pred-2025 { border-color: rgba(0,170,228,0.3); }
.pred-2025:hover { box-shadow: 0 16px 40px rgba(0,170,228,0.15); }
.pred-2026 { border-color: rgba(59,130,246,0.3); }
.pred-2026:hover { box-shadow: 0 16px 40px rgba(59,130,246,0.15); }
.pred-2030 { border-color: rgba(245,158,11,0.35); }
.pred-2030:hover { box-shadow: 0 16px 40px rgba(245,158,11,0.15); }

.pred-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: rgba(255,255,255,0.2);
  padding: 0 12px;
  flex-shrink: 0;
}

.pred-year {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #94a3b8;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pred-target {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, #00aae4, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
  line-height: 1;
}

.pred-2030 .pred-target {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  -webkit-background-clip: text;
  background-clip: text;
}

.pred-label {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.pred-reasons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pred-reasons li {
  font-size: 12.5px;
  color: #94a3b8;
  line-height: 1.5;
}

/* Technical Indicators */
.technical-indicators {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 28px;
}

.technical-indicators h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.indicators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.indicator {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 14px 16px;
}

.indicator.bullish { border-color: rgba(34,197,94,0.2); }

.ind-name {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748b;
  margin-bottom: 4px;
}

.ind-val {
  font-size: 13px;
  font-weight: 600;
  color: #22c55e;
  margin-bottom: 8px;
}

.ind-bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}

.ind-fill {
  height: 100%;
  background: linear-gradient(90deg, #22c55e, #00f5ff);
  border-radius: 2px;
}

.prediction-verdict {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(245,158,11,0.08), rgba(239,68,68,0.06));
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 14px;
  padding: 24px;
}

.pv-icon { font-size: 36px; flex-shrink: 0; line-height: 1; }

.prediction-verdict h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.prediction-verdict p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.7;
}

.prediction-verdict strong { color: #f59e0b; }

/* Responsive for new sections */
@media (max-width: 900px) {
  .prediction-timeline { flex-direction: column; gap: 16px; }
  .pred-arrow { transform: rotate(90deg); padding: 4px 0; }
  .indicators-grid { grid-template-columns: repeat(2, 1fr); }
  .xrp-prediction { padding: 32px 24px; }
}

@media (max-width: 640px) {
  .comparison-table { font-size: 12px; }
  .comparison-table th, .comparison-table td { padding: 10px 10px; }
  .indicators-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .xrp-prediction { padding: 24px 16px; }
  .pred-card { padding: 20px 16px; }
  .pred-target { font-size: 22px; }
  .comparison-verdict, .prediction-verdict { flex-direction: column; gap: 12px; }
}

/* ── CRYPTO CARD ALERT & WIN BADGE ── */
.crypto-alert {
  font-size: 12px;
  font-weight: 700;
  color: #f87171;
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.eth-alert {
  color: #fb923c;
  background: rgba(251,146,60,0.08);
  border-color: rgba(251,146,60,0.2);
}

.crypto-win-badge {
  font-size: 12px;
  font-weight: 700;
  color: #00f5ff;
  background: linear-gradient(135deg, rgba(0,170,228,0.12), rgba(34,197,94,0.08));
  border: 1px solid rgba(0,170,228,0.3);
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 16px;
  line-height: 1.5;
}

/* ── XRP FUTURE LOGO & TAG ── */
.xrp-future-logo {
  position: relative;
  flex-shrink: 0;
  width: 90px;
  height: 90px;
}

.xrp-future-logo svg {
  width: 90px;
  height: 90px;
  filter: drop-shadow(0 0 18px rgba(0,170,228,0.6));
  animation: xrp-pulse 3s ease-in-out infinite;
}

@keyframes xrp-pulse {
  0%, 100% { filter: drop-shadow(0 0 18px rgba(0,170,228,0.6)); transform: scale(1); }
  50% { filter: drop-shadow(0 0 32px rgba(0,212,255,0.9)); transform: scale(1.06); }
}

.xrp-logo-glow {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,170,228,0.25), transparent 70%);
  pointer-events: none;
  animation: xrp-pulse 3s ease-in-out infinite;
}

.xrp-future-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00aae4;
  background: rgba(0,170,228,0.1);
  border: 1px solid rgba(0,170,228,0.25);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 8px;
}

/* ── XRP EXPLAINER BLOCKS ── */
.xrp-explainer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.xrp-exp-block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(0,170,228,0.04);
  border: 1px solid rgba(0,170,228,0.12);
  border-radius: 14px;
  padding: 20px;
  transition: border-color 0.3s;
}

.xrp-exp-block:hover { border-color: rgba(0,170,228,0.3); }

.xrp-exp-icon {
  font-size: 26px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.xrp-exp-block h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.xrp-exp-block p {
  font-size: 13.5px;
  color: #94a3b8;
  line-height: 1.7;
}

.xrp-exp-block strong { color: #00d4ff; }

/* ── XRP PROFIT BOX LOGO ── */
.xrp-profit-logo {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
}

.xrp-profit-logo svg {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 0 12px rgba(0,170,228,0.5));
}

@media (max-width: 640px) {
  .xrp-future-logo { width: 64px; height: 64px; }
  .xrp-future-logo svg { width: 64px; height: 64px; }
  .xrp-profit-logo { width: 48px; height: 48px; }
  .xrp-profit-logo svg { width: 48px; height: 48px; }
  .xrp-exp-block { padding: 14px; }
  .xrp-exp-icon { font-size: 20px; }
}

/* ── XAB EARN SECTION ── */
.xab-earn-section {
  margin-bottom: 80px;
  background: linear-gradient(135deg, rgba(59,130,246,0.05), rgba(139,92,246,0.05));
  border: 1px solid rgba(59,130,246,0.15);
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.xab-earn-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #00aae4);
}

.earn-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 36px;
}

.earn-step {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.earn-step:hover {
  border-color: rgba(59,130,246,0.4);
  transform: translateY(-4px);
}

.earn-step-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
}

.earn-step-icon {
  font-size: 32px;
  margin: 8px 0 12px;
  line-height: 1;
}

.earn-step h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.earn-step p {
  font-size: 12.5px;
  color: #94a3b8;
  line-height: 1.65;
}

.earn-step strong { color: #e2e8f0; }

.earn-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: rgba(59,130,246,0.5);
  padding: 0 10px;
  flex-shrink: 0;
  margin-top: 60px;
}

.xab-earn-highlight {
  display: flex;
  gap: 32px;
  align-items: center;
  background: rgba(0,170,228,0.06);
  border: 1px solid rgba(0,170,228,0.2);
  border-radius: 16px;
  padding: 28px;
}

.earn-hl-left {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  flex: 1;
}

.earn-hl-icon { font-size: 30px; flex-shrink: 0; line-height: 1; margin-top: 2px; }

.earn-hl-left h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.earn-hl-left p {
  font-size: 13.5px;
  color: #94a3b8;
  line-height: 1.7;
}

.earn-hl-left strong { color: #00d4ff; }

.earn-hl-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  flex-shrink: 0;
}

.earn-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 16px;
  text-align: center;
  min-width: 90px;
}

.earn-stat-val {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, #00aae4, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.earn-stat-lbl {
  display: block;
  font-size: 10px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

@media (max-width: 900px) {
  .earn-steps { flex-direction: column; gap: 24px; }
  .earn-step-arrow { transform: rotate(90deg); margin: 0 auto; padding: 4px 0; }
  .xab-earn-highlight { flex-direction: column; gap: 20px; }
  .earn-hl-stats { grid-template-columns: repeat(4, 1fr); }
  .xab-earn-section { padding: 32px 24px; }
}

@media (max-width: 640px) {
  .xab-earn-section { padding: 20px 14px; margin-bottom: 32px; }
  .earn-step { padding: 20px 14px; }
  .earn-hl-stats { grid-template-columns: 1fr 1fr; }
  .earn-hl-left { flex-direction: column; gap: 10px; }
}

/* ── ARBITRAGE FLOW GRID ── */
.arb-flow-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.arb-flow-box {
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s;
}

.arb-flow-box:hover { transform: translateY(-4px); }

.arb-buy {
  background: rgba(0,212,255,0.07);
  border: 1px solid rgba(0,212,255,0.2);
}

.arb-bot {
  background: rgba(0,255,136,0.07);
  border: 1px solid rgba(0,255,136,0.25);
}

.arb-sell {
  background: rgba(255,215,0,0.07);
  border: 1px solid rgba(255,215,0,0.25);
}

.arb-flow-icon { font-size: 2rem; margin-bottom: 0.5rem; }

.arb-flow-label {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.arb-buy .arb-flow-label { color: #00d4ff; }
.arb-bot .arb-flow-label { color: #00ff88; }
.arb-sell .arb-flow-label { color: #ffd700; }

.arb-flow-price {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}

.arb-flow-badge {
  border-radius: 8px;
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.buy-badge { background: rgba(0,212,255,0.15); color: #00d4ff; }
.bot-badge { background: rgba(0,255,136,0.15); color: #00ff88; }
.sell-badge { background: rgba(255,215,0,0.15); color: #ffd700; }

.arb-flow-arrow {
  font-size: 2rem;
  color: #00d4ff;
  text-align: center;
  flex-shrink: 0;
}

.arb-result-bar {
  text-align: center;
  background: linear-gradient(135deg, rgba(0,255,136,0.1), rgba(0,212,255,0.1));
  border: 1px solid rgba(0,255,136,0.3);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  margin-bottom: 1rem;
}

.arb-result-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: #00ff88;
  margin-bottom: 0.4rem;
}

.arb-result-sub {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin: 0;
}

/* ── XAB BENEFITS GRID ── */
.xab-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 1rem;
}

.xab-benefit-item {
  border-radius: 16px;
  padding: 1.5rem;
  transition: transform 0.3s;
}

.xab-benefit-item:hover { transform: translateY(-4px); }

.xab-b-blue { background: rgba(0,212,255,0.06); border: 1px solid rgba(0,212,255,0.18); }
.xab-b-green { background: rgba(0,255,136,0.06); border: 1px solid rgba(0,255,136,0.18); }
.xab-b-gold { background: rgba(255,215,0,0.06); border: 1px solid rgba(255,215,0,0.18); }
.xab-b-purple { background: rgba(180,100,255,0.06); border: 1px solid rgba(180,100,255,0.18); }

.xab-b-icon { font-size: 1.8rem; margin-bottom: 0.6rem; }

.xab-benefit-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.xab-b-blue h4 { color: #00d4ff; }
.xab-b-green h4 { color: #00ff88; }
.xab-b-gold h4 { color: #ffd700; }
.xab-b-purple h4 { color: #b464ff; }

.xab-benefit-item p {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.6;
}

/* ── ARB CTA BOX ── */
.arb-cta-box {
  margin-top: 2.5rem;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(0,255,136,0.05));
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 20px;
}

.arb-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.arb-cta-left {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.arb-cta-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
}

.arb-cta-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.arb-cta-qr .qr-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00d4ff;
}

.arb-cta-qr .qr-card {
  padding: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0,212,255,0.15);
}

.arb-cta-qr .qr-user-id {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 30px;
  padding: 5px 14px;
}

.arb-cta-qr .qr-user-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748b;
}

.arb-cta-qr .qr-user-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(135deg, #00d4ff, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 900px) {
  .arb-cta-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .arb-cta-left { align-items: center; }
  .arb-cta-qr { flex-direction: row; justify-content: center; flex-wrap: wrap; gap: 16px; }
}

@media (max-width: 640px) {
  .arb-cta-box {
    padding: 1.2rem 1rem;
    border-radius: 14px;
    margin-top: 1.5rem;
  }
  .arb-cta-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  .arb-cta-left {
    align-items: center;
    gap: 1rem;
  }
  .arb-cta-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .arb-cta-qr {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .arb-cta-qr .qr-card {
    padding: 10px;
    border-radius: 12px;
  }
  .arb-cta-qr .qr-card img,
  .arb-cta-qr .qr-card canvas {
    width: 130px !important;
    height: 130px !important;
  }
  .arb-cta-qr .qr-user-id {
    padding: 4px 12px;
  }
  .arb-cta-qr .qr-user-name {
    font-size: 13px;
  }
  .arb-cta-qr .qr-label {
    font-size: 10px;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .arb-flow-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .arb-flow-arrow {
    transform: rotate(90deg);
    font-size: 1.5rem;
    text-align: center;
  }
  .xab-benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .xab-benefits-grid { grid-template-columns: 1fr; gap: 0.9rem; }
  .arb-result-text { font-size: 1.1rem; }
  .arb-flow-box { padding: 1.2rem; }
  .arb-cta-box { padding: 1.5rem 1rem; }
}

/* ── XRP FUTURE INTRO BANNER ── */
.xrp-future-intro {
  background: linear-gradient(135deg, #020f1f 0%, #041628 50%, #020f1f 100%);
  border-top: 2px solid rgba(0,212,255,0.4);
  border-bottom: 2px solid rgba(0,212,255,0.2);
  padding: 70px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.xrp-future-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,212,255,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.xrp-future-intro-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}

.xrp-fi-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #00d4ff;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 30px;
  padding: 5px 16px;
  margin-bottom: 20px;
}

.xrp-fi-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 18px;
}

.xrp-fi-grad {
  background: linear-gradient(135deg, #00d4ff, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.xrp-fi-sub {
  font-size: clamp(14px, 1.6vw, 17px);
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto 36px;
}

.xrp-fi-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.xrp-fi-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  background: rgba(0,212,255,0.06);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 30px;
  padding: 8px 16px;
}

.xrp-fi-stat svg { flex-shrink: 0; }

/* ── REASON ICON (replaces reason-num) ── */
.reason-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(0,170,228,0.08);
  border: 1px solid rgba(0,170,228,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── SVG ICON SIZING IN EARN STEPS & BENEFITS ── */
.earn-step-icon svg { display: block; margin: 8px auto 12px; }
.xab-b-icon svg { display: block; }
.xrp-exp-icon svg { display: block; }
.arb-flow-icon svg { display: block; margin: 0 auto 0.5rem; }

@media (max-width: 640px) {
  .xrp-future-intro { padding: 48px 20px; }
  .xrp-fi-stats { gap: 10px; }
  .xrp-fi-stat { font-size: 12px; padding: 6px 12px; }
  .xrp-fi-stat svg { width: 20px; height: 20px; }
}

/* ── LEADER SECTION ── */
.leader-section {
  margin-top: 48px;
  margin-bottom: 80px;
  width: min(calc(100% - 80px), 1100px);
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.leader-heading {
  text-align: center;
  margin-bottom: 48px;
}

.leader-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #00d4ff;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 30px;
  padding: 5px 16px;
  margin-bottom: 16px;
}

.leader-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 12px;
}

.leader-grad {
  background: linear-gradient(135deg, #00d4ff, #3b82f6, #8b5cf6);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gold-shine 3s linear infinite;
}

@keyframes gold-shine {
  0% { background-position: 0%; }
  100% { background-position: 200%; }
}

.leader-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
}

/* Leader Card */
.leader-card {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: stretch;
  background: linear-gradient(135deg, rgba(0,212,255,0.05), rgba(59,130,246,0.05), rgba(139,92,246,0.04));
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 28px;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  margin-bottom: 48px;
  box-sizing: border-box;
  width: 100%;
}

.leader-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #00d4ff, #3b82f6, #8b5cf6, #00d4ff);
  background-size: 200%;
  animation: gold-shine 3s linear infinite;
}

/* Image */
.leader-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  min-height: 400px;
}

.leader-img-glow {
  position: absolute;
  inset: -20px;
  border-radius: 30px;
  background: radial-gradient(circle, rgba(0,212,255,0.2), transparent 70%);
  pointer-events: none;
  animation: orb-float 4s ease-in-out infinite;
}

.leader-img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  display: block;
  border: 2px solid rgba(0,212,255,0.35);
  box-shadow: 0 20px 60px rgba(0,212,255,0.15), 0 0 0 1px rgba(0,212,255,0.1);
  position: relative;
  z-index: 1;
  object-fit: cover;
  object-position: top;
}

.leader-img-badge {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #00d4ff, #3b82f6);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 30px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,212,255,0.5);
}

/* Content */
.leader-name-row {
  margin-bottom: 20px;
}

.leader-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

.leader-role {
  font-size: 13px;
  font-weight: 600;
  color: #00d4ff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.leader-bio {
  font-size: 15px;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 16px;
}

.leader-bio strong { color: #fff; }

.leader-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 24px 0;
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
}

.leader-stat { text-align: center; }

.ls-val {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, #00d4ff, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.ls-lbl {
  display: block;
  font-size: 10px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Social Icons */
.leader-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ls-follow {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ls-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(255,255,255,0.1);
}

.ls-icon:hover { transform: translateY(-3px); }

.ls-fb { background: #1877f2; color: #fff; }
.ls-fb:hover { box-shadow: 0 8px 24px rgba(24,119,242,0.5); }

.ls-ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.ls-ig:hover { box-shadow: 0 8px 24px rgba(220,39,67,0.5); }

.ls-li { background: #0077b5; color: #fff; }
.ls-li:hover { box-shadow: 0 8px 24px rgba(0,119,181,0.5); }

.ls-tw { background: #1da1f2; color: #fff; }
.ls-tw:hover { box-shadow: 0 8px 24px rgba(29,161,242,0.5); }

.ls-tt { background: #000000; color: #fff; }
.ls-tt:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.5); }

.ls-yt { background: #ff0000; color: #fff; }
.ls-yt:hover { box-shadow: 0 8px 24px rgba(255,0,0,0.5); }

/* ── TEAM INDIA SECTION ── */
.team-india-section {
  background: linear-gradient(135deg, rgba(255,153,51,0.06), rgba(19,136,8,0.04), rgba(0,0,128,0.06));
  border: 1px solid rgba(255,153,51,0.2);
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.team-india-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF9933 33%, #fff 33% 66%, #138808 66%);
}

.team-india-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}

.team-india-flag {
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(255,153,51,0.4));
}

.team-india-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.team-india-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}

.team-india-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.ti-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 24px 18px;
  transition: border-color 0.3s, transform 0.3s;
}

.ti-card:hover {
  border-color: rgba(255,153,51,0.3);
  transform: translateY(-4px);
}

.ti-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.ti-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.ti-card p {
  font-size: 12.5px;
  color: #94a3b8;
  line-height: 1.65;
}

.team-cta {
  background: linear-gradient(135deg, rgba(0,212,255,0.08) 0%, rgba(59,130,246,0.08) 50%, rgba(139,92,246,0.06) 100%);
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.team-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #00d4ff, #3b82f6, #8b5cf6);
}

.team-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.team-cta-text h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.team-cta-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  line-height: 1.75;
}

.team-cta-text strong { color: #00d4ff; }

.team-cta-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.team-cta-qr .qr-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00d4ff;
}

.team-cta-qr .qr-card {
  padding: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0,212,255,0.15);
}

.team-cta-qr .qr-user-id {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 30px;
  padding: 6px 16px;
}

.team-cta-qr .qr-user-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #64748b;
}

.team-cta-qr .qr-user-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  background: linear-gradient(135deg, #00d4ff, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 900px) {
  .team-cta-inner { grid-template-columns: 1fr; gap: 36px; }
  .team-cta-qr { flex-direction: row; justify-content: center; flex-wrap: wrap; }
  .team-cta { padding: 32px 24px; }
}

@media (max-width: 640px) {
  .team-cta-inner { gap: 28px; }
  .team-cta-qr { flex-direction: column; }
  .team-cta-text { text-align: center; }
  .team-cta { padding: 24px 16px; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .leader-card { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; }
  .leader-img-wrap { max-width: 380px; margin: 0 auto; min-height: auto; }
  .leader-stats { grid-template-columns: repeat(2, 1fr); }
  .team-india-grid { grid-template-columns: repeat(2, 1fr); }
  .team-india-section { padding: 32px 24px; }
  .leader-section { width: calc(100% - 40px); margin-top: 48px; }
}

@media (max-width: 640px) {
  .leader-section { width: calc(100% - 28px); margin-top: 32px; margin-bottom: 40px; overflow: hidden; }
  .leader-heading { margin-bottom: 20px; padding: 0 4px; }
  .leader-title { font-size: clamp(22px, 6vw, 32px); }

  .leader-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 18px 14px;
    border-radius: 16px;
    margin-bottom: 24px;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
  }

  .leader-content { width: 100%; overflow: hidden; }
  .leader-name-row { margin-bottom: 14px; }
  .leader-name { font-size: 22px; word-break: break-word; }
  .leader-role { font-size: 11px; }

  .leader-bio {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 12px;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .leader-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 12px;
    margin: 16px 0;
  }
  .ls-val { font-size: 16px; }
  .ls-lbl { font-size: 9px; }

  .leader-socials {
    gap: 8px;
    flex-wrap: wrap;
    padding-bottom: 4px;
    overflow: hidden;
  }
  .ls-follow {
    width: 100%;
    font-size: 11px;
    margin-bottom: 4px;
  }
  .ls-icon { width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0; }

  .leader-img-wrap {
    max-width: 100%;
    width: 100%;
    min-height: 220px;
    border-radius: 14px;
    overflow: hidden;
  }
  .leader-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: top;
    border-radius: 14px;
  }
  .leader-img-badge {
    font-size: 11px;
    padding: 5px 12px;
    bottom: 10px;
  }

  .team-india-grid { grid-template-columns: 1fr; gap: 10px; }
  .team-india-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .team-india-section { padding: 18px 14px; }
  .ti-card { padding: 16px 14px; }
  .ti-card h4 { font-size: 13px; }
  .ti-card p { font-size: 12px; }
}

/* ── FINAL VIDEOS SECTION ── */
.final-videos-section {
  width: min(calc(100% - 80px), 1100px);
  margin: 0 auto 80px;
  background: linear-gradient(135deg, rgba(37,99,235,0.06), rgba(124,58,237,0.05));
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 28px;
  padding: 60px 56px;
  position: relative;
  overflow: hidden;
}

.final-videos-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #00d4ff, #3b82f6);
  background-size: 200%;
  animation: gold-shine 3s linear infinite;
}

/* Header */
.fv-header {
  text-align: center;
  margin-bottom: 48px;
}

.fv-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: #fff;
  margin: 16px 0 12px;
}

.fv-accent {
  background: linear-gradient(135deg, #00d4ff, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fv-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Guidelines */
.fv-guidelines {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}

.fv-guide-step {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 24px 20px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.fv-guide-step:hover {
  border-color: rgba(59,130,246,0.35);
  transform: translateY(-4px);
}

.fv-step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.5;
}

.fv-step-body h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.fv-step-body p {
  font-size: 12.5px;
  color: #94a3b8;
  line-height: 1.65;
}

/* Videos Header */
.fv-videos-header {
  text-align: center;
  margin-bottom: 28px;
}

.fv-videos-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: #fff;
  margin: 10px 0 8px;
}

.fv-videos-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}

/* Video Grid */
.fv-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.fv-video-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.fv-video-card:hover {
  border-color: rgba(59,130,246,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(59,130,246,0.12);
}

.featured-video {
  grid-column: span 2;
  border-color: rgba(0,212,255,0.25);
  background: rgba(0,212,255,0.04);
}

.featured-video:hover {
  border-color: rgba(0,212,255,0.5);
  box-shadow: 0 20px 50px rgba(0,212,255,0.15);
}

.fv-video-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(245,158,11,0.9);
  color: #000;
}

.fv-badge-blue { background: rgba(59,130,246,0.9); color: #fff; }
.fv-badge-green { background: rgba(34,197,94,0.9); color: #000; }
.fv-badge-purple { background: rgba(139,92,246,0.9); color: #fff; }

.fv-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #050d1a;
}

.fv-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.fv-video-info {
  padding: 18px 20px 20px;
}

.fv-video-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.fv-video-info p {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.6;
}

/* CTA */
.fv-cta {
  text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
  .final-videos-section { width: calc(100% - 40px); padding: 40px 28px; }
  .fv-guidelines { grid-template-columns: repeat(2, 1fr); }
  .fv-video-grid { grid-template-columns: 1fr; }
  .featured-video { grid-column: span 1; }
}

@media (max-width: 640px) {
  .final-videos-section { width: calc(100% - 28px); padding: 28px 16px; margin-bottom: 40px; }
  .fv-guidelines { grid-template-columns: 1fr; gap: 12px; }
  .fv-guide-step { padding: 18px 14px; }
  .fv-step-num { font-size: 28px; }
  .fv-title { font-size: clamp(22px, 6vw, 32px); }

  /* XRP future intro & section mobile fix */
  .xrp-future-intro { padding: 36px 16px; }
  .xrp-future { width: calc(100% - 28px); padding: 20px 14px; margin-bottom: 40px; }
  .xrp-future-header { flex-direction: column; gap: 12px; }
  .xrp-reasons { grid-template-columns: 1fr; gap: 10px; }
  .xrp-profit-box { flex-direction: column; gap: 12px; padding: 16px; }

  /* Comparison table mobile */
  .comparison-section { margin-bottom: 32px; }
  .comparison-verdict { flex-direction: column; gap: 10px; padding: 16px; }

  /* XRP prediction mobile */
  .xrp-prediction { padding: 20px 14px; margin-bottom: 32px; }
  .prediction-timeline { flex-direction: column; gap: 12px; }
  .pred-arrow { transform: rotate(90deg); text-align: center; }
  .indicators-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .prediction-verdict { flex-direction: column; gap: 10px; padding: 16px; }

  /* XAB earn section mobile */
  .xab-earn-section { padding: 20px 14px; margin-bottom: 32px; }
  .earn-steps { flex-direction: column; gap: 20px; }
  .earn-step-arrow { transform: rotate(90deg); margin: 0 auto; }
  .xab-earn-highlight { flex-direction: column; gap: 16px; padding: 16px; }
  .earn-hl-stats { grid-template-columns: 1fr 1fr; }
  .earn-hl-left { flex-direction: column; gap: 8px; }
  .xab-benefits-grid { grid-template-columns: 1fr; gap: 10px; }
  .arb-flow-grid { grid-template-columns: 1fr; gap: 10px; }
  .arb-flow-arrow { transform: rotate(90deg); text-align: center; }
}
