/*
 * PAGES.CSS — Wildfoxs Club
 * Page-specific styles for about.html and business-plan-2.html
 * ─────────────────────────────────────────────────────────────
 */

/* ═══════════════════════════════════════════════════════════════
   SHARED PAGE SECTION WRAPPERS
═══════════════════════════════════════════════════════════════ */
.section-primary {
  padding: 80px 0;
  background: var(--primary);
}
.section-secondary {
  padding: 80px 0;
  background: var(--secondary);
}
.section-divider {
  border: none;
  height: 1px;
  margin: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 229, 195, 0.2),
    transparent
  );
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE — HERO BANNER
═══════════════════════════════════════════════════════════════ */
.about-hero-banner {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url("https://picsum.photos/1920/700?random=88");
  background-size: cover;
  background-position: center;
  padding-top: 80px;
}
.about-hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 15, 13, 0.82) 0%,
    rgba(6, 15, 13, 0.65) 60%,
    rgba(6, 15, 13, 0.9) 100%
  );
  z-index: 0;
}
.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 0 50px;
}
.about-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0;
}
.about-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  font-family: var(--font-mono);
}
.about-breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}
.about-breadcrumb a:hover {
  color: var(--text-primary);
}
.about-breadcrumb .sep {
  color: var(--text-dim);
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE — IMAGE COLLAGE
═══════════════════════════════════════════════════════════════ */
.about-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 12px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.collage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.5s ease;
  display: block;
}
.collage-img:hover {
  transform: scale(1.04);
}
.collage-cell {
  overflow: hidden;
  border-radius: var(--radius);
}
.collage-cell.span-row {
  grid-row: span 2;
}
.collage-cell.span-col {
  grid-column: span 2;
}
.collage-accent-bar {
  width: 50px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 2px;
  margin-bottom: 16px;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE — TEXT BLOCK
═══════════════════════════════════════════════════════════════ */
.about-text-block {
  padding-left: 0;
}
@media (min-width: 992px) {
  .about-text-block {
    padding-left: 40px;
  }
}

.about-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.about-check-item .aci-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(0, 229, 195, 0.12);
  border: 1px solid rgba(0, 229, 195, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.65rem;
  margin-top: 1px;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE — STATS STRIP
═══════════════════════════════════════════════════════════════ */
.about-stats-wrap {
  background: var(--secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.about-stat-pill {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid var(--border);
  background: var(--primary);
}
.about-stat-pill:last-child {
  border-right: none;
}
.asp-num {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}
.asp-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE — SERVICE FEATURE CARDS
═══════════════════════════════════════════════════════════════ */
.services-dark-section {
  background: var(--secondary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.services-dark-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 229, 195, 0.2),
    transparent
  );
}
.services-dark-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 229, 195, 0.2),
    transparent
  );
}
.svc-card {
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}
.svc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 229, 195, 0.25);
  box-shadow: var(--shadow-glow);
}
.svc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.3s;
}
.svc-card:hover::before {
  opacity: 1;
}
.svc-hex-wrap {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
}
.svc-hex {
  width: 90px;
  height: 90px;
  background: rgba(0, 229, 195, 0.06);
  border: 1.5px solid rgba(0, 229, 195, 0.2);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  position: relative;
  transition: var(--transition);
  transform: rotate(45deg);
}
.svc-hex.green {
  background: rgba(57, 255, 20, 0.06);
  border-color: rgba(57, 255, 20, 0.2);
}
.svc-hex.purple {
  background: rgba(168, 85, 247, 0.06);
  border-color: rgba(168, 85, 247, 0.2);
}
.svc-card:hover .svc-hex {
  background: rgba(0, 229, 195, 0.12);
  border-color: rgba(0, 229, 195, 0.4);
  box-shadow: 0 0 30px rgba(0, 229, 195, 0.15);
}
.svc-hex .svc-icon-inner {
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-icon-accent {
  color: var(--accent);
  font-size: 2rem;
}
.svc-icon-green {
  color: var(--neon-green);
  font-size: 2rem;
}
.svc-icon-purple {
  color: var(--neon-purple);
  font-size: 2rem;
}
.svc-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.svc-card-subtitle {
  font-size: 0.78rem;
  color: var(--accent);
  font-family: var(--font-mono);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.svc-card-subtitle.green {
  color: var(--neon-green);
}
.svc-card-subtitle.purple {
  color: var(--neon-purple);
}
.svc-card-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.svc-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  margin-top: 18px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: gap 0.2s;
}
.svc-card-link:hover {
  gap: 10px;
  color: var(--text-primary);
}
.svc-card-link.green {
  color: var(--neon-green);
}
.svc-card-link.purple {
  color: var(--neon-purple);
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE — MISSION & VISION
═══════════════════════════════════════════════════════════════ */
.mv-block-card {
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 16px;
}
.mv-block-card.vision {
  border-color: rgba(168, 85, 247, 0.2);
}
.mv-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.mv-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  background: rgba(0, 229, 195, 0.1);
  border: 1px solid rgba(0, 229, 195, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
}
.mv-icon-box.purple {
  background: rgba(168, 85, 247, 0.1);
  border-color: rgba(168, 85, 247, 0.2);
  color: var(--neon-purple);
}
.mv-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE — CORE VALUES GRID
═══════════════════════════════════════════════════════════════ */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.value-item {
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  text-align: center;
}
.value-item h5 {
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.value-item p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}
.value-emoji {
  font-size: 1.8rem;
  margin-bottom: 8px;
  display: block;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE — NEWSLETTER
═══════════════════════════════════════════════════════════════ */
.about-newsletter {
  background: linear-gradient(
    135deg,
    rgba(0, 229, 195, 0.08) 0%,
    rgba(168, 85, 247, 0.05) 100%
  );
  border-top: 1px solid rgba(0, 229, 195, 0.12);
  border-bottom: 1px solid rgba(0, 229, 195, 0.12);
  padding: 70px 0;
}
.nl-icon-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.nl-envelope-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 229, 195, 0.1);
  border: 1px solid rgba(0, 229, 195, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  animation: float 4s ease-in-out infinite;
}
.nl-form-wrap {
  display: flex;
  gap: 0;
  max-width: 520px;
  margin: 0 auto;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid rgba(0, 229, 195, 0.25);
  background: var(--glass);
}
.nl-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 0.88rem;
  font-family: var(--font-body);
}
.nl-input::placeholder {
  color: var(--text-dim);
}
.nl-btn {
  background: var(--gradient-accent);
  color: var(--primary);
  border: none;
  padding: 14px 26px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
  border-radius: 0 50px 50px 0;
}
.nl-btn:hover {
  opacity: 0.88;
}

/* ═══════════════════════════════════════════════════════════════
   BUSINESS PLAN PAGE — HERO
═══════════════════════════════════════════════════════════════ */
.bp-hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--primary);
  position: relative;
  overflow: hidden;
  padding-top: 90px;
}
.bp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 60% at 70% 50%,
    rgba(0, 229, 195, 0.06) 0%,
    transparent 70%
  );
}
.bp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 229, 195, 0.08);
  border: 1px solid rgba(0, 229, 195, 0.2);
  border-radius: 50px;
  padding: 6px 18px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.bp-stat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}
