/* ============================================
   SUSAN Sense — hero.css
   Hero section & phone mockup
   ============================================ */

/* ---------- HERO SECTION ---------- */
.hero {
  background-color: var(--white);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}

/* Organic blob decorations */
.hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 480px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(43, 128, 112, 0.14) 0%,
    transparent 70%
  );
  border-radius: 60% 40% 70% 30% / 40% 60% 50% 70%;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 320px;
  height: 280px;
  background: radial-gradient(
    ellipse,
    rgba(43, 128, 112, 0.10) 0%,
    transparent 70%
  );
  border-radius: 40% 60% 30% 70% / 60% 40% 70% 50%;
  pointer-events: none;
}

/* ---------- HERO GRID ---------- */
.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  margin-bottom: 20px;
}

.hero-content h1 .accent {
  color: var(--teal);
}

.hero-desc {
  font-size: var(--text-md);
  color: var(--muted);
  line-height: 1.65;
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-credits {
  display: flex;
  gap: 6px;
  font-size: 12px;
  color: var(--muted-light);
  margin-top: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-credits .sep {
  opacity: 0.5;
}

/* ---------- ANIMATED BADGE DOT ---------- */
.badge-dot {
  animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.8); }
}

/* ---------- PHONE SCREENSHOT ---------- */
.phone-wrap {
  background-color: var(--navy);
  border-radius: 32px;
  padding: 10px;
  box-shadow:
    0 24px 60px rgba(15, 34, 64, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  position: relative;
  max-width: 340px;
  margin: 0 auto;
}

.phone-wrap::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background-color: var(--teal);
  border-radius: 40% 60% 50% 70%;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.phone-shot {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  position: relative;
  z-index: 1;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
