: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(1200px 560px at 50% -12%, rgba(111, 134, 255, 0.07), transparent 62%),
    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: 620px;
  height: 620px;
  border-radius: 999px;
  filter: blur(68px);
  opacity: 0.14;
  pointer-events: none;
  animation: drift 18s ease-in-out infinite;
}

.soft-glow-left {
  top: -260px;
  left: -280px;
  background: radial-gradient(circle, rgba(111, 134, 255, 0.18), transparent 70%);
}

.soft-glow-right {
  right: -320px;
  bottom: -320px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.09), transparent 72%);
  animation-delay: -6s;
}

.hero {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 24px;
  width: min(100%, 760px);
  text-align: center;
  padding: clamp(20px, 5vh, 40px) 0;
  margin-inline: auto;
}

.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%, 280px);
  max-width: 58vw;
  display: block;
  opacity: 0.96;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.12));
}

h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(2.3rem, 4.6vw, 4rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.055em;
  text-wrap: balance;
  white-space: nowrap;
}

.lead {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.7vw, 1.08rem);
  line-height: 1.72;
  text-wrap: pretty;
}

.copy-block {
  display: grid;
  gap: 14px;
  justify-items: center;
}

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

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

.site-footer {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
}

.site-footer p {
  margin: 0;
  color: rgba(245, 245, 247, 0.38);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

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

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

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

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

@media (max-height: 820px) {
  .hero {
    gap: 18px;
    padding: 10px 0 8px;
  }

  .brand-logo {
    width: min(100%, 230px);
  }

  h1 {
    font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  }

  .lead {
    max-width: 500px;
    line-height: 1.62;
  }

  .copy-block {
    gap: 12px;
  }

  .meta-line {
    font-size: 0.72rem;
  }
}

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

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

  h1 {
    white-space: normal;
  }

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

  .meta-separator {
    width: 12px;
  }

  .site-footer {
    bottom: 8px;
  }

  .site-footer p {
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    text-align: center;
  }
}