.bp-stat-pill {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 8px 20px;
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.bp-stat-pill-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}
.bp-stat-pill-val {
  font-family: var(--font-mono);
  font-weight: 700;
  margin-left: 8px;
}
.bp-stat-pill-val.cyan {
  color: var(--accent);
}
.bp-stat-pill-val.green {
  color: var(--neon-green);
}
.bp-stat-pill-val.purple {
  color: var(--neon-purple);
}

/* ═══════════════════════════════════════════════════════════════
   BUSINESS PLAN PAGE — COIN VISUAL
═══════════════════════════════════════════════════════════════ */
.bp-hero-coin {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bp-coin-ring {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 2px solid rgba(0, 229, 195, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: rotate-ring 18s linear infinite;
}
.bp-coin-ring::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 229, 195, 0.1);
  animation: rotate-ring 12s linear infinite reverse;
}
.bp-coin-center {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  box-shadow: 0 0 60px rgba(0, 229, 195, 0.3);
  animation: float 5s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
.bp-coin-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(0, 229, 195, 0.6);
  animation: dot-travel 4s linear infinite;
}
.bp-float-card {
  position: absolute;
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 12px 16px;
  backdrop-filter: blur(16px);
}
.bp-float-card-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 2px;
}
.bp-float-card-val {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
}
.bp-float-card-val.green {
  color: var(--neon-green);
}
.bp-float-card-val.cyan {
  color: var(--accent);
}
.bp-float-card-val.purple {
  color: var(--neon-purple);
}

/* ═══════════════════════════════════════════════════════════════
   BUSINESS PLAN PAGE — INCOME SECTIONS
═══════════════════════════════════════════════════════════════ */
.income-section {
  padding: 70px 0;
}
.income-section.alt {
  background: var(--secondary);
}
.income-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.income-section-title .title-badge {
  display: inline-block;
  background: var(--gradient-accent);
  color: var(--primary);
  font-size: 0.6rem;
  font-family: var(--font-mono);
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.income-section-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  font-family: var(--font-mono);
}
.income-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 60px;
  margin-bottom: 12px;
}
.income-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: rgba(0, 229, 195, 0.15);
  border: 1px solid rgba(0, 229, 195, 0.2);
  animation: bar-grow 1.2s ease both;
}
.income-bar.active {
  background: var(--gradient-accent);
  border-color: transparent;
}
.highlight-box {
  background: linear-gradient(
    135deg,
    rgba(0, 229, 195, 0.08),
    rgba(168, 85, 247, 0.05)
  );
  border: 1px solid rgba(0, 229, 195, 0.2);
  border-radius: var(--radius-lg);
  padding: 28px;
}

