.shift-product-page,
.shift-workspace[data-shift-product] {
  --shift-color: #46537a;
  --shift-color-deep: #2f3857;
  --shift-color-light: #edf0f7;
  --shift-color-rgb: 70, 83, 122;
  --shift-color-bright: #7b87cd;
}
.shift-product-gridshift,
.shift-workspace[data-shift-product="gridshift"] {
  --shift-color: var(--world-gridshift, #137861);
  --shift-color-deep: #0b4f40;
  --shift-color-light: #e7f0ed;
  --shift-color-rgb: 19, 120, 97;
  --shift-color-bright: #34aa8d;
}
.shift-product-docshift,
.shift-workspace[data-shift-product="docshift"] {
  --shift-color: var(--world-docshift, #5867b1);
  --shift-color-deep: #323c78;
  --shift-color-light: #eef0fb;
  --shift-color-rgb: 88, 103, 177;
  --shift-color-bright: #8d98df;
}
.shift-product-slideshift,
.shift-workspace[data-shift-product="slideshift"] {
  --shift-color: var(--world-slideshift, #b56b28);
  --shift-color-deep: #764014;
  --shift-color-light: #fff1df;
  --shift-color-rgb: 181, 107, 40;
  --shift-color-bright: #dfa35c;
}
.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(var(--shift-color-rgb), .16);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), color-mix(in srgb, var(--shift-color-light) 72%, white)),
    radial-gradient(circle at 20% 15%, rgba(var(--shift-color-rgb), .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(var(--shift-color-rgb), .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--shift-color-rgb), .08) 1px, transparent 1px);
  background-size: 44px 44px;
}
.shift-node {
  position: absolute;
  padding: 12px 15px;
  border: 1px solid rgba(var(--shift-color-rgb), .17);
  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%, var(--shift-color-bright), var(--shift-color) 64%, var(--shift-color-deep));
  box-shadow: 0 24px 72px rgba(var(--shift-color-rgb), .25);
  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(var(--shift-color-rgb), .14);
  border-radius: 22px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 22px 62px rgba(28,42,37,.08);
}
.shift-card small {
  color: var(--shift-color);
  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;
  }
}
