.hero {
  position: relative;
  min-height: calc(100vh - 86px);
  display: flex;
  align-items: center;
  padding: clamp(72px, 8vw, 116px) 0 clamp(64px, 7vw, 96px);
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 18%, rgba(199, 103, 69, 0.13), transparent 34%),
    radial-gradient(circle at 16% 82%, rgba(154, 168, 137, 0.16), transparent 32%),
    linear-gradient(135deg, var(--paper), var(--cream));
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.65fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: center;
}

.hero__copy {
  max-width: 780px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.1rem;
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.hero__eyebrow span {
  width: 34px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: var(--ff-serif);
  font-size: clamp(4.2rem, 8vw, 8rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: var(--ink);
}

.hero__lede {
  max-width: 720px;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: clamp(1.13rem, 1.65vw, 1.42rem);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-card {
  position: relative;
  width: min(100%, 390px);
  justify-self: center;
  padding: clamp(28px, 3.5vw, 38px);
  border: 1px solid rgba(16, 42, 67, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 28px 80px rgba(16, 42, 67, 0.11);
  backdrop-filter: blur(18px);
}

.hero-card h2 {
  max-width: 280px;
  margin: 0;
  font-family: var(--ff-serif);
  font-size: clamp(2.1rem, 3vw, 3.2rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.hero-card p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.hero-card ul {
  display: grid;
  gap: 0.72rem;
  margin: 1.45rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-card li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.2;
}

.hero-card li span {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: var(--terracotta);
  box-shadow: 7px 7px 0 rgba(154, 168, 137, 0.35);
}

.hero__word {
  position: absolute;
  z-index: 1;
  font-family: var(--ff-serif);
  font-weight: 700;
  line-height: 1;
  color: rgba(16, 42, 67, 0.045);
  pointer-events: none;
  white-space: nowrap;
}

.hero__word--systems {
  top: 15%;
  left: -2vw;
  font-size: clamp(5rem, 12vw, 12rem);
}

.hero__word--flow {
  top: 24%;
  right: 18vw;
  font-size: clamp(4rem, 9vw, 9rem);
  color: rgba(199, 103, 69, 0.055);
}

.hero__word--clarity {
  bottom: 11%;
  right: 10vw;
  font-size: clamp(4rem, 10vw, 10rem);
  color: rgba(154, 168, 137, 0.08);
}

.hero__word--operations {
  bottom: -4%;
  left: 37vw;
  font-size: clamp(6rem, 13vw, 13rem);
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .hero {
    padding: 72px 0 56px;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 16vw, 5.3rem);
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