/* ═══════════════════════════════════════════════════════════════
   BUSINESS PLAN PAGE — PACKAGE CARDS
═══════════════════════════════════════════════════════════════ */
.pkg-card {
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.pkg-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.3s;
}
.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(0, 229, 195, 0.25);
}
.pkg-card:hover::before {
  opacity: 1;
}
.pkg-card.highlight {
  background: var(--gradient-accent);
  border-color: transparent;
  box-shadow: 0 12px 50px rgba(0, 229, 195, 0.25);
}
.pkg-card.highlight::before {
  display: none;
}
.pkg-card.highlight .pkg-rate,
.pkg-card.highlight h5,
.pkg-card.highlight .pkg-range,
.pkg-card.highlight .pkg-label {
  color: var(--primary) !important;
}
.pkg-card.highlight .pkg-feature {
  color: rgba(6, 15, 13, 0.8) !important;
}
.pkg-card.highlight .pkg-divider {
  border-color: rgba(6, 15, 13, 0.15);
}
.pkg-card.purple-border {
  border-color: rgba(168, 85, 247, 0.3);
}
.pkg-card.gold-border {
  border-color: rgba(247, 147, 26, 0.3);
}
.pkg-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(0, 229, 195, 0.1);
  border: 1px solid rgba(0, 229, 195, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.pkg-icon.purple {
  background: rgba(168, 85, 247, 0.1);
  border-color: rgba(168, 85, 247, 0.2);
}
.pkg-card.highlight .pkg-icon {
  background: rgba(6, 15, 13, 0.15);
  border-color: rgba(6, 15, 13, 0.2);
}
.pkg-rate {
  font-family: var(--font-mono);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.pkg-rate.purple {
  color: var(--neon-purple);
}
.pkg-rate.gold {
  color: #f7931a;
}
.pkg-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.pkg-range {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 8px 14px;
  margin-bottom: 16px;
  display: inline-block;
}
.pkg-range.purple {
  color: var(--neon-purple);
}
.pkg-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 14px 0;
}
.pkg-feature {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.pkg-feature i {
  color: var(--accent);
  font-size: 0.72rem;
}
.pkg-feature i.purple {
  color: var(--neon-purple);
}

/* ═══════════════════════════════════════════════════════════════
   BUSINESS PLAN PAGE — YIELD BOOSTER SECTION
═══════════════════════════════════════════════════════════════ */
.bp-booster-wrap {
  position: relative;
  display: inline-block;
  text-align: center;
  width: 100%;
}
.bp-booster-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(0, 229, 195, 0.12),
    rgba(168, 85, 247, 0.08)
  );
  border: 1px solid rgba(0, 229, 195, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 5s ease-in-out infinite;
  margin: 0 auto;
  text-align: center;
}
.bp-booster-inner {
  text-align: center;
}
.bp-booster-emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: 4px;
}
.bp-booster-pct {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}
.bp-booster-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  display: block;
}
.bp-compare-box {
  background: linear-gradient(
    135deg,
    rgba(247, 147, 26, 0.08),
    rgba(0, 229, 195, 0.05)
  );
  border: 1px solid rgba(247, 147, 26, 0.2);
  border-radius: var(--radius-lg);
  padding: 16px;
}
.bp-compare-intro {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.bp-compare-row {
  margin-bottom: 8px;
}
.bp-compare-row-label {
  font-size: 0.7rem;
  color: var(--text-dim);
  display: block;
}
.bp-compare-row-val {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}
.bp-compare-row-val.green {
  color: var(--neon-green);
  font-size: 1.3rem;
}
.bp-compare-extra {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent);
}

/* ═══════════════════════════════════════════════════════════════
   BUSINESS PLAN PAGE — INFO CARD
═══════════════════════════════════════════════════════════════ */
.info-card {
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 30px;
}
.info-card.purple-border {
  border-color: rgba(168, 85, 247, 0.25);
}
.info-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.info-stat-row:last-child {
  border-bottom: none;
}
.info-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.info-stat-val {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--accent);
  font-size: 0.95rem;
}
.info-stat-val.purple {
  color: var(--neon-purple);
}
.info-stat-val.green {
  color: var(--neon-green);
}

/* ═══════════════════════════════════════════════════════════════
   BUSINESS PLAN PAGE — DIRECT INCOME VISUAL
═══════════════════════════════════════════════════════════════ */
.direct-visual-card {
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
}
.direct-visual-emoji {
  font-size: 3rem;
  margin-bottom: 10px;
  display: block;
}
.direct-visual-title {
  margin-bottom: 6px;
}
.direct-visual-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.direct-earn-box {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 14px;
  margin-bottom: 10px;
}
.direct-earn-box-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-bottom: 4px;
  display: block;
}
.direct-earn-box-val {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--neon-green);
  display: block;
}
.direct-earn-box-sub {
  font-size: 0.65rem;
  color: var(--text-dim);
  display: block;
}
.direct-earn-total {
  background: rgba(0, 229, 195, 0.08);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius);
  padding: 14px;
}
.direct-earn-total-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-bottom: 4px;
  display: block;
}
.direct-earn-total-val {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}

