:root {
  --bg: #050608;
  --bg-soft: #0a0d12;
  --text: #f5f5f7;
  --muted: #a1a1aa;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #6f86ff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

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

body {
  padding: 24px;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top, rgba(111, 134, 255, 0.14), transparent 34%),
    linear-gradient(180deg, #040506 0%, #08090c 100%);
}

.page-shell {
  position: relative;
  min-height: calc(100vh - 48px);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.soft-glow {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 999px;
  filter: blur(32px);
  opacity: 0.5;
  pointer-events: none;
  animation: drift 14s ease-in-out infinite;
}

.soft-glow-left {
  top: -120px;
  left: -120px;
  background: radial-gradient(circle, rgba(111, 134, 255, 0.16), transparent 68%);
}

.soft-glow-right {
  right: -160px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
  animation-delay: -5s;
}

.hero {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 36px;
  width: min(100%, 920px);
  text-align: center;
  padding: clamp(28px, 8vw, 64px) 0;
}

.eyebrow {
  margin: 0;
  color: rgba(245, 245, 247, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-logo {
  width: min(100%, 370px);
  max-width: 62vw;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.2));
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.1rem, 8vw, 5.9rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.lead {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.8;
}

.copy-block {
  display: grid;
  gap: 18px;
}

.meta-line {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: rgba(245, 245, 247, 0.56);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.meta-separator {
  width: 18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.24);
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(12px, -14px, 0) scale(1.04);
  }
}

@media (max-width: 860px) {
  body {
    padding: 18px;
  }

  .page-shell {
    min-height: calc(100vh - 36px);
  }
}

@media (max-width: 520px) {
  .hero {
    gap: 28px;
  }

  .brand-logo {
    max-width: 78vw;
  }

  .meta-line {
    justify-content: center;
    gap: 10px;
    font-size: 0.76rem;
  }

  .meta-separator {
    width: 12px;
  }
}
