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

:root {
  --black: #0a0a0a;
  --white: #f0f0f0;
  --gold: #c9a96e;
  --gold-dim: rgba(201, 169, 110, 0.3);
  --white-dim: rgba(240, 240, 240, 0.06);
}

html, body {
  height: 100%;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

canvas#bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

main {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
  width: 100%;
  padding-inline: 1.25rem;
  text-align: center;
  animation: fadeUp 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

.brand {
  position: relative;
}

.line-accent {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 2rem;
  animation: breathe 4s ease-in-out infinite;
}

.title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  font-size: clamp(3.5rem, 12vw, 10rem);
  letter-spacing: 0.35em;
  text-indent: 0.35em;
  line-height: 1;
  color: var(--white);
  animation: fadeUp 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
  opacity: 0;
}

.subtitle {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  font-size: clamp(0.65rem, 1.5vw, 0.9rem);
  letter-spacing: 0.8em;
  text-indent: 0.8em;
  color: var(--gold);
  margin-top: 0.75rem;
  animation: fadeUp 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
  opacity: 0;
}

.divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold-dim), transparent);
  margin: 2.5rem auto;
  animation: fadeUp 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
  opacity: 0;
}

.tagline {
  font-size: clamp(0.8rem, 1.8vw, 1.05rem);
  font-weight: 200;
  letter-spacing: 0.25em;
  color: rgba(240, 240, 240, 0.5);
  animation: fadeUp 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
  opacity: 0;
}

.coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(240, 240, 240, 0.35);
  animation: fadeUp 1.8s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
  opacity: 0;
}

.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2.5s ease-in-out infinite;
}

.domain {
  margin-top: 3rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(240, 240, 240, 0.15);
  animation: fadeUp 1.8s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
  opacity: 0;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes breathe {
  0%, 100% {
    width: 40px;
    opacity: 0.6;
  }
  50% {
    width: 70px;
    opacity: 1;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.4);
  }
}

@media (max-width: 600px) {
  .title {
    font-size: clamp(2.25rem, 13vw, 4.5rem);
    letter-spacing: 0.18em;
    text-indent: 0.18em;
  }

  .subtitle {
    letter-spacing: 0.55em;
    text-indent: 0.55em;
  }

  .divider {
    height: 32px;
    margin: 1.5rem auto;
  }

  .coming-soon {
    margin-top: 1.5rem;
  }

  .domain {
    margin-top: 2rem;
  }
}
