/* ---- Hero ---- */
.hero {
  padding: 36px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 50% at 80% -10%, rgba(240, 138, 58, 0.12), transparent 70%),
    radial-gradient(50% 60% at 0% 30%, rgba(63, 107, 79, 0.08), transparent 70%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px 6px 6px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12.5px;
  color: var(--ink-2);
  font-weight: 500;
  margin-bottom: 22px;
}
.hero-pill .dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
}
.hero-pill b {
  color: var(--ink-1);
  font-weight: 600;
}
h1.hero-title {
  margin: 0;
  font-size: clamp(40px, 6vw, 72px);
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink-1);
  text-wrap: balance;
}
h1.hero-title em {
  font-style: italic;
  color: var(--accent-deep);
  font-weight: 500;
}
.hero-sub {
  margin: 22px 0 0;
  font-size: 17px;
  color: var(--ink-3);
  max-width: 48ch;
  line-height: 1.55;
  text-wrap: pretty;
}
.hero-cta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 30px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
  font-size: 12.5px;
  color: var(--ink-3);
}
.hero-trust .check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
}

/* ---- Hero artwork: floating dashboard ---- */
.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art-frame {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transform: perspective(1400px) rotateY(-4deg) rotateX(2deg);
}
.hero-art-frame img {
  width: 100%;
  display: block;
}
.hero-art .float-card {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
}
.hero-art .fc-1 {
  left: -22px;
  top: 18%;
}
.hero-art .fc-2 {
  right: -18px;
  bottom: 18%;
}
.hero-art .fc-ico {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero-art .fc-title {
  font-weight: 600;
  color: var(--ink-1);
}
.hero-art .fc-meta {
  color: var(--ink-3);
  margin-top: 2px;
  font-size: 11.5px;
}
.cat-bubble {
  position: absolute;
  left: -30px;
  bottom: -18px;
  width: 84px;
  height: 84px;
  background: #fff3e5;
  border: 2px solid #f5ddc0;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transform: rotate(-6deg);
}
.cat-bubble img {
  width: 60px;
  height: 60px;
  image-rendering: pixelated;
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-art-frame {
    transform: none;
  }
  .hero-art .fc-1 {
    left: -8px;
  }
  .hero-art .fc-2 {
    right: -8px;
  }
}
@media (max-width: 560px) {
  .hero-art .float-card {
    display: none;
  }
  .cat-bubble {
    width: 64px;
    height: 64px;
    left: -8px;
    bottom: -22px;
  }
  .cat-bubble img {
    width: 46px;
    height: 46px;
  }
}