/* ═══════════════════════════════════════════════════════════════
   BUSINESS PLAN PAGE — TIER TABLES
═══════════════════════════════════════════════════════════════ */
.tier-table-wrap {
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.tier-table {
  width: 100%;
  border-collapse: collapse;
}
.tier-table thead th {
  background: rgba(0, 229, 195, 0.08);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.tier-table tbody td {
  padding: 10px 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.tier-table tbody tr:hover {
  background: rgba(0, 229, 195, 0.03);
}
.tier-table tbody tr:last-child td {
  border-bottom: none;
}
.tier-table .row-total {
  background: rgba(0, 229, 195, 0.04);
}
.tier-table .row-total td {
  color: var(--text-primary);
}
.tier-table .row-purple {
  background: rgba(168, 85, 247, 0.04);
}
.tier-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0, 229, 195, 0.1);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
}
.tier-num.purple {
  background: rgba(168, 85, 247, 0.1);
  color: var(--neon-purple);
}
.tier-pct {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--neon-green);
}
.tier-pct.purple {
  color: var(--neon-purple);
}
.tier-pct.cyan {
  color: var(--accent);
}
.tier-mono {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
}
.tier-mono.total {
  color: var(--accent);
  font-weight: 700;
}
.tier-mono.green {
  color: var(--neon-green);
}
.tier-mono.purple-bold {
  color: var(--neon-purple);
  font-weight: 700;
}

/* Tier grid */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 8px;
}
.tier-cell {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 10px 12px;
  text-align: center;
}
.tier-cell .tc-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-dim);
  display: block;
  margin-bottom: 4px;
}
.tier-cell .tc-pct {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
}
.tier-cell .tc-cond {
  font-size: 0.6rem;
  color: var(--text-dim);
  margin-top: 2px;
  display: block;
}
.tier-cell.active-tier {
  background: rgba(0, 229, 195, 0.1);
  border-color: rgba(0, 229, 195, 0.3);
}
.tier-cell.active-tier .tc-pct {
  color: var(--neon-green);
}
.tier-note {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-top: 10px;
}
.tier-note span {
  color: var(--accent);
}

