/* BasketSpace marketing site — shared custom CSS (Tailwind CDN handles utilities). */
html { scroll-behavior: smooth; }
body {
  font-family: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #0b1220;
  background: #fafbfc;
}

/* Decorative gradient mesh for hero sections */
.hero-bg {
  background:
    radial-gradient(circle at 18% 12%, rgba(37,99,235,0.12), transparent 42%),
    radial-gradient(circle at 86% 18%, rgba(79,70,229,0.09), transparent 46%),
    radial-gradient(circle at 62% 92%, rgba(5,150,105,0.06), transparent 50%),
    #ffffff;
}

/* Polished placeholder for missing screenshots/visuals */
.visual-slot {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px -10px rgba(11,18,32,0.15), 0 0 0 1px rgba(11,18,32,0.05);
  background-position: center;
  background-size: cover;
}
.visual-slot::after {
  content: "PLACEHOLDER";
  position: absolute;
  top: 12px; right: 12px;
  font-size: 10px;
  letter-spacing: 0.12em;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(11,18,32,0.7);
  color: #fff;
}
.visual-slot-blue    { background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%); }
.visual-slot-indigo  { background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%); }
.visual-slot-green   { background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%); }
.visual-slot-amber   { background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); }
.visual-slot-neutral { background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%); }
.visual-slot-dark    { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); color: #cbd5e1; }

/* Phone frame for app mockups */
.phone-frame {
  position: relative;
  width: 260px;
  height: 540px;
  border-radius: 42px;
  background: #0b1220;
  padding: 10px;
  box-shadow:
    0 40px 80px -30px rgba(11,18,32,0.45),
    0 0 0 2px rgba(255,255,255,0.05),
    inset 0 0 0 1px rgba(255,255,255,0.08);
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 86px; height: 20px;
  background: #0b1220;
  border-radius: 999px;
  z-index: 10;
}

/* Badge pill */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

/* Card hover lift */
.lift { transition: transform 200ms ease, box-shadow 200ms ease; }
.lift:hover { transform: translateY(-3px); box-shadow: 0 16px 36px -14px rgba(11,18,32,0.18); }

/* Dotted grid background */
.dotted-bg {
  background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
  background-size: 20px 20px;
}

/* Accent bar */
.accent-bar { height: 4px; border-radius: 999px; width: 56px; }

/* Smooth reveal */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease-out both; }

/* Quote mark */
.quote-mark { font-family: 'Georgia', serif; font-size: 72px; line-height: 1; color: #cbd5e1; }
