/* ═══════════════════════════════════════════
   CRYPTO SECTION — HORIZONTAL STRIP REDESIGN
   ═══════════════════════════════════════════ */

/* Override old crypto-section box */
.crypto-section {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 80px 0 40px !important;
  margin-bottom: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
}
.crypto-section::before { display: none !important; }

/* Label row */
.cs-label-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.cs-label-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #00d4ff;
  white-space: nowrap;
}
.cs-label-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(0,212,255,0.4), transparent);
}

/* Main title */
.cs-main-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 14px;
}
.cs-grad {
  background: linear-gradient(135deg, #f7931a, #627eea, #00aae4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cs-main-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 56px;
  max-width: 520px;
}

/* Strip */
.cs-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 36px 0;
  position: relative;
}
.cs-strip:hover .cs-coin-name { color: #00d4ff; transition: color 0.3s; }

/* Left */
.cs-strip-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cs-coin-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.cs-coin-logo svg { width: 100%; height: 100%; display: block; }

.cs-coin-ticker {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 3px 10px;
  border-radius: 20px;
  width: fit-content;
  margin-bottom: 6px;
}
.cs-btc-ticker { background: rgba(247,147,26,0.15); color: #f7931a; border: 1px solid rgba(247,147,26,0.3); }
.cs-eth-ticker { background: rgba(98,126,234,0.15); color: #627eea; border: 1px solid rgba(98,126,234,0.3); }
.cs-xrp-ticker { background: rgba(0,170,228,0.15); color: #00aae4; border: 1px solid rgba(0,170,228,0.3); }

.cs-coin-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 4px;
  line-height: 1;
}
.cs-coin-role {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

/* Center — empty for clean look */
.cs-strip-center { display: none; }

/* Right */
.cs-strip-right {
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.cs-strip-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}
.cs-btc-badge { background: rgba(247,147,26,0.12); color: #f7931a; border: 1px solid rgba(247,147,26,0.25); }
.cs-eth-badge { background: rgba(98,126,234,0.12); color: #627eea; border: 1px solid rgba(98,126,234,0.25); }
.cs-xrp-badge { background: rgba(0,170,228,0.12); color: #00aae4; border: 1px solid rgba(0,170,228,0.3); }

/* Left accent line per strip */
.cs-strip-btc { border-left: 3px solid rgba(247,147,26,0.5); padding-left: 28px; }
.cs-strip-eth { border-left: 3px solid rgba(98,126,234,0.5); padding-left: 28px; }
.cs-strip-xrp { border-left: 3px solid rgba(0,170,228,0.6); padding-left: 28px; }

/* Divider */
.cs-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .cs-strip {
    grid-template-columns: 1fr auto;
    gap: 20px;
    padding: 24px 0 24px 20px;
  }
  .cs-main-title { font-size: clamp(28px, 6vw, 44px); }
}

@media (max-width: 640px) {
  .crypto-section { padding: 48px 0 24px !important; }
  .cs-main-title { font-size: clamp(24px, 7vw, 36px); letter-spacing: -0.5px; }
  .cs-main-sub { font-size: 14px; margin-bottom: 36px; }
  .cs-strip { padding: 18px 0 18px 14px; gap: 14px; }
  .cs-coin-logo { width: 48px; height: 48px; }
  .cs-coin-name { font-size: 18px; }
  .cs-strip-badge { font-size: 10px; padding: 4px 10px; }
}

/* ═══════════════════════════════════════════
   XRP PREDICTION — TIMELINE ROWS REDESIGN
   ═══════════════════════════════════════════ */

.xrp-prediction {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 80px 0 40px !important;
  border-radius: 0 !important;
  overflow: visible !important;
}
.xrp-prediction::before { display: none !important; }

/* Label row */
.pt-label-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.pt-label-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #a78bfa;
  white-space: nowrap;
}
.pt-label-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(139,92,246,0.4), transparent);
}

.pt-main-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 14px;
}
.pt-grad {
  background: linear-gradient(135deg, #00aae4, #8b5cf6, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pt-main-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 56px;
  max-width: 560px;
}

/* Timeline row */
.pt-row {
  display: grid;
  grid-template-columns: 100px 3px 1fr;
  gap: 0 32px;
  align-items: start;
  padding: 36px 0;
  position: relative;
}

/* Year */
.pt-row-year {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  padding-top: 4px;
  text-align: right;
}
.pt-row-blue .pt-row-year  { color: rgba(0,212,255,0.25); }
.pt-row-purple .pt-row-year { color: rgba(139,92,246,0.35); }
.pt-row-gold .pt-row-year  { color: rgba(245,158,11,0.25); }

/* Vertical divider line */
.pt-row-divider {
  width: 3px;
  align-self: stretch;
  min-height: 100%;
  border-radius: 3px;
}
.pt-row-blue .pt-row-divider  { background: linear-gradient(to bottom, #00d4ff, rgba(0,212,255,0.1)); }
.pt-row-purple .pt-row-divider { background: linear-gradient(to bottom, #8b5cf6, rgba(139,92,246,0.1)); }
.pt-row-gold .pt-row-divider  { background: linear-gradient(to bottom, #f59e0b, rgba(245,158,11,0.1)); }

/* Content */
.pt-row-content { padding-left: 8px; }

.pt-row-top {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.pt-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 30px;
}
.pt-badge-blue   { background: rgba(0,212,255,0.1);   color: #00d4ff;  border: 1px solid rgba(0,212,255,0.3); }
.pt-badge-purple { background: rgba(139,92,246,0.12); color: #a78bfa;  border: 1px solid rgba(139,92,246,0.3); }
.pt-badge-gold   { background: rgba(245,158,11,0.1);  color: #f59e0b;  border: 1px solid rgba(245,158,11,0.3); }

.pt-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
}
.pt-price-blue   { background: linear-gradient(135deg, #00aae4, #00d4ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.pt-price-purple { background: linear-gradient(135deg, #60a5fa, #a78bfa);  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.pt-price-gold   { background: linear-gradient(135deg, #f59e0b, #ef4444);  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.pt-target-lbl {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.pt-best-pick {
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
  margin-left: auto;
}

/* Reasons list */
.pt-reasons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pt-reasons li {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  padding: 7px 14px;
  border-radius: 30px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.pt-row-blue .pt-reasons li   { border-color: rgba(0,212,255,0.15); }
.pt-row-purple .pt-reasons li { border-color: rgba(139,92,246,0.2); }
.pt-row-gold .pt-reasons li   { border-color: rgba(245,158,11,0.15); }

/* Featured row highlight */
.pt-row-featured {
  background: rgba(99,102,241,0.04);
  border-radius: 16px;
  padding: 36px 24px;
  margin: 0 -24px;
}

/* Divider between rows */
.pt-row + .pt-row {
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* Verdict */
.pt-verdict {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-top: 48px;
  padding: 28px 32px;
  background: rgba(59,130,246,0.06);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 16px;
  border-left: 4px solid #3b82f6;
}
.pt-verdict-icon { font-size: 32px; flex-shrink: 0; line-height: 1; }
.pt-verdict h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.pt-verdict p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin: 0;
}
.pt-verdict strong { color: #00d4ff; }

/* Responsive */
@media (max-width: 768px) {
  .pt-row { grid-template-columns: 70px 3px 1fr; gap: 0 20px; }
  .pt-row-year { font-size: 36px; }
  .pt-price { font-size: clamp(24px, 5vw, 36px); }
  .pt-row-featured { margin: 0 -14px; padding: 28px 14px; }
}

@media (max-width: 640px) {
  .xrp-prediction { padding: 48px 0 24px !important; }
  .pt-main-title { font-size: clamp(24px, 7vw, 36px); letter-spacing: -0.5px; }
  .pt-main-sub { font-size: 14px; margin-bottom: 36px; }
  .pt-row { grid-template-columns: 56px 2px 1fr; gap: 0 14px; padding: 24px 0; }
  .pt-row-year { font-size: 28px; }
  .pt-price { font-size: clamp(22px, 6vw, 30px); }
  .pt-row-top { gap: 10px; }
  .pt-best-pick { margin-left: 0; }
  .pt-reasons li { font-size: 12px; padding: 6px 10px; }
  .pt-verdict { flex-direction: column; gap: 12px; padding: 20px; }
  .pt-row-featured { margin: 0 -10px; padding: 24px 10px; }
}

/* ═══════════════════════════════════════════
   ARBITRAGE SECTION — SPLIT LAYOUT REDESIGN
   ═══════════════════════════════════════════ */

/* Override old section box */
.xab-earn-section {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 0 40px !important;
  border-radius: 0 !important;
  overflow: visible !important;
}
.xab-earn-section::before { display: none !important; }

/* Banner */
.arb-banner {
  padding: 56px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 72px;
}
.arb-banner-inner { max-width: 640px; }
.arb-banner-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #00d4ff;
  margin-bottom: 16px;
}
.arb-banner-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 14px;
}
.arb-banner-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

/* Label row */
.arb-label-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
.arb-label-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #00d4ff;
  white-space: nowrap;
}
.arb-label-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(0,212,255,0.4), transparent);
}

.arb-main-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 12px;
}
.arb-grad {
  background: linear-gradient(135deg, #00d4ff, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.arb-main-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 52px;
  max-width: 520px;
}

/* Split layout */
.arb-split {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
  margin-bottom: 56px;
}

/* Left: explanation */
.arb-explain-text {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.arb-explain-text strong { color: #e2e8f0; }

/* Right: flow */
.arb-split-right {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: sticky;
  top: 40px;
}

.arb-flow-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}
.arb-step-buy  { border-color: rgba(0,212,255,0.25); }
.arb-step-bot  { border-color: rgba(34,197,94,0.25); }
.arb-step-sell { border-color: rgba(255,215,0,0.25); }

.arb-flow-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.arb-step-buy  .arb-flow-step-icon { background: rgba(0,212,255,0.1); }
.arb-step-bot  .arb-flow-step-icon { background: rgba(34,197,94,0.1); }
.arb-step-sell .arb-flow-step-icon { background: rgba(255,215,0,0.1); }

.arb-flow-step-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}
.arb-flow-step-label {
  font-size: 14px;
  font-weight: 700;
  color: #e2e8f0;
}
.arb-flow-step-price {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.arb-flow-step-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.arb-badge-buy  { background: rgba(0,212,255,0.1);  color: #00d4ff;  border: 1px solid rgba(0,212,255,0.3); }
.arb-badge-bot  { background: rgba(34,197,94,0.1);  color: #22c55e;  border: 1px solid rgba(34,197,94,0.3); }
.arb-badge-sell { background: rgba(255,215,0,0.1);  color: #ffd700;  border: 1px solid rgba(255,215,0,0.3); }

/* Connector */
.arb-flow-connector {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  height: 36px;
}
.arb-flow-connector-line {
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  margin-left: 21px;
  flex-shrink: 0;
}
.arb-flow-connector-label {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-left: 8px;
}

/* Result */
.arb-flow-result {
  margin-top: 16px;
  padding: 14px 20px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #22c55e;
  text-align: center;
}

/* Stat bar */
.arb-stat-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.arb-stat-item { text-align: center; flex: 1; }
.arb-stat-val {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #00d4ff, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.arb-stat-lbl {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.arb-stat-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .arb-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .arb-split-right { position: static; }
}

@media (max-width: 640px) {
  .arb-banner { padding: 40px 0 36px; margin-bottom: 48px; }
  .arb-banner-title { font-size: clamp(26px, 7vw, 40px); }
  .arb-main-title { font-size: clamp(22px, 6vw, 34px); }
  .arb-main-sub { font-size: 14px; margin-bottom: 36px; }
  .arb-split { gap: 32px; }
  .arb-explain-text { font-size: 14px; }
  .arb-flow-step { padding: 14px 16px; gap: 12px; }
  .arb-flow-step-icon { width: 38px; height: 38px; }
  .arb-stat-bar { flex-wrap: wrap; gap: 0; }
  .arb-stat-item { flex: 0 0 50%; padding: 16px 0; }
  .arb-stat-item:nth-child(1), .arb-stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.08); }
  .arb-stat-item:nth-child(1), .arb-stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .arb-stat-div { display: none; }
  .arb-stat-val { font-size: 26px; }
}

/* ═══════════════════════════════════════════
   ARBITRAGE SECTION — FRESH ATTRACTIVE DESIGN
   ═══════════════════════════════════════════ */

/* Top split: heading left, text right */
.arb3-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 60px;
}
.arb3-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #00d4ff;
  margin-bottom: 20px;
  text-align: center;
}
.arb3-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 16px;
  text-align: center;
}
.arb3-grad {
  background: linear-gradient(135deg, #00d4ff, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.arb3-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}
.arb3-top-right p {
  font-size: 14.5px;
  line-height: 1.85;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.arb3-top-right p:last-child { margin-bottom: 0; }
.arb3-top-right strong { color: #e2e8f0; }

/* Flow — horizontal 4 nodes */
.arb3-flow {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
  overflow-x: auto;
  padding-bottom: 8px;
}

/* Node */
.arb3-node {
  flex: 1;
  min-width: 140px;
  padding: 24px 20px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  transition: transform 0.3s;
}
.arb3-node:hover { transform: translateY(-6px); }

.arb3-node-buy  { border-color: rgba(0,212,255,0.3);  background: rgba(0,212,255,0.05); }
.arb3-node-bot  { border-color: rgba(0,255,136,0.3);  background: rgba(0,255,136,0.05); }
.arb3-node-sell { border-color: rgba(255,215,0,0.3);  background: rgba(255,215,0,0.05); }
.arb3-node-profit { border-color: rgba(34,197,94,0.4); background: rgba(34,197,94,0.07); }

.arb3-node-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}
.arb3-node-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}
.arb3-badge-buy    { background: rgba(0,212,255,0.15);  color: #00d4ff;  border: 1px solid rgba(0,212,255,0.3); }
.arb3-badge-bot    { background: rgba(0,255,136,0.12);  color: #00ff88;  border: 1px solid rgba(0,255,136,0.3); }
.arb3-badge-sell   { background: rgba(255,215,0,0.12);  color: #ffd700;  border: 1px solid rgba(255,215,0,0.3); }
.arb3-badge-profit { background: rgba(34,197,94,0.12);  color: #22c55e;  border: 1px solid rgba(34,197,94,0.3); }

.arb3-node-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.arb3-node-price {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* Arrow between nodes */
.arb3-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  flex-shrink: 0;
}
.arb3-arrow-track {
  width: 48px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.arb3-arrow-dot {
  position: absolute;
  top: -3px;
  left: -8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00d4ff;
  animation: arb-dot-move 1.8s linear infinite;
}
@keyframes arb-dot-move {
  0%   { left: -8px; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: 48px; opacity: 0; }
}
.arb3-arrow span {
  font-size: 9px;
  font-weight: 600;
  color: rgba(255,255,255,0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* Result strip */
.arb3-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 28px;
  background: rgba(34,197,94,0.07);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 14px;
  flex-wrap: wrap;
}
.arb3-result > span:first-child {
  font-size: 15px;
  font-weight: 700;
  color: #22c55e;
}
.arb3-result-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* Responsive */
@media (max-width: 900px) {
  .arb3-top { grid-template-columns: 1fr; gap: 32px; padding: 56px 0 40px; }
  .arb3-flow { gap: 0; }
  .arb3-node { min-width: 110px; padding: 18px 12px; }
  .arb3-arrow-track { width: 28px; }
}
@media (max-width: 640px) {
  .arb3-top { padding: 40px 0 32px; margin-bottom: 40px; }
  .arb3-title { font-size: clamp(24px, 7vw, 36px); }
  .arb3-flow { gap: 0; }
  .arb3-node { min-width: 90px; padding: 14px 8px; border-radius: 12px; }
  .arb3-node-name { font-size: 12px; }
  .arb3-node-price { font-size: 11px; }
  .arb3-node-badge { font-size: 8px; padding: 2px 7px; }
  .arb3-arrow { padding: 0 6px; }
  .arb3-arrow-track { width: 20px; }
  .arb3-arrow span { display: none; }
  .arb3-result { flex-direction: column; align-items: flex-start; gap: 8px; padding: 16px 18px; }
}

/* Arbitrage centered big header */
.arb3-header-center {
  text-align: center;
  padding: 80px 0 64px;
  max-width: 800px;
  margin: 0 auto;
}
.arb3-header-center .arb3-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #00d4ff;
  margin-bottom: 20px;
}
.arb3-header-center .arb3-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 20px;
  white-space: nowrap;
}
.arb3-header-center .arb3-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

/* Sub title inside arb3-top */
.arb3-eyebrow2 {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #00d4ff;
  margin-bottom: 12px;
}
.arb3-sub-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
}
.arb3-top-left p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 640px) {
  .arb3-header-center { padding: 48px 0 40px; }
  .arb3-header-center .arb3-title { font-size: clamp(20px, 5vw, 32px); letter-spacing: -0.5px; white-space: normal; }
  .arb3-sub-title { font-size: clamp(18px, 5vw, 24px); }
}

/* ═══════════════════════════════════════════
   ARBITRAGE SECTION v4 — CLEAN ARRANGEMENT
   ═══════════════════════════════════════════ */

/* Big hero heading */
.arb4-hero {
  text-align: center;
  padding: 80px 0 56px;
  max-width: 860px;
  margin: 0 auto;
}
.arb4-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #00d4ff;
  margin-bottom: 20px;
}
.arb4-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 18px;
}
.arb4-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* Divider */
.arb4-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.3), transparent);
  margin-bottom: 56px;
}

/* Label row */
.arb4-label-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.arb4-label-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #00d4ff;
  white-space: nowrap;
}
.arb4-label-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(0,212,255,0.3), transparent);
}

/* Sub heading */
.arb4-sub-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  line-height: 1.1;
}
.arb4-grad {
  background: linear-gradient(135deg, #00d4ff, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.arb4-sub-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 40px;
  line-height: 1.7;
}

/* 3 points row */
.arb4-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.arb4-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.arb4-point-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.arb4-point h4 {
  font-size: 14px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 8px;
}
.arb4-point p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin: 0;
}
.arb4-point p strong { color: #e2e8f0; }

/* Responsive */
@media (max-width: 900px) {
  .arb4-points { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 640px) {
  .arb4-hero { padding: 48px 0 40px; }
  .arb4-title { font-size: clamp(22px, 6vw, 36px); letter-spacing: -0.5px; }
  .arb4-sub { font-size: 14px; }
  .arb4-sub-heading { font-size: clamp(20px, 5vw, 28px); }
  .arb4-points { margin-bottom: 36px; padding-bottom: 36px; gap: 20px; }
  .arb4-point-icon { font-size: 20px; }
}

/* ═══════════════════════════════════════════
   PURPLE THEME — FULL PAGE COLOR OVERRIDE
   ═══════════════════════════════════════════ */

/* Body background — dark purple tint */
body {
  background: linear-gradient(160deg, #0d0b1e 0%, #080614 50%, #050410 100%) !important;
}
body::before {
  background:
    radial-gradient(ellipse at 10% 20%, rgba(139,92,246,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 80%, rgba(124,58,237,0.12) 0%, transparent 50%),
    repeating-linear-gradient(90deg, rgba(139,92,246,0.04) 0, rgba(139,92,246,0.04) 1px, transparent 1px, transparent 80px),
    repeating-linear-gradient(0deg, rgba(139,92,246,0.04) 0, rgba(139,92,246,0.04) 1px, transparent 1px, transparent 80px) !important;
}

/* Section label tags */
.cs-label-tag, .pt-label-tag, .arb4-label-tag, .arb4-tag { color: #a78bfa !important; }
.cs-label-line { background: linear-gradient(90deg, rgba(167,139,250,0.4), transparent) !important; }
.pt-label-line { background: linear-gradient(90deg, rgba(167,139,250,0.4), transparent) !important; }
.arb4-label-line { background: linear-gradient(90deg, rgba(167,139,250,0.3), transparent) !important; }
.arb4-divider { background: linear-gradient(90deg, transparent, rgba(167,139,250,0.3), transparent) !important; }

/* Main titles */
.cs-main-title, .pt-main-title, .arb4-title, .arb4-sub-heading { color: #fff !important; }
.cs-grad {
  background: linear-gradient(135deg, #a78bfa, #7c3aed, #c4b5fd) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
.pt-grad {
  background: linear-gradient(135deg, #a78bfa, #c4b5fd, #8b5cf6) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
.arb4-grad {
  background: linear-gradient(135deg, #a78bfa, #c4b5fd) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Crypto strips border colors */
.cs-strip-btc { border-left-color: rgba(247,147,26,0.6) !important; }
.cs-strip-eth { border-left-color: rgba(98,126,234,0.6) !important; }
.cs-strip-xrp { border-left-color: rgba(167,139,250,0.7) !important; }

/* XRP highlights pills */
.cs-xrp-highlights span {
  background: rgba(139,92,246,0.12) !important;
  border-color: rgba(139,92,246,0.3) !important;
  color: #c4b5fd !important;
}

/* Prediction timeline rows */
.pt-row-blue .pt-row-divider  { background: linear-gradient(to bottom, #a78bfa, rgba(167,139,250,0.1)) !important; }
.pt-row-purple .pt-row-divider { background: linear-gradient(to bottom, #7c3aed, rgba(124,58,237,0.1)) !important; }
.pt-row-gold .pt-row-divider  { background: linear-gradient(to bottom, #f59e0b, rgba(245,158,11,0.1)) !important; }

.pt-badge-blue   { background: rgba(167,139,250,0.12) !important; color: #c4b5fd !important; border-color: rgba(167,139,250,0.3) !important; }
.pt-price-blue   { background: linear-gradient(135deg, #a78bfa, #c4b5fd) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important; }
.pt-row-blue .pt-reasons li  { border-color: rgba(167,139,250,0.2) !important; background: rgba(139,92,246,0.05) !important; }
.pt-row-blue .pt-row-year { color: rgba(167,139,250,0.25) !important; }

.pt-best-pick { background: linear-gradient(135deg, #7c3aed, #a78bfa) !important; }

/* Verdict */
.pt-verdict { background: rgba(139,92,246,0.06) !important; border-color: rgba(139,92,246,0.25) !important; border-left-color: #8b5cf6 !important; }
.pt-verdict strong { color: #c4b5fd !important; }

/* Arbitrage flow nodes */
.arb3-node-buy  { border-color: rgba(167,139,250,0.35) !important; background: rgba(139,92,246,0.06) !important; }
.arb3-badge-buy { background: rgba(167,139,250,0.12) !important; color: #c4b5fd !important; border-color: rgba(167,139,250,0.3) !important; }
.arb3-arrow-dot { background: #a78bfa !important; }

/* Result strip */
.arb3-result { background: rgba(139,92,246,0.08) !important; border-color: rgba(139,92,246,0.25) !important; }
.arb3-result > span:first-child { color: #c4b5fd !important; }

/* Section tags globally */
.section-tag { color: #a78bfa !important; }

/* Glow button — purple */
.glow-btn {
  background: linear-gradient(135deg, #6d28d9, #8b5cf6, #a78bfa) !important;
  box-shadow: 0 0 40px rgba(139,92,246,0.5) !important;
}
.glow-btn:hover { box-shadow: 0 0 60px rgba(139,92,246,0.7) !important; }
.glow-btn span { color: #fff !important; }
.glow-btn small { color: rgba(255,255,255,0.7) !important; }

/* Grad text globally */
.grad {
  background: linear-gradient(135deg, #a78bfa, #8b5cf6, #c4b5fd) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Leader section */
.leader-tag { color: #a78bfa !important; background: rgba(139,92,246,0.12) !important; border-color: rgba(139,92,246,0.35) !important; }
.leader-grad { background: linear-gradient(135deg, #8b5cf6, #a78bfa, #c4b5fd) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important; }
.leader-card::before { background: linear-gradient(90deg, #6d28d9, #8b5cf6, #a78bfa, #8b5cf6, #6d28d9) !important; }
.leader-card { border-color: rgba(139,92,246,0.35) !important; box-shadow: 0 0 80px rgba(139,92,246,0.12) !important; }
.ls-val { background: linear-gradient(135deg, #8b5cf6, #a78bfa) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important; }
.leader-bio strong { color: #c4b5fd !important; }
.leader-stats { background: rgba(139,92,246,0.06) !important; border-color: rgba(139,92,246,0.2) !important; }

/* Ti cards */
.ti-card { border-color: rgba(139,92,246,0.2) !important; }
.ti-card:hover { border-color: rgba(139,92,246,0.5) !important; box-shadow: 0 16px 40px rgba(139,92,246,0.15) !important; }
.ti-icon { background: rgba(139,92,246,0.08) !important; border-color: rgba(139,92,246,0.2) !important; }

/* Final videos section */
.final-videos-section { border-color: rgba(139,92,246,0.25) !important; }
.final-videos-section::before { background: linear-gradient(90deg, #6d28d9, #8b5cf6, #a78bfa, #8b5cf6, #6d28d9) !important; }
.fv-accent { background: linear-gradient(135deg, #a78bfa, #8b5cf6) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important; }
.fv-guide-step { border-color: rgba(139,92,246,0.2) !important; }
.fv-guide-step:hover { border-color: rgba(139,92,246,0.5) !important; }
.fv-step-num { background: linear-gradient(135deg, #7c3aed, #8b5cf6) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important; }
.fv-video-card { border-color: rgba(139,92,246,0.2) !important; }
.fv-video-card:hover { border-color: rgba(139,92,246,0.5) !important; box-shadow: 0 20px 50px rgba(139,92,246,0.15) !important; }

/* XRP future intro */
.xrp-fi-tag { color: #a78bfa !important; background: rgba(139,92,246,0.1) !important; border-color: rgba(139,92,246,0.3) !important; }
.xrp-fi-grad { background: linear-gradient(135deg, #a78bfa, #8b5cf6, #c4b5fd) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important; }
.xrp-fi-stat { background: rgba(139,92,246,0.06) !important; border-color: rgba(139,92,246,0.25) !important; }
.xrp-fi-stat svg path, .xrp-fi-stat svg circle, .xrp-fi-stat svg rect { stroke: #a78bfa !important; }

/* Earn steps */
.earn-step { border-color: rgba(139,92,246,0.2) !important; }
.earn-step:hover { border-color: rgba(139,92,246,0.5) !important; box-shadow: 0 20px 50px rgba(139,92,246,0.15) !important; }
.earn-step-num { background: linear-gradient(135deg, #6d28d9, #8b5cf6) !important; color: #fff !important; box-shadow: 0 4px 14px rgba(139,92,246,0.5) !important; }
.earn-step strong { color: #c4b5fd !important; }
.earn-step-arrow { color: rgba(167,139,250,0.6) !important; }

/* XAB benefits */
.xab-b-blue { border-color: rgba(139,92,246,0.25) !important; }
.xab-b-blue h4 { color: #a78bfa !important; }
.xab-b-green h4 { color: #86efac !important; }
.xab-b-gold h4 { color: #fcd34d !important; }
.xab-b-purple h4 { color: #c4b5fd !important; }

/* CTA box */
.arb-cta-box { border-color: rgba(139,92,246,0.3) !important; }
.arb-cta-box::before { background: linear-gradient(90deg, #6d28d9, #8b5cf6, #a78bfa) !important; }
.arb-cta-text strong { color: #c4b5fd !important; }

/* QR */
.arb-cta-qr .qr-card { border-color: rgba(139,92,246,0.3) !important; }
.arb-cta-qr .qr-user-name { background: linear-gradient(135deg, #a78bfa, #8b5cf6) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important; }

/* XRP arb highlight */
.xrp-arb-highlight { border-color: rgba(139,92,246,0.4) !important; }
.xrp-arb-topbar { background: linear-gradient(90deg, #6d28d9, #a78bfa, #c4b5fd, #a78bfa, #6d28d9) !important; }
.xrp-arb-tag { color: #a78bfa !important; background: rgba(139,92,246,0.1) !important; border-color: rgba(139,92,246,0.3) !important; }
.xrp-arb-stat-val { background: linear-gradient(135deg, #a78bfa, #c4b5fd) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important; }
.xrp-arb-stats { border-color: rgba(139,92,246,0.3) !important; }
.xrp-arb-stat-divider { background: linear-gradient(to bottom, transparent, rgba(139,92,246,0.4), transparent) !important; }

/* Mag section */
.mag-cat-badge { background: rgba(139,92,246,0.15) !important; color: #c4b5fd !important; }
.mag-title-accent { background: linear-gradient(135deg, #a78bfa, #c4b5fd) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important; }
.mag-eyebrow { color: #a78bfa !important; }
.mag-profit-tag { color: #a78bfa !important; }
.mag-ps-val { background: linear-gradient(135deg, #a78bfa, #c4b5fd) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important; }

/* Footer */
.footer a:hover { color: #a78bfa !important; }

/* Hero nav */
.hero-nav-cta { border-color: rgba(139,92,246,0.4) !important; background: rgba(139,92,246,0.1) !important; color: #c4b5fd !important; }
.hero-nav-cta:hover { background: rgba(139,92,246,0.2) !important; }
.hero-nav-logo { background: linear-gradient(135deg, #8b5cf6, #c4b5fd) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important; }

/* Arb stat bar */
.arb-stat-val { background: linear-gradient(135deg, #a78bfa, #c4b5fd) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important; }

/* Prediction verdict */
.pt-verdict { border-left-color: #8b5cf6 !important; }

/* ═══════════════════════════════════════════
   HERO SECTION — PURPLE + VIOLET THEME
   ═══════════════════════════════════════════ */

/* Hero wrapper background */
.hero-wrapper {
  background: #0a0614 !important;
  background-image: linear-gradient(to bottom, #0f0820, #0a0614, #060410) !important;
}

/* Hero blobs — override inline style via CSS */
.hero-wrapper > div:first-child {
  background: rgba(139,92,246,0.15) !important;
}
.hero-wrapper > div:nth-child(2) {
  background: rgba(109,40,217,0.1) !important;
}

/* Navbar logo */
.hero-nav-logo {
  background: linear-gradient(135deg, #a78bfa, #c4b5fd, #8b5cf6) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Navbar links */
.hero-nav-links a:hover { color: #c4b5fd !important; }

/* Navbar CTA */
.hero-nav-cta {
  border-color: rgba(167,139,250,0.4) !important;
  background: rgba(139,92,246,0.12) !important;
  color: #c4b5fd !important;
}
.hero-nav-cta:hover { background: rgba(139,92,246,0.25) !important; }

/* Hero H1 gradient span */
.hero-wrapper h1 span[style*="background:linear-gradient(90deg,#00d4ff"] {
  background: linear-gradient(90deg, #a78bfa, #c4b5fd) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Join button in hero */
.hero-wrapper a[style*="background:linear-gradient(135deg,#0ea5e9"] {
  background: linear-gradient(135deg, #7c3aed, #8b5cf6, #a78bfa) !important;
  box-shadow: 0 0 40px rgba(139,92,246,0.5) !important;
}

/* Stats bar */
.hero-stats-bar {
  background: rgba(139,92,246,0.06) !important;
  border-top: 1px solid rgba(139,92,246,0.2) !important;
  border-bottom: 1px solid rgba(139,92,246,0.2) !important;
}
.hsi-val {
  background: linear-gradient(135deg, #a78bfa, #c4b5fd) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
.hsi-divider { background: rgba(139,92,246,0.3) !important; }

/* Hero video card */
.hero-video-card {
  border-color: rgba(139,92,246,0.4) !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6), 0 0 20px rgba(139,92,246,0.15) !important;
}
.hero-video-title span {
  background: linear-gradient(135deg, #a78bfa, #c4b5fd) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Hero cards — purple borders */
.hero-card {
  border-color: rgba(139,92,246,0.45) !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 16px rgba(139,92,246,0.2) !important;
}
.hero-card-center {
  border-color: rgba(139,92,246,0.25) !important;
  box-shadow: 0 0 50px rgba(139,92,246,0.1), 0 8px 40px rgba(0,0,0,0.5) !important;
}

/* Center card stat color */
.hero-card-stat span { color: #a78bfa !important; }
.hero-card-label { color: #a78bfa !important; }
.hero-card-mini {
  border-color: rgba(139,92,246,0.15) !important;
}
.hero-card-mini span {
  background: linear-gradient(135deg, #a78bfa, #c4b5fd) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Bar fill */
.hcc-bar-fill {
  background: linear-gradient(90deg, #8b5cf6, #c4b5fd) !important;
}

/* Right card accents */
.hcc-right-tag { color: #a78bfa !important; }
.hcc-right-point { border-left-color: rgba(167,139,250,0.6) !important; }
.hcc-right-price span { color: #a78bfa !important; }

/* Hero planet — purple glow */
.hero-planet {
  border-top-color: rgba(139,92,246,0.6) !important;
  box-shadow: 0 -30px 100px rgba(139,92,246,0.25), 0 -50px 150px rgba(109,40,217,0.15) !important;
}

/* Ticker */
.hero-wrapper .ticker-wrap {
  border-top-color: rgba(139,92,246,0.2) !important;
  border-bottom-color: rgba(139,92,246,0.2) !important;
}

/* Social sidebar */
.social-icon {
  border-color: rgba(139,92,246,0.3) !important;
  color: #a78bfa !important;
}
.social-icon::after {
  background: linear-gradient(135deg, #6d28d9, #8b5cf6, #a78bfa) !important;
}
.social-icon:hover {
  box-shadow: 0 12px 30px rgba(139,92,246,0.45), 0 0 20px rgba(109,40,217,0.3) !important;
}
.social-line {
  background: linear-gradient(to bottom, rgba(139,92,246,0.6), transparent) !important;
}

/* WhatsApp float — keep green but add purple shadow */
.whatsapp-float {
  box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 0 20px rgba(139,92,246,0.2) !important;
}

/* Hero badge (join link) */
.hero-wrapper a[style*="border:1px solid rgba(0,212,255,0.3)"] {
  border-color: rgba(167,139,250,0.3) !important;
  background: rgba(139,92,246,0.07) !important;
  color: #c4b5fd !important;
}
.hero-wrapper a[style*="border:1px solid rgba(0,212,255,0.3)"] span {
  background: #a78bfa !important;
}

/* Live badge dots */
.hero-wrapper div[style*="background:#22c55e;border-radius:50%"] {
  box-shadow: 0 0 8px rgba(139,92,246,0.4) !important;
}

/* ═══════════════════════════════════════════
   REMOVE ALL BLUE — FULL PURPLE OVERRIDE
   ═══════════════════════════════════════════ */

/* All blue borders → purple */
.crypto-section,
.xrp-prediction,
.xab-earn-section,
.glass-card,
.banner-card,
.leader-card,
.final-videos-section,
.team-india-section,
.arb-cta-box,
.prediction-verdict,
.xrp-future,
.xrp-arb-highlight,
.earn-step,
.ti-card,
.fv-guide-step,
.fv-video-card,
.xab-benefit-item,
.arb3-node,
.arb3-result,
.pt-verdict,
.pt-row-featured {
  border-color: rgba(139,92,246,0.3) !important;
}

/* Top accent lines → purple */
.crypto-section::before,
.xrp-prediction::before,
.glass-card::before,
.xab-earn-section::before,
.final-videos-section::before,
.xrp-future::before,
.team-india-section::before,
.leader-card::before,
.arb-cta-box::before,
.who-section::before,
.banner-card::before {
  background: linear-gradient(90deg, transparent, #8b5cf6, #a78bfa, #8b5cf6, transparent) !important;
}

/* Section headers */
.section-header h2 { color: #fff !important; }
.section-tag { color: #a78bfa !important; }

/* Glow btn */
.glow-btn {
  background: linear-gradient(135deg, #6d28d9, #8b5cf6, #a78bfa) !important;
  box-shadow: 0 0 40px rgba(139,92,246,0.5) !important;
  border-color: rgba(255,255,255,0.15) !important;
}
.glow-btn:hover { box-shadow: 0 0 60px rgba(139,92,246,0.7) !important; }

/* Earn step number */
.earn-step-num {
  background: linear-gradient(135deg, #6d28d9, #8b5cf6) !important;
  box-shadow: 0 4px 14px rgba(139,92,246,0.5) !important;
}

/* Earn step hover */
.earn-step:hover {
  border-color: rgba(139,92,246,0.6) !important;
  box-shadow: 0 20px 50px rgba(139,92,246,0.2) !important;
}

/* Ti card hover */
.ti-card:hover {
  border-color: rgba(139,92,246,0.6) !important;
  box-shadow: 0 16px 40px rgba(139,92,246,0.2) !important;
}

/* fv guide step hover */
.fv-guide-step:hover {
  border-color: rgba(139,92,246,0.6) !important;
  box-shadow: 0 8px 24px rgba(139,92,246,0.2) !important;
}

/* fv video card hover */
.fv-video-card:hover {
  border-color: rgba(139,92,246,0.6) !important;
  box-shadow: 0 20px 50px rgba(139,92,246,0.2) !important;
}

/* benefit card hover */
.benefit-card:hover {
  border-color: rgba(139,92,246,0.6) !important;
  box-shadow: 0 20px 50px rgba(139,92,246,0.2) !important;
}
.benefit-card::before {
  background: linear-gradient(90deg, #8b5cf6, #a78bfa) !important;
}

/* xab benefit hover */
.xab-benefit-item:hover {
  border-color: rgba(139,92,246,0.6) !important;
  box-shadow: 0 20px 50px rgba(139,92,246,0.2) !important;
}

/* QR card */
.qr-card {
  border-color: rgba(139,92,246,0.4) !important;
  box-shadow: 0 0 60px rgba(139,92,246,0.2) !important;
}
.qr-glow {
  background: linear-gradient(135deg, #6d28d9, #8b5cf6, #a78bfa, #8b5cf6) !important;
}
.qr-corner { border-color: #a78bfa !important; }
.qr-user-id { border-color: rgba(139,92,246,0.4) !important; }
.qr-user-name {
  background: linear-gradient(135deg, #a78bfa, #8b5cf6) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* arb cta qr */
.arb-cta-qr .qr-card { border-color: rgba(139,92,246,0.3) !important; }
.arb-cta-qr .qr-label { color: #a78bfa !important; }
.arb-cta-qr .qr-user-name {
  background: linear-gradient(135deg, #a78bfa, #8b5cf6) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Leader img */
.leader-img {
  border-color: rgba(139,92,246,0.4) !important;
  box-shadow: 0 20px 60px rgba(139,92,246,0.2) !important;
}
.leader-img-badge {
  background: linear-gradient(135deg, #6d28d9, #8b5cf6) !important;
  box-shadow: 0 4px 20px rgba(139,92,246,0.5) !important;
}
.leader-img-glow {
  background: radial-gradient(circle, rgba(139,92,246,0.25), transparent 70%) !important;
}

/* xrp fi stats */
.xrp-fi-stat {
  background: rgba(139,92,246,0.06) !important;
  border-color: rgba(139,92,246,0.25) !important;
}
.xrp-fi-stat svg * { stroke: #a78bfa !important; }

/* xrp future intro borders */
.xrp-future-intro {
  border-top-color: rgba(139,92,246,0.4) !important;
  border-bottom-color: rgba(139,92,246,0.4) !important;
}

/* mag section */
.mag-top-bar {
  background: linear-gradient(90deg, #6d28d9, #8b5cf6, #a78bfa, #8b5cf6, #6d28d9) !important;
}
.mag-exp-card {
  border-color: rgba(139,92,246,0.2) !important;
}
.mag-exp-card:hover {
  border-color: rgba(139,92,246,0.5) !important;
}
.mag-exp-num {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
.mag-profit-strip {
  border-color: rgba(139,92,246,0.25) !important;
  background: rgba(139,92,246,0.05) !important;
}

/* footer */
.footer {
  border-top-color: rgba(139,92,246,0.2) !important;
}

/* main section top line */
.main-section::before {
  background: linear-gradient(90deg, transparent, #8b5cf6, transparent) !important;
}

/* hero wrapper inline blobs override */
.hero-wrapper > div[style*="rgba(14,165,233"] {
  background: rgba(139,92,246,0.15) !important;
}
.hero-wrapper > div[style*="rgba(0,170,228"] {
  background: rgba(109,40,217,0.1) !important;
}

/* hero inline join badge */
.hero-wrapper a[style*="rgba(0,212,255"] {
  border-color: rgba(167,139,250,0.3) !important;
  background: rgba(139,92,246,0.07) !important;
  color: #c4b5fd !important;
}

/* hero inline CTA button */
.hero-wrapper a[style*="#0ea5e9"] {
  background: linear-gradient(135deg, #6d28d9, #8b5cf6) !important;
  box-shadow: 0 0 40px rgba(139,92,246,0.5) !important;
}

/* hero phone borders */
.hero-wrapper div[style*="rgba(0,212,255,0.15)"] {
  border-color: rgba(139,92,246,0.2) !important;
}
.hero-wrapper div[style*="rgba(0,212,255,0.25)"] {
  border-color: rgba(139,92,246,0.35) !important;
}
.hero-wrapper div[style*="rgba(0,170,228,0.2)"] {
  box-shadow: 0 0 60px rgba(139,92,246,0.2), 0 30px 80px rgba(0,0,0,0.7) !important;
}

/* hero badge dots */
.hero-wrapper div[style*="background:#00aae4;border-radius:50%"] {
  background: #8b5cf6 !important;
}

/* XRP price badge in hero */
.hero-wrapper span[style*="#00aae4"] { color: #a78bfa !important; }

/* ═══════════════════════════════════════════
   HERO DASHBOARD — GLASSMORPHISM PANELS
   ═══════════════════════════════════════════ */

.hero-dashboard {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 480px;
}

.hd-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Base card */
.hd-card {
  background: rgba(139,92,246,0.08);
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: 18px;
  padding: 18px 20px;
  backdrop-filter: blur(20px);
  transition: border-color 0.3s, transform 0.3s;
}
.hd-card:hover {
  border-color: rgba(167,139,250,0.5);
  transform: translateY(-3px);
}

/* XRP Price card */
.hd-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.hd-coin-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hd-coin-icon svg { width: 100%; height: 100%; display: block; }
.hd-coin-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.hd-coin-sub { font-size: 10px; color: rgba(255,255,255,0.35); }
.hd-live-dot {
  margin-left: auto;
  font-size: 9px;
  font-weight: 700;
  color: #22c55e;
  letter-spacing: 1px;
}
.hd-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.hd-change { font-size: 11px; font-weight: 600; margin-bottom: 12px; }
.hd-up { color: #22c55e; }
.hd-down { color: #ef4444; }

/* Mini chart */
.hd-mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 28px;
}
.hd-bar {
  flex: 1;
  border-radius: 2px;
  background: rgba(139,92,246,0.3);
}
.hd-bar-active { background: #a78bfa; }

/* Profit card */
.hd-profit-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}
.hd-profit-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 800;
  background: linear-gradient(135deg, #a78bfa, #c4b5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.hd-profit-sub {
  font-size: 11px;
  color: #22c55e;
  margin-bottom: 10px;
}
.hd-profit-bar {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 8px;
}
.hd-profit-fill {
  height: 100%;
  width: 72%;
  background: linear-gradient(90deg, #7c3aed, #a78bfa);
  border-radius: 2px;
}
.hd-profit-meta {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
}

/* Live trades card */
.hd-trades-card { padding: 16px 18px; }
.hd-trades-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.hd-trades-title {
  font-size: 12px;
  font-weight: 700;
  color: #c4b5fd;
}
.hd-trades-count {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
}
.hd-trade-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hd-trade-row:last-child { border-bottom: none; }
.hd-trade-pair {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  flex: 1;
}
.hd-trade-pair span { color: #a78bfa; }
.hd-trade-amount {
  font-size: 11px;
  font-weight: 700;
  color: #22c55e;
}
.hd-trade-time {
  font-size: 10px;
  color: rgba(255,255,255,0.25);
  white-space: nowrap;
}
.hd-trade-badge { font-size: 11px; }

/* Stat cards */
.hd-stat-card { text-align: center; padding: 16px 12px; }
.hd-stat-icon { font-size: 20px; margin-bottom: 8px; }
.hd-stat-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(135deg, #a78bfa, #c4b5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}
.hd-stat-lbl {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-dashboard { display: none; }
}

/* ═══════════════════════════════════════════
   SWIFTEX STYLE HERO — PURPLE THEME
   ═══════════════════════════════════════════ */

.hero-wrapper {
  background: #07071c !important;
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* Blobs */
.sw-blob { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.sw-blob-1 { top: -10%; right: -10%; width: 600px; height: 600px; background: rgba(109,40,217,0.25); filter: blur(150px); }
.sw-blob-2 { bottom: 10%; left: 20%; width: 500px; height: 500px; background: rgba(139,92,246,0.2); filter: blur(130px); }
.sw-blob-3 { top: 20%; right: 15%; width: 320px; height: 320px; background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(109,40,217,0.08)); border-radius: 50%; filter: blur(40px); border: 1px solid rgba(255,255,255,0.04); }

/* Navbar */
.sw-nav {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 64px;
  max-width: 1400px;
  margin: 0 auto;
}
.sw-nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 3px;
  font-style: italic;
  color: #fff;
}
.sw-logo-icon {
  width: 32px; height: 32px;
  background: #fff;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
}
.sw-logo-icon span {
  display: block;
  width: 20px; height: 3px;
  background: #07071c;
  border-radius: 2px;
}
.sw-nav-links {
  display: flex;
  gap: 48px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}
.sw-nav-links a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.sw-nav-links a:hover { color: #fff; }
.sw-nav-btn {
  padding: 10px 32px;
  background: #fff;
  color: #07071c;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 0 20px rgba(255,255,255,0.15);
}
.sw-nav-btn:hover { background: #e9d5ff; transform: scale(1.03); }

/* Main grid */
.sw-main {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 64px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Left */
.sw-left { display: flex; flex-direction: column; gap: 36px; padding-top: 20px; }
.sw-h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(52px, 6.5vw, 90px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -2px;
  color: #fff;
  margin: 0;
}
.sw-h1-sub { color: rgba(255,255,255,0.85); }
.sw-p {
  font-size: 18px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 440px;
  margin: 0;
}
.sw-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  color: #07071c;
  padding: 10px 10px 10px 32px;
  border-radius: 9999px;
  font-size: 17px;
  font-weight: 700;
  width: fit-content;
  transition: transform 0.2s;
}
.sw-cta:hover { transform: scale(1.04); }
.sw-cta-arrow {
  background: #7c3aed;
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

/* Right — floating cards */
.sw-right {
  position: relative;
  height: 520px;
}

/* Base card */
.sw-card {
  position: absolute;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transition: transform 0.3s;
}
.sw-card:hover { transform: translateY(-4px); }

/* Card 1: Balance */
.sw-card-balance {
  top: 0; right: 20px;
  width: 280px;
  padding: 24px;
}
.sw-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.sw-card-label { font-size: 10px; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.sw-card-val { font-size: 20px; font-weight: 700; color: #fff; }
.sw-card-dots { font-size: 18px; color: rgba(255,255,255,0.3); cursor: pointer; }
.sw-chart { height: 48px; overflow: hidden; border-radius: 8px; background: rgba(139,92,246,0.08); border-bottom: 2px solid #8b5cf6; }
.sw-card-change { font-size: 11px; color: #22c55e; margin-top: 8px; font-weight: 600; }

/* Card 2: Transfer */
.sw-card-transfer {
  top: 180px; left: 0;
  width: 300px;
  padding: 20px 24px;
}
.sw-transfer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.sw-transfer-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.sw-dot { width: 8px; height: 8px; background: #a78bfa; border-radius: 50%; }
.sw-transfer-amt { font-size: 14px; font-weight: 700; color: #fff; }
.sw-progress { height: 6px; background: rgba(255,255,255,0.1); border-radius: 9999px; overflow: hidden; }
.sw-progress-fill { height: 100%; width: 75%; background: #fff; border-radius: 9999px; }

/* Card 3: XRP */
.sw-card-xrp {
  bottom: 20px; left: 20px;
  width: 240px;
  padding: 20px;
}
.sw-xrp-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.sw-xrp-coin { width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0; }
.sw-xrp-coin svg { width: 100%; height: 100%; display: block; }
.sw-xrp-name { font-size: 13px; font-weight: 700; color: #fff; line-height: 1; }
.sw-xrp-sub { font-size: 10px; color: #22c55e; margin-top: 2px; }
.sw-xrp-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 48px;
  margin-bottom: 14px;
}
.sw-xrp-bars div { flex: 1; background: rgba(255,255,255,0.15); border-radius: 3px; }
.sw-bar-active { background: #a78bfa !important; }
.sw-xrp-bottom { display: flex; justify-content: space-between; align-items: center; }
.sw-xrp-price { font-size: 18px; font-weight: 700; color: #fff; }
.sw-xrp-change { font-size: 11px; color: #22c55e; font-weight: 600; }

/* Side tabs */
.sw-tabs {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sw-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 14px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.sw-tab:hover { background: rgba(139,92,246,0.15); border-color: rgba(139,92,246,0.4); color: #fff; }
.sw-tab span { font-size: 14px; }

/* Footer stats */
.sw-stats {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 80px auto 0;
  padding: 40px 64px;
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.sw-stat { flex: 1; }
.sw-stat h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}
.sw-stat p { font-size: 13px; color: rgba(255,255,255,0.4); margin: 0; }
.sw-stat-div { width: 1px; height: 48px; background: rgba(255,255,255,0.08); flex-shrink: 0; margin: 0 40px; }

/* Responsive */
@media (max-width: 1024px) {
  .sw-nav { padding: 24px 32px; }
  .sw-main { padding: 40px 32px 0; gap: 24px; }
  .sw-stats { padding: 32px; }
  .sw-nav-links { gap: 28px; }
}
@media (max-width: 900px) {
  .sw-nav-links { display: none; }
  .sw-main { grid-template-columns: 1fr; }
  .sw-right { display: none; }
  .sw-h1 { font-size: clamp(40px, 8vw, 64px); }
  .sw-stats { flex-wrap: wrap; gap: 24px; }
  .sw-stat-div { display: none; }
  .sw-stat { flex: 0 0 45%; }
}
@media (max-width: 640px) {
  .sw-nav { padding: 20px 20px; }
  .sw-main { padding: 32px 20px 0; }
  .sw-h1 { font-size: clamp(32px, 9vw, 52px); letter-spacing: -1px; }
  .sw-p { font-size: 15px; }
  .sw-stats { padding: 24px 20px; }
  .sw-stat h4 { font-size: 26px; }
}

/* ═══════════════════════════════════════════
   SWIFTEX ANIMATIONS — BACKGROUND + CARDS
   ═══════════════════════════════════════════ */

/* Animated background blobs */
.sw-blob-1 {
  animation: sw-blob-move-1 10s ease-in-out infinite;
}
.sw-blob-2 {
  animation: sw-blob-move-2 12s ease-in-out infinite;
}
.sw-blob-3 {
  animation: sw-blob-move-3 8s ease-in-out infinite;
}

@keyframes sw-blob-move-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -40px) scale(1.1); }
  66%       { transform: translate(-20px, 20px) scale(0.95); }
}
@keyframes sw-blob-move-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-20px, 50px) scale(1.08); }
}
@keyframes sw-blob-move-3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  50%       { transform: translate(15px, -20px) scale(1.15); opacity: 0.7; }
}

/* Central rotating orb */
.sw-orb-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 320px; height: 320px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(139,92,246,0.4), rgba(109,40,217,0.2), rgba(167,139,250,0.3), rgba(139,92,246,0.4));
  filter: blur(40px);
  border: 1px solid rgba(255,255,255,0.06);
  animation: sw-orb-spin 20s linear infinite;
  z-index: 1;
}
@keyframes sw-orb-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Card float animations */
.sw-float-1 {
  animation: sw-float-up 5s ease-in-out infinite;
}
.sw-float-2 {
  animation: sw-float-down 6s ease-in-out infinite;
}
.sw-float-3 {
  animation: sw-float-side 7s ease-in-out infinite;
}

@keyframes sw-float-up {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-15px); }
}
@keyframes sw-float-down {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(15px); }
}
@keyframes sw-float-side {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(10px); }
}

/* Progress bar animate on load */
.sw-progress-anim {
  width: 0%;
  animation: sw-progress-grow 2s ease-out 0.5s forwards;
}
@keyframes sw-progress-grow {
  to { width: 75%; }
}

/* Left content fade in */
.sw-left {
  animation: sw-fade-in-left 0.8s ease-out both;
}
@keyframes sw-fade-in-left {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Stats fade in up */
.sw-stats {
  animation: sw-fade-in-up 0.8s ease-out 0.3s both;
}
@keyframes sw-fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Cards stagger fade in */
.sw-card-balance { animation: sw-card-in 0.6s ease-out 0.2s both, sw-float-up 5s ease-in-out 0.8s infinite; }
.sw-card-transfer { animation: sw-card-in 0.6s ease-out 0.4s both, sw-float-down 6s ease-in-out 1s infinite; }
.sw-card-xrp { animation: sw-card-in 0.6s ease-out 0.6s both, sw-float-side 7s ease-in-out 1.2s infinite; }

@keyframes sw-card-in {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Tabs stagger */
.sw-tab:nth-child(1) { animation: sw-card-in 0.5s ease-out 0.7s both; }
.sw-tab:nth-child(2) { animation: sw-card-in 0.5s ease-out 0.85s both; }
.sw-tab:nth-child(3) { animation: sw-card-in 0.5s ease-out 1s both; }

/* ═══════════════════════════════════════════
   SW-RIGHT — 3 CARD NEW LAYOUT
   ═══════════════════════════════════════════ */

.sw-right {
  position: relative;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* Image cards */
.sw-card-img-left,
.sw-card-img-right {
  position: relative;
  width: 160px;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(139,92,246,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.sw-card-img-left img,
.sw-card-img-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.sw-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 12px;
  background: linear-gradient(to top, rgba(7,7,28,0.9), transparent);
  display: flex;
  align-items: flex-end;
}
.sw-img-badge {
  font-size: 10px;
  font-weight: 700;
  color: #c4b5fd;
  background: rgba(139,92,246,0.2);
  border: 1px solid rgba(139,92,246,0.4);
  padding: 4px 10px;
  border-radius: 20px;
}

/* Center content card */
.sw-card-center-main {
  flex: 1;
  max-width: 260px;
  padding: 22px 20px;
  border-radius: 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(139,92,246,0.3);
  backdrop-filter: blur(24px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 40px rgba(139,92,246,0.1);
  position: relative;
  z-index: 5;
}

.sw-center-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.sw-center-label { font-size: 13px; font-weight: 700; color: #fff; line-height: 1; }
.sw-center-live  { font-size: 10px; color: #22c55e; margin-top: 2px; }

.sw-center-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.sw-center-change {
  font-size: 12px;
  font-weight: 600;
  color: #22c55e;
  margin-bottom: 2px;
}

.sw-center-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 4px;
}
.sw-center-stat { flex: 1; text-align: center; }
.sw-center-stat-val {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(135deg, #a78bfa, #c4b5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 3px;
}
.sw-center-stat-lbl { display: block; font-size: 9px; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.8px; }
.sw-center-stat-div { width: 1px; height: 28px; background: rgba(255,255,255,0.08); flex-shrink: 0; }

/* Override old sw-right absolute positioning */
.sw-card-balance,
.sw-card-transfer,
.sw-card-xrp { position: static !important; width: auto !important; }

/* Responsive */
@media (max-width: 1100px) {
  .sw-card-img-left,
  .sw-card-img-right { width: 130px; height: 360px; }
  .sw-card-center-main { max-width: 220px; }
  .sw-center-price { font-size: 26px; }
}
@media (max-width: 900px) {
  .sw-right { display: none; }
}

/* ═══════════════════════════════════════════
   SW-RIGHT — TILT ARRANGEMENT
   ═══════════════════════════════════════════ */

.sw-right {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* Left image card — tilt left */
.sw-card-img-left {
  transform: rotate(-6deg) translateY(20px);
  transform-origin: bottom center;
  z-index: 2;
}

/* Center card — straight, elevated */
.sw-card-center-main {
  transform: translateY(-10px);
  z-index: 5;
}

/* Right image card — tilt right */
.sw-card-img-right {
  transform: rotate(6deg) translateY(20px);
  transform-origin: bottom center;
  z-index: 2;
}

/* Keep float animations on top of tilt */
.sw-card-img-left.sw-float-2  { animation: sw-tilt-left-float 6s ease-in-out infinite; }
.sw-card-img-right.sw-float-3 { animation: sw-tilt-right-float 7s ease-in-out infinite; }
.sw-card-center-main.sw-float-1 { animation: sw-center-float 5s ease-in-out infinite; }

@keyframes sw-tilt-left-float {
  0%, 100% { transform: rotate(-6deg) translateY(20px); }
  50%       { transform: rotate(-6deg) translateY(5px); }
}
@keyframes sw-tilt-right-float {
  0%, 100% { transform: rotate(6deg) translateY(20px); }
  50%       { transform: rotate(6deg) translateY(5px); }
}
@keyframes sw-center-float {
  0%, 100% { transform: translateY(-10px); }
  50%       { transform: translateY(-24px); }
}

/* Width zyada, height kam */
.sw-card-img-left,
.sw-card-img-right {
  width: 220px !important;
  height: 300px !important;
}
.sw-card-center-main {
  max-width: 300px !important;
}
@media (max-width: 1100px) {
  .sw-card-img-left,
  .sw-card-img-right { width: 180px !important; height: 260px !important; }
  .sw-card-center-main { max-width: 240px !important; }
}

/* Cards height kam width zyada */
.sw-card-img-left,
.sw-card-img-right {
  width: 240px !important;
  height: 260px !important;
}
.sw-card-center-main {
  max-width: 320px !important;
}

/* ── Bigger background blob animations ── */
.sw-blob-1 {
  width: 800px !important;
  height: 800px !important;
  background: rgba(109,40,217,0.35) !important;
  filter: blur(120px) !important;
  animation: sw-blob-move-1 10s ease-in-out infinite !important;
}
.sw-blob-2 {
  width: 700px !important;
  height: 700px !important;
  background: rgba(139,92,246,0.3) !important;
  filter: blur(110px) !important;
  animation: sw-blob-move-2 12s ease-in-out infinite !important;
}
.sw-blob-3 {
  width: 500px !important;
  height: 500px !important;
  background: linear-gradient(135deg, rgba(167,139,250,0.25), rgba(109,40,217,0.15)) !important;
  filter: blur(60px) !important;
  animation: sw-blob-move-3 8s ease-in-out infinite !important;
  opacity: 0.8 !important;
}

/* Bigger movement range */
@keyframes sw-blob-move-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(60px, -80px) scale(1.2); }
  66%       { transform: translate(-40px, 40px) scale(0.9); }
}
@keyframes sw-blob-move-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-50px, 80px) scale(1.15); }
}
@keyframes sw-blob-move-3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  50%       { transform: translate(40px, -50px) scale(1.3); opacity: 1; }
}

/* Bigger center orb */
.sw-orb-center {
  width: 420px !important;
  height: 420px !important;
  background: conic-gradient(from 0deg, rgba(139,92,246,0.5), rgba(109,40,217,0.25), rgba(167,139,250,0.4), rgba(139,92,246,0.5)) !important;
  filter: blur(50px) !important;
  animation: sw-orb-spin 15s linear infinite !important;
}

/* Hero video height increase */
.hero-video-card .fv-video-wrap,
.hero-video-card video {
  min-height: 480px !important;
}
.hero-video-card {
  width: min(100%, 960px) !important;
}
@media (max-width: 768px) {
  .hero-video-card video { min-height: 280px !important; }
}

/* ── EMOJI FONT FIX — poore page pe ── */
body, * {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 
               'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji',
               sans-serif !important;
}

/* Headings alag font rakhein */
h1, h2, h3, h4, h5, h6,
.hero-card-stat, .sw-h1, .cs-main-title, .pt-main-title,
.arb4-title, .leader-name, .fv-title, .xrp-fi-heading,
.mag-main-title, .pt-main-title {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont,
               'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji',
               sans-serif !important;
}

/* ═══════════════════════════════════════════
   HERO SECTION — FULL RESPONSIVE
   ═══════════════════════════════════════════ */

/* ── 1280px+ desktop — already default ── */

/* ── 1100px ── */
@media (max-width: 1100px) {
  .sw-nav { padding: 24px 32px; }
  .sw-nav-links { gap: 24px; font-size: 13px; }
  .sw-main { padding: 40px 32px 0; gap: 24px; }
  .sw-h1 { font-size: clamp(44px, 5.5vw, 70px); }
  .sw-stats { padding: 32px 32px; }
  .sw-stat-div { margin: 0 24px; }
}

/* ── 900px ── */
@media (max-width: 900px) {
  .sw-nav-links { display: none; }
  .sw-main {
    grid-template-columns: 1fr !important;
    padding: 32px 28px 0;
    gap: 40px;
  }
  .sw-right { display: flex !important; height: auto; padding: 0 0 20px; }
  .sw-card-img-left,
  .sw-card-img-right { width: 180px !important; height: 220px !important; }
  .sw-card-center-main { max-width: 260px !important; }
  .sw-h1 { font-size: clamp(40px, 7vw, 64px); }
  .sw-p { font-size: 16px; }
  .sw-stats { flex-wrap: wrap; padding: 28px; gap: 0; }
  .sw-stat { flex: 0 0 50%; padding: 12px 0; }
  .sw-stat:nth-child(1), .sw-stat:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.08); }
  .sw-stat:nth-child(1), .sw-stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .sw-stat-div { display: none; }
  .sw-stat h4 { font-size: 28px; }
}

/* ── 768px ── */
@media (max-width: 768px) {
  .sw-nav { padding: 18px 20px; }
  .sw-nav-logo { font-size: 17px; letter-spacing: 2px; }
  .sw-nav-btn { padding: 8px 20px; font-size: 13px; }
  .sw-main { padding: 28px 20px 0; }
  .sw-left { gap: 24px; }
  .sw-h1 { font-size: clamp(34px, 8vw, 52px); letter-spacing: -1px; }
  .sw-p { font-size: 15px; max-width: 100%; }
  .sw-cta { font-size: 15px; padding: 8px 8px 8px 24px; }
  .sw-cta-arrow { width: 38px; height: 38px; font-size: 16px; }
  .sw-right { gap: 10px; }
  .sw-card-img-left,
  .sw-card-img-right { width: 140px !important; height: 190px !important; border-radius: 18px; }
  .sw-card-center-main { max-width: 200px !important; padding: 16px 14px !important; }
  .hero-card-stat { font-size: 28px !important; }
  .hero-card-label { font-size: 11px !important; }
  .hero-card-desc { font-size: 11px !important; line-height: 1.5 !important; }
  .hero-card-mini { padding: 6px 4px !important; font-size: 8px !important; }
  .hero-card-mini span { font-size: 10px !important; }
  .sw-stats { padding: 20px; }
  .sw-stat h4 { font-size: 24px; }
  .sw-stat p { font-size: 12px; }
}

/* ── 640px ── */
@media (max-width: 640px) {
  .sw-nav { padding: 16px 16px; }
  .sw-nav-logo { font-size: 15px; letter-spacing: 1.5px; }
  .sw-logo-icon { width: 26px; height: 26px; }
  .sw-logo-icon span { width: 16px; }
  .sw-nav-btn { padding: 7px 16px; font-size: 12px; }
  .sw-main { padding: 24px 16px 0; gap: 28px; }
  .sw-h1 { font-size: clamp(28px, 9vw, 44px); letter-spacing: -0.5px; }
  .sw-p { font-size: 14px; line-height: 1.65; }
  .sw-cta { font-size: 14px; gap: 12px; }
  .sw-cta-arrow { width: 34px; height: 34px; font-size: 14px; }

  /* Cards 3 col compact */
  .sw-right { gap: 8px; }
  .sw-card-img-left,
  .sw-card-img-right { width: 110px !important; height: 160px !important; border-radius: 14px; }
  .sw-card-center-main { max-width: 160px !important; padding: 12px 10px !important; border-radius: 18px !important; }
  .hero-card-stat { font-size: 22px !important; margin-bottom: 4px !important; }
  .hero-card-label { font-size: 9px !important; margin-bottom: 6px !important; }
  .hero-card-desc { display: none !important; }
  .hero-card-mini-row { gap: 4px !important; }
  .hero-card-mini { padding: 5px 3px !important; font-size: 7px !important; border-radius: 8px !important; }
  .hero-card-mini span { font-size: 9px !important; }

  /* Tilt reduce on small */
  .sw-card-img-left { transform: rotate(-4deg) translateY(10px) !important; }
  .sw-card-img-right { transform: rotate(4deg) translateY(10px) !important; }

  /* Stats */
  .sw-stats { padding: 16px; margin-top: 40px; }
  .sw-stat h4 { font-size: 20px; }
  .sw-stat p { font-size: 11px; }

  /* Video */
  .hero-video-card { padding: 0 16px; margin-bottom: 24px; }
  .hero-video-card video { min-height: 220px !important; border-radius: 14px; }
}

/* ── 480px ── */
@media (max-width: 480px) {
  .sw-h1 { font-size: clamp(24px, 9.5vw, 36px); }
  .sw-card-img-left,
  .sw-card-img-right { width: 90px !important; height: 140px !important; border-radius: 12px; }
  .sw-card-center-main { max-width: 140px !important; padding: 10px 8px !important; }
  .hero-card-stat { font-size: 18px !important; }
  .hero-card-mini { padding: 4px 2px !important; font-size: 6.5px !important; }
  .hero-card-mini span { font-size: 8px !important; }
  .sw-img-badge { font-size: 8px !important; padding: 3px 7px !important; }
  .sw-stats { margin-top: 28px; }
  .sw-stat h4 { font-size: 18px; }
}

/* ── 380px ── */
@media (max-width: 380px) {
  .sw-nav-logo { font-size: 13px; }
  .sw-h1 { font-size: clamp(22px, 9vw, 30px); }
  .sw-p { font-size: 13px; }
  .sw-card-img-left,
  .sw-card-img-right { width: 76px !important; height: 120px !important; }
  .sw-card-center-main { max-width: 120px !important; padding: 8px 6px !important; }
  .hero-card-stat { font-size: 15px !important; }
  .sw-stats { padding: 12px; }
  .sw-stat h4 { font-size: 16px; }
}

/* ── MOBILE CARDS FIX ── */
@media (max-width: 768px) {
  .sw-right {
    gap: 10px !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0 16px 20px !important;
    overflow: visible !important;
  }
  .sw-card-img-left,
  .sw-card-img-right {
    width: 160px !important;
    height: 160px !important;
    border-radius: 16px !important;
    flex-shrink: 0 !important;
  }
  .sw-card-center-main {
    max-width: 200px !important;
    flex: 1 !important;
    min-width: 0 !important;
  }
  /* No crop on image */
  .sw-card-img-left img,
  .sw-card-img-right img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: top !important;
  }
  /* Tilt reduce so no crop */
  .sw-card-img-left,
  .sw-card-img-left.sw-float-2 {
    transform: rotate(-3deg) translateY(8px) !important;
    animation: sw-tilt-left-float-sm 6s ease-in-out infinite !important;
  }
  .sw-card-img-right,
  .sw-card-img-right.sw-float-3 {
    transform: rotate(3deg) translateY(8px) !important;
    animation: sw-tilt-right-float-sm 7s ease-in-out infinite !important;
  }
  @keyframes sw-tilt-left-float-sm {
    0%, 100% { transform: rotate(-3deg) translateY(8px); }
    50%       { transform: rotate(-3deg) translateY(0px); }
  }
  @keyframes sw-tilt-right-float-sm {
    0%, 100% { transform: rotate(3deg) translateY(8px); }
    50%       { transform: rotate(3deg) translateY(0px); }
  }
}

@media (max-width: 640px) {
  .sw-right {
    gap: 8px !important;
    padding: 0 12px 16px !important;
  }
  .sw-card-img-left,
  .sw-card-img-right {
    width: 130px !important;
    height: 140px !important;
    border-radius: 14px !important;
  }
  .sw-card-center-main {
    max-width: 170px !important;
    padding: 12px 10px !important;
  }
}

@media (max-width: 480px) {
  .sw-card-img-left,
  .sw-card-img-right {
    width: 100px !important;
    height: 120px !important;
  }
  .sw-card-center-main {
    max-width: 140px !important;
    padding: 10px 8px !important;
  }
}

@media (max-width: 380px) {
  .sw-card-img-left,
  .sw-card-img-right {
    width: 80px !important;
    height: 100px !important;
  }
  .sw-card-center-main {
    max-width: 120px !important;
  }
}

/* ── VIDEO FIX — no crop ── */
.hero-video-card {
  width: min(100%, 960px) !important;
  margin: 0 auto 40px !important;
  padding: 0 20px !important;
  box-sizing: border-box !important;
}
.hero-video-card video {
  width: 100% !important;
  height: auto !important;
  min-height: unset !important;
  display: block !important;
  border-radius: 16px !important;
  object-fit: contain !important;
}
@media (max-width: 640px) {
  .hero-video-card { padding: 0 12px !important; }
  .hero-video-card video { border-radius: 12px !important; }
}

/* ── FINAL CARDS + VIDEO FIX ── */

/* sw-right container fix — no overflow crop */
.sw-right {
  overflow: visible !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Image cards — fit inside container */
.sw-card-img-left,
.sw-card-img-right {
  overflow: hidden !important;
  flex-shrink: 0 !important;
}

/* Mobile — cards inside screen */
@media (max-width: 900px) {
  .sw-main {
    overflow: visible !important;
  }
  .sw-right {
    padding: 20px 20px 30px !important;
    gap: 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .sw-card-img-left,
  .sw-card-img-right {
    width: calc(28vw - 10px) !important;
    height: calc(28vw - 10px) !important;
    max-width: 160px !important;
    max-height: 160px !important;
    border-radius: 16px !important;
  }
  .sw-card-center-main {
    flex: 1 !important;
    min-width: 0 !important;
    max-width: none !important;
    width: auto !important;
  }
  /* Tilt very small so no overflow */
  .sw-card-img-left,
  .sw-card-img-left.sw-float-2 {
    transform: rotate(-2deg) !important;
    animation: none !important;
  }
  .sw-card-img-right,
  .sw-card-img-right.sw-float-3 {
    transform: rotate(2deg) !important;
    animation: none !important;
  }
}

@media (max-width: 640px) {
  .sw-right {
    padding: 16px 16px 24px !important;
    gap: 8px !important;
  }
  .sw-card-img-left,
  .sw-card-img-right {
    width: calc(26vw) !important;
    height: calc(26vw) !important;
    max-width: 130px !important;
    max-height: 130px !important;
    border-radius: 14px !important;
  }
  .sw-card-img-left { transform: rotate(-2deg) !important; animation: none !important; }
  .sw-card-img-right { transform: rotate(2deg) !important; animation: none !important; }
}

@media (max-width: 480px) {
  .sw-right { padding: 12px 12px 20px !important; gap: 6px !important; }
  .sw-card-img-left,
  .sw-card-img-right {
    width: calc(24vw) !important;
    height: calc(24vw) !important;
    max-width: 100px !important;
    max-height: 100px !important;
    border-radius: 12px !important;
  }
}

/* ── VIDEO — proper size, no crop ── */
.hero-video-card {
  width: min(calc(100% - 32px), 960px) !important;
  margin: 0 auto 40px !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  border-radius: 16px !important;
  overflow: hidden !important;
}
.hero-video-card video {
  width: 100% !important;
  height: auto !important;
  min-height: 360px !important;
  max-height: 540px !important;
  display: block !important;
  object-fit: cover !important;
  border-radius: 0 !important;
}
@media (max-width: 768px) {
  .hero-video-card { width: calc(100% - 32px) !important; }
  .hero-video-card video { min-height: 260px !important; max-height: 400px !important; }
}
@media (max-width: 480px) {
  .hero-video-card { width: calc(100% - 24px) !important; border-radius: 12px !important; }
  .hero-video-card video { min-height: 200px !important; max-height: 300px !important; }
}

/* ── SW STATS MOBILE FIX ── */
@media (max-width: 900px) {
  .sw-stats {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0 !important;
    padding: 24px 20px !important;
    margin-top: 32px !important;
    text-align: center !important;
  }
  .sw-stat { padding: 16px 8px !important; }
  .sw-stat:nth-child(1),
  .sw-stat:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.08) !important; }
  .sw-stat:nth-child(1),
  .sw-stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.08) !important; }
  .sw-stat-div { display: none !important; }
  .sw-stat h4 { font-size: 26px !important; text-align: center !important; }
  .sw-stat p { font-size: 12px !important; text-align: center !important; }
}

@media (max-width: 640px) {
  .sw-stats {
    padding: 16px !important;
    margin-top: 24px !important;
  }
  .sw-stat h4 { font-size: 22px !important; }
  .sw-stat p { font-size: 11px !important; }
}

@media (max-width: 380px) {
  .sw-stat h4 { font-size: 18px !important; }
  .sw-stat p { font-size: 10px !important; }
}

/* ── MAG PROFIT STRIP RESPONSIVE FIX ── */
.mag-profit-strip {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 20px !important;
  align-items: flex-start !important;
  padding: 28px 24px !important;
  box-sizing: border-box !important;
  width: 100% !important;
  overflow: hidden !important;
}
.mag-profit-logo {
  flex-shrink: 0 !important;
}
.mag-profit-content {
  flex: 1 !important;
  min-width: 0 !important;
}
.mag-profit-content p {
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}
.mag-profit-stats {
  display: flex !important;
  gap: 0 !important;
  flex-shrink: 0 !important;
}

@media (max-width: 900px) {
  .mag-profit-strip {
    flex-direction: column !important;
    gap: 16px !important;
    padding: 24px 20px !important;
  }
  .mag-profit-stats {
    width: 100% !important;
    justify-content: space-around !important;
    border-top: 1px solid rgba(255,255,255,0.06) !important;
    padding-top: 16px !important;
  }
  .mag-ps-item { flex: 1 !important; text-align: center !important; }
}

@media (max-width: 640px) {
  .mag-profit-strip {
    padding: 18px 14px !important;
    gap: 14px !important;
    border-radius: 14px !important;
  }
  .mag-profit-logo svg { width: 48px !important; height: 48px !important; }
  .mag-profit-content h4 { font-size: 14px !important; }
  .mag-profit-content p { font-size: 13px !important; line-height: 1.7 !important; }
  .mag-ps-val { font-size: 20px !important; }
  .mag-ps-lbl { font-size: 10px !important; }
}

@media (max-width: 480px) {
  .mag-profit-strip { padding: 14px 12px !important; }
  .mag-profit-content h4 { font-size: 13px !important; }
  .mag-profit-content p { font-size: 12px !important; }
}

/* ── ARB FLOW MOBILE FIX ── */
@media (max-width: 768px) {
  .arb3-flow {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    overflow: visible !important;
    padding-bottom: 0 !important;
  }
  .arb3-arrow { display: none !important; }
  .arb3-node {
    min-width: unset !important;
    padding: 14px 10px !important;
    border-radius: 14px !important;
    text-align: center !important;
  }
  .arb3-node-top {
    justify-content: center !important;
    margin-bottom: 10px !important;
  }
  .arb3-node-name { font-size: 13px !important; margin-bottom: 4px !important; }
  .arb3-node-price { font-size: 12px !important; }
  .arb3-node-badge { font-size: 9px !important; padding: 2px 8px !important; }
}

@media (max-width: 480px) {
  .arb3-flow { gap: 8px !important; }
  .arb3-node { padding: 12px 8px !important; border-radius: 12px !important; }
  .arb3-node-name { font-size: 12px !important; }
  .arb3-node-price { font-size: 11px !important; }
}

/* Result strip mobile */
@media (max-width: 640px) {
  .arb3-result {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px !important;
    padding: 14px 16px !important;
    border-radius: 12px !important;
  }
  .arb3-result > span:first-child { font-size: 13px !important; }
  .arb3-result-sub { font-size: 12px !important; }
}

/* ── CRYPTO SECTION HEADER CENTER ── */
.cs-label-row {
  justify-content: center !important;
}
.cs-label-line {
  display: none !important;
}
.cs-main-title {
  text-align: center !important;
}
.cs-main-sub {
  text-align: center !important;
  margin: 0 auto 56px !important;
}

/* ── PREDICTION SECTION HEADER CENTER ── */
.pt-label-row {
  justify-content: center !important;
}
.pt-label-line { display: none !important; }
.pt-main-title { text-align: center !important; }
.pt-main-sub { text-align: center !important; margin: 0 auto 56px !important; }

/* ═══════════════════════════════════════════
   HERO MOBILE — COMPLETE FRESH FIX
   ═══════════════════════════════════════════ */

@media (max-width: 768px) {

  /* Wrapper */
  .hero-wrapper {
    overflow-x: hidden !important;
  }

  /* Nav */
  .sw-nav {
    padding: 16px 20px !important;
    gap: 12px !important;
  }
  .sw-nav-links { display: none !important; }
  .sw-nav-logo { font-size: 16px !important; letter-spacing: 2px !important; }
  .sw-nav-btn { padding: 8px 18px !important; font-size: 12px !important; white-space: nowrap !important; }

  /* Main — single column */
  .sw-main {
    grid-template-columns: 1fr !important;
    padding: 28px 20px 0 !important;
    gap: 32px !important;
  }

  /* Left text */
  .sw-left { gap: 20px !important; }
  .sw-h1 {
    font-size: clamp(32px, 9vw, 48px) !important;
    letter-spacing: -1px !important;
    line-height: 1.05 !important;
  }
  .sw-p { font-size: 14px !important; line-height: 1.7 !important; max-width: 100% !important; }
  .sw-cta {
    font-size: 14px !important;
    padding: 8px 8px 8px 22px !important;
    gap: 12px !important;
    width: fit-content !important;
  }
  .sw-cta-arrow { width: 36px !important; height: 36px !important; font-size: 15px !important; }

  /* Right — 3 cards row */
  .sw-right {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    height: auto !important;
    padding: 0 20px 24px !important;
    overflow: visible !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Orb hide on mobile */
  .sw-orb-center { display: none !important; }

  /* Image cards */
  .sw-card-img-left,
  .sw-card-img-right {
    width: 28vw !important;
    max-width: 130px !important;
    height: 150px !important;
    border-radius: 16px !important;
    flex-shrink: 0 !important;
    overflow: hidden !important;
    transform: none !important;
    animation: none !important;
  }
  .sw-card-img-left  { transform: rotate(-3deg) !important; }
  .sw-card-img-right { transform: rotate(3deg) !important; }

  .sw-card-img-left img,
  .sw-card-img-right img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: top !important;
  }

  /* Center card */
  .sw-card-center-main {
    flex: 1 !important;
    min-width: 0 !important;
    max-width: none !important;
    padding: 14px 12px !important;
    border-radius: 18px !important;
    animation: none !important;
    transform: none !important;
  }
  .hero-card-stat { font-size: 22px !important; margin-bottom: 4px !important; }
  .hero-card-stat span { font-size: 14px !important; }
  .hero-card-label { font-size: 10px !important; margin-bottom: 6px !important; }
  .hero-card-desc { display: none !important; }
  .hero-card-mini-row { gap: 4px !important; }
  .hero-card-mini { padding: 5px 3px !important; font-size: 7.5px !important; border-radius: 8px !important; }
  .hero-card-mini span { font-size: 9px !important; margin-bottom: 2px !important; }

  /* Image badge */
  .sw-img-badge { font-size: 9px !important; padding: 3px 8px !important; }

  /* Stats — 2x2 grid */
  .sw-stats {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0 !important;
    padding: 20px !important;
    margin-top: 0 !important;
    text-align: center !important;
  }
  .sw-stat { padding: 14px 8px !important; text-align: center !important; }
  .sw-stat:nth-child(1),
  .sw-stat:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.08) !important; }
  .sw-stat:nth-child(1),
  .sw-stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.08) !important; }
  .sw-stat-div { display: none !important; }
  .sw-stat h4 { font-size: 22px !important; margin-bottom: 4px !important; }
  .sw-stat p { font-size: 11px !important; }

  /* Video */
  .hero-video-card {
    width: calc(100% - 32px) !important;
    margin: 0 auto 28px !important;
    padding: 0 !important;
    border-radius: 14px !important;
    overflow: hidden !important;
  }
  .hero-video-card video {
    width: 100% !important;
    height: auto !important;
    min-height: 200px !important;
    max-height: 320px !important;
    object-fit: cover !important;
    display: block !important;
  }
  .hero-video-info { padding: 14px 16px 16px !important; }
  .hero-video-title { font-size: 14px !important; }
  .hero-video-desc { font-size: 12px !important; }
}

/* ── 480px ── */
@media (max-width: 480px) {
  .sw-h1 { font-size: clamp(26px, 9vw, 38px) !important; }
  .sw-right { gap: 7px !important; padding: 0 14px 20px !important; }
  .sw-card-img-left,
  .sw-card-img-right { width: 26vw !important; height: 120px !important; border-radius: 12px !important; }
  .hero-card-stat { font-size: 18px !important; }
  .hero-card-mini { padding: 4px 2px !important; font-size: 7px !important; }
  .hero-card-mini span { font-size: 8px !important; }
  .sw-stats { padding: 16px !important; }
  .sw-stat h4 { font-size: 18px !important; }
}

/* ── 380px ── */
@media (max-width: 380px) {
  .sw-nav { padding: 14px 14px !important; }
  .sw-h1 { font-size: clamp(22px, 8.5vw, 30px) !important; }
  .sw-main { padding: 20px 14px 0 !important; }
  .sw-right { gap: 6px !important; padding: 0 10px 16px !important; }
  .sw-card-img-left,
  .sw-card-img-right { width: 24vw !important; height: 100px !important; border-radius: 10px !important; }
  .hero-card-stat { font-size: 15px !important; }
  .sw-stat h4 { font-size: 16px !important; }
}

/* ═══════════════════════════════════════════
   HERO TEXT ANIMATIONS
   ═══════════════════════════════════════════ */

/* H1 gradient span */
.sw-h1-grad {
  background: linear-gradient(135deg, #a78bfa, #c4b5fd, #8b5cf6, #a78bfa);
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: sw-grad-shift 4s linear infinite;
}
@keyframes sw-grad-shift {
  0%   { background-position: 0%; }
  100% { background-position: 300%; }
}

/* H1 word by word reveal */
.sw-h1 {
  animation: sw-fade-up 0.8s ease-out both !important;
}
@keyframes sw-fade-up {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Paragraph — delayed */
.sw-p {
  animation: sw-fade-up 0.8s ease-out 0.25s both !important;
}

/* CTA button — delayed + scale */
.sw-cta {
  animation: sw-scale-in 0.6s ease-out 0.5s both !important;
}
@keyframes sw-scale-in {
  from { opacity: 0; transform: scale(0.9) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Typing cursor blink on h1 */
.sw-h1-sub::after {
  content: '|';
  color: #a78bfa;
  animation: sw-blink 1s step-end infinite;
  margin-left: 2px;
  font-weight: 300;
}
@keyframes sw-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* Nav logo slide in */
.sw-nav-logo {
  animation: sw-slide-right 0.6s ease-out both !important;
}
@keyframes sw-slide-right {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Nav btn pop in */
.sw-nav-btn {
  animation: sw-scale-in 0.5s ease-out 0.2s both !important;
}

/* Stats count up feel */
.sw-stat h4 {
  animation: sw-fade-up 0.7s ease-out 0.6s both !important;
}
.sw-stat p {
  animation: sw-fade-up 0.7s ease-out 0.7s both !important;
}

/* ═══════════════════════════════════════════
   MOBILE CARDS — SAME AS DESKTOP LAYOUT
   ═══════════════════════════════════════════ */

@media (max-width: 768px) {
  .sw-right {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-end !important;
    justify-content: center !important;
    gap: 8px !important;
    height: auto !important;
    padding: 10px 16px 28px !important;
    overflow: visible !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Left image card — tilt left */
  .sw-card-img-left {
    width: 28vw !important;
    max-width: 140px !important;
    height: 180px !important;
    border-radius: 18px !important;
    flex-shrink: 0 !important;
    transform: rotate(-6deg) translateY(16px) !important;
    animation: none !important;
    overflow: hidden !important;
    position: relative !important;
  }

  /* Center card — straight, elevated */
  .sw-card-center-main {
    flex: 1 !important;
    min-width: 0 !important;
    max-width: none !important;
    transform: translateY(-8px) !important;
    animation: none !important;
    padding: 16px 12px !important;
    border-radius: 20px !important;
    z-index: 5 !important;
  }

  /* Right image card — tilt right */
  .sw-card-img-right {
    width: 28vw !important;
    max-width: 140px !important;
    height: 180px !important;
    border-radius: 18px !important;
    flex-shrink: 0 !important;
    transform: rotate(6deg) translateY(16px) !important;
    animation: none !important;
    overflow: hidden !important;
    position: relative !important;
  }

  /* Images fill card */
  .sw-card-img-left img,
  .sw-card-img-right img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: top !important;
    display: block !important;
  }

  /* Center card content */
  .hero-card-stat { font-size: 20px !important; margin-bottom: 4px !important; }
  .hero-card-stat span { font-size: 13px !important; }
  .hero-card-label { font-size: 9px !important; margin-bottom: 6px !important; }
  .hero-card-desc { display: none !important; }
  .hero-card-mini-row { gap: 4px !important; }
  .hero-card-mini { padding: 5px 3px !important; font-size: 7px !important; border-radius: 8px !important; }
  .hero-card-mini span { font-size: 9px !important; margin-bottom: 2px !important; }

  /* Badge */
  .sw-img-badge { font-size: 9px !important; padding: 3px 8px !important; }
  .sw-img-overlay { padding: 10px 8px !important; }
}

@media (max-width: 480px) {
  .sw-right { gap: 6px !important; padding: 8px 12px 24px !important; }
  .sw-card-img-left,
  .sw-card-img-right {
    width: 26vw !important;
    max-width: 110px !important;
    height: 150px !important;
    border-radius: 14px !important;
  }
  .sw-card-img-left  { transform: rotate(-5deg) translateY(14px) !important; }
  .sw-card-img-right { transform: rotate(5deg)  translateY(14px) !important; }
  .hero-card-stat { font-size: 17px !important; }
  .hero-card-mini { padding: 4px 2px !important; font-size: 6.5px !important; }
  .hero-card-mini span { font-size: 8px !important; }
}

@media (max-width: 380px) {
  .sw-right { gap: 5px !important; padding: 6px 10px 20px !important; }
  .sw-card-img-left,
  .sw-card-img-right {
    width: 24vw !important;
    max-width: 90px !important;
    height: 125px !important;
    border-radius: 12px !important;
  }
  .sw-card-img-left  { transform: rotate(-4deg) translateY(12px) !important; }
  .sw-card-img-right { transform: rotate(4deg)  translateY(12px) !important; }
  .hero-card-stat { font-size: 14px !important; }
}
