/* ---------- Banner / Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
}

.hero .inner {
	background: white;
  padding: 3rem;
  opacity: 0.9;  
}


.hero__background-error,
.hero__error {
  position: relative;
  z-index: 20;
  box-sizing: border-box;
  width: min(1180px, calc(100% - 40px));
  margin: 20px auto;
  padding: 12px 16px;
  border: 1px solid #b42318;
  border-radius: 6px;
  background: #fff4f2;
  color: #b42318;
  font-size: 14px;
  line-height: 1.45;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(34px, 4.6vw, 56px);
}

.hero h1 em {
  font-style: normal;
  color: var(--blue);
}

.hero__lead {
  max-width: 33em;
  margin: 22px 0 26px;
  color: #33414f;
  font-size: 18px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .02em;
}

.hero__meta b {
  color: var(--navy);
  font-weight: 500;
}

.schematic-card {
  padding: 34px 30px;
  border-radius: 18px;
  background: var(--navy);
  box-shadow: 0 30px 60px -30px rgba(20, 38, 60, .5);
  color: var(--paper);
}

.schematic-card .cap {
  margin-bottom: 6px;
  color: #93a6c4;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.schematic-card h3 {
  margin-bottom: 18px;
  color: var(--paper);
  font-size: 18px;
}

.flow {
  stroke-dasharray: 5 6;
  animation: dash 2.6s linear infinite;
}

@keyframes dash {
  to {
    stroke-dashoffset: -44;
  }
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .flow {
    animation: none;
  }
}
