:root {
  --sx-bg: #090b0d;
  --sx-panel: rgba(17, 20, 23, .82);
  --sx-panel-strong: rgba(22, 25, 29, .94);
  --sx-line: rgba(211, 173, 99, .24);
  --sx-gold: #d8ad60;
  --sx-copper: #b77a38;
  --sx-cyan: #6bd9ff;
  --sx-green: #78d987;
  --sx-red: #ff7b62;
  --sx-text: #f4efe7;
  --sx-muted: #b9afa0;
  --sx-shadow: 0 28px 80px rgba(0, 0, 0, .45);
}

body.suite-experience-body {
  margin: 0;
  min-height: 100vh;
  color: var(--sx-text);
  background:
    radial-gradient(circle at 18% 0%, rgba(216, 173, 96, .18), transparent 32%),
    radial-gradient(circle at 78% 12%, rgba(107, 217, 255, .12), transparent 30%),
    linear-gradient(135deg, #07090b 0%, #111417 48%, #090b0d 100%);
}

.suite-shell {
  min-height: 100vh;
}

.suite-hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.15fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  padding: clamp(28px, 5vw, 72px);
  min-height: calc(100vh - 66px);
}

.suite-kicker {
  margin: 0 0 12px;
  color: var(--sx-gold);
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: 12px;
  font-weight: 900;
}

.suite-hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(42px, 6vw, 86px);
  line-height: 1;
}

.suite-lead {
  max-width: 740px;
  color: #e5dbcd;
  font-size: clamp(18px, 2vw, 23px);
}

.suite-actions,
.suite-control-row,
.suite-scene-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.suite-button {
  border: 1px solid rgba(216, 173, 96, .42);
  border-radius: 8px;
  min-height: 44px;
  padding: 0 15px;
  color: var(--sx-text);
  background: rgba(255, 255, 255, .06);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.suite-button:hover,
.suite-button.active {
  transform: translateY(-1px);
  color: #111417;
  border-color: var(--sx-gold);
  background: linear-gradient(135deg, var(--sx-gold), var(--sx-copper));
}

.suite-button.ghost {
  background: rgba(10, 12, 14, .38);
}

.suite-stage-card {
  border: 1px solid rgba(216, 173, 96, .24);
  border-radius: 12px;
  padding: 14px;
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  box-shadow: var(--sx-shadow);
}

.suite-stage {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: #050607;
  perspective: 1100px;
}

.suite-stage img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.suite-visual-layer {
  position: absolute;
  inset: 0;
  transition: opacity .25s ease, transform .35s ease, filter .25s ease;
}

.suite-visual-layer.main {
  position: relative;
  transform: rotateX(0deg) rotateY(-4deg) translateZ(0);
  transform-origin: center;
}

.suite-visual-layer.overlay {
  opacity: .0;
  mix-blend-mode: screen;
  filter: contrast(1.08) saturate(1.15);
  pointer-events: none;
}

.suite-stage.xray .suite-visual-layer.main {
  filter: brightness(.56) saturate(.82);
}

.suite-stage.xray .suite-visual-layer.overlay {
  opacity: .92;
}

.suite-stage.cad .suite-visual-layer.main {
  opacity: .14;
}

.suite-stage.cad .suite-visual-layer.overlay {
  opacity: 1;
  mix-blend-mode: normal;
  filter: none;
}

.suite-hotspot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 4;
  transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 50%;
  color: #071014;
  background: radial-gradient(circle, #ffffff 0 18%, var(--sx-cyan) 20% 45%, rgba(107,217,255,.2) 48% 100%);
  box-shadow: 0 0 0 8px rgba(107,217,255,.13), 0 0 30px rgba(107,217,255,.55);
  font-weight: 950;
  cursor: pointer;
}

.suite-hotspot[data-status="te-controleren"] {
  background: radial-gradient(circle, #ffffff 0 18%, var(--sx-gold) 20% 45%, rgba(216,173,96,.18) 48% 100%);
  box-shadow: 0 0 0 8px rgba(216,173,96,.13), 0 0 30px rgba(216,173,96,.5);
}

.suite-hotspot[data-status="kritisch"] {
  background: radial-gradient(circle, #ffffff 0 18%, var(--sx-red) 20% 45%, rgba(255,123,98,.18) 48% 100%);
  box-shadow: 0 0 0 8px rgba(255,123,98,.14), 0 0 30px rgba(255,123,98,.5);
}

.suite-stage-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 4px 0;
  color: var(--sx-muted);
  font-size: 13px;
}

.suite-dashboard {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr) 360px;
  gap: 16px;
  padding: 0 clamp(18px, 4vw, 56px) 56px;
}

.suite-panel {
  border: 1px solid var(--sx-line);
  border-radius: 12px;
  background: var(--sx-panel);
  box-shadow: 0 20px 55px rgba(0,0,0,.25);
  overflow: hidden;
}

.suite-panel header {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(216, 173, 96, .18);
}

.suite-panel header h2,
.suite-panel header h3 {
  margin: 0;
}

.suite-panel-body {
  padding: 16px 18px;
}

.suite-list {
  display: grid;
  gap: 10px;
}

.suite-list button,
.suite-doc-link {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: 12px;
  color: var(--sx-text);
  background: rgba(255,255,255,.045);
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.suite-list button.active {
  border-color: var(--sx-gold);
  background: rgba(216,173,96,.13);
}

.suite-list strong,
.suite-doc-link strong {
  display: block;
  color: var(--sx-gold);
}

.suite-list span,
.suite-doc-link span {
  display: block;
  color: var(--sx-muted);
  font-size: 13px;
}

.suite-hotspot-detail {
  min-height: 220px;
}

.suite-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--sx-muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.suite-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sx-green);
}

.suite-status.warn::before {
  background: var(--sx-gold);
}

.suite-status.critical::before {
  background: var(--sx-red);
}

.suite-evidence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 12px;
}

.suite-evidence-card {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  overflow: hidden;
  color: inherit;
  background: rgba(255,255,255,.045);
  text-decoration: none;
}

.suite-evidence-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.suite-evidence-card div {
  padding: 12px;
}

.suite-evidence-card strong,
.suite-evidence-card span {
  display: block;
}

.suite-evidence-card strong {
  color: var(--sx-text);
}

.suite-evidence-card span {
  color: var(--sx-muted);
  font-size: 13px;
}

.suite-scene-card {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 14px;
  background: rgba(255,255,255,.045);
}

.suite-scene-step {
  margin: 12px 0 0;
  padding: 12px;
  border-left: 3px solid var(--sx-gold);
  background: rgba(216,173,96,.08);
  color: #eadfce;
}

.suite-footer-note {
  padding: 0 clamp(18px, 4vw, 56px) 44px;
  color: var(--sx-muted);
}

@media (max-width: 1180px) {
  .suite-hero,
  .suite-dashboard {
    grid-template-columns: 1fr;
  }

  .suite-stage,
  .suite-stage img {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .suite-stage,
  .suite-stage img {
    min-height: 320px;
  }

  .suite-evidence-grid {
    grid-template-columns: 1fr;
  }
}
