* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #000000;
  --text: #ffffff;
}

html,
body {
  width: 100%;
  height: 100%;
  background: var(--bg);
}

body {
  overflow: hidden;
  color: var(--text);

  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 12%, rgba(0,0,0,0) 35%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.03) 0%, rgba(0,0,0,0) 60%),
    #000000;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.landing {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-wrap {
  position: relative;
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-10px);
}

.brand-text {
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  font-size: 108px;
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-rendering: geometricPrecision;
  will-change: font-family, font-weight, letter-spacing;

  text-shadow:
    0 0 6px rgba(255, 255, 255, 0.88),
    0 0 14px rgba(255, 255, 255, 0.52),
    0 0 30px rgba(255, 255, 255, 0.18);

  animation: brandGlow 3.2s ease-in-out infinite;
}

.coming-soon {
  margin-top: 100px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  font-family: "Space Grotesk", "Manrope", Arial, sans-serif;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.45em;
  font-weight: 500;

  text-shadow:
    0 0 5px rgba(255, 255, 255, 0.82),
    0 0 12px rgba(255, 255, 255, 0.32);

  animation: subGlow 4s ease-in-out infinite;
}

@keyframes brandGlow {
  0% {
    opacity: 0.94;
    text-shadow:
      0 0 5px rgba(255, 255, 255, 0.76),
      0 0 12px rgba(255, 255, 255, 0.34),
      0 0 24px rgba(255, 255, 255, 0.12);
  }
  50% {
    opacity: 1;
    text-shadow:
      0 0 7px rgba(255, 255, 255, 0.92),
      0 0 18px rgba(255, 255, 255, 0.48),
      0 0 34px rgba(255, 255, 255, 0.18);
  }
  100% {
    opacity: 0.94;
    text-shadow:
      0 0 5px rgba(255, 255, 255, 0.76),
      0 0 12px rgba(255, 255, 255, 0.34),
      0 0 24px rgba(255, 255, 255, 0.12);
  }
}

@keyframes subGlow {
  0% {
    opacity: 0.9;
    text-shadow:
      0 0 4px rgba(255,255,255,0.82),
      0 0 10px rgba(255,255,255,0.25);
  }
  50% {
    opacity: 1;
    text-shadow:
      0 0 6px rgba(255,255,255,0.98),
      0 0 14px rgba(255,255,255,0.34);
  }
  100% {
    opacity: 0.9;
    text-shadow:
      0 0 4px rgba(255,255,255,0.82),
      0 0 10px rgba(255,255,255,0.25);
  }
}

/* Große Desktops */
@media (min-width: 1441px) {
  .brand-text {
    font-size: 124px;
  }

  .coming-soon {
    margin-top: 100px;
    font-size: 22px;
    letter-spacing: 0.5em;
  }
}

/* Desktop / Laptop */
@media (max-width: 1440px) {
  .brand-text {
    font-size: 96px;
  }

  .coming-soon {
    margin-top: 85px;
    font-size: 19px;
    letter-spacing: 0.4em;
  }
}

/* Kleinere Laptops */
@media (max-width: 1200px) {
  .brand-text {
    font-size: 82px;
  }

  .coming-soon {
    margin-top: 70px;
    font-size: 17px;
    letter-spacing: 0.34em;
  }
}

/* Tablets quer / kleine Laptops */
@media (max-width: 992px) {
  .center-wrap {
    transform: translateY(-8px);
  }

  .brand-text {
    font-size: 68px;
    letter-spacing: 0.05em;
  }

  .coming-soon {
    margin-top: 54px;
    font-size: 15px;
    letter-spacing: 0.28em;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .center-wrap {
    transform: translateY(-6px);
  }

  .brand-text {
    font-size: 56px;
    letter-spacing: 0.04em;
  }

  .coming-soon {
    margin-top: 42px;
    font-size: 13px;
    letter-spacing: 0.24em;
  }
}

/* Handy */
@media (max-width: 560px) {
  .center-wrap {
    transform: translateY(-4px);
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand-text {
    font-size: 42px;
    line-height: 0.98;
    letter-spacing: 0.03em;
    text-shadow:
      0 0 5px rgba(255, 255, 255, 0.96),
      0 0 12px rgba(255, 255, 255, 0.60),
      0 0 22px rgba(255, 255, 255, 0.24);
  }

  .coming-soon {
    margin-top: 30px;
    font-size: 11px;
    letter-spacing: 0.2em;
  }
}

/* Sehr kleine Handys */
@media (max-width: 390px) {
  .brand-text {
    font-size: 36px;
  }

  .coming-soon {
    margin-top: 24px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }
}
