.landing-hero {
  position: relative;
}

.hero-panel,
.hero-side {
  border: 1px solid #cfe0ff;
  border-radius: 1.15rem;
  background: #fff;
  box-shadow: var(--shadow-md);
  padding: 1.25rem;
  height: 100%;
}

.hero-panel {
  background:
    radial-gradient(420px 200px at 100% 0, rgba(74, 134, 255, 0.16), transparent 72%),
    radial-gradient(320px 160px at 0% 100%, rgba(3, 166, 161, 0.16), transparent 70%),
    linear-gradient(140deg, #ffffff 0%, #f3f8ff 100%);
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  border: 1px solid #b8d2ff;
  background: #eef5ff;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-800);
}

.hero-panel h1 {
  font-size: clamp(1.5rem, 3.2vw, 2.35rem);
  font-weight: 800;
  max-width: 780px;
  line-height: 1.35;
}

.hero-lead {
  color: var(--ink-700);
  max-width: 720px;
}

.hero-meta .badge {
  padding: 0.45rem 0.75rem;
  font-weight: 600;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.kpi-card {
  border: 1px solid #dbe8ff;
  border-radius: 0.9rem;
  background: #f8fbff;
  text-align: center;
  padding: 0.75rem 0.45rem;
}

.kpi-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-800);
  line-height: 1.1;
}

.kpi-label {
  font-size: 0.78rem;
  color: var(--ink-500);
}

.journey {
  border: 1px solid #d5e5ff;
  border-radius: 1.05rem;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.journey-step {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  border: 1px solid #e2ecff;
  border-radius: 0.95rem;
  background: #fff;
  padding: 0.8rem;
}

.journey-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-600), var(--brand-500));
  color: #fff;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.journey-step h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.journey-step p {
  font-size: 0.84rem;
  color: var(--ink-500);
  margin-bottom: 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 0.8rem;
}

.section-kicker {
  font-size: 0.78rem;
  color: var(--brand-700);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.category-card,
.activity-card,
.person-card {
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.category-card:hover,
.activity-card:hover,
.person-card:hover {
  transform: translateY(-4px);
}

.category-card .btn,
.activity-card .btn,
.person-card .btn {
  font-size: 0.82rem;
}

.activity-category {
  display: inline-block;
  width: fit-content;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.73rem;
  color: var(--brand-800);
  border: 1px solid #bdd6ff;
  background: #f1f7ff;
}

.avatar-xs {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #d9e8ff;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .journey {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .hero-panel,
  .hero-side {
    padding: 0.95rem;
    border-radius: 0.95rem;
  }

  .section-head {
    align-items: center;
  }

  .section-head .btn {
    padding-inline: 0.7rem;
  }
}
