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

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

body {
  min-height: 100vh;

  background:
    radial-gradient(
      circle at center,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(255, 255, 255, 0.015) 28%,
      rgba(0, 0, 0, 0) 55%
    ),
    #050505;

  color: #ffffff;

  font-family: "Rubik", sans-serif;

  overflow: hidden;
}

.coming-soon {
  min-height: 100vh;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  text-align: center;

  padding: 40px 20px;

  position: relative;
}

.logo-reveal {
  width: 170px;
  max-width: 55vw;
  height: auto;

  margin-bottom: 42px;

  opacity: 0;

  animation:
    fadeUp 1s ease forwards,
    logoGlow 4s ease-in-out 1.2s infinite;
}

.reveal-content {
  display: flex;
  flex-direction: column;

  align-items: center;

  opacity: 0;

  animation: fadeUp 1s ease 0.25s forwards;
}

.reveal-label {
  margin-bottom: 16px;

  font-size: 11px;

  font-weight: 600;

  letter-spacing: 4px;

  color: #777777;
}

.reveal-content h1 {
  font-size: clamp(54px, 10vw, 96px);

  line-height: 0.95;

  font-weight: 800;

  letter-spacing: -4px;

  margin-bottom: 22px;
}

.reveal-content p {
  max-width: 460px;

  font-size: 15px;

  line-height: 1.7;

  color: #777777;
}

.reveal-line {
  width: 0;

  height: 1px;

  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0) 100%
  );

  margin-top: 34px;
  margin-bottom: 18px;

  animation: lineReveal 1.2s ease 0.8s forwards;
}

.domain {
  font-size: 11px;

  letter-spacing: 2px;

  color: #4f4f4f;

  opacity: 0;

  animation: fadeUp 1s ease 1s forwards;
}

.coming-soon::before {
  content: "";

  position: absolute;

  width: 420px;
  height: 420px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.035),
    rgba(255, 255, 255, 0) 68%
  );

  filter: blur(10px);

  pointer-events: none;

  animation: breathe 5s ease-in-out infinite;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes lineReveal {
  from {
    width: 0;
    opacity: 0;
  }

  to {
    width: 190px;
    opacity: 1;
  }
}

@keyframes breathe {
  0%,
  100% {
    transform: scale(0.95);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes logoGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
  }

  50% {
    filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.08));
  }
}

@media (max-width: 600px) {
  .coming-soon {
    padding: 30px 24px;
  }

  .logo-reveal {
    width: 145px;

    margin-bottom: 36px;
  }

  .reveal-label {
    font-size: 9px;

    letter-spacing: 3px;

    margin-bottom: 14px;
  }

  .reveal-content h1 {
    font-size: clamp(48px, 17vw, 72px);

    letter-spacing: -3px;

    margin-bottom: 18px;
  }

  .reveal-content p {
    font-size: 13px;

    max-width: 320px;
  }

  .reveal-line {
    margin-top: 28px;
  }
}