/* ═══════════════════════════════════════════════════════════════
   BUSINESS PLAN PAGE — EARN SUMMARY CARDS
═══════════════════════════════════════════════════════════════ */
.earn-card {
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.earn-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: var(--gradient-accent);
}
.earn-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 229, 195, 0.1);
  border: 1px solid rgba(0, 229, 195, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 14px;
}
.earn-card-val {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}
.earn-card-val.gold {
  color: #f7931a;
}
.earn-card-val.green {
  color: var(--neon-green);
}
.earn-card-val.purple {
  color: var(--neon-purple);
}
.earn-card-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   BUSINESS PLAN PAGE — BONUS & AMBASSADOR CLUBS
═══════════════════════════════════════════════════════════════ */
.club-card {
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.club-card.bonus {
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.12),
    rgba(0, 229, 195, 0.08)
  );
  border: 1px solid rgba(168, 85, 247, 0.25);
}
.club-card.ambassador {
  background: linear-gradient(
    135deg,
    rgba(0, 229, 195, 0.12),
    rgba(247, 147, 26, 0.08)
  );
  border: 1px solid rgba(0, 229, 195, 0.25);
}
.club-emoji {
  font-size: 3rem;
  margin-bottom: 12px;
  display: block;
}
.club-type-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  display: block;
}
.club-type-label.purple {
  color: var(--neon-purple);
}
.club-type-label.cyan {
  color: var(--accent);
}
.club-pct {
  font-family: var(--font-mono);
  font-size: 4rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.club-pct.purple {
  background: linear-gradient(135deg, #a855f7, #00e5c3);
  -webkit-background-clip: text;
  background-clip: text;
}
.club-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 12px 0;
}
.club-req {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 16px;
  display: inline-block;
  font-family: var(--font-mono);
}
.club-stats-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.club-stat-item {
  text-align: center;
}
.club-stat-val {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 700;
  display: block;
}
.club-stat-val.purple {
  color: var(--neon-purple);
}
.club-stat-val.cyan {
  color: var(--accent);
}
.club-stat-sub {
  font-size: 0.65rem;
  color: var(--text-dim);
  display: block;
}

/* ═══════════════════════════════════════════════════════════════
   BUSINESS PLAN PAGE — RANKING PLAN
═══════════════════════════════════════════════════════════════ */
.rank-card {
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
}
.rank-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.rank-card.crown {
  border-color: rgba(0, 229, 195, 0.3);
  background: linear-gradient(
    135deg,
    rgba(0, 229, 195, 0.06),
    rgba(168, 85, 247, 0.06)
  );
}
.rank-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border: 2px solid;
}
.rank-icon.bronze {
  background: rgba(205, 127, 50, 0.1);
  border-color: rgba(205, 127, 50, 0.4);
  color: #cd7f32;
}
.rank-icon.silver {
  background: rgba(192, 192, 192, 0.1);
  border-color: rgba(192, 192, 192, 0.4);
  color: #c0c0c0;
}
.rank-icon.gold {
  background: rgba(247, 147, 26, 0.1);
  border-color: rgba(247, 147, 26, 0.4);
  color: #f7931a;
}
.rank-icon.cyan {
  background: rgba(0, 229, 195, 0.1);
  border-color: rgba(0, 229, 195, 0.4);
  color: var(--accent);
}
.rank-icon.purple {
  background: rgba(168, 85, 247, 0.1);
  border-color: rgba(168, 85, 247, 0.4);
  color: var(--neon-purple);
}
.rank-icon.crown-bg {
  background: var(--gradient-accent);
  border: none;
}
.rank-name {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.rank-name.bronze {
  color: #cd7f32;
}
.rank-name.silver {
  color: #c0c0c0;
}
.rank-name.gold {
  color: #f7931a;
}
.rank-name.cyan {
  color: var(--accent);
}
.rank-name.purple {
  color: var(--neon-purple);
}
.rank-name.crown {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.rank-req {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}
.rank-reward {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
}
.rank-reward.green {
  color: var(--neon-green);
}

/* ═══════════════════════════════════════════════════════════════
   BUSINESS PLAN PAGE — COMMUNITY TREE
═══════════════════════════════════════════════════════════════ */
.community-tree {
  text-align: center;
}
.tree-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
}
.tree-node {
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 10px 14px;
  min-width: 90px;
  font-size: 0.72rem;
  text-align: center;
  position: relative;
}
.tree-node.root {
  background: var(--gradient-accent);
  border-color: transparent;
  color: var(--primary);
  min-width: 110px;
  font-weight: 700;
  padding: 16px 20px;
}
.tree-node.accent-border {
  border-color: rgba(0, 229, 195, 0.3);
  background: rgba(0, 229, 195, 0.05);
}
.tn-num {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}
.tree-node.root .tn-num {
  color: var(--primary);
}
.tn-lbl {
  font-size: 0.62rem;
  color: var(--text-muted);
}
.tree-node.root .tn-lbl {
  color: rgba(6, 15, 13, 0.7);
}
.tree-connector {
  display: flex;
  justify-content: center;
  padding: 6px 0;
}
.tree-connector svg {
  opacity: 0.3;
}
.tree-income-tag {
  display: inline-block;
  background: rgba(0, 229, 195, 0.1);
  border: 1px solid rgba(0, 229, 195, 0.2);
  border-radius: 20px;
  padding: 3px 10px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--accent);
  margin-top: 4px;
}
.tree-income-tag.primary-bg {
  background: rgba(6, 15, 13, 0.2);
  border-color: rgba(6, 15, 13, 0.3);
  color: var(--primary);
}
.tree-level-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-dim);
  text-align: center;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.tree-dots {
  text-align: center;
  color: var(--text-dim);
  font-size: 1.2rem;
  letter-spacing: 8px;
  margin: 8px 0;
}

/* ═══════════════════════════════════════════════════════════════
   INDEX PAGE — ENHANCED ANIMATED STYLES
═══════════════════════════════════════════════════════════════ */

/* ── Glowing ambient orbs (decorative bg blobs) ── */
.ix-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.ix-orb-1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(0, 229, 195, 0.07) 0%,
    transparent 70%
  );
  top: 10%;
  left: -120px;
  animation: float 14s ease-in-out infinite;
}
.ix-orb-2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(168, 85, 247, 0.06) 0%,
    transparent 70%
  );
  bottom: 5%;
  right: -80px;
  animation: float 18s ease-in-out infinite reverse;
}
.ix-orb-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(0, 229, 195, 0.05) 0%,
    transparent 70%
  );
  top: 20%;
  right: -150px;
  animation: float 20s ease-in-out infinite;
}
.ix-orb-4 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(168, 85, 247, 0.05) 0%,
    transparent 70%
  );
  bottom: 0;
  left: -100px;
  animation: float 16s ease-in-out infinite reverse;
}
.ix-orb-5 {
  width: 450px;
  height: 450px;
  background: radial-gradient(
    circle,
    rgba(0, 229, 195, 0.05) 0%,
    transparent 70%
  );
  top: 30%;
  left: -100px;
  animation: float 22s ease-in-out infinite;
}

/* ── Hero container positioning ── */
.ix-hero-container {
  position: relative;
  z-index: 2;
}

