/* Source CSS for .flubb-wwd (What We Do) section */

.flubb-wwd {
  --purple:     #7444F2;
  --blue:       #2d7fff;
  --text:       rgba(255, 255, 255, 0.92);
  --text-muted: rgba(255, 255, 255, 0.75);
  --bg:         #010118;
  --card-bg:    rgba(116, 68, 242, 0.07);
  --border:     rgba(116, 68, 242, 0.28);
  --font: 'F37 Moon', sans-serif;
  --ease: cubic-bezier(.22,1,.36,1);

  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  padding: 80px 32px;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

.flubb-wwd::before {
  content: '';
  position: absolute;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(116,68,242,.18) 0%, transparent 70%);
  top: -120px; right: -100px;
  pointer-events: none;
}
.flubb-wwd::after {
  content: '';
  position: absolute;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(116,68,242,.12) 0%, transparent 70%);
  bottom: -80px; left: -60px;
  pointer-events: none;
}

.flubb-wwd__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.flubb-wwd__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.flubb-wwd__label {
  display: inline-flex;
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(116, 68, 242, 0.15);
  border: 1px solid rgba(116, 68, 242, 0.35);
  color: #BEC8F9;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.flubb-wwd__headline {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text);
}

.flubb-wwd__body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.flubb-wwd__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 13px 26px;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  background: #6e5cf5;
  color: #fff;
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform .2s var(--ease), box-shadow .2s, color .2s;
}
.flubb-wwd__cta:hover,
.flubb-wwd__cta:visited,
.flubb-wwd__cta:focus,
.flubb-wwd__cta:active {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(110,92,245,.35);
  color: #fff !important;
  text-decoration: none !important;
}

.flubb-wwd__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.flubb-wwd__card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px 24px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s var(--ease), transform .55s var(--ease), box-shadow .25s;
}
.flubb-wwd__card.visible {
  opacity: 1;
  transform: translateY(0);
}
.flubb-wwd__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(116, 68, 242, 0.25);
  border-color: rgba(116, 68, 242, 0.55);
}

.flubb-wwd__card-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.flubb-wwd__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.flubb-wwd__card-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
}

.flubb-wwd__card h3 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0;
}

.flubb-wwd__card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
}

.flubb-wwd__card--stat .flubb-wwd__stat {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, #BEC8F9 0%, #7444F2 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}

.flubb-wwd__card:nth-child(1) { transition-delay: .05s; }
.flubb-wwd__card:nth-child(2) { transition-delay: .15s; }
.flubb-wwd__card:nth-child(3) { transition-delay: .25s; }
.flubb-wwd__card:nth-child(4) { transition-delay: .35s; }

@media (max-width: 860px) {
  .flubb-wwd__grid { grid-template-columns: 1fr; gap: 40px; }
  .flubb-wwd { padding: 60px 24px; }
}

@media (max-width: 640px) {
  .flubb-wwd__cards { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .flubb-wwd { padding: 48px 16px; border-radius: 0; }
  .flubb-wwd__card:nth-child(n) { transition-delay: .05s; }
}
