* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", -apple-system, sans-serif;
  background: #0d1220;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.4;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }
.xspa-text {
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 36px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(13,18,32,0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo { font-size: 22px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  color: rgba(255,255,255,0.65); font-size: 14px; font-weight: 500;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  padding: 9px 20px;
  background: #fff; color: #000;
  border-radius: 100px;
  font-size: 14px; font-weight: 600;
}

/* ===== SHARED SECTION HEADER ===== */
.eyebrow {
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  background: linear-gradient(135deg, #6366F1, #8B5CF6);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 18px;
}
.headline {
  font-size: clamp(36px, 5vw, 60px); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.05;
  color: #fff;
}
.body-copy {
  font-size: clamp(15px, 1.2vw, 18px);
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  max-width: 560px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: #0d1220;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 45% at 50% 10%, rgba(99,102,241,0.3), transparent 60%),
    radial-gradient(ellipse 40% 30% at 80% 50%, rgba(139,92,246,0.18), transparent 60%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px;
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.3);
  border-radius: 100px;
  font-size: 13px; color: #fff;
  margin-bottom: 28px;
  position: relative; z-index: 2;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ade80; box-shadow: 0 0 8px #4ade80;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.hero-title {
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 26px;
  position: relative; z-index: 2;
}
.hero-title .accent {
  background: linear-gradient(135deg, #6366F1, #8B5CF6, #A855F7);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub {
  font-size: clamp(16px, 1.3vw, 19px);
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  margin: 0 auto 36px;
  position: relative; z-index: 2;
}
.hero-ctas {
  display: flex; gap: 12px;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 60px;
  position: relative; z-index: 2;
}
.btn-primary {
  padding: 14px 28px;
  background: linear-gradient(135deg, #6366F1, #8B5CF6);
  color: #fff;
  border-radius: 100px;
  font-size: 14.5px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 30px rgba(99,102,241,0.4);
  transition: transform 0.2s;
}
.btn-primary:hover { transform: scale(1.04); }
.btn-secondary {
  padding: 14px 28px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  font-size: 14.5px; font-weight: 600;
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); }

.hero-stage {
  position: relative;
  width: 100%; max-width: 1100px;
  height: 480px; margin: 0 auto;
}
.hero-card-wrap {
  position: absolute;
  left: 30%; top: 50%;
  transform: translate(-50%, -50%) rotate(-6deg);
  animation: floatA 6s ease-in-out infinite;
  z-index: 2;
}
@keyframes floatA {
  0%, 100% { transform: translate(-50%, -50%) rotate(-6deg); }
  50% { transform: translate(-50%, -53%) rotate(-6deg); }
}
.hero-card {
  width: 380px; height: 240px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a, #0a0a0a);
  box-shadow:
    0 60px 100px -20px rgba(0,0,0,0.95),
    0 30px 60px -15px rgba(0,0,0,0.6),
    0 0 0 0.5px rgba(255,255,255,0.08);
  padding: 24px 28px;
  position: relative; overflow: hidden;
}
.hero-card::before {
  content: ''; position: absolute;
  right: -10%; bottom: -20%;
  width: 75%; height: 110%;
  background-image: repeating-linear-gradient(
    -38deg,
    rgba(255,255,255,0.045) 0px,
    rgba(255,255,255,0.045) 1px,
    transparent 1px,
    transparent 5px
  );
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 70% 70%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 80% at 70% 70%, #000 30%, transparent 75%);
  pointer-events: none;
  z-index: 1;
}
.hero-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.08) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: shimmer 5s linear infinite;
  pointer-events: none;
  z-index: 2;
}
@keyframes shimmer {
  0% { background-position: -100% 0; }
  100% { background-position: 200% 0; }
}
.hero-card-mark {
  font-size: 26px; color: #fff;
  position: relative; z-index: 3;
  text-align: left;
}
.hero-card-chip {
  width: 42px; height: 32px; border-radius: 5px;
  background: linear-gradient(135deg, #e8e8e8, #b0b0b0 40%, #6e6e6e);
  position: absolute;
  top: 70px; left: 28px;
  z-index: 3;
}
.hero-card-chip::before {
  content: ''; position: absolute; inset: 4px;
  background:
    linear-gradient(to right, transparent 32%, rgba(0,0,0,0.45) 32% 33%, transparent 33% 65%, rgba(0,0,0,0.45) 65% 66%, transparent 66%),
    linear-gradient(to bottom, transparent 32%, rgba(0,0,0,0.45) 32% 33%, transparent 33% 65%, rgba(0,0,0,0.45) 65% 66%, transparent 66%);
}
.hero-card-visa {
  position: absolute;
  right: 26px; bottom: 22px;
  z-index: 3;
  text-align: right;
  line-height: 1;
}
.hero-card-visa-logo {
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-style: italic; font-weight: 900;
  font-size: 28px; color: #fff;
  letter-spacing: -0.04em;
  text-align: right; line-height: 1;
}
.hero-card-visa-sub {
  font-size: 11px; font-weight: 400;
  color: rgba(255,255,255,0.95);
  text-align: right; margin-top: 4px;
  letter-spacing: 0.02em;
}

.hero-phone {
  position: absolute;
  right: 18%; top: 50%;
  transform: translateY(-50%) rotate(4deg);
  animation: floatB 7s ease-in-out infinite;
  width: 240px; height: 490px;
  border-radius: 38px;
  background: linear-gradient(180deg, #2a2a2e, #0a0a0c);
  padding: 5px;
  box-shadow:
    0 50px 100px -20px rgba(99,102,241,0.5),
    0 0 0 2px rgba(255,255,255,0.08);
}
@keyframes floatB {
  0%, 100% { transform: translateY(-50%) rotate(4deg); }
  50% { transform: translateY(-53%) rotate(4deg); }
}
.hero-phone-screen {
  width: 100%; height: 100%;
  border-radius: 33px;
  background: #050a1f;
  position: relative; overflow: hidden;
}
.hero-phone-screen img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.hero-phone-status { display: flex; justify-content: space-between; padding: 0 6px; margin-bottom: 14px; font-size: 9px; font-weight: 600; }
.hero-phone-greeting { font-size: 11px; color: rgba(255,255,255,0.7); padding: 0 6px; }
.hero-phone-balance { font-size: 28px; font-weight: 700; padding: 0 6px; margin: 4px 0 14px; letter-spacing: -0.02em; }
.hero-phone-actions { display: flex; justify-content: space-between; padding: 0 4px; margin-bottom: 14px; }
.hero-phone-action { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.hero-phone-action-btn {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(99,102,241,0.15);
  border: 1px solid rgba(99,102,241,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: #A5B4FC;
}
.hero-phone-action-label { font-size: 8px; }
.hero-phone-banner {
  margin: 0 4px 14px; height: 60px; border-radius: 10px;
  background: linear-gradient(135deg, #1e1b4b, #4338ca, #6d28d9);
  padding: 8px 10px;
  display: flex; align-items: center; justify-content: space-between;
  position: relative; overflow: hidden;
}
.hero-phone-banner-text { font-size: 8.5px; max-width: 60%; }
.hero-phone-banner-text strong { font-size: 9.5px; display: block; margin-bottom: 3px; }
.hero-phone-banner-cta {
  display: inline-block; margin-top: 4px;
  padding: 2px 7px; border-radius: 100px;
  background: linear-gradient(135deg, #6366F1, #8B5CF6);
  font-size: 6.5px; font-weight: 600;
}
.hero-phone-banner-card {
  width: 50px; height: 32px;
  background: linear-gradient(135deg, #1a1f3a, #4c1d95);
  border-radius: 4px;
  transform: rotate(-6deg);
}
.hero-phone-list-label { font-size: 11px; font-weight: 700; padding: 0 6px; margin-bottom: 8px; }
.hero-phone-asset { display: flex; align-items: center; padding: 6px 4px; gap: 7px; }
.hero-phone-asset-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, #1a1f3a, #4c1d95);
  display: flex; align-items: center; justify-content: center;
  font-family: "Orbitron"; font-size: 6px; font-weight: 800;
}
.hero-phone-asset-info { flex: 1; }
.hero-phone-asset-name { font-size: 9px; font-weight: 600; }
.hero-phone-asset-price { font-size: 7px; color: rgba(255,255,255,0.5); }
.hero-phone-asset-pos { color: #4ade80; }
.hero-phone-asset-amount { font-size: 8.5px; font-weight: 600; text-align: right; }

/* ===== CARD SECTION (Virtual + Physical) ===== */
.cards-section {
  background: #0d1220;
  padding: 120px 36px;
  position: relative;
}
.cards-inner { max-width: 1300px; margin: 0 auto; }
.cards-header { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.cards-header .body-copy { margin: 0 auto; }
.cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.card-tile {
  background: #141a2e;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 36px;
  transition: transform 0.3s, border-color 0.3s;
}
.card-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(99,102,241,0.4);
}
.card-tile-illustration {
  width: 100%; height: 180px;
  border-radius: 18px;
  margin-bottom: 28px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(99,102,241,0.15), transparent 70%),
    linear-gradient(135deg, rgba(99,102,241,0.08), rgba(139,92,246,0.04));
  border: 1px solid rgba(255,255,255,0.06);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.card-tile-tag { font-size: 14px; color: #6366F1; font-weight: 600; margin-bottom: 14px; }
.card-tile h3 { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 10px; }
.card-tile p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.55; margin-bottom: 18px; }
.card-tile ul { display: flex; flex-direction: column; gap: 8px; }
.card-tile li {
  font-size: 13px; color: rgba(255,255,255,0.75);
  display: flex; align-items: center; gap: 8px;
}
.tile-dot { width: 6px; height: 6px; border-radius: 50%; background: #6366F1; box-shadow: 0 0 8px #6366F1; }

/* Virtual scene */
.virt-scene { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.virt-phone {
  width: 80px; height: 140px;
  border-radius: 14px;
  background: linear-gradient(180deg, #2a2a2e, #0a0a0c);
  box-shadow: 0 20px 40px -10px rgba(99,102,241,0.5), 0 0 0 1.5px rgba(255,255,255,0.1);
  padding: 2px;
  z-index: 2;
  position: relative;
  transform: rotate(-8deg);
  animation: virtPhone 4s ease-in-out infinite;
}
@keyframes virtPhone {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(-8deg) translateY(-6px); }
}
.virt-phone-screen {
  width: 100%; height: 100%;
  border-radius: 12px;
  background: linear-gradient(180deg, #0F0F23, #1a1538);
  display: flex; align-items: center; justify-content: center;
  padding: 8px;
  position: relative;
  overflow: hidden;
}
.virt-mini-card {
  width: 90%; aspect-ratio: 1.6/1;
  border-radius: 5px;
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
  padding: 5px 6px;
  position: relative; overflow: hidden;
}
.virt-mini-card.virt-mini-card-img {
  background: #000;
  padding: 0;
}
.virt-mini-card.virt-mini-card-img::before { display: none; }
.virt-mini-card.virt-mini-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.virt-mini-card::before {
  content: ''; position: absolute;
  right: -10%; bottom: -20%;
  width: 75%; height: 110%;
  background-image: repeating-linear-gradient(
    -38deg,
    rgba(255,255,255,0.06) 0px,
    rgba(255,255,255,0.06) 0.5px,
    transparent 0.5px,
    transparent 2px
  );
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 70% 70%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 80% at 70% 70%, #000 30%, transparent 75%);
}
.virt-mini-mark {
  font-family: Orbitron; font-weight: 900; font-size: 6px; color: #fff;
  position: relative; z-index: 2;
}
.virt-mini-chip {
  width: 8px; height: 6px; border-radius: 1px;
  background: linear-gradient(135deg, #e8e8e8, #6e6e6e);
  position: absolute;
  top: 14px; left: 6px;
  z-index: 2;
}
.virt-mini-visa {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-style: italic; font-weight: 900; font-size: 7px; color: #fff;
  letter-spacing: -0.04em;
  position: absolute;
  bottom: 5px; right: 6px;
  z-index: 2;
}
.virt-wave {
  position: absolute; top: 50%; left: 50%;
  border-radius: 50%;
  border: 1.5px solid rgba(99,102,241,0.5);
  transform: translate(-50%, -50%);
  animation: virtWave 2.5s ease-out infinite;
  pointer-events: none;
}
.virt-wave.w2 { animation-delay: 0.8s; }
.virt-wave.w3 { animation-delay: 1.6s; }
@keyframes virtWave {
  0% { width: 60px; height: 60px; opacity: 0.8; }
  100% { width: 200px; height: 200px; opacity: 0; }
}

/* Physical scene */
.phys-scene { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.phys-envelope {
  position: absolute;
  width: 180px; height: 110px;
  background: linear-gradient(180deg, #1a1f2e, #0f1320);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.08);
  bottom: 25%;
  transform: rotate(-3deg);
}
.phys-envelope-flap {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, #1a1f2e, #131826);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  border-radius: 6px 6px 0 0;
}
.phys-card {
  position: absolute;
  width: 130px; height: 82px;
  border-radius: 7px;
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a, #0a0a0a);
  box-shadow:
    0 20px 40px -10px rgba(0,0,0,0.9),
    0 0 0 0.5px rgba(255,255,255,0.1);
  z-index: 3;
  padding: 8px 10px;
  overflow: hidden;
  transform: rotate(8deg);
  animation: physCard 4s ease-in-out infinite;
}
.phys-card::before {
  content: ''; position: absolute;
  right: -10%; bottom: -20%;
  width: 75%; height: 110%;
  background-image: repeating-linear-gradient(
    -38deg,
    rgba(255,255,255,0.06) 0px,
    rgba(255,255,255,0.06) 0.6px,
    transparent 0.6px,
    transparent 2.5px
  );
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 70% 70%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 80% at 70% 70%, #000 30%, transparent 75%);
}
@keyframes physCard {
  0%, 100% { transform: rotate(8deg) translate(20px, -32px); }
  50% { transform: rotate(8deg) translate(28px, -42px); }
}
.phys-card-mark {
  font-family: Orbitron; font-weight: 900; font-size: 10px; color: #fff;
  position: relative; z-index: 2;
}
.phys-card-chip {
  width: 14px; height: 11px; border-radius: 2px;
  background: linear-gradient(135deg, #e8e8e8, #6e6e6e);
  position: absolute;
  top: 24px; left: 10px;
  z-index: 2;
}
.phys-card-visa {
  position: absolute;
  bottom: 8px; right: 10px;
  z-index: 2;
  text-align: right;
  line-height: 1;
}
.phys-card-visa-logo {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-style: italic; font-weight: 900; font-size: 11px; color: #fff;
  letter-spacing: -0.04em;
}
.phys-card-visa-sub {
  font-size: 5.5px; font-weight: 400;
  color: rgba(255,255,255,0.95);
  margin-top: 1px; letter-spacing: 0.03em;
}

/* ===== TOKEN SECTION ===== */
.token-section {
  background: #0f1424;
  padding: 120px 36px;
}
.token-row {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 80px; align-items: center;
}
.token-left { max-width: 520px; }
.token-card {
  background: #141a2e;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  padding: 36px 40px;
  display: flex; align-items: center; gap: 30px;
  min-height: 240px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.token-card-grid {
  flex: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px 30px;
}
.token-cell-label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.token-cell-value { font-size: 24px; font-weight: 700; }
.token-cell-value.sm { font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.85); }
.token-solana {
  flex-shrink: 0;
  width: 220px; height: 200px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.token-solana-glow {
  position: absolute; inset: -30px;
  background: radial-gradient(ellipse, rgba(153,69,255,0.4), rgba(0,255,163,0.2) 40%, transparent 70%);
  filter: blur(30px);
  animation: solGlow 3s ease-in-out infinite;
}
@keyframes solGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
.token-solana-mark {
  width: 180px; height: 144px;
  position: relative; z-index: 2;
  filter: drop-shadow(0 8px 30px rgba(153,69,255,0.5)) drop-shadow(0 4px 12px rgba(0,255,163,0.3));
  animation: solFloat 5s ease-in-out infinite;
}
@keyframes solFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

/* ===== APP / QR SECTION ===== */
.app-section {
  background: #0d1220;
  padding: 120px 36px;
  position: relative; overflow: hidden;
}
.app-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 80% 50%, rgba(99,102,241,0.18), transparent 60%);
  pointer-events: none;
}
.app-row {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 2;
}
.app-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }
.app-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px;
  border-radius: 100px;
  font-size: 14.5px; font-weight: 600;
}
.app-btn.primary { background: #fff; color: #000; }
.app-btn.secondary {
  background: rgba(255,255,255,0.05); color: #fff;
  border: 1px solid rgba(255,255,255,0.16);
}
.app-qr {
  display: flex; justify-content: flex-end;
}
.app-qr-card {
  background: #050608;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 22px;
  display: flex; align-items: center; gap: 22px;
  max-width: 440px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.app-qr-grid {
  width: 130px; height: 130px;
  background: #fff;
  border-radius: 14px;
  display: grid;
  grid-template-columns: repeat(21, 1fr);
  grid-template-rows: repeat(21, 1fr);
  padding: 8px;
  flex-shrink: 0;
}
.app-qr-cell { background: #000; }
.app-qr-cell.off { background: transparent; }
.app-qr-text { flex: 1; min-width: 0; }
.app-qr-title { font-size: 17px; font-weight: 600; margin-bottom: 6px; color: #fff; }
.app-qr-sub { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.45; }

/* ===== ROADMAP ===== */
.roadmap {
  background: #0d1220;
  padding: 120px 36px;
}
.roadmap-inner { max-width: 1300px; margin: 0 auto; }
.roadmap-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 56px; flex-wrap: wrap; gap: 20px;
}
.roadmap-link { font-size: 14px; color: rgba(255,255,255,0.68); font-weight: 500; }
.roadmap-link:hover { color: #fff; }
.roadmap-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.roadmap-tile {
  background: #0e0f14;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 26px 26px 30px;
  min-height: 230px;
  display: flex; flex-direction: column; align-items: flex-start;
  transition: transform 0.3s, border-color 0.3s;
}
.roadmap-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(99,102,241,0.3);
}
.roadmap-pill {
  display: inline-flex; align-items: center;
  padding: 5px 13px;
  border-radius: 100px;
  font-size: 12.5px; font-weight: 500;
  margin-bottom: 26px;
}
.roadmap-pill.live { background: rgba(139,92,246,0.18); color: #C4B5FD; }
.roadmap-pill.build { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.6); }
.roadmap-tile h3 {
  font-size: 23px; font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px; line-height: 1.2;
}
.roadmap-tile p {
  font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.5;
}

/* ===== CTA / FOOTER ===== */
.cta {
  background: #0d1220;
  padding: 140px 36px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(99,102,241,0.22), transparent 60%);
}
.cta h2 {
  font-size: clamp(44px, 7vw, 84px); font-weight: 700;
  letter-spacing: -0.04em; line-height: 1.05;
  margin-bottom: 24px;
  position: relative; z-index: 2;
}
.cta h2 .accent {
  background: linear-gradient(135deg, #6366F1, #8B5CF6, #A855F7);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cta p {
  font-size: 17px; color: rgba(255,255,255,0.65);
  max-width: 540px; margin: 0 auto 40px;
  position: relative; z-index: 2;
}
.cta-buttons {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 2;
}

.store-btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 26px 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  min-width: 220px;
}
.store-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}
.store-btn-logo {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.store-btn-logo.apple { background: #2997ff; }
.store-btn-logo svg { width: 24px; height: 24px; display: block; }
.store-btn-text { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.store-btn-small { font-size: 12px; color: rgba(255,255,255,0.7); margin-bottom: 3px; }
.store-btn-big { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; color: #fff; }

/* App Store image button — clean wrapper, no inherited button styles */
.app-store-link {
  display: inline-block;
  text-decoration: none;
  border: none;
  background: transparent;
  padding: 0;
  transition: transform 0.2s;
}
.app-store-link:hover { transform: translateY(-2px); }
.app-store-link img {
  height: 60px;
  width: auto;
  display: block;
  border-radius: 12px;
}
/* Fallback if image fails to load */
.app-store-fallback {
  align-items: center; gap: 12px;
  padding: 12px 22px;
  background: #000;
  border-radius: 12px;
  height: 60px;
  box-sizing: border-box;
}
.app-store-fallback-text { display: flex; flex-direction: column; line-height: 1.1; }
.app-store-fallback-small { font-size: 11px; color: #fff; opacity: 0.85; margin-bottom: 2px; }
.app-store-fallback-big { font-size: 19px; font-weight: 600; color: #fff; letter-spacing: -0.01em; }

/* Google Play button — sized to match the 60px App Store badge */
.play-store-link {
  display: inline-flex; align-items: center; gap: 10px;
  height: 60px;
  padding: 0 22px 0 18px;
  background: #000;
  border-radius: 12px;
  text-decoration: none;
  box-sizing: border-box;
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform 0.2s, border-color 0.2s;
}
.play-store-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.25);
}
.play-store-icon {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.play-store-icon svg { width: 28px; height: 28px; display: block; }
.play-store-text { display: flex; flex-direction: column; line-height: 1.1; }
.play-store-small {
  font-size: 11px; color: #fff; opacity: 0.85;
  margin-bottom: 2px;
  letter-spacing: 0.04em;
}
.play-store-big {
  font-size: 19px; font-weight: 600; color: #fff;
  letter-spacing: -0.01em;
}

.footer {
  background: #0d1220;
  padding: 60px 36px 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: 1300px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: rgba(255,255,255,0.4);
}

/* ===== WALLET SECTION ===== */
.wallet-section {
  background: #0d1220;
  padding: 120px 36px;
  position: relative;
  overflow: hidden;
}
.wallet-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 35% at 75% 25%, rgba(99,102,241,0.12), transparent 60%);
  pointer-events: none;
}
.wallet-inner { max-width: 1300px; margin: 0 auto; position: relative; z-index: 2; }
.wallet-top {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  margin-bottom: 70px;
  align-items: start;
}
.wallet-features { display: flex; flex-direction: column; gap: 28px; padding-top: 30px; }
.wallet-feature { display: flex; gap: 18px; align-items: flex-start; }
.wallet-feature-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #A5B4FC;
}
.wallet-feature-icon svg { width: 20px; height: 20px; }
.wallet-feature-text h4 {
  font-size: 18px; font-weight: 700; margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.wallet-feature-text p {
  font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.5;
}

.wallet-phones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1180px;
  margin: 0 auto;
}
.wallet-phone-card {
  display: flex; flex-direction: column;
  align-items: center;
}
.wallet-phone {
  width: 100%;
  border-radius: 48px;
  background: linear-gradient(180deg, #1c1f2e, #0a0d18);
  padding: 4px;
  box-shadow:
    0 40px 80px -20px rgba(0,0,0,0.7),
    0 0 0 1.5px rgba(255,255,255,0.06);
  aspect-ratio: 9 / 18;
  position: relative;
}
.wallet-phone-screen {
  width: 100%; height: 100%;
  border-radius: 44px;
  background: #060914;
  display: flex; flex-direction: column;
  overflow: hidden;
  position: relative;
}
.wallet-phone-screen.has-image {
  padding: 0;
  background: #060914;
}
.wallet-phone-screen.has-image img {
  width: 100%; height: 100%;
  display: block;
}
/* Phone 1: image starts below status bar so it doesn't overlap the time */
.wallet-phone-screen.has-image.phone-1 img {
  object-fit: cover;
  object-position: top center;
  padding-top: 38px;
  box-sizing: border-box;
}
/* Phone 2: image fills the screen so there's no empty gap at the bottom */
.wallet-phone-screen.has-image.phone-2 img {
  object-fit: cover;
  object-position: top center;
}
/* Phone 3: image covers the entire screen, no white gap at bottom */
.wallet-phone-screen.has-image.phone-3 {
  background: #1a1530;
}
.wallet-phone-screen.has-image.phone-3 img {
  object-fit: cover;
  object-position: center top;
  height: 102%;
  margin-bottom: -2%;
}
.wallet-phone-screen:not(.has-image) { padding: 22px 20px 0; }
.wallet-phone-caption { text-align: center; margin-top: 28px; }
.wallet-phone-caption h4 {
  font-size: 20px; font-weight: 700;
  letter-spacing: -0.01em; margin-bottom: 6px;
}
.wallet-phone-caption p {
  font-size: 14px; color: rgba(255,255,255,0.55);
}

/* Bottom tab nav inside phones */
.wp-tabbar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 70px;
  background: linear-gradient(180deg, transparent, #060914 35%);
  display: flex; justify-content: space-around; align-items: center;
  padding: 0 14px 14px;
}
.wp-tab-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-size: 9px; color: rgba(255,255,255,0.5);
  flex: 1;
  position: relative;
}
.wp-tab-item.active { color: #A5B4FC; }
.wp-tab-item.active::before {
  content: ''; position: absolute; top: -4px;
  width: 5px; height: 5px; border-radius: 50%;
  background: #A5B4FC; box-shadow: 0 0 8px #A5B4FC;
}
.wp-tab-icon { font-size: 14px; }
.wp-fab {
  position: absolute;
  bottom: 38px; left: 50%; transform: translateX(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, #6366F1, #8B5CF6);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #fff;
  box-shadow: 0 8px 20px rgba(99,102,241,0.6);
  z-index: 3;
}
.wp-status {
  display: flex; justify-content: space-between;
  font-size: 11px; font-weight: 600;
  margin-bottom: 14px;
}
.wp-greeting-row { display: flex; justify-content: space-between; align-items: center; }
.wp-greeting { font-size: 13px; color: rgba(255,255,255,0.7); }
.wp-greeting-icons { display: flex; gap: 8px; }
.wp-icon-btn {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
}
.wp-balance-label { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 14px; }
.wp-balance { font-size: 38px; font-weight: 800; letter-spacing: -0.025em; margin-top: 4px; }
.wp-actions { display: flex; justify-content: space-between; margin-top: 22px; }
.wp-action { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.wp-action-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(99,102,241,0.14);
  border: 1px solid rgba(99,102,241,0.28);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #A5B4FC;
}
.wp-action-label { font-size: 9.5px; color: rgba(255,255,255,0.7); }
.wp-banner {
  margin-top: 18px; padding: 12px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, #4338ca, #6d28d9);
  display: flex; justify-content: space-between; align-items: center;
}
.wp-banner-text strong { font-size: 11px; display: block; margin-bottom: 6px; line-height: 1.3; max-width: 100px; }
.wp-banner-pill {
  display: inline-block; padding: 3px 10px;
  background: rgba(255,255,255,0.18);
  border-radius: 100px;
  font-size: 9px; font-weight: 600;
}
.wp-banner-card {
  width: 44px; height: 28px; border-radius: 4px;
  background: linear-gradient(135deg, #1a1f3a, #4c1d95);
  transform: rotate(-6deg);
  flex-shrink: 0;
}
.wp-section-label { font-size: 13px; font-weight: 700; margin-top: 18px; }
.wp-search {
  margin-top: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 9px 12px;
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; color: rgba(255,255,255,0.4);
}
.wp-asset {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0;
}
.wp-asset-icon {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: Orbitron; font-size: 8px; font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.wp-asset-icon.xspa { background: linear-gradient(135deg, #6366F1, #8B5CF6); }
.wp-asset-icon.btc { background: #f7931a; font-size: 12px; }
.wp-asset-info { flex: 1; min-width: 0; }
.wp-asset-name { font-size: 13px; font-weight: 600; }
.wp-asset-meta { font-size: 10px; color: rgba(255,255,255,0.5); margin-top: 1px; }
.wp-asset-meta .pos { color: #4ade80; }
.wp-asset-right { text-align: right; }
.wp-asset-amount { font-size: 13px; font-weight: 600; }
.wp-asset-pct { font-size: 10px; color: rgba(255,255,255,0.5); margin-top: 1px; }

.wp-continue {
  position: absolute;
  bottom: 92px; left: 20px; right: 20px;
  padding: 14px 0;
  background: linear-gradient(135deg, #6366F1, #06b6d4);
  border-radius: 100px;
  text-align: center;
  font-size: 14px; font-weight: 700;
  color: #fff;
  box-shadow: 0 10px 25px rgba(99,102,241,0.4);
}

/* Virtual card detail screen */
.wp-card-bullets { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.wp-card-bullet {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: rgba(255,255,255,0.85);
}
.wp-card-bullet-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #A5B4FC;
  flex-shrink: 0;
}
.wp-pay-row {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-size: 11px; color: rgba(255,255,255,0.7);
  margin-top: 18px;
}
.wp-pay-row .sep { opacity: 0.4; }
.wp-get-card {
  margin-top: 14px;
  padding: 13px 0;
  background: linear-gradient(135deg, #6366F1, #06b6d4);
  border-radius: 100px;
  text-align: center;
  font-size: 13px; font-weight: 700;
  color: #fff;
  box-shadow: 0 10px 25px rgba(99,102,241,0.4);
}
.wp-already {
  text-align: center; margin-top: 14px;
  font-size: 11px; color: rgba(165,180,252,0.85);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.wp-title { font-size: 14px; font-weight: 600; text-align: center; margin: 6px 0 18px; }
.wp-tabs { display: grid; grid-template-columns: 1fr 1fr; position: relative; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 22px; }
.wp-tab { padding: 10px 0; font-size: 12px; text-align: center; color: rgba(255,255,255,0.5); }
.wp-tab.active { color: #fff; font-weight: 600; }
.wp-tabs::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 50%; height: 2px;
  background: linear-gradient(90deg, #6366F1, #8B5CF6);
  border-radius: 2px;
}
.wp-swap-row {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 14px 14px 12px;
  margin-bottom: 6px;
}
.wp-swap-label { font-size: 11px; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.wp-swap-main { display: flex; justify-content: space-between; align-items: center; }
.wp-swap-token { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; }
.wp-swap-coin {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, #14F195, #9945FF);
}
.wp-swap-coin.xspa { background: linear-gradient(135deg, #6366F1, #8B5CF6); }
.wp-swap-amount { font-size: 18px; font-weight: 700; }
.wp-swap-balance { font-size: 9.5px; color: rgba(255,255,255,0.4); margin-top: 6px; }
.wp-swap-arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, #6366F1, #8B5CF6);
  margin: -2px auto;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #fff;
  position: relative; z-index: 2;
  box-shadow: 0 0 18px rgba(99,102,241,0.5);
}

.wp-card-preview-title { font-size: 14px; font-weight: 600; text-align: center; margin: 6px 0 26px; }
.wp-card-preview {
  width: 100%; aspect-ratio: 1.58/1;
  border-radius: 14px;
  background: linear-gradient(135deg, #4c1d95, #6d28d9, #8B5CF6);
  padding: 16px 18px;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 20px 50px -10px rgba(139,92,246,0.5);
  position: relative; overflow: hidden;
}
.wp-card-preview::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.12) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: shimmer 6s linear infinite;
}
.wp-card-preview-row { display: flex; justify-content: space-between; align-items: flex-start; position: relative; z-index: 2; }
.wp-card-preview-mark { font-family: Orbitron; font-weight: 900; font-size: 14px; color: #fff; letter-spacing: 0.06em; }
.wp-card-preview-visa { font-family: Georgia, serif; font-style: italic; font-weight: 800; font-size: 14px; color: #fff; }
.wp-card-preview-bottom { display: flex; justify-content: space-between; align-items: flex-end; position: relative; z-index: 2; }
.wp-card-preview-chip { width: 26px; height: 20px; border-radius: 3px; background: linear-gradient(135deg, #d4d4d4, #6e6e6e); }
.wp-card-preview-num { font-size: 10px; color: rgba(255,255,255,0.7); letter-spacing: 0.15em; }
.wp-virtual-label { text-align: center; margin-top: 28px; font-size: 16px; font-weight: 700; }
.wp-virtual-sub { text-align: center; margin-top: 6px; font-size: 11px; color: rgba(255,255,255,0.5); }

/* ===== PREMIUM CARD SHOWCASE ===== */
.premium-section {
  background: #0a0e1a;
  padding: 140px 36px;
  position: relative;
  overflow: hidden;
}
.premium-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 30% 50%, rgba(99,102,241,0.10), transparent 60%);
  pointer-events: none;
}
.premium-row {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 2;
}
.premium-stage {
  position: relative;
  height: 480px;
  display: flex; align-items: center; justify-content: center;
}
.premium-card-back {
  position: absolute;
  width: 460px; height: 290px;
  border-radius: 22px;
  background: linear-gradient(135deg, #1a1f3a, #2d1b69);
  transform: rotate(-3deg) translate(40px, 40px);
  opacity: 0.55;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6);
}
.premium-card-front {
  position: relative;
  width: 480px; height: 300px;
  border-radius: 22px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  box-shadow:
    0 60px 120px -30px rgba(0,0,0,0.95),
    0 30px 60px -15px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.08),
    inset 0 1px 0 rgba(255,255,255,0.05);
  padding: 32px 36px;
  transform: rotate(-8deg);
  overflow: hidden;
  animation: premiumFloat 8s ease-in-out infinite;
}
@keyframes premiumFloat {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(-8deg) translateY(-12px); }
}
.premium-card-front::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 20%, rgba(255,255,255,0.06), transparent 60%),
    linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.04) 50%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.premium-card-pattern {
  position: absolute;
  right: -8%; bottom: -15%;
  width: 70%; height: 100%;
  background-image: repeating-linear-gradient(
    -38deg,
    rgba(255,255,255,0.06) 0px,
    rgba(255,255,255,0.06) 1.5px,
    transparent 1.5px,
    transparent 7px
  );
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 70% 70%, #000 20%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 80% at 70% 70%, #000 20%, transparent 75%);
  pointer-events: none;
  z-index: 1;
}
.premium-card-front::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,0.10) 50%, transparent 65%);
  background-size: 200% 100%;
  animation: shimmer 6s linear infinite;
  pointer-events: none;
}
.premium-card-mark {
  font-family: Orbitron; font-weight: 900;
  font-size: 36px; color: #fff;
  letter-spacing: 0.06em;
  position: relative; z-index: 3;
}
.premium-card-chip {
  width: 50px; height: 38px; border-radius: 5px;
  background: linear-gradient(135deg, #e8e8e8, #b0b0b0 40%, #6e6e6e);
  position: absolute;
  top: 90px; left: 36px;
  z-index: 3;
}
.premium-card-chip::before {
  content: ''; position: absolute; inset: 6px;
  background:
    linear-gradient(to right, transparent 32%, rgba(0,0,0,0.45) 32% 33%, transparent 33% 65%, rgba(0,0,0,0.45) 65% 66%, transparent 66%),
    linear-gradient(to bottom, transparent 32%, rgba(0,0,0,0.45) 32% 33%, transparent 33% 65%, rgba(0,0,0,0.45) 65% 66%, transparent 66%);
}
.premium-card-visa-wrap {
  position: absolute;
  bottom: 28px; right: 36px;
  z-index: 3;
  text-align: right;
  line-height: 1;
}
.premium-card-visa {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-style: italic; font-weight: 900;
  font-size: 36px; color: #fff;
  letter-spacing: -0.04em;
  text-align: right; line-height: 1;
}
.premium-card-visa-sub {
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,0.95);
  text-align: right; margin-top: 4px;
  letter-spacing: 0.02em;
}
.premium-features { display: flex; flex-direction: column; gap: 30px; max-width: 480px; }
.premium-feature { display: flex; gap: 18px; align-items: flex-start; }
.premium-feature-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.28);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #A5B4FC;
}
.premium-feature-icon svg { width: 22px; height: 22px; }
.premium-feature-text h4 {
  font-size: 19px; font-weight: 700; margin-bottom: 7px;
  letter-spacing: -0.01em;
}
.premium-feature-text p {
  font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.55;
}

/* ===== REFERRAL SECTION ===== */
.referral-section {
  background: #0a0e1a;
  padding: 120px 36px;
  position: relative;
  overflow: hidden;
}
.referral-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 40% 30% at 20% 30%, rgba(74,222,128,0.10), transparent 60%),
    radial-gradient(ellipse 40% 30% at 90% 70%, rgba(74,222,128,0.07), transparent 60%);
  pointer-events: none;
}
.referral-floats { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.referral-float {
  position: absolute;
  font-size: 24px; font-weight: 800;
  color: rgba(74,222,128,0.18);
}
.referral-float.f1 { top: 38%; left: 48%; animation: refFloat 7s ease-in-out infinite; }
.referral-float.f2 { top: 58%; left: 8%; animation: refFloat 8s ease-in-out infinite reverse; }
.referral-float.f3 { top: 75%; right: 4%; font-size: 36px; animation: refFloat 9s ease-in-out infinite; }
@keyframes refFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.referral-inner {
  max-width: 1300px; margin: 0 auto; position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.referral-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  background: rgba(74,222,128,0.10);
  border: 1px solid rgba(74,222,128,0.4);
  border-radius: 100px;
  font-size: 12px; font-weight: 600;
  color: #4ade80; letter-spacing: 0.05em;
  margin-bottom: 22px;
}
.referral-pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ade80; box-shadow: 0 0 8px #4ade80;
  animation: dotPulse 2s ease-in-out infinite;
}
.referral-headline {
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-bottom: 22px;
}
.referral-headline .green { color: #4ade80; }
.referral-sub {
  font-size: clamp(15px, 1.2vw, 18px);
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  max-width: 520px;
  margin-bottom: 36px;
}
.referral-steps { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.referral-step {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  font-size: 15px; color: rgba(255,255,255,0.85);
  transition: border-color 0.3s, transform 0.3s;
}
.referral-step:hover {
  border-color: rgba(74,222,128,0.3);
  transform: translateX(4px);
}
.referral-step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, #6366F1, #8B5CF6);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  flex-shrink: 0;
}
.referral-step strong { color: #fff; font-weight: 600; }
.referral-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #6366F1, #8B5CF6);
  border-radius: 100px;
  font-size: 14.5px; font-weight: 600;
  box-shadow: 0 12px 30px rgba(99,102,241,0.5);
  transition: transform 0.2s;
}
.referral-cta:hover { transform: scale(1.04); }

.referral-phone-wrap { display: flex; justify-content: center; }
.referral-phone {
  width: 290px;
  aspect-ratio: 9 / 18;
  border-radius: 38px;
  background: linear-gradient(180deg, #1c1f2e, #0a0d18);
  padding: 4px;
  box-shadow:
    0 50px 100px -20px rgba(74,222,128,0.18),
    0 30px 60px -15px rgba(0,0,0,0.6),
    0 0 0 2px rgba(255,255,255,0.06);
  position: relative;
}
.referral-phone-screen {
  width: 100%; height: 100%;
  border-radius: 34px;
  background: #060914;
  display: flex; flex-direction: column;
  overflow: hidden;
  position: relative;
}
.referral-phone-screen img.rp-bg {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
/* Animated counter overlays positioned over the screenshot */
.rp-overlay {
  position: absolute;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-weight: 700;
  color: #fff;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  pointer-events: none;
  text-shadow: 0 0 20px rgba(99,102,241,0.3);
  /* Small dark tile to mask only the underlying number, not the label below */
  background: #0e1424;
  padding: 0 6px 1px;
  border-radius: 3px;
  line-height: 1;
}
.rp-overlay.referrals {
  top: 26.4%;
  left: 9%;
  font-size: 20px;
  min-width: 22px;
  text-align: left;
}
.rp-overlay.earned {
  top: 26.4%;
  left: 49%;
  font-size: 20px;
  color: #fff;
}
.rp-overlay.earned .currency {
  font-size: 13px;
  font-weight: 600;
  margin-left: 4px;
  opacity: 0.85;
  vertical-align: 1px;
}
/* Tiny pulse glow when number ticks up */
.rp-overlay.tick {
  animation: rpTick 0.6s ease-out;
}
@keyframes rpTick {
  0% { transform: scale(1); }
  40% { transform: scale(1.18); text-shadow: 0 0 24px rgba(74,222,128,0.7); }
  100% { transform: scale(1); }
}
/* Floating "+1" / "+$15" tags that bubble up when stats increment */
.rp-bubble {
  position: absolute;
  font-size: 13px; font-weight: 700;
  color: #4ade80;
  pointer-events: none;
  opacity: 0;
}
.rp-bubble.show {
  animation: rpBubble 1.4s ease-out forwards;
}
@keyframes rpBubble {
  0% { opacity: 0; transform: translateY(0); }
  20% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-30px); }
}
.rp-header { font-size: 15px; font-weight: 600; margin: 10px 0 14px; text-align: center; }
.rp-title { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.rp-sub { font-size: 11px; color: rgba(255,255,255,0.5); margin-bottom: 14px; line-height: 1.4; }
.rp-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.rp-stat {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 12px;
}
.rp-stat-icon {
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  margin-bottom: 8px;
}
.rp-stat-icon.users { background: rgba(99,102,241,0.18); color: #A5B4FC; }
.rp-stat-icon.money { background: rgba(74,222,128,0.18); color: #4ade80; }
.rp-stat-value { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.rp-stat-value.green { color: #4ade80; }
.rp-stat-label { font-size: 10px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.rp-card-mini {
  width: 100%; aspect-ratio: 1.65/1;
  border-radius: 12px;
  background: linear-gradient(135deg, #4c1d95, #6d28d9, #8B5CF6);
  padding: 12px 14px;
  display: flex; flex-direction: column; justify-content: space-between;
  margin-bottom: 14px;
  box-shadow: 0 12px 30px -8px rgba(139,92,246,0.4);
}
.rp-card-mini-row { display: flex; justify-content: space-between; align-items: flex-start; }
.rp-card-mini-row.bottom { align-items: flex-end; }
.rp-card-mini-mark { font-family: Orbitron; font-weight: 900; font-size: 11px; color: #fff; letter-spacing: 0.05em; }
.rp-card-mini-visa { font-family: Georgia, serif; font-style: italic; font-weight: 800; font-size: 11px; color: #fff; }
.rp-card-mini-num { font-size: 8px; color: rgba(255,255,255,0.6); letter-spacing: 0.18em; }
.rp-input {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 9px 12px;
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
}
.rp-input-text { flex: 1; }
.rp-input-label { font-size: 9px; color: rgba(255,255,255,0.45); margin-bottom: 2px; }
.rp-input-value { font-size: 12px; font-weight: 600; }
.rp-input-icon {
  width: 24px; height: 24px; border-radius: 6px;
  background: rgba(99,102,241,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: #A5B4FC;
}

/* ===== TRADE / COMING SOON ===== */
.trade-section {
  background: #0d1220;
  padding: 120px 36px;
}
.trade-inner { max-width: 1300px; margin: 0 auto; }
.trade-header { text-align: center; margin-bottom: 60px; }
.trade-eyebrow {
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #A5B4FC;
  margin-bottom: 22px;
}
.trade-headline {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 900px; margin: 0 auto;
}
.trade-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.trade-card {
  background: linear-gradient(180deg, rgba(20,26,46,0.8), rgba(15,20,36,0.8));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 42px 40px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  display: flex; flex-direction: column;
  min-height: 480px;
}
.trade-card:hover {
  border-color: rgba(99,102,241,0.4);
  transform: translateY(-4px);
}
.trade-tag {
  display: inline-flex;
  padding: 6px 16px;
  background: rgba(99,102,241,0.10);
  border: 1px solid rgba(99,102,241,0.35);
  border-radius: 100px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em;
  color: #A5B4FC;
  margin-bottom: 70px;
  align-self: flex-start;
}
.trade-card h3 {
  font-size: 32px; font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.trade-card p {
  font-size: 15px; color: rgba(255,255,255,0.6);
  line-height: 1.55;
  margin-bottom: 30px;
  max-width: 460px;
}
.trade-waitlist {
  display: inline-flex; align-items: center;
  padding: 11px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 100px;
  font-size: 13px; font-weight: 600;
  align-self: flex-start;
  transition: background 0.2s, border-color 0.2s;
}
.trade-waitlist:hover {
  background: rgba(99,102,241,0.10);
  border-color: rgba(99,102,241,0.35);
}

.trade-illustration { margin-top: auto; padding-top: 30px; }
.trade-bars {
  display: flex; align-items: flex-end; gap: 8px;
  height: 110px;
  padding-left: 60px;
}
.trade-bar {
  flex: 1;
  background: linear-gradient(180deg, #8B5CF6, #6366F1);
  border-radius: 4px 4px 0 0;
  animation: trBarRise 1.4s ease-out backwards;
}
.trade-bar:nth-child(1) { height: 30%; animation-delay: 0.1s; }
.trade-bar:nth-child(2) { height: 50%; animation-delay: 0.2s; }
.trade-bar:nth-child(3) { height: 35%; animation-delay: 0.3s; }
.trade-bar:nth-child(4) { height: 75%; animation-delay: 0.4s; }
.trade-bar:nth-child(5) { height: 60%; animation-delay: 0.5s; }
.trade-bar:nth-child(6) { height: 85%; animation-delay: 0.6s; }
.trade-bar:nth-child(7) { height: 78%; animation-delay: 0.7s; }
.trade-bar:nth-child(8) { height: 95%; animation-delay: 0.8s; }
@keyframes trBarRise {
  from { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
  to { transform: scaleY(1); opacity: 1; }
}

.trade-markets { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.trade-market {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
}
.trade-market.up {
  border: 1px solid rgba(74,222,128,0.35);
  background: rgba(74,222,128,0.05);
}
.trade-market.down {
  border: 1px solid rgba(239,68,68,0.30);
  background: rgba(239,68,68,0.05);
}
.trade-market-left { display: flex; align-items: center; gap: 10px; }
.trade-market-dot { width: 8px; height: 8px; border-radius: 50%; }
.trade-market.up .trade-market-dot { background: #4ade80; box-shadow: 0 0 8px #4ade80; }
.trade-market.down .trade-market-dot { background: #ef4444; box-shadow: 0 0 8px #ef4444; }
.trade-market-pct { font-weight: 700; }
.trade-market.up .trade-market-pct { color: #4ade80; }
.trade-market.down .trade-market-pct { color: #ef4444; }

/* ===== EXCHANGE LISTINGS ===== */
.bitmart-section {
  background: #0d1220;
  padding: 100px 36px 90px;
  position: relative;
  overflow: hidden;
}
.bitmart-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 25% 50%, rgba(20,200,183,0.08), transparent 60%),
    radial-gradient(ellipse 50% 40% at 75% 50%, rgba(45,91,255,0.08), transparent 60%);
  pointer-events: none;
}
.bitmart-inner {
  max-width: 1180px; margin: 0 auto;
  position: relative; z-index: 2;
}
.exchanges-header {
  text-align: center;
  margin-bottom: 48px;
}
.exchanges-header .eyebrow { margin-bottom: 14px; }
.exchanges-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.exchanges-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 28px;
}
.exchange-card {
  --accent: #14C8B7;
  --accent-deep: #0EA5A0;
  background: linear-gradient(180deg, rgba(20,26,46,0.85), rgba(15,20,36,0.85));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 32px 32px 30px;
  display: flex; flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 24px 50px -25px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.04);
  transition: transform 0.35s cubic-bezier(.16,.84,.24,1), border-color 0.35s, box-shadow 0.35s;
}
.exchange-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 35%, transparent);
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,0.55),
    0 0 60px -20px color-mix(in srgb, var(--accent) 50%, transparent),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
.exchange-card.lbank { --accent: #FFD93D; --accent-deep: #E6B800; }
.exchange-card::before {
  content: ''; position: absolute;
  top: -50%; left: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 70%);
  animation: bitGlowDrift 9s ease-in-out infinite;
  pointer-events: none;
}
.exchange-card.lbank::before { animation-delay: -4.5s; }
@keyframes bitGlowDrift {
  0%, 100% { transform: translateX(0); opacity: 0.7; }
  50% { transform: translateX(60%); opacity: 1; }
}
.exchange-card-top {
  display: flex; align-items: center; gap: 18px;
  position: relative; z-index: 2;
}
.bitmart-logo-wrap {
  width: 68px; height: 68px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow:
    0 14px 30px -8px color-mix(in srgb, var(--accent) 60%, transparent),
    inset 0 1px 0 rgba(255,255,255,0.25);
  position: relative;
  overflow: hidden;
}
.exchange-card.lbank .bitmart-logo-wrap {
  width: 96px;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  box-shadow:
    0 14px 30px -8px rgba(255,217,61,0.45),
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 0 0 1px rgba(255,217,61,0.25);
}
.exchange-card.lbank .bitmart-logo-wrap svg {
  width: 76px;
  height: auto;
}
.bitmart-logo-wrap::after {
  content: ''; position: absolute; inset: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.18) 50%, transparent 60%);
  background-size: 200% 200%;
  animation: shimmer 5s linear infinite;
}
.bitmart-logo-wrap svg { width: 38px; height: 38px; position: relative; z-index: 2; }
.exchange-card-name {
  font-size: 20px; font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}
.bitmart-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.bitmart-eyebrow .pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 10px var(--accent);
  animation: dotPulse 1.8s ease-in-out infinite;
}
.exchange-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
  position: relative; z-index: 2;
}
.exchange-stats {
  display: flex; gap: 24px;
  padding-top: 8px;
  position: relative; z-index: 2;
}
.exchange-stat-label {
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.exchange-stat-value {
  font-size: 16px; font-weight: 700;
  color: #fff;
}
.bitmart-card-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  border-radius: 100px;
  font-size: 13.5px; font-weight: 700;
  white-space: nowrap;
  align-self: flex-start;
  box-shadow: 0 12px 28px -6px color-mix(in srgb, var(--accent) 60%, transparent);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative; z-index: 2;
}
.bitmart-card-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 18px 36px -6px color-mix(in srgb, var(--accent) 75%, transparent);
}

/* Ticker row */
.bitmart-ticker {
  margin-top: 8px;
  padding: 18px 0;
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.bitmart-ticker-track {
  display: flex; gap: 48px;
  animation: tickerScroll 28s linear infinite;
  width: max-content;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.bitmart-ticker-item {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,0.7);
  white-space: nowrap;
}
.bitmart-ticker-item strong { color: #fff; font-weight: 700; }
.bitmart-ticker-item .up { color: #4ade80; }
.bitmart-ticker-item .down { color: #ef4444; }
.bitmart-ticker-sep {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* ===== XSPA IN THE WILD ===== */
.wild-section {
  background: #0d1220;
  padding: 130px 36px;
  position: relative;
  overflow: hidden;
}
.wild-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(99,102,241,0.12), transparent 65%),
    radial-gradient(ellipse 40% 30% at 20% 80%, rgba(139,92,246,0.08), transparent 60%),
    radial-gradient(ellipse 40% 30% at 85% 70%, rgba(168,85,247,0.06), transparent 60%);
  pointer-events: none;
}
.wild-inner { max-width: 1300px; margin: 0 auto; position: relative; z-index: 2; }
.wild-header { text-align: center; max-width: 720px; margin: 0 auto 70px; }
.wild-header .body-copy { margin: 18px auto 0; }

/* Stage with floating transaction toasts */
.wild-stage {
  position: relative;
  height: 540px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 80px;
}
.wild-card-center {
  width: 320px; height: 200px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  box-shadow:
    0 60px 120px -30px rgba(0,0,0,0.95),
    0 30px 60px -15px rgba(99,102,241,0.3),
    0 0 0 1px rgba(255,255,255,0.08),
    inset 0 1px 0 rgba(255,255,255,0.05);
  padding: 22px 26px;
  position: relative;
  overflow: hidden;
  z-index: 5;
  animation: wildCardFloat 6s ease-in-out infinite;
}
@keyframes wildCardFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(-2deg); }
}
.wild-card-center::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 30% 20%, rgba(255,255,255,0.06), transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.wild-card-pattern {
  position: absolute;
  right: -8%; bottom: -15%;
  width: 70%; height: 100%;
  background-image: repeating-linear-gradient(
    -38deg,
    rgba(255,255,255,0.055) 0px,
    rgba(255,255,255,0.055) 1.2px,
    transparent 1.2px,
    transparent 5.5px
  );
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 70% 70%, #000 25%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 80% at 70% 70%, #000 25%, transparent 75%);
  pointer-events: none;
  z-index: 1;
}
.wild-card-center::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,0.10) 50%, transparent 65%);
  background-size: 200% 100%;
  animation: shimmer 6s linear infinite;
  pointer-events: none;
  z-index: 2;
}
.wild-card-mark {
  font-family: Orbitron; font-weight: 900;
  font-size: 24px; color: #fff;
  letter-spacing: 0.06em;
  position: relative; z-index: 3;
}
.wild-card-chip {
  width: 38px; height: 28px; border-radius: 4px;
  background: linear-gradient(135deg, #e8e8e8, #b0b0b0 40%, #6e6e6e);
  position: absolute;
  top: 60px; left: 26px;
  z-index: 3;
}
.wild-card-chip::before {
  content: ''; position: absolute; inset: 4px;
  background:
    linear-gradient(to right, transparent 32%, rgba(0,0,0,0.45) 32% 33%, transparent 33% 65%, rgba(0,0,0,0.45) 65% 66%, transparent 66%),
    linear-gradient(to bottom, transparent 32%, rgba(0,0,0,0.45) 32% 33%, transparent 33% 65%, rgba(0,0,0,0.45) 65% 66%, transparent 66%);
}
.wild-card-visa-wrap {
  position: absolute;
  bottom: 20px; right: 26px;
  z-index: 3;
  text-align: right;
  line-height: 1;
}
.wild-card-visa {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-style: italic; font-weight: 900;
  font-size: 26px; color: #fff;
  letter-spacing: -0.04em;
  text-align: right; line-height: 1;
}
.wild-card-visa-sub {
  font-size: 10px; font-weight: 400;
  color: rgba(255,255,255,0.95);
  text-align: right; margin-top: 3px; letter-spacing: 0.02em;
}

/* Floating transaction toasts */
.wild-toast {
  position: absolute;
  background: rgba(20, 26, 46, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 12px 14px 12px 12px;
  display: flex; align-items: center; gap: 11px;
  width: 264px;
  box-shadow:
    0 20px 50px -15px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.04);
  opacity: 0;
  animation: toastIn 5s ease-in-out infinite;
}
.wild-toast.t1 { top: 6%; left: 4%; animation-delay: 0s; }
.wild-toast.t2 { top: 18%; right: 3%; animation-delay: 0.5s; }
.wild-toast.t3 { top: 34%; left: 2%; animation-delay: 1s; }
.wild-toast.t4 { top: 46%; right: 5%; animation-delay: 1.5s; }
.wild-toast.t5 { top: 58%; left: 8%; animation-delay: 2s; }
.wild-toast.t6 { top: 70%; right: 4%; animation-delay: 2.5s; }
.wild-toast.t7 { top: 14%; left: 38%; animation-delay: 3s; }
.wild-toast.t8 { top: 82%; left: 5%; animation-delay: 3.5s; }
.wild-toast.t9 { top: 88%; right: 8%; animation-delay: 4s; }
.wild-toast.t10 { top: 26%; left: 2%; animation-delay: 4.5s; }
@keyframes toastIn {
  0% { opacity: 0; transform: translateY(8px) scale(0.94); }
  10%, 35% { opacity: 1; transform: translateY(0) scale(1); }
  50%, 100% { opacity: 0; transform: translateY(-8px) scale(0.96); }
}
.wild-toast-icon {
  width: 36px; height: 36px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  font-weight: 700;
}
.wild-toast-icon.coffee { background: linear-gradient(135deg, #006241, #003d28); color: #fff; }
.wild-toast-icon.uber { background: #000; color: #fff; }
.wild-toast-icon.apple { background: #fff; color: #000; }
.wild-toast-icon.amazon { background: linear-gradient(135deg, #FF9900, #cc7a00); color: #000; }
.wild-toast-icon.netflix { background: #000; color: #E50914; }
.wild-toast-icon.airbnb { background: linear-gradient(135deg, #FF5A5F, #cc3a3f); color: #fff; }
.wild-toast-icon.openai { background: #000; color: #fff; font-family: 'Helvetica Neue', sans-serif; }
.wild-toast-icon.claude { background: linear-gradient(135deg, #D97757, #B85A3D); color: #fff; }
.wild-toast-icon.spotify { background: #000; color: #1ED760; }
.wild-toast-icon.tesla { background: #000; color: #E31937; font-family: 'Helvetica Neue', sans-serif; }
.wild-toast-icon.nvidia { background: #76B900; color: #000; font-weight: 900; }
.wild-toast-icon.figma { background: linear-gradient(135deg, #F24E1E, #A259FF); color: #fff; }
.wild-toast-icon.notion { background: #fff; color: #000; }
.wild-toast-icon.x { background: #000; color: #fff; }
.wild-toast-icon.deepseek { background: linear-gradient(135deg, #4D6BFE, #2D4FCC); color: #fff; }
.wild-toast-icon.perplexity { background: linear-gradient(135deg, #20808D, #156470); color: #fff; }
.wild-toast-text { flex: 1; min-width: 0; }
.wild-toast-merchant { font-size: 12px; font-weight: 600; color: #fff; margin-bottom: 2px; }
.wild-toast-meta { font-size: 10.5px; color: rgba(255,255,255,0.5); }
.wild-toast-amount {
  font-size: 14px; font-weight: 700;
  color: #4ade80;
  font-variant-numeric: tabular-nums;
}

/* Merchant marquee */
.wild-marquee-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin-bottom: 28px;
}
.wild-marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.wild-marquee-track {
  display: flex; gap: 60px;
  animation: tickerScroll 40s linear infinite;
  width: max-content;
  align-items: center;
}
.wild-merchant {
  display: inline-flex; align-items: center; justify-content: center;
  height: 48px;
  padding: 0 20px;
  font-size: 24px; font-weight: 700;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  transition: color 0.3s, transform 0.3s;
  cursor: default;
  letter-spacing: -0.02em;
}
.wild-merchant:hover {
  color: #fff;
  transform: scale(1.08);
}
.wild-merchant.brand-apple { font-family: -apple-system, BlinkMacSystemFont, sans-serif; }
.wild-merchant.brand-amazon { font-family: Georgia, serif; font-style: italic; }
.wild-merchant.brand-netflix { color: rgba(229,9,20,0.7); font-weight: 800; letter-spacing: 0.05em; }
.wild-merchant.brand-netflix:hover { color: #E50914; }
.wild-merchant.brand-spotify { color: rgba(30,215,96,0.7); font-weight: 800; }
.wild-merchant.brand-spotify:hover { color: #1ED760; }
.wild-merchant.brand-uber { font-weight: 900; letter-spacing: -0.04em; }
.wild-merchant.brand-airbnb { font-weight: 800; letter-spacing: -0.03em; }
.wild-merchant.brand-airbnb:hover { color: #FF5A5F; }
.wild-merchant.brand-starbucks { color: rgba(0,98,65,0.85); font-weight: 800; }
.wild-merchant.brand-starbucks:hover { color: #006241; }
.wild-merchant.brand-google { font-family: Arial, sans-serif; font-weight: 500; }
.wild-merchant.brand-google span:nth-child(1) { color: rgba(66,133,244,0.85); }
.wild-merchant.brand-google span:nth-child(2) { color: rgba(234,67,53,0.85); }
.wild-merchant.brand-google span:nth-child(3) { color: rgba(251,188,5,0.85); }
.wild-merchant.brand-google span:nth-child(4) { color: rgba(66,133,244,0.85); }
.wild-merchant.brand-google span:nth-child(5) { color: rgba(52,168,83,0.85); }
.wild-merchant.brand-google span:nth-child(6) { color: rgba(234,67,53,0.85); }
.wild-merchant.brand-shopify { color: rgba(149,191,79,0.85); font-weight: 800; }
.wild-merchant.brand-shopify:hover { color: #95BF4F; }
.wild-merchant.brand-target { color: rgba(204,0,0,0.85); font-weight: 900; }
.wild-merchant.brand-target:hover { color: #cc0000; }
.wild-merchant.brand-walmart { color: rgba(255,194,32,0.85); font-weight: 800; font-style: italic; }
.wild-merchant.brand-walmart:hover { color: #FFC220; }
.wild-merchant.brand-openai { color: rgba(255,255,255,0.7); font-weight: 600; letter-spacing: -0.01em; }
.wild-merchant.brand-openai:hover { color: #fff; }
.wild-merchant.brand-claude { color: rgba(217,119,87,0.85); font-weight: 700; }
.wild-merchant.brand-claude:hover { color: #D97757; }
.wild-merchant.brand-nvidia { color: rgba(118,185,0,0.85); font-weight: 800; }
.wild-merchant.brand-nvidia:hover { color: #76B900; }
.wild-merchant.brand-tesla { color: rgba(227,25,55,0.85); font-weight: 700; letter-spacing: 0.16em; }
.wild-merchant.brand-tesla:hover { color: #E31937; }
.wild-merchant.brand-figma { color: rgba(255,255,255,0.7); font-weight: 700; letter-spacing: -0.01em; }
.wild-merchant.brand-figma:hover { color: #F24E1E; }
.wild-merchant.brand-notion { color: rgba(255,255,255,0.75); font-weight: 700; }
.wild-merchant.brand-notion:hover { color: #fff; }
.wild-merchant.brand-x { color: rgba(255,255,255,0.7); font-weight: 900; font-family: 'Helvetica Neue', sans-serif; letter-spacing: -0.04em; }
.wild-merchant.brand-x:hover { color: #fff; }
.wild-merchant.brand-deepseek { color: rgba(77,107,254,0.85); font-weight: 700; }
.wild-merchant.brand-deepseek:hover { color: #4D6BFE; }
.wild-merchant.brand-perplexity { color: rgba(32,128,141,0.85); font-weight: 700; }
.wild-merchant.brand-perplexity:hover { color: #20808D; }
.wild-merchant-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(.16,.84,.24,1), transform 0.9s cubic-bezier(.16,.84,.24,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.cards-grid > .reveal:nth-child(2) { transition-delay: 0.12s; }
.trade-grid > .reveal:nth-child(2) { transition-delay: 0.12s; }
.exchanges-grid > .reveal:nth-child(2) { transition-delay: 0.12s; }
.roadmap-cards > .reveal:nth-child(1) { transition-delay: 0.05s; }
.roadmap-cards > .reveal:nth-child(2) { transition-delay: 0.15s; }
.roadmap-cards > .reveal:nth-child(3) { transition-delay: 0.25s; }
.roadmap-cards > .reveal:nth-child(4) { transition-delay: 0.35s; }

/* ===== HERO ENHANCEMENTS ===== */
.hero-mesh {
  position: absolute; inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.hero-mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  mix-blend-mode: screen;
}
.hero-mesh-blob.b1 {
  width: 500px; height: 500px;
  background: #6366F1;
  top: -10%; left: -10%;
  animation: blobDrift1 18s ease-in-out infinite;
}
.hero-mesh-blob.b2 {
  width: 400px; height: 400px;
  background: #8B5CF6;
  bottom: -15%; right: -5%;
  animation: blobDrift2 22s ease-in-out infinite;
}
.hero-mesh-blob.b3 {
  width: 300px; height: 300px;
  background: #A855F7;
  top: 40%; right: 30%;
  animation: blobDrift3 25s ease-in-out infinite;
}
@keyframes blobDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(80px, 60px) scale(1.1); }
  66% { transform: translate(-40px, 80px) scale(0.95); }
}
@keyframes blobDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-60px, -40px) scale(1.15); }
  66% { transform: translate(40px, -80px) scale(0.9); }
}
@keyframes blobDrift3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-100px, 50px) scale(1.2); }
}

/* Grain overlay for atmosphere */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.025;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

/* Nav slick touches */
.nav-cta { transition: transform 0.2s, box-shadow 0.2s; }
.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero-stage { height: 360px; }
  .hero-card { width: 300px; height: 190px; padding: 22px; }
  .hero-phone { display: none; }
  .cards-grid { grid-template-columns: 1fr; }
  .token-row { grid-template-columns: 1fr; gap: 50px; }
  .token-card { flex-direction: column; padding: 28px; }
  .app-row { grid-template-columns: 1fr; gap: 50px; }
  .app-qr { justify-content: flex-start; }
  .roadmap-cards { grid-template-columns: 1fr 1fr; }
  .wallet-top { grid-template-columns: 1fr; gap: 40px; }
  .wallet-phones { grid-template-columns: 1fr; max-width: 340px; }
  .premium-row { grid-template-columns: 1fr; gap: 60px; }
  .premium-stage { height: 380px; }
  .premium-card-front { width: 380px; height: 240px; padding: 26px 28px; }
  .premium-card-mark { font-size: 28px; }
  .premium-card-back { width: 360px; height: 230px; }
  .referral-inner { grid-template-columns: 1fr; gap: 50px; }
  .referral-phone-wrap { order: -1; }
  .trade-grid { grid-template-columns: 1fr; }
  .exchanges-grid { grid-template-columns: 1fr; }
  .wild-stage { height: 480px; }
  .wild-card-center { width: 260px; height: 165px; }
  .wild-card-mark { font-size: 20px; }
  .wild-card-visa { font-size: 18px; }
  .wild-toast { width: 220px; padding: 10px 12px; }
  .wild-toast-icon { width: 32px; height: 32px; font-size: 16px; }
}
@media (max-width: 600px) {
  .roadmap-cards { grid-template-columns: 1fr; }
  section, .hero, .cta, .footer, .roadmap, .app-section, .token-section, .cards-section, .wallet-section, .premium-section, .referral-section, .trade-section, .bitmart-section, .wild-section { padding-left: 18px; padding-right: 18px; }
  .premium-card-front { width: 300px; height: 190px; padding: 22px; }
  .premium-card-mark { font-size: 22px; }
  .premium-card-visa { font-size: 22px; }
  .premium-card-back { width: 290px; height: 185px; }
  .wild-toast { width: 180px; }
  .wild-toast.t1, .wild-toast.t5 { left: -8px; }
  .wild-toast.t2, .wild-toast.t4, .wild-toast.t6 { right: -8px; }
  .wild-merchant { font-size: 18px; }
}

/* ===== ON-CHAIN & CROSS-CHAIN ===== */
.chain-section {
  background: #0f1424;
  padding: 120px 36px;
  position: relative;
  overflow: hidden;
}
.chain-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 20% 30%, rgba(99,102,241,0.18), transparent 60%),
    radial-gradient(ellipse 40% 35% at 85% 70%, rgba(139,92,246,0.15), transparent 60%);
  pointer-events: none;
}
.chain-inner {
  max-width: 1300px; margin: 0 auto;
  position: relative; z-index: 2;
}
.chain-header { text-align: center; max-width: 720px; margin: 0 auto 70px; }
.chain-header .body-copy { margin: 18px auto 0; }
.chain-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.chain-tile {
  background: #141a2e;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 40px;
  position: relative; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.chain-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(99,102,241,0.4);
}
.chain-tile-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #A5B4FC; margin-bottom: 18px;
}
.chain-tile-tag .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #6366F1; box-shadow: 0 0 8px #6366F1;
}
.chain-tile h3 {
  font-size: 28px; font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px; line-height: 1.15;
}
.chain-tile > p {
  font-size: 15px; color: rgba(255,255,255,0.65);
  line-height: 1.6; margin-bottom: 28px;
}
.chain-feature-list { display: flex; flex-direction: column; gap: 14px; }
.chain-feature {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px;
  background: rgba(99,102,241,0.06);
  border: 1px solid rgba(99,102,241,0.15);
  border-radius: 12px;
}
.chain-feature-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(99,102,241,0.25), rgba(139,92,246,0.2));
  display: flex; align-items: center; justify-content: center;
  color: #A5B4FC;
}
.chain-feature-icon svg { width: 14px; height: 14px; }
.chain-feature-text { flex: 1; }
.chain-feature-text strong {
  display: block; font-size: 14px; font-weight: 600;
  color: #fff; margin-bottom: 2px;
}
.chain-feature-text span {
  font-size: 12.5px; color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

/* Cross-chain bridge animation */
.bridge-viz {
  height: 110px; margin-bottom: 28px;
  position: relative;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(99,102,241,0.12), transparent 70%);
  border-radius: 14px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px;
}
.bridge-node {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, #1a1f3a, #2d1b69);
  border: 1.5px solid rgba(99,102,241,0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: "Orbitron"; font-weight: 800; font-size: 10px;
  color: #fff; position: relative; z-index: 2;
  box-shadow: 0 6px 20px rgba(99,102,241,0.3);
}
.bridge-track {
  position: absolute;
  left: 60px; right: 60px; top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,0.4), transparent);
  transform: translateY(-50%);
}
.bridge-pulse {
  position: absolute; top: 50%; left: 60px;
  width: 10px; height: 10px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 12px #6366F1, 0 0 24px #8B5CF6;
  transform: translateY(-50%);
  animation: bridgeFlow 2.8s linear infinite;
}
@keyframes bridgeFlow {
  0% { left: 60px; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: calc(100% - 60px); opacity: 0; }
}

/* On-chain pulse viz */
.onchain-viz {
  height: 110px; margin-bottom: 28px;
  position: relative;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(139,92,246,0.12), transparent 70%);
  border-radius: 14px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.onchain-core {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #6366F1, #8B5CF6);
  display: flex; align-items: center; justify-content: center;
  font-family: "Orbitron"; font-weight: 900; font-size: 11px;
  color: #fff; position: relative; z-index: 3;
  box-shadow: 0 0 30px rgba(99,102,241,0.6);
}
.onchain-ring {
  position: absolute; top: 50%; left: 50%;
  border-radius: 50%;
  border: 1.5px solid rgba(99,102,241,0.4);
  transform: translate(-50%, -50%);
  animation: onchainPulse 2.5s ease-out infinite;
  pointer-events: none;
}
.onchain-ring.r2 { animation-delay: 0.8s; }
.onchain-ring.r3 { animation-delay: 1.6s; }
@keyframes onchainPulse {
  0% { width: 56px; height: 56px; opacity: 0.8; }
  100% { width: 220px; height: 220px; opacity: 0; }
}

/* ===== NETWORKS SECTION ===== */
.networks-section {
  background: #0d1220;
  padding: 120px 36px;
  position: relative;
}
.networks-inner { max-width: 1300px; margin: 0 auto; }
.networks-header { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.networks-header .body-copy { margin: 18px auto 0; }
.networks-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.network-tile {
  background: #141a2e;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px 20px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 14px;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
  position: relative; overflow: hidden;
}
.network-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(99,102,241,0.4);
}
.network-tile::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, var(--glow, rgba(99,102,241,0.15)), transparent 60%);
  opacity: 0; transition: opacity 0.3s;
  pointer-events: none;
}
.network-tile:hover::before { opacity: 1; }
.network-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
}
.network-icon svg { width: 100%; height: 100%; }
.network-name {
  font-size: 15px; font-weight: 600;
  color: #fff; position: relative; z-index: 2;
}
.network-symbol {
  font-size: 11px; font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em; text-transform: uppercase;
  position: relative; z-index: 2;
}
.networks-footer {
  margin-top: 48px;
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: rgba(99,102,241,0.08);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: 100px;
  max-width: fit-content;
  margin-left: auto; margin-right: auto;
  font-size: 14px; color: rgba(255,255,255,0.75);
}
.networks-footer .more-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #6366F1; box-shadow: 0 0 8px #6366F1;
}

/* ===== FAMILY PACKAGES ===== */
.family-section {
  background: #0f1424;
  padding: 120px 36px;
  position: relative; overflow: hidden;
}
.family-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(139,92,246,0.18), transparent 60%);
  pointer-events: none;
}
.family-inner {
  max-width: 1300px; margin: 0 auto;
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 80px; align-items: center;
}
.family-left { max-width: 520px; }
.family-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(139,92,246,0.18), rgba(99,102,241,0.12));
  border: 1px solid rgba(139,92,246,0.35);
  border-radius: 100px;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #C4B5FD;
}
.family-pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #C4B5FD; box-shadow: 0 0 8px #8B5CF6;
}
.family-features {
  margin-top: 36px;
  display: flex; flex-direction: column; gap: 18px;
}
.family-feature {
  display: flex; gap: 14px; align-items: flex-start;
}
.family-feature-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(99,102,241,0.15));
  border: 1px solid rgba(139,92,246,0.3);
  display: flex; align-items: center; justify-content: center;
  color: #C4B5FD;
}
.family-feature-icon svg { width: 18px; height: 18px; }
.family-feature h4 {
  font-size: 16px; font-weight: 600;
  color: #fff; margin-bottom: 4px;
}
.family-feature p {
  font-size: 14px; color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* Waitlist form */
.family-waitlist {
  margin-top: 36px;
}
.family-waitlist-status {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px; margin-bottom: 14px;
  background: rgba(245,158,11,0.10);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 100px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #FCD34D;
}
.family-waitlist-status .pulse-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #FCD34D;
  box-shadow: 0 0 8px #F59E0B;
  animation: waitlistPulse 2s ease-in-out infinite;
}
@keyframes waitlistPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.family-waitlist-form {
  display: flex; gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 100px;
  padding: 5px 5px 5px 20px;
  max-width: 460px;
  transition: border-color 0.2s, background 0.2s;
}
.family-waitlist-form:focus-within {
  border-color: rgba(139,92,246,0.4);
  background: rgba(255,255,255,0.06);
}
.family-waitlist-form input {
  flex: 1;
  background: transparent;
  border: none; outline: none;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  min-width: 0;
}
.family-waitlist-form input::placeholder {
  color: rgba(255,255,255,0.4);
}
.family-waitlist-form button {
  border: none; cursor: pointer;
  padding: 11px 22px;
  border-radius: 100px;
  background: linear-gradient(135deg, #6366F1, #8B5CF6);
  color: #fff;
  font-size: 14px; font-weight: 600;
  font-family: inherit;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s;
}
.family-waitlist-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -6px rgba(139,92,246,0.6);
}
.family-waitlist-form button:active { transform: translateY(0); }
.family-waitlist-meta {
  margin-top: 12px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
}
.family-waitlist-meta strong { color: rgba(255,255,255,0.85); font-weight: 600; }
.family-waitlist-success {
  display: none;
  margin-top: 14px;
  padding: 12px 18px;
  background: rgba(34,197,94,0.10);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 12px;
  font-size: 14px;
  color: #86EFAC;
}
.family-waitlist-success.visible { display: block; }

/* Apply Now button (replaces waitlist form) */
.family-apply-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px;
  border-radius: 100px;
  background: linear-gradient(135deg, #6366F1, #8B5CF6);
  color: #fff;
  font-size: 15px; font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 24px -6px rgba(139,92,246,0.5);
  transition: transform 0.15s, box-shadow 0.2s;
}
.family-apply-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -6px rgba(139,92,246,0.7);
}
.family-apply-btn:active { transform: translateY(0); }

/* Family stage — 5 mini cards in semi-circle arc on top, primary card centered below */
.family-stage {
  position: relative;
  width: 100%; height: 720px;
  display: flex; align-items: flex-start; justify-content: center;
}
.family-primary {
  position: absolute;
  width: 300px; height: 188px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a, #0a0a0a);
  box-shadow:
    0 40px 80px -15px rgba(0,0,0,0.95),
    0 0 0 0.5px rgba(255,255,255,0.1),
    0 0 60px rgba(139,92,246,0.3);
  padding: 18px 22px;
  z-index: 5;
  top: 420px; left: 50%;
  overflow: hidden;
  transform: translateX(-50%);
  animation: familyPrimaryFloat 5s ease-in-out infinite;
}
.family-primary::before {
  content: ''; position: absolute;
  right: -8%; bottom: -15%;
  width: 70%; height: 100%;
  background-image: repeating-linear-gradient(
    -38deg,
    rgba(255,255,255,0.05) 0px,
    rgba(255,255,255,0.05) 1px,
    transparent 1px,
    transparent 4.5px
  );
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 70% 70%, #000 25%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 80% at 70% 70%, #000 25%, transparent 75%);
  pointer-events: none;
}
@keyframes familyPrimaryFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}
.family-primary-mark {
  font-family: Orbitron; font-weight: 900; font-size: 16px; color: #fff; letter-spacing: 0.05em;
  position: relative; z-index: 2;
}
.family-primary-label {
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-top: 2px;
  position: relative; z-index: 2;
}
.family-primary-chip {
  width: 32px; height: 24px; border-radius: 4px;
  background: linear-gradient(135deg, #e8e8e8, #b0b0b0 40%, #6e6e6e);
  position: absolute;
  top: 78px; left: 22px;
  z-index: 2;
}
.family-primary-visa-wrap {
  position: absolute;
  bottom: 16px; right: 22px;
  z-index: 2; text-align: right; line-height: 1;
}
.family-primary-visa {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-style: italic; font-weight: 900;
  font-size: 22px; color: #fff;
  letter-spacing: -0.04em;
  text-align: right; line-height: 1;
}
.family-primary-visa-sub {
  font-size: 8px; font-weight: 400;
  color: rgba(255,255,255,0.95);
  text-align: right; margin-top: 2px;
  letter-spacing: 0.02em;
}

/* Connector lines from primary up to fanned cards */
.family-connectors {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 2;
}
.family-connectors svg { width: 100%; height: 100%; }

/* The 5 mini family cards arranged in a semi-circle arc above the primary */
.family-cards {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 4;
  pointer-events: none;
}
.family-mini-card {
  position: absolute;
  width: 170px; height: 106px;
  border-radius: 11px;
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a, #0a0a0a);
  box-shadow:
    0 24px 48px -14px rgba(0,0,0,0.85),
    0 0 0 0.5px rgba(255,255,255,0.08);
  padding: 12px 14px;
  overflow: hidden;
  pointer-events: auto;
  animation: familyMiniFloat 4s ease-in-out infinite;
}
.family-mini-card::before {
  content: ''; position: absolute;
  right: -8%; bottom: -15%;
  width: 70%; height: 110%;
  background-image: repeating-linear-gradient(
    -38deg,
    rgba(255,255,255,0.055) 0px,
    rgba(255,255,255,0.055) 1px,
    transparent 1px,
    transparent 4.5px
  );
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 70% 70%, #000 25%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 80% at 70% 70%, #000 25%, transparent 75%);
  pointer-events: none;
}
.family-mini-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(139,92,246,0.06) 60%, transparent 80%);
  pointer-events: none;
}
/* Semi-circle arc positioning — left to right across the top, curving down at the edges */
.family-mini-card:nth-child(1) {
  top: 230px; left: 50%; margin-left: -380px;
  transform: rotate(-18deg); animation-delay: 0s;
}
.family-mini-card:nth-child(2) {
  top: 110px; left: 50%; margin-left: -245px;
  transform: rotate(-9deg); animation-delay: 0.3s;
}
.family-mini-card:nth-child(3) {
  top: 60px; left: 50%; margin-left: -85px;
  transform: rotate(0deg); animation-delay: 0.6s;
}
.family-mini-card:nth-child(4) {
  top: 110px; left: 50%; margin-left: 75px;
  transform: rotate(9deg); animation-delay: 0.9s;
}
.family-mini-card:nth-child(5) {
  top: 230px; left: 50%; margin-left: 210px;
  transform: rotate(18deg); animation-delay: 1.2s;
}
@keyframes familyMiniFloat {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.12); }
}
.family-mini-mark {
  font-family: Orbitron; font-weight: 900; font-size: 13px;
  color: #fff; letter-spacing: 0.05em;
  position: relative; z-index: 2;
}
.family-mini-name {
  font-size: 9px; font-weight: 500;
  color: rgba(255,255,255,0.55);
  margin-top: 2px; letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative; z-index: 2;
}
.family-mini-chip {
  width: 22px; height: 17px; border-radius: 3px;
  background: linear-gradient(135deg, #e8e8e8, #b0b0b0 40%, #6e6e6e);
  position: absolute;
  top: 52px; left: 14px;
  z-index: 2;
}
.family-mini-chip::before {
  content: ''; position: absolute; inset: 3px;
  background:
    linear-gradient(to right, transparent 32%, rgba(0,0,0,0.45) 32% 33%, transparent 33% 65%, rgba(0,0,0,0.45) 65% 66%, transparent 66%),
    linear-gradient(to bottom, transparent 32%, rgba(0,0,0,0.45) 32% 33%, transparent 33% 65%, rgba(0,0,0,0.45) 65% 66%, transparent 66%);
}
.family-mini-visa-wrap {
  position: absolute;
  bottom: 12px; right: 14px;
  z-index: 2;
  text-align: right;
  line-height: 1;
}
.family-mini-visa {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-style: italic; font-weight: 900; font-size: 16px; color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
}
.family-mini-visa-sub {
  font-size: 7.5px; font-weight: 400;
  color: rgba(255,255,255,0.95);
  margin-top: 2px; letter-spacing: 0.03em;
}

/* ===== ADVERTISING SECTION ===== */
.ads-section {
  background: #0d1220;
  padding: 120px 36px;
  position: relative; overflow: hidden;
}
.ads-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 15% 50%, rgba(99,102,241,0.15), transparent 60%);
  pointer-events: none;
}
.ads-inner {
  max-width: 1300px; margin: 0 auto;
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 80px; align-items: center;
}
.ads-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-top: 36px;
}
.ads-stat {
  background: #141a2e;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 18px 20px;
}
.ads-stat-value {
  font-size: 26px; font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #6366F1, #8B5CF6);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 4px;
}
.ads-stat-label {
  font-size: 12px; color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}
.ads-cta-row {
  margin-top: 36px;
  display: flex; gap: 12px; flex-wrap: wrap;
}

/* Ads phone preview with rotating banners */
.ads-phone-stage {
  display: flex; justify-content: center;
  position: relative;
}
.ads-phone {
  width: 280px; height: 560px;
  border-radius: 42px;
  background: linear-gradient(180deg, #2a2a2e, #0a0a0c);
  padding: 6px;
  box-shadow:
    0 40px 100px -20px rgba(99,102,241,0.5),
    0 0 0 2px rgba(255,255,255,0.08);
  position: relative;
}
.ads-phone-screen {
  width: 100%; height: 100%;
  border-radius: 36px;
  background: linear-gradient(180deg, #050a1f, #0a0f24);
  padding: 36px 12px 18px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 10px;
}
.ads-phone-status {
  display: flex; justify-content: space-between;
  padding: 0 6px; font-size: 10px; font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.ads-phone-greeting { font-size: 12px; color: rgba(255,255,255,0.6); padding: 0 6px; margin-top: 4px; }
.ads-phone-balance {
  font-size: 30px; font-weight: 700; letter-spacing: -0.02em;
  padding: 0 6px; margin-bottom: 6px;
}
/* === ADS PHONE — matches real XSPA wallet app === */
.ads-phone-screen {
  background: #0b1226;
  padding: 36px 16px 0;
}
.ads-phone-balance-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 4px 18px;
}
.ads-phone-balance-stars {
  font-size: 22px; font-weight: 800; letter-spacing: 0.18em;
  color: #fff; line-height: 1;
}
.ads-phone-balance-eye {
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
}
.ads-phone-balance-eye svg { width: 16px; height: 16px; display: block; }
.ads-phone-actions-row {
  display: flex; justify-content: space-between;
  padding: 0 4px 18px;
}
.ads-phone-action {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  flex: 1;
}
.ads-phone-action-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(180deg, #1e2438 0%, #131829 100%);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.ads-phone-action-btn svg { width: 16px; height: 16px; display: block; }
.ads-phone-action-label {
  font-size: 8.5px; font-weight: 500;
  color: rgba(255,255,255,0.85);
}

/* Banner carousel — real screenshot images cycling */
.ads-banner-stack {
  position: relative;
  aspect-ratio: 2.67 / 1;
  margin: 0 0 8px;
  border-radius: 16px;
  overflow: visible;
}
.ads-banner {
  position: absolute; inset: 0;
  border-radius: 16px;
  overflow: hidden;
  opacity: 0;
  background: #1a1530;
  animation: bannerCycle 12s ease-in-out infinite;
}
.ads-banner img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.ads-banner.b1 { animation-delay: 0s; }
.ads-banner.b2 { animation-delay: 3s; }
.ads-banner.b3 { animation-delay: 6s; }
.ads-banner.b4 { animation-delay: 9s; }

@keyframes bannerCycle {
  0% { opacity: 0; transform: translateX(15px); }
  3%, 23% { opacity: 1; transform: translateX(0); }
  27%, 100% { opacity: 0; transform: translateX(-15px); }
}

/* Floating "Your Brand Here" callout pointing at the banner */
.ads-banner-callout {
  position: absolute;
  top: -14px; right: -10px;
  z-index: 10;
  display: flex; flex-direction: column; align-items: flex-end;
  pointer-events: none;
  animation: calloutFloat 3s ease-in-out infinite;
}
.ads-banner-callout-tag {
  background: linear-gradient(135deg, #4338ca, #8B5CF6);
  color: #fff;
  font-size: 10px; font-weight: 800;
  padding: 6px 12px;
  border-radius: 100px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(139,92,246,0.5), 0 0 0 2px rgba(255,255,255,0.08);
  position: relative;
}
.ads-banner-callout-tag::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 100px;
  background: linear-gradient(135deg, #4338ca, #8B5CF6);
  opacity: 0.4;
  filter: blur(8px);
  z-index: -1;
}
.ads-banner-callout-arrow {
  width: 2px; height: 14px;
  background: linear-gradient(to bottom, #8B5CF6, transparent);
  margin-right: 24px;
  margin-top: 2px;
}
@keyframes calloutFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* Banner pagination dots */
.ads-banner-dots {
  display: flex; justify-content: center; gap: 5px;
  padding: 6px 0 12px;
}
.ads-banner-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  transition: all 0.4s;
}
.ads-banner-dot.d1 { animation: dotCycle1 12s ease-in-out infinite; }
.ads-banner-dot.d2 { animation: dotCycle2 12s ease-in-out infinite; }
.ads-banner-dot.d3 { animation: dotCycle3 12s ease-in-out infinite; }
.ads-banner-dot.d4 { animation: dotCycle4 12s ease-in-out infinite; }
@keyframes dotCycle1 {
  0%, 25% { width: 16px; background: #8B5CF6; }
  26%, 100% { width: 5px; background: rgba(255,255,255,0.18); }
}
@keyframes dotCycle2 {
  0%, 25% { width: 5px; background: rgba(255,255,255,0.18); }
  26%, 50% { width: 16px; background: #8B5CF6; }
  51%, 100% { width: 5px; background: rgba(255,255,255,0.18); }
}
@keyframes dotCycle3 {
  0%, 50% { width: 5px; background: rgba(255,255,255,0.18); }
  51%, 75% { width: 16px; background: #8B5CF6; }
  76%, 100% { width: 5px; background: rgba(255,255,255,0.18); }
}
@keyframes dotCycle4 {
  0%, 75% { width: 5px; background: rgba(255,255,255,0.18); }
  76%, 100% { width: 16px; background: #8B5CF6; }
}

/* Assets section */
.ads-phone-assets-header {
  font-size: 18px; font-weight: 800;
  color: #fff;
  padding: 8px 4px 10px;
  letter-spacing: -0.01em;
}
.ads-phone-search-row {
  display: flex; gap: 8px;
  padding: 0 4px 12px;
}
.ads-phone-search-icon-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
}
.ads-phone-search-icon-btn svg { width: 14px; height: 14px; display: block; }
.ads-phone-search {
  flex: 1;
  height: 36px;
  border-radius: 100px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; gap: 8px;
  padding: 0 14px;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}
.ads-phone-search svg { width: 12px; height: 12px; flex-shrink: 0; }

.ads-phone-list-label { display: none; }
.ads-phone-asset {
  display: flex; align-items: center;
  padding: 10px 4px;
  gap: 10px;
}
.ads-phone-asset-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, #1a1f3a, #4c1d95);
  display: flex; align-items: center; justify-content: center;
  font-family: Orbitron; font-size: 8px; font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.ads-phone-asset-info { flex: 1; min-width: 0; }
.ads-phone-asset-name { font-size: 11px; font-weight: 600; color: #fff; }
.ads-phone-asset-price { font-size: 9px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.ads-phone-asset-amount {
  font-size: 11px; font-weight: 700; color: #fff;
  text-align: right; line-height: 1.3;
}
.ads-phone-asset-amount-sub {
  font-size: 8.5px; color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em; margin-top: 2px;
}

/* Indicator pulse on banner */
.ads-banner-indicator {
  position: absolute;
  top: -6px; right: -6px;
  background: #fff;
  color: #6366F1;
  font-size: 9px; font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(99,102,241,0.5);
  animation: adIndicatorPulse 2s ease-in-out infinite;
  z-index: 5;
}
@keyframes adIndicatorPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* ===== RESPONSIVE FOR NEW SECTIONS ===== */
@media (max-width: 1024px) {
  .chain-grid { grid-template-columns: 1fr; }
  .networks-grid { grid-template-columns: repeat(3, 1fr); }
  .family-inner { grid-template-columns: 1fr; gap: 60px; }
  .ads-inner { grid-template-columns: 1fr; gap: 60px; }
}
@media (max-width: 640px) {
  .chain-section, .networks-section, .family-section, .ads-section { padding: 80px 20px; }
  .networks-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .network-tile { padding: 24px 14px; }
  .family-stage { height: 580px; }
  .family-primary { width: 230px; height: 144px; top: 340px; padding: 14px 16px; }
  .family-primary-chip { width: 26px; height: 19px; top: 60px; left: 16px; }
  .family-primary-visa { font-size: 18px; }
  .family-mini-card { width: 130px; height: 82px; padding: 9px 11px; }
  .family-mini-card:nth-child(1) { top: 200px; margin-left: -270px; transform: rotate(-18deg); }
  .family-mini-card:nth-child(2) { top: 95px; margin-left: -180px; transform: rotate(-9deg); }
  .family-mini-card:nth-child(3) { top: 50px; margin-left: -65px; transform: rotate(0deg); }
  .family-mini-card:nth-child(4) { top: 95px; margin-left: 50px; transform: rotate(9deg); }
  .family-mini-card:nth-child(5) { top: 200px; margin-left: 140px; transform: rotate(18deg); }
  .family-mini-mark { font-size: 11px; }
  .family-mini-name { font-size: 8px; }
  .family-mini-chip { width: 17px; height: 13px; top: 38px; left: 11px; }
  .family-mini-visa { font-size: 13px; }
  .family-mini-visa-sub { font-size: 6.5px; }
  .ads-phone { width: 240px; height: 480px; }
  .ads-stats { grid-template-columns: 1fr; }
}

/* ===== PHONE FRAME ENHANCEMENTS ===== */
/* Reusable phone notch (Dynamic Island style) and status bar overlay */

/* Dynamic Island — sits at top of any phone-screen */
.phone-notch {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 22px;
  background: #000;
  border-radius: 100px;
  z-index: 50;
  box-shadow: inset 0 0 0 0.5px rgba(255,255,255,0.05);
}
.phone-notch.small { width: 60px; height: 17px; top: 6px; }
.phone-notch.tiny { width: 28px; height: 8px; top: 4px; }

/* Status bar overlay — sits at very top of screen, ABOVE all content */
.phone-status-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 26px 0;
  z-index: 40;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  pointer-events: none;
  letter-spacing: -0.01em;
}
.phone-status-bar.small {
  height: 28px;
  padding: 9px 18px 0;
  font-size: 11px;
}
.phone-status-bar.tiny {
  height: 14px;
  padding: 4px 8px 0;
  font-size: 6px;
}
.phone-status-time {
  font-variant-numeric: tabular-nums;
}
.phone-status-icons {
  display: flex;
  align-items: center;
  gap: 5px;
}
.phone-status-bar.tiny .phone-status-icons { gap: 2px; }

/* Signal bars (5G uses text label + signal) */
.phone-status-signal {
  display: flex;
  align-items: flex-end;
  gap: 1.5px;
  height: 10px;
}
.phone-status-bar.small .phone-status-signal { height: 8px; gap: 1px; }
.phone-status-bar.tiny .phone-status-signal { height: 4px; gap: 0.5px; }
.phone-status-signal span {
  width: 2.5px;
  background: #fff;
  border-radius: 0.5px;
}
.phone-status-bar.small .phone-status-signal span { width: 2px; }
.phone-status-bar.tiny .phone-status-signal span { width: 1px; }
.phone-status-signal span:nth-child(1) { height: 30%; }
.phone-status-signal span:nth-child(2) { height: 55%; }
.phone-status-signal span:nth-child(3) { height: 80%; }
.phone-status-signal span:nth-child(4) { height: 100%; }

/* 5G label */
.phone-status-5g {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-left: 1px;
}
.phone-status-bar.small .phone-status-5g { font-size: 10px; }
.phone-status-bar.tiny .phone-status-5g { font-size: 5px; }

/* Battery — outline rect with fill */
.phone-status-battery {
  width: 24px;
  height: 11px;
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 3px;
  position: relative;
  margin-left: 2px;
  display: flex;
  align-items: center;
  padding: 1px;
}
.phone-status-bar.small .phone-status-battery { width: 18px; height: 8px; }
.phone-status-bar.tiny .phone-status-battery { width: 9px; height: 4px; border-radius: 1.5px; padding: 0.5px; }
.phone-status-battery::after {
  content: '';
  position: absolute;
  right: -3px; top: 50%;
  transform: translateY(-50%);
  width: 1.5px; height: 5px;
  background: rgba(255,255,255,0.85);
  border-radius: 0 1px 1px 0;
}
.phone-status-bar.small .phone-status-battery::after { width: 1px; height: 4px; }
.phone-status-bar.tiny .phone-status-battery::after { width: 0.5px; height: 2px; right: -1.5px; }
.phone-status-battery-fill {
  width: 78%;
  height: 100%;
  background: #fff;
  border-radius: 1.5px;
}
.phone-status-bar.tiny .phone-status-battery-fill { border-radius: 0.5px; }

/* Side buttons on phone bezel */
.phone-side-btn {
  position: absolute;
  background: linear-gradient(90deg, rgba(0,0,0,0.4), rgba(255,255,255,0.04));
  border-radius: 1.5px;
  z-index: 1;
  pointer-events: none;
}
.phone-side-btn.power {
  right: -2px; top: 130px;
  width: 3px; height: 60px;
}
.phone-side-btn.vol-up {
  left: -2px; top: 110px;
  width: 3px; height: 40px;
}
.phone-side-btn.vol-down {
  left: -2px; top: 160px;
  width: 3px; height: 40px;
}

/* Smaller phones get smaller buttons */
.phone-side-btn.small.power {
  right: -1.5px; top: 90px;
  width: 2px; height: 40px;
}
.phone-side-btn.small.vol-up {
  left: -1.5px; top: 70px;
  width: 2px; height: 28px;
}
.phone-side-btn.small.vol-down {
  left: -1.5px; top: 105px;
  width: 2px; height: 28px;
}
.phone-side-btn.tiny.power {
  right: -0.5px; top: 35px;
  width: 1px; height: 18px;
}
.phone-side-btn.tiny.vol-up {
  left: -0.5px; top: 28px;
  width: 1px; height: 12px;
}
.phone-side-btn.tiny.vol-down {
  left: -0.5px; top: 44px;
  width: 1px; height: 12px;
}

/* Adjust hero-phone-screen to nudge content below status bar when not using image */
.hero-phone .phone-notch,
.wallet-phone .phone-notch,
.referral-phone .phone-notch,
.ads-phone .phone-notch { z-index: 60; }

