/* ===== Booster X ===== */
.sec-boosterx {
  position: relative;
  overflow: hidden;
}
.boosterx-bg {
  position: absolute; inset: 0;
  pointer-events: none;
}
.bx-orb-1 {
  top: 30%; left: 20%;
  width: 500px; height: 500px;
  background: rgba(124, 92, 255, 0.15);
}
.bx-orb-2 {
  top: 30%; right: 20%;
  width: 500px; height: 500px;
  background: rgba(34, 211, 238, 0.15);
}

.boosterx-diagram {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 30px auto 0;
  aspect-ratio: 800 / 480;
  min-height: 480px;
}

.bx-block {
  position: absolute;
  width: 280px;
  padding: 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  z-index: 2;
}
.bx-block.bx-tl { top: 6%; left: 0; }
.bx-block.bx-tr { top: 6%; right: 0; }
.bx-block.bx-bl { bottom: 6%; left: 0; }
.bx-block.bx-br { bottom: 6%; right: 0; }

.bx-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.25);
  color: var(--cyan-2);
  flex-shrink: 0;
}
.bx-title { font-family: var(--font-display); font-weight: 500; font-size: 15px; margin: 0 0 4px; letter-spacing: -0.01em; }
.bx-body { font-size: 12.5px; color: var(--ink-3); margin: 0; line-height: 1.5; }

.bx-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bx-core-label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, calc(-50% + 70px));
  text-align: center;
  z-index: 2;
}
.bx-core-tag {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--cyan-2);
}
.bx-core-sub {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 2px;
}

/* ===== Impact ===== */
.sec-impact { padding: 100px 0; }
.impact-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.impact-head .eyebrow { display: inline-block; margin-bottom: 16px; }
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.impact-card {
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  flex-direction: column;
}
.impact-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.18);
  color: var(--cyan-2);
  margin-bottom: 18px;
}
.impact-value {
  font-size: clamp(40px, 4.4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #e8eef7 0%, #5eead4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.impact-label {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 8px;
  letter-spacing: 0.02em;
}
.impact-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.4), transparent);
  opacity: 0.6;
}

/* ===== CTA ===== */
.sec-cta {
  position: relative;
  padding: 130px 0 130px;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}
.cta-bg {
  position: absolute; inset: 0;
  z-index: -1;
}
.cta-orb-1 { top: 0; left: 20%; width: 600px; height: 600px; background: rgba(20, 184, 166, 0.2); }
.cta-orb-2 { bottom: -100px; right: 20%; width: 500px; height: 500px; background: rgba(34, 211, 238, 0.18); }
.cta-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(60% 60% at 50% 50%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(60% 60% at 50% 50%, #000 30%, transparent 75%);
}
.cta-rings { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.7; }
.cta-inner { position: relative; display: flex; flex-direction: column; align-items: center; }
.cta-inner .pill { margin-bottom: 28px; }
.cta-headline {
  font-size: clamp(48px, 6.2vw, 92px);
  letter-spacing: -0.035em;
  margin: 0 0 20px;
  text-wrap: balance;
}
.cta-sub {
  max-width: 580px;
  color: var(--ink-3);
  font-size: 17px;
  margin: 0 0 36px;
}
.cta-foot {
  margin-top: 40px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-foot-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: var(--ink-3);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
}
.cta-foot-item svg { color: var(--cyan-2); }

/* ===== Footer ===== */
.site-footer {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.01) 100%),
    #04070c;
  border-top: 1px solid var(--line);
  padding: 80px 0 0;
  overflow: hidden;
}
.site-footer-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand { display: flex; flex-direction: column; gap: 18px; }
.footer-desc {
  color: var(--ink-3);
  font-size: 14px;
  margin: 0;
  max-width: 280px;
}
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  color: var(--ink-2);
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: all 180ms;
}
.footer-social a:hover { color: var(--cyan-2); border-color: rgba(34, 211, 238, 0.3); background: rgba(34, 211, 238, 0.05); }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 6px;
}
.footer-col a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 13.5px;
  transition: color 160ms;
}
.footer-col a:hover { color: var(--cyan-2); }
.footer-cta { margin-top: 10px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 32px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--ink-4);
  position: relative;
  z-index: 2;
  background: rgba(4, 7, 12, 0.6);
  backdrop-filter: blur(6px);
}
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a { color: var(--ink-3); text-decoration: none; }
.footer-bottom-links a:hover { color: var(--ink); }
.footer-locale { color: var(--ink-4) !important; }

.footer-mega-mark {
  position: relative;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(80px, 14vw, 220px);
  text-align: center;
  letter-spacing: -0.02em;
  color: transparent;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 0.9;
  margin-top: -20px;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 1100px) {
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .boosterx-diagram { aspect-ratio: auto; min-height: auto; display: flex; flex-direction: column; gap: 14px; }
  .bx-block { position: relative; top: auto; left: auto; right: auto; bottom: auto; width: 100%; }
  .bx-svg { display: none; }
  .bx-core-label { display: none; }
}
@media (max-width: 720px) {
  .impact-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; padding: 18px; }
}