/* ── Hero mini stats strip ── */
.ix-mini-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 2.4rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(8px);
  animation: fadeInUp 0.8s 0.5s ease both;
  width: fit-content;
}
.ix-mini-stat {
  display: flex;
  flex-direction: column;
  padding: 14px 22px;
}
.ix-mini-val {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.ix-mini-lbl {
  font-size: 0.62rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 3px;
}
.ix-mini-sep {
  width: 1px;
  height: 36px;
  background: var(--glass-border);
  flex-shrink: 0;
}

/* ── Live payout badge (below dashboard card) ── */
.ix-live-badge {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 7px 18px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--neon-green);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: coin-float-2 5s ease-in-out infinite;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* ── About section positioning ── */
.ix-about {
  position: relative;
  overflow: hidden;
}

/* ── About divider ── */
.ix-divider {
  border: none;
  height: 1px;
  margin: 40px 0;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ── Feature cards enhanced ── */
.ix-features {
  position: relative;
  overflow: hidden;
}
.ix-feature-card {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.ix-feature-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(0, 229, 195, 0.1);
}
.ix-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(0, 229, 195, 0.06) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.ix-feature-card:hover .ix-card-glow {
  opacity: 1;
}

/* ── Service image cards enhanced ── */
.ix-svc-card {
  transition: transform 0.35s ease;
}
.ix-svc-card:hover {
  transform: translateY(-5px) scale(1.01);
}

/* ── Service icon wrap ── */
.ix-svc-icon-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.ix-svc-icon-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}
.ix-svc-icon-wrap {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  transition: transform 0.4s ease;
}
.ix-svc-icon-card:hover .ix-svc-icon-wrap {
  transform: scale(1.15) rotate(-5deg);
}

/* ── How it works section ── */
.ix-how {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.ix-how-card {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.ix-how-card:hover {
  transform: translateY(-6px);
}
.ix-how-step-num {
  position: absolute;
  bottom: 12px;
  right: 16px;
  font-family: var(--font-mono);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--glass-border);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ── Testimonials section ── */
.ix-testimonials {
  position: relative;
}

/* ── Icon glow accents ── */
.ix-icon-glow-cyan {
  animation: glow-pulse 3s ease-in-out infinite;
}
.ix-icon-glow-purple {
  animation: glow-pulse-purple 3s ease-in-out infinite;
}
@keyframes glow-pulse-purple {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.1);
  }
  50% {
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.4);
  }
}

/* ── Responsive: mini stats on mobile ── */
@media (max-width: 576px) {
  .ix-mini-stats {
    width: 100%;
  }
  .ix-mini-stat {
    padding: 12px 14px;
  }
  .ix-mini-val {
    font-size: 0.95rem;
  }
  .ix-live-badge {
    font-size: 0.62rem;
    padding: 6px 14px;
  }
}
@media (max-width: 991px) {
  .ix-mini-stats {
    width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════════
   HERO WORD ANIMATION
═══════════════════════════════════════════════════════════════ */
.hw-title {
  overflow: visible;
}
.hw {
  display: inline-block;
  opacity: 0;
  animation: hw-enter 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--hw-d, 0ms) + 300ms);
  will-change: transform, opacity;
}

/* ═══════════════════════════════════════════════════════════════
   BUSINESS PLAN PAGE — FULL REDESIGN STYLES
═══════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.bp-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--primary);
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}
.bp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 40px;
  padding: 8px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.bp-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 8px 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Hero coin animation ── */
.bp-hero-coin {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bp-coin-ring {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 2px solid rgba(0, 229, 195, 0.25);
  position: relative;
  animation: rotate-ring 12s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bp-coin-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  animation: dot-travel 4s ease-in-out infinite alternate;
}
.bp-coin-center {
  font-size: 5rem;
  line-height: 1;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 0 24px rgba(0, 229, 195, 0.4));
}

/* ── Vertical cards ── */
.bp-vertical-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.bp-vertical-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    rgba(0, 229, 195, 0.03) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.bp-vertical-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 229, 195, 0.3);
  box-shadow: 0 12px 40px rgba(0, 229, 195, 0.08);
}
.bp-vertical-card:nth-child(odd) {
  animation: bp-content-drift 5s ease-in-out infinite;
}
.bp-vertical-card:nth-child(even) {
  animation: bp-content-drift 6.5s ease-in-out infinite reverse;
}
.bp-vc-highlight {
  border-color: rgba(0, 229, 195, 0.35);
  background: linear-gradient(
    135deg,
    rgba(0, 229, 195, 0.06) 0%,
    var(--glass) 60%
  );
}
.bp-vc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.bp-vertical-card h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.bp-vertical-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.bp-vc-link {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s ease;
}
.bp-vc-link:hover {
  gap: 10px;
  color: var(--accent);
}

