/* ─────────────────────────────────────────────────────
   AnyBiz: Who It's For Widget
   ───────────────────────────────────────────────────── */

.ab-wif {
  padding: 100px 0;
}

.ab-wif__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  gap: 72px;
}

/* ── Header — centered ── */
.ab-wif__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.ab-wif__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 64px;
  color: #f8fafc;
  margin: 0;
}

.ab-wif__subtitle {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  color: #94a3b8;
  margin: 0;
}

/* ── Grid ── */
.ab-wif__grid {
  display: flex;
  gap: 72px;
  align-items: stretch;
}

/* ── Card base ── */
.ab-wif__card {
  flex: 1;
  border-radius: 8px;
  border: 1px solid transparent;
  background:
    linear-gradient(181deg, #222231 -39.27%, #010209 72.61%) padding-box,
    radial-gradient(ellipse at 100% 0%, rgba(196, 163, 255, 0.6) 0%, transparent 50%) border-box;
  padding: 48px 32px 40px;
  display: flex;
  flex-direction: column;
}

/* ── Card featured ── */
.ab-wif__card--featured {
  background:
    radial-gradient(ellipse 50% 40% at 0% 0%, rgba(210, 30, 220, 0.9) 0%, rgba(140, 20, 210, 0.4) 40%, transparent 65%) padding-box,
    linear-gradient(181deg, #100d25 0%, #04020d 100%) padding-box,
    linear-gradient(to bottom left, rgba(196, 163, 255, 0.8) 0%, transparent 50%) border-box;
  border: 2px solid transparent;
  box-shadow: 0 0 20px rgba(151, 71, 255, 0.23), 0 0 0.78px #ffe5ff;
}

.ab-wif__card--featured .ab-wif__cta {
  justify-content: flex-end;
}

/* ── Icon square ── */
.ab-wif__icon {
  width: 56px;
  height: 56px;
  border-radius: 4px;
  background-color: var(--card-color, #a78bfa);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 16px;
}

/* ── Badge — Android 101, colored ── */
.ab-wif__badge {
  font-family: 'Android 101', 'Share Tech Mono', monospace;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  color: var(--card-color, #a78bfa);
  margin: 0;
  margin-bottom: 8px;
}

/* ── Card description ── */
.ab-wif__card-desc {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #94a3b8;
  margin: 0 0 40px 0;
}

/* ── List ── */
.ab-wif__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  margin-bottom: 40px;
}

.ab-wif__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #94a3b8;
}

.ab-wif__item-icon {
  width: 16px;
  height: 16px;
  min-width: 16px;
  border-radius: 40px;
  background-color: #0d9488;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
  margin-left: 20px;
  margin-right: 20px;
  align-items: center;
}

.ab-wif__item-icon::after {
  content: '';
  display: block;
  width: 8px;
  height: 4px;
  border-left: 2px solid #f8fafc;
  border-bottom: 2px solid #f8fafc;
  transform: rotate(-45deg) translate(0px, -1px);
}

/* ── CTA link ── */
.ab-wif__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: #a78bfa;
  text-decoration: none !important;
  margin-top: auto;
  transition: opacity 0.2s ease;
}

/* Non-featured card CTA — gradient text #c4b5fd → #38bdf8 */
.ab-wif__card:not(.ab-wif__card--featured) .ab-wif__cta {
  color: #8b5cf6;
  background: linear-gradient(135deg, #c4b5fd 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ab-wif__cta:hover {
  opacity: 0.8;
  color: #a78bfa;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .ab-wif {
    padding: 60px 0;
  }

  .ab-wif__inner {
    padding: 0 24px;
    gap: 48px;
  }

  .ab-wif__grid {
    flex-direction: column;
    gap: 24px;
  }

  .ab-wif__title {
    font-size: 36px;
    line-height: 48px;
  }
  .ab-wif__card--featured .ab-wif__cta,
  .ab-wif__cta {
    justify-content: center;
  }
}
