* {
  box-sizing: border-box;
}

:root {
  --white: #f7f8fb;
  --muted: #b8c0ca;
  --line: rgba(255, 255, 255, 0.35);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--white);
  background: #030608;
  font-family: "Inter", Arial, sans-serif;
  overflow-x: hidden;
}

.landing {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 82%, rgba(200, 220, 255, 0.32), transparent 9%),
    radial-gradient(ellipse at 50% 115%, rgba(185, 207, 235, 0.34), transparent 38%),
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.06), transparent 28%),
    linear-gradient(180deg, #050b0f 0%, #020405 55%, #000 100%);
  position: relative;
}

.landing::before {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -28vw;
  height: 52vw;
  border-radius: 50% 50% 0 0;
  border-top: 1px solid rgba(230, 240, 255, 0.65);
  box-shadow:
    0 -10px 45px rgba(215, 230, 255, 0.35),
    inset 0 35px 70px rgba(120, 150, 190, 0.12);
  pointer-events: none;
}

.landing::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black, transparent 68%);
  pointer-events: none;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 8vh 22px 12vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo {
  width: clamp(86px, 12vw, 150px);
  height: auto;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 22px rgba(255,255,255,.22));
}

h1 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(2.1rem, 6vw, 5.4rem);
  font-weight: 700;
  letter-spacing: clamp(8px, 1.6vw, 22px);
  text-indent: clamp(8px, 1.6vw, 22px);
  text-align: center;
  text-shadow:
    0 0 16px rgba(255,255,255,.16),
    0 4px 24px rgba(0,0,0,.8);
}

.tagline-wrap {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(40px, 120px) auto minmax(40px, 120px);
  align-items: center;
  gap: 20px;
}

.tagline-wrap span {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.tagline-wrap p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(.72rem, 1.4vw, 1rem);
  letter-spacing: clamp(5px, .9vw, 12px);
  text-indent: clamp(5px, .9vw, 12px);
  text-align: center;
  white-space: nowrap;
}

.scroll {
  position: absolute;
  bottom: 9vh;
  color: var(--white);
  text-decoration: none;
  font-size: 2.3rem;
  line-height: 1;
  opacity: .9;
  animation: float 1.8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); opacity: .65; }
  50% { transform: translateY(8px); opacity: 1; }
}

#bottom {
  position: absolute;
  bottom: 0;
}

@media (max-width: 700px) {
  .tagline-wrap {
    grid-template-columns: 46px auto 46px;
    gap: 12px;
  }

  h1 {
    line-height: 1.2;
  }

  .scroll {
    bottom: 7vh;
  }
}