/* ── Section images ── */
.bp-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  animation:
    bp-float 7s ease-in-out infinite,
    bp-frame-glow 7s ease-in-out infinite;
  will-change: transform;
}
.bp-img-frame.bp-alt {
  animation:
    bp-float-alt 8s ease-in-out infinite,
    bp-frame-glow 8s ease-in-out infinite;
}
.bp-section-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  animation: bp-sweep 12s ease-in-out infinite;
  will-change: transform;
}
.bp-img-frame.bp-alt .bp-section-img {
  animation: bp-sweep-alt 14s ease-in-out infinite;
}
.bp-img-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  border-radius: 30px;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #000;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.05em;
  backdrop-filter: blur(6px);
}

/* ── Focus box ── */
.bp-focus-box {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  animation:
    bp-content-drift 6s ease-in-out infinite,
    bp-border-trace 6s ease-in-out infinite;
  will-change: transform;
}
.bp-focus-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.bp-focus-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.bp-focus-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.bp-focus-list li i {
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── Tech cards ── */
.bp-tech-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}
.bp-tech-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 229, 195, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.bp-tech-card:nth-child(odd) {
  animation: bp-content-drift 5.5s ease-in-out infinite;
}
.bp-tech-card:nth-child(even) {
  animation: bp-content-drift 7s ease-in-out infinite reverse;
}
.bp-tech-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 14px;
}
.bp-tech-card h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.bp-tech-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.65;
  margin: 0;
}

/* ── Mission / Vision cards ── */
.bp-mv-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.bp-mv-card:hover {
  transform: translateY(-5px);
}
.bp-mv-vision {
  border-top: 3px solid var(--accent);
}
.bp-mv-mission {
  border-top: 3px solid var(--neon-purple);
}
.bp-mv-icon {
  width: 52px;
  height: 52px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 16px;
}
.bp-mv-mission .bp-mv-icon {
  color: var(--neon-purple);
}
.bp-mv-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.bp-mv-mission .bp-mv-label {
  color: var(--neon-purple);
}
.bp-mv-text {
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.75;
  font-style: italic;
  margin: 0;
}
.bp-mv-line {
  height: 2px;
  width: 48px;
  background: var(--gradient-accent);
  border-radius: 2px;
  margin-top: 20px;
}

/* ── Investment module cards ── */
.bp-module-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 30px 24px 24px;
  height: 100%;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bp-module-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}
.bp-module-highlight {
  border-color: rgba(0, 229, 195, 0.4);
  background: linear-gradient(
    160deg,
    rgba(0, 229, 195, 0.07) 0%,
    var(--glass) 60%
  );
  box-shadow: 0 0 30px rgba(0, 229, 195, 0.08);
}
.bp-module-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-accent);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.bp-module-badge {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 800;
  color: #000;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  align-self: flex-start;
}
.bp-module-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}
.bp-module-cap {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bp-module-cap-label {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.bp-module-cap-val {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-mono);
}
.bp-module-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}
.bp-module-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.bp-module-features li i {
  color: var(--accent);
  flex-shrink: 0;
}
.bp-module-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
  align-self: flex-start;
}
.bp-module-btn:hover {
  background: rgba(0, 229, 195, 0.12);
  border-color: rgba(0, 229, 195, 0.4);
  color: var(--accent);
}

/* ── Reward type cards ── */
.bp-reward-type-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-top: 3px solid var(--rcard-color, var(--accent));
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  height: 100%;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bp-reward-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.bp-rt-icon {
  font-size: 1.8rem;
  color: var(--rcard-color, var(--accent));
}
.bp-rt-num {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--rcard-color, var(--accent));
  letter-spacing: 0.12em;
  opacity: 0.7;
}
.bp-reward-type-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}
.bp-reward-type-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.65;
  flex: 1;
  margin: 0;
}
.bp-rt-link {
  font-size: 0.82rem;
  color: var(--rcard-color, var(--accent));
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s ease;
}
.bp-rt-link:hover {
  gap: 10px;
  color: inherit;
}

