/* ===== Hero (Framer-style, minimal to debug) ===== */
.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 4rem 1.25rem;

  /* Prove the path first with inline style='background-image: url(...)' */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.hero_inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1100px);
  margin: 0 auto;
  text-align: center;
}

.hero .section_title {
  color: rgb(var(--gray-100));
  font-weight: 800;
  line-height: 0.95;
  font-size: clamp(2.25rem, 7vw, var(--font-size-8xl));
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.hero .section_kicker {
  color: rgba(var(--gray-100), 0.85);
  font-weight: 500;
  font-size: clamp(1rem, 2.2vw, var(--font-size-2xl));
  line-height: 1.4;
  margin-bottom: 2rem;
}

.btn-hero {
  display: inline-block;
  padding: 0.9rem 1.4rem;
  border-radius: 0.9rem;
  font-size: var(--font-size-m);
  font-weight: 600;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.pillrow {
  margin-top: 2rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}
.pill {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  font-size: var(--font-size-s);
  color: #fff; /* White text for contrast */
  background: rgba(128, 128, 128, 0.85); /* Opaque grey background */
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  user-select: none;
  transition: all 0.2s ease-in-out;
}

.pill:hover {
  background: rgba(100, 100, 100, 0.95);
  transform: translateY(-2px);
}
