/* =====================
   GLOBAL RESET
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", system-ui, sans-serif;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top, #1a0033, #000 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 40px 20px;
}

/* =====================
   STRATEGY WRAP
===================== */
.strategy-wrap {
  display: flex;
  gap: 28px;
  max-width: 1100px;
  width: 100%;
  justify-content: center;

  animation: wrapFade 0.8s ease forwards;
}

/* =====================
   STRATEGY CARD
===================== */
.strategy-card {
  flex: 1;
  min-height: 260px;
  padding: 40px 32px;
  border-radius: 24px;
  cursor: pointer;
  text-align: center;
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.9)
    ),
    url("bg.jpg") center / cover no-repeat;

  border: 1px solid rgba(185,131,255,0.35);
  box-shadow:
    0 25px 60px rgba(0,0,0,0.8);

  transition: all 0.4s ease;
  animation: cardRise 0.9s ease forwards;
}

/* Glow line */
.strategy-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(185,131,255,0.25),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* =====================
   CARD TEXT
===================== */
.strategy-card h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #b983ff;
  margin-bottom: 14px;
}

.strategy-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #d0d0d0;
  max-width: 260px;
  margin: 0 auto;
}

/* =====================
   HOVER EFFECT
===================== */
.strategy-card:hover {
  transform: translateY(-12px) scale(1.03);
  border-color: #b983ff;
  box-shadow:
    0 35px 90px rgba(185,131,255,0.45);
}

.strategy-card:hover::before {
  opacity: 1;
}

/* =====================
   ANIMATIONS
===================== */
@keyframes wrapFade {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardRise {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 768px) {
  .strategy-wrap {
    flex-direction: column;
    gap: 22px;
  }

  .strategy-card {
    min-height: 220px;
    padding: 34px 26px;
  }

  .strategy-card h2 {
    font-size: 24px;
  }
}
