/* =========================
   Typeface
   ========================= */
@font-face {
  font-family: "Satoshi";
  src: url("/fonts/Satoshi-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("/fonts/Satoshi-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* =========================
   Reset
   ========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

/* =========================
   Base
   ========================= */
body {
  background: #ffffff;
  color: #111111;
  font-family: "Satoshi", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* =========================
   Stage – Grid als Haltung
   ========================= */
.stage {
  min-height: 100vh;
  /* display: grid;
  grid-template-columns: repeat(12, 1fr); */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(3rem, 8vw, 8rem);
}

/* =========================
   Content Position
   ========================= */
.claim {
  grid-column: 5 / 9; /* bewusst schmal, zentriert */
  text-align: center;

  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -0.015em;
}

/* Zeilen als ruhige Blöcke */
.claim span {
  display: block;
}

/* =========================
   Subline – Nähe, nicht Erklärung
   ========================= */
.subline {
  grid-column: 5 / 9;
  justify-self: center;

  margin-top: 2.25rem;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #6a6a6a;
  max-width: 28ch;
  text-align: center;
}

/* =========================
   Motion – visuelle Berührung
   ========================= */
.claim,
.subline {
  opacity: 0;
  transform: translateY(8px);
  animation: touch 1.4s cubic-bezier(0.2, 0.6, 0.2, 1) forwards;
}

.subline {
  animation-delay: 0.3s;
}

canvas {
  display: block;
}

@keyframes touch {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   Large Screens – mehr Luft
   ========================= */
@media (min-width: 1200px) {
  .claim,
  .subline {
    grid-column: 6 / 8; /* noch mehr Spannung durch Enge */
  }
}