/* ==========================================================================
   Fast Launch — "What You Get" section.
   Four cards that visually show the finished result rather than listing tech.
   Scoped to #fl-what-you-get. Uses the site's glass-card visual language.
   ========================================================================== */

#fl-what-you-get .fl-wyg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1100px) {
  #fl-what-you-get .fl-wyg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  #fl-what-you-get .fl-wyg-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* ---- Card shell -------------------------------------------------------- */
#fl-what-you-get .fl-wyg-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

#fl-what-you-get .fl-wyg-card:hover {
  transform: translateY(-4px);
  border-color: rgba(77, 163, 255, 0.5);
}

/* ---- Visual stage (holds the mock-up) --------------------------------- */
#fl-what-you-get .fl-wyg-stage {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-radius: 16px;
  background: rgba(77, 163, 255, 0.06);
  border: 1px solid rgba(77, 163, 255, 0.14);
  overflow: hidden;
}

/* ---- 1. Browser window ------------------------------------------------ */
#fl-what-you-get .fl-wyg-browser {
  width: 100%;
  max-width: 240px;
  border-radius: 10px;
  overflow: hidden;
  background: #0e1420;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.45);
}

#fl-what-you-get .fl-wyg-browser__bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 9px;
  background: rgba(255, 255, 255, 0.08);
}

#fl-what-you-get .fl-wyg-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}
#fl-what-you-get .fl-wyg-dot--r { background: #ff5f57; }
#fl-what-you-get .fl-wyg-dot--y { background: #febc2e; }
#fl-what-you-get .fl-wyg-dot--g { background: #28c840; }

#fl-what-you-get .fl-wyg-browser__url {
  flex: 1;
  margin-left: 8px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

#fl-what-you-get .fl-wyg-browser__screen {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
#fl-what-you-get .fl-wyg-browser__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ---- 2. Phone --------------------------------------------------------- */
#fl-what-you-get .fl-wyg-phone {
  position: relative;
  width: 98px;
  height: 178px;
  border-radius: 22px;
  background: #0e1420;
  border: 3px solid rgba(255, 255, 255, 0.22);
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.45);
}

#fl-what-you-get .fl-wyg-phone__notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  z-index: 2;
}

#fl-what-you-get .fl-wyg-phone__screen {
  position: relative;
  width: 100%;
  height: 100%;
}
#fl-what-you-get .fl-wyg-phone__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  opacity: 0;
  transition: opacity 0.35s ease;
}

#fl-what-you-get .fl-wyg-phone__slide.is-active {
  opacity: 1;
}

/* ---- 3. Client-action chips ------------------------------------------ */
#fl-what-you-get .fl-wyg-chips {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

#fl-what-you-get .fl-wyg-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  width: 66px;
}

#fl-what-you-get .fl-wyg-chip__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(77, 163, 255, 0.15);
  border: 1px solid rgba(77, 163, 255, 0.35);
}
#fl-what-you-get .fl-wyg-chip__icon--stroke { color: #57A6FB; }

#fl-what-you-get .fl-wyg-chip__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.72);
}

/* ---- 4. Go-live address bar + badge ----------------------------------- */
#fl-what-you-get .fl-wyg-live {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 240px;
}

#fl-what-you-get .fl-wyg-live__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

#fl-what-you-get .fl-wyg-live__globe {
  display: flex;
  color: #57A6FB;
}

#fl-what-you-get .fl-wyg-live__url {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#fl-what-you-get .fl-wyg-live__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 15px;
  border-radius: 999px;
  background: rgba(46, 204, 113, 0.15);
  border: 1px solid rgba(46, 204, 113, 0.5);
  color: #43d17a;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
}

#fl-what-you-get .fl-wyg-live__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #43d17a;
  animation: fl-wyg-pulse 1.8s infinite;
}

@keyframes fl-wyg-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(67, 209, 122, 0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(67, 209, 122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(67, 209, 122, 0); }
}

@media (prefers-reduced-motion: reduce) {
  #fl-what-you-get .fl-wyg-live__pulse { animation: none; }
  #fl-what-you-get .fl-wyg-phone__slide { transition: none; }
}

/* ---- Card text -------------------------------------------------------- */
#fl-what-you-get .fl-wyg-card__title {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: #fff;
}

#fl-what-you-get .fl-wyg-card__text {
  font-weight: 300;
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
  opacity: 0.7;
}
