/* ── Home hero ───────────────────────────────────────────── */
.home-hero {
  position: relative;
  background: var(--gradient-hero);
  color: var(--white);
  padding-block: var(--space-5xl);
  overflow: hidden;
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(0, 174, 239, 0.30) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(0, 119, 230, 0.25) 0%, transparent 50%);
  pointer-events: none;
}
.home-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.home-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-cyan);
  margin-bottom: var(--space-lg);
}
.home-hero__pill::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 10px var(--success);
}
.home-hero h1 {
  color: var(--white);
  margin-bottom: var(--space-lg);
}
.home-hero__sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 580px;
  margin-bottom: var(--space-xl);
}
.home-hero__cta { display: flex; gap: var(--space-md); flex-wrap: wrap; }

.home-hero__visual {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-hero__visual svg { width: 100%; height: 100%; max-width: 380px; }

@media (max-width: 1024px) {
  .home-hero { padding-block: var(--space-4xl); }
  .home-hero__grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .home-hero__visual { max-width: 320px; margin-inline: auto; }
}

/* ── Stats band ──────────────────────────────────────────── */
.stats-band {
  background: var(--white);
  border-block: 1px solid var(--border);
  padding-block: var(--space-2xl);
}
.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  text-align: center;
}
@media (max-width: 768px) {
  .stats-band__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-xl); }
}

/* ── Featured product card ──────────────────────────────── */
.featured-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  padding: var(--space-3xl);
  background: var(--gradient-hero);
  border-radius: var(--radius-lg);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.featured-product::before {
  content: "";
  position: absolute;
  top: -30%; right: -10%;
  width: 60%; height: 160%;
  background: radial-gradient(circle, rgba(0,174,239,0.25) 0%, transparent 60%);
  pointer-events: none;
}
.featured-product > * { position: relative; }
.featured-product h2,
.featured-product h3 { color: var(--white); }
.featured-product p { color: rgba(255,255,255,0.78); margin-bottom: var(--space-md); }
.featured-product__visual {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.featured-product__visual code { display: block; line-height: 1.7; }
.featured-product__visual .ok { color: var(--success); }
.featured-product__visual .accent { color: var(--brand-cyan); }
@media (max-width: 768px) {
  .featured-product { grid-template-columns: 1fr; padding: var(--space-xl); }
}

/* ── Industry cards ──────────────────────────────────────── */
.industry-card { display: flex; flex-direction: column; gap: var(--space-md); }
.industry-card__list { margin-top: var(--space-sm); }
.industry-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-mid);
  padding: 6px 0;
}
.industry-card__list li::before {
  content: "✓";
  color: var(--success);
  font-weight: 700;
  margin-top: 1px;
}

/* ── About snippet ───────────────────────────────────────── */
.about-snippet {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
  align-items: center;
}
@media (max-width: 768px) {
  .about-snippet { grid-template-columns: 1fr; }
}

/* ── CTA band ────────────────────────────────────────────── */
.cta-band {
  background: var(--gradient-hero);
  color: var(--white);
  text-align: center;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0,174,239,0.25), transparent 60%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: var(--white); margin-bottom: var(--space-md); }
.cta-band p {
  color: rgba(255,255,255,0.78);
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}
.cta-band__buttons { display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap; }