/* ── Top-up reward ── */
.bp-topup-header-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  height: 100%;
}
.bp-topup-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.bp-topup-return {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.bp-topup-return span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}
.bp-topup-detail-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--glass-border);
  font-size: 0.87rem;
  color: var(--text-muted);
}
.bp-topup-detail-row:last-child {
  border-bottom: none;
}
.bp-bigshot-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.bp-bigshot-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  height: 100%;
  transition: var(--transition);
}
.bp-bigshot-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 195, 0.3);
}
.bp-bs-highlight {
  border-color: rgba(0, 229, 195, 0.4);
  background: linear-gradient(
    135deg,
    rgba(0, 229, 195, 0.07) 0%,
    var(--glass) 70%
  );
}
.bp-bs-option {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.bp-bs-return {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.bp-bs-return span {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 500;
}
.bp-bs-row {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 4px 0;
}
.bp-bs-row i {
  color: var(--accent);
}

/* ── Direct reward ── */
.bp-direct-circle {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: conic-gradient(var(--accent) 0% 5%, var(--glass-border) 5% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  animation: rotate-ring 20s linear infinite;
}
.bp-dc-inner {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.bp-dc-pct {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.bp-dc-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}
.bp-direct-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--glass-border);
}
.bp-direct-feature:last-child {
  border-bottom: none;
}
.bp-df-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ── Team reward — circles ── */
.bp-circle-header {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.bp-circle-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 12px;
  transition: var(--transition);
}
.bp-circle-row:hover {
  border-color: rgba(0, 229, 195, 0.25);
}
.bp-cr-badge {
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #000;
  white-space: nowrap;
  flex-shrink: 0;
}
.bp-cr-pct {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  flex-shrink: 0;
}
.bp-cr-unlock {
  font-size: 0.84rem;
  color: var(--text-muted);
  flex: 1;
}
.bp-booster-card {
  background: linear-gradient(
    135deg,
    rgba(0, 229, 195, 0.06) 0%,
    var(--glass) 60%
  );
  border: 1px solid rgba(0, 229, 195, 0.25);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  height: 100%;
}
.bp-booster-icon {
  width: 52px;
  height: 52px;
  background: rgba(0, 229, 195, 0.1);
  border: 1px solid rgba(0, 229, 195, 0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 16px;
}
.bp-booster-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bp-boost-step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.bp-boost-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-primary);
  flex-shrink: 0;
}
.bp-boost-arrow {
  text-align: center;
  color: var(--accent);
  font-size: 1.1rem;
  padding-left: 6px;
}
.bp-boost-reward {
  color: var(--text-primary);
}

/* ── Pool reward cards ── */
.bp-pool-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.bp-pool-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}
.bp-pool-premium {
  border-color: rgba(0, 229, 195, 0.35);
}
.bp-pool-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.bp-pool-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: bp-pool-ken-burns 14s ease-in-out infinite;
  will-change: transform;
}
.bp-pool-card.bp-pool-premium .bp-pool-img {
  animation: bp-pool-ken-burns 18s ease-in-out infinite reverse;
}
.bp-pool-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(10, 10, 14, 0.85) 100%
  );
}
.bp-pool-label {
  position: absolute;
  bottom: 14px;
  left: 16px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.bp-pool-star {
  position: absolute;
  top: 12px;
  right: 12px;
  color: #f7931a;
  font-size: 1.2rem;
  filter: drop-shadow(0 0 6px #f7931a);
}
.bp-pool-body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bp-pool-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bp-pool-key {
  font-size: 0.82rem;
  color: var(--text-dim);
}
.bp-pool-val {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 600;
}
.bp-pool-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(247, 147, 26, 0.1);
  border: 1px solid rgba(247, 147, 26, 0.25);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #f7931a;
  margin-top: 4px;
  align-self: flex-start;
}

/* ── Elite club card ── */
.bp-elite-card {
  background: linear-gradient(
    135deg,
    rgba(0, 229, 195, 0.05) 0%,
    var(--glass) 50%
  );
  border: 1px solid rgba(0, 229, 195, 0.3);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}
.bp-elite-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(0, 229, 195, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.bp-elite-top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
}
.bp-elite-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(0, 229, 195, 0.15),
    rgba(0, 229, 195, 0.05)
  );
  border: 1px solid rgba(0, 229, 195, 0.35);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent);
  flex-shrink: 0;
}
.bp-elite-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}
.bp-elite-benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 16px 18px;
  transition: var(--transition);
}
.bp-elite-benefit:hover {
  border-color: rgba(0, 229, 195, 0.25);
}
.bp-eb-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.bp-eb-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.bp-eb-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Terms & Conditions ── */
.bp-terms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .bp-terms-grid {
    grid-template-columns: 1fr;
  }
}
.bp-term-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 18px 20px;
  transition: var(--transition);
}
.bp-term-item:hover {
  border-color: rgba(0, 229, 195, 0.2);
}
.bp-term-icon {
  width: 38px;
  height: 38px;
  background: rgba(0, 229, 195, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}
.bp-term-item strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.9rem;
  margin-bottom: 5px;
}
.bp-term-item p {
  color: var(--text-muted);
  font-size: 0.83rem;
  line-height: 1.6;
  margin: 0;
}
.bp-terms-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(247, 147, 26, 0.06);
  border: 1px solid rgba(247, 147, 26, 0.2);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.bp-terms-note i {
  color: #f7931a;
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── PDF Download button ── */
.bp-pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: rgba(255, 59, 59, 0.1);
  border: 1px solid rgba(255, 59, 59, 0.35);
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ff6b6b;
  text-decoration: none;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.bp-pdf-btn i {
  font-size: 1rem;
}
.bp-pdf-btn:hover {
  background: rgba(255, 59, 59, 0.2);
  border-color: rgba(255, 59, 59, 0.6);
  color: #ff6b6b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 59, 59, 0.2);
}
