.shift-hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .8fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding-block: clamp(58px, 8vw, 112px);
}
.shift-hero h1 {
  max-width: 860px;
  font-size: clamp(3rem, 6.8vw, 7rem);
  line-height: .9;
  letter-spacing: -.085em;
}
.shift-hero .lead {
  max-width: 720px;
  margin-top: 24px;
}
.shift-panel {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(19,120,97,.13);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(238,248,243,.88)),
    radial-gradient(circle at 20% 15%, rgba(19,120,97,.18), transparent 36%);
  box-shadow: 0 30px 90px rgba(28,42,37,.12);
}
.shift-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(19,120,97,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19,120,97,.07) 1px, transparent 1px);
  background-size: 44px 44px;
}
.shift-node {
  position: absolute;
  padding: 12px 15px;
  border: 1px solid rgba(19,120,97,.15);
  border-radius: 16px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 16px 42px rgba(28,42,37,.11);
  font-size: .86rem;
  font-weight: 850;
}
.shift-node:nth-child(1) { left: 9%; top: 16%; transform: rotate(-6deg); }
.shift-node:nth-child(2) { right: 10%; top: 24%; transform: rotate(5deg); }
.shift-node:nth-child(3) { left: 20%; bottom: 18%; transform: rotate(4deg); }
.shift-node:nth-child(4) { right: 16%; bottom: 16%; transform: rotate(-4deg); }
.shift-hub {
  position: absolute;
  inset: 50%;
  width: 170px;
  height: 170px;
  display: grid;
  place-content: center;
  border-radius: 999px;
  color: #fff;
  background: radial-gradient(circle at 34% 28%, #34aa8d, #137861 64%, #0b4f40);
  box-shadow: 0 24px 72px rgba(19,120,97,.28);
  text-align: center;
  transform: translate(-50%, -50%);
}
.shift-hub strong {
  display: block;
  font-size: 1.1rem;
}
.shift-hub small {
  display: block;
  margin-top: 4px;
  opacity: .78;
  font-weight: 800;
  letter-spacing: .08em;
}
.shift-suite {
  padding-block: clamp(28px, 5vw, 70px);
}
.shift-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.shift-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(19,120,97,.13);
  border-radius: 22px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 22px 62px rgba(28,42,37,.08);
}
.shift-card small {
  color: #137861;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.shift-card h2 {
  margin-top: 12px;
  font-size: clamp(1.6rem, 2.5vw, 2.5rem);
}
.shift-card p {
  margin-top: 14px;
  color: #52625d;
  line-height: 1.72;
}
.shift-card .button,
.shift-hero .button {
  margin-top: auto;
}
.shift-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.shift-note {
  margin-top: 18px;
  color: #52625d;
  font-size: .92rem;
  line-height: 1.7;
}
@media (max-width: 960px) {
  .shift-hero,
  .shift-card-grid {
    grid-template-columns: 1fr;
  }
  .shift-panel {
    min-height: 340px;
  }
}
