:root {
  --background: #0b0d10;
  --surface: #15181e;
  --border: #2a313c;
  --text: #f5f7fa;
  --muted: #7a818c;
  --accent: #d6d8dd;

  --mouse-x: 50vw;
  --mouse-y: 50vh;
  --spotlight-radius: 250px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  min-height: 100%;
}

body {
  min-height: 100vh;
  overflow: hidden;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--background);
}

/* Layer 1: riesiges Logo, nur im Mausbereich sichtbar */
.logo-layer {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background-image: url("./assets/logo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: min(90vw, 1000px);

  opacity: 0.45;

  -webkit-mask-image: radial-gradient(
    circle var(--spotlight-radius) at var(--mouse-x) var(--mouse-y),
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 60%,
    rgba(0, 0, 0, 0) 100%
  );

  mask-image: radial-gradient(
    circle var(--spotlight-radius) at var(--mouse-x) var(--mouse-y),
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 60%,
    rgba(0, 0, 0, 0) 100%
  );

  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

/* Layer 3: Inhalt */
.page {
  position: relative;
  z-index: 2;

  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.teaser {
  width: min(560px, 100%);
  text-align: center;
}

.eyebrow,
.confidential {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 18px 0 10px;
  font-size: clamp(64px, 14vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.subtitle {
  margin: 0 0 48px;
  color: var(--accent);
}

.status {
  text-align: left;
}

.status-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.progress {
  height: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}

.progress-value {
  width: 3%;
  height: 100%;
  background: var(--accent);
}

.confidential {
  margin-top: 28px;
}