.hero { min-height: 64vh; padding: 96px 20px 56px; display: flex; align-items: center; justify-content: center; text-align: center; background: var(--bg-hero); position: relative; max-width: none; }
.hero__content { position: relative; z-index: 1; max-width: 1100px; }
.hero__eyebrow { font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.hero__title { font-size: 5.5rem; }
.hero__subtitle { font-size: 1.5rem; line-height: 1.55; margin-bottom: 40px; max-width: 900px; margin-left: auto; margin-right: auto; }
.hero__actions { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.hero__trust-line { margin: 20px 0 0; font-size: .95rem; color: var(--muted); }
.hero__button { padding: 20px 44px; border-radius: var(--radius); font-size: 1.25rem; font-weight: 600; cursor: pointer; border: none; display: inline-block; }
.hero__button--primary { background: linear-gradient(135deg, var(--accent), var(--accent2)); color: var(--on-accent); box-shadow: 0 4px 14px var(--glow-soft); transition: box-shadow .35s ease; }
.hero__button--primary:hover { box-shadow: 0 8px 30px var(--glow-strong); }
.hero__button--ghost { background: transparent; border: 1px solid var(--border); color: var(--text); }
.hero__button--ghost:hover { border-color: var(--accent); color: var(--accent); }
/* Product-in-one-look: systems -> VIA IV agents -> actions -> result */
.hero__scheme { display: flex; align-items: stretch; justify-content: center; gap: 26px; margin-top: 44px; }
.hero__scheme-node { position: relative; display: flex; flex-direction: column; gap: 5px; padding: 14px 16px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--glass); text-align: center; flex: 1 1 200px; max-width: 250px; }
.hero__scheme-node:not(:last-child)::after { content: '→'; position: absolute; top: 50%; right: -21px; transform: translateY(-50%); color: var(--accent); font-weight: 700; }
.hero__scheme-node--accent { border-color: var(--accent); box-shadow: 0 4px 18px var(--glow-soft); }
.hero__scheme-node-title { font-weight: 700; font-size: .92rem; line-height: 1.3; }
.hero__scheme-node--accent .hero__scheme-node-title { color: var(--accent); }
.hero__scheme-node-caption { font-size: .76rem; color: var(--muted); line-height: 1.4; }
.hero__scheme-caption { margin: 16px 0 0; font-size: .88rem; color: var(--muted); }
.hero::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 100px; background: linear-gradient(to bottom, var(--bg-transparent), var(--bg)); pointer-events: none; }
@media (max-width: 720px) {
  .hero { min-height: 0; padding: 64px 16px 32px; }
  .hero__title { font-size: 2.5rem; }
  .hero__subtitle { font-size: 1.15rem; margin-bottom: 28px; }
  .hero__button { padding: 16px 28px; font-size: 1.05rem; }
  .hero__actions { gap: 12px; }
  .hero__trust-line { font-size: .88rem; }
  .hero__scheme { flex-direction: column; align-items: center; gap: 16px; margin-top: 32px; }
  .hero__scheme-node { flex: 1 1 auto; width: 100%; max-width: 420px; }
  .hero__scheme-node:not(:last-child)::after { content: '↓'; top: auto; right: 50%; bottom: -16px; transform: translateX(50%); }
}
