.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  padding: clamp(18px, 3.4svh, 42px) 0;
  background:
    radial-gradient(circle at 86% 18%, rgba(37, 99, 235, 0.11) 0%, rgba(37, 99, 235, 0) 34%),
    radial-gradient(circle at 18% 86%, rgba(14, 165, 233, 0.07) 0%, rgba(14, 165, 233, 0) 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -120px -220px auto;
  width: min(42vw, 460px);
  height: min(42vw, 460px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.11) 0%, rgba(37, 99, 235, 0) 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  width: min(var(--container-width), calc(100% - 40px));
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.95fr);
  gap: clamp(28px, 4.8vw, 68px);
  align-items: center;
}

.hero-content {
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: clamp(12px, 2svh, 18px);
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: var(--radius-pill);
  color: var(--color-primary);
  background-color: rgba(239, 246, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-title {
  max-width: 12ch;
  font-size: clamp(2.65rem, 5.35vw, 5.15rem);
  line-height: 1.02;
}

.hero-desc {
  max-width: 640px;
  margin-top: clamp(16px, 2.4svh, 22px);
  color: var(--color-text-soft);
  font-size: clamp(1rem, 1.2vw, 1.07rem);
  line-height: 1.72;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(20px, 3svh, 28px);
}

.hero-note {
  margin-top: clamp(10px, 1.9svh, 16px);
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.58;
}

.hero-visual {
  position: relative;
  min-height: clamp(260px, 48svh, 520px);
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: url("../assets/hero-preview-v4.svg") center / contain no-repeat;
  box-shadow: none;
  pointer-events: none;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 3% 6% 3%;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 48%, rgba(37, 99, 235, 0.12), rgba(37, 99, 235, 0) 58%);
  filter: blur(16px);
  pointer-events: none;
}

.hero-visual img {
  display: none;
}
.home-feature-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 24px;
}

.home-feature-card figure {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 112px;
  border-radius: 18px;
  background-color: #f8fafc;
}

.home-feature-card figure img {
  width: 82%;
  height: 82px;
  object-fit: contain;
}

.home-feature-card span,
.showcase-body span {
  margin-bottom: 10px;
}

.home-split-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
}

.home-wide-visual img {
  min-height: 320px;
}

.home-feature-list li {
  display: grid;
  gap: 4px;
  padding-left: 22px;
}

.home-feature-list strong {
  font-size: 1rem;
}

.home-feature-list span {
  color: var(--color-text-soft);
  font-size: 0.96rem;
}

.home-showcase {
  background-color: rgba(255, 255, 255, 0.74);
}

.showcase-card {
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.92);
}

.showcase-media {
  min-height: 190px;
  padding: 22px;
  background: linear-gradient(180deg, #eef4ff 0%, #ffffff 100%);
}

.showcase-media img {
  width: 100%;
  height: 170px;
  object-fit: contain;
}

.showcase-body {
  padding: 24px;
}

.home-scope-grid {
  margin-top: 24px;
}
