:root {
  --navy: #0b0e1a;
  --ink: #e8ecf8;
  --muted: #9aa3bf;
  --yellow: #ffcb05;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: Manrope, "Segoe UI", sans-serif;
  color: var(--ink);
  background-color: var(--navy);
  background-image:
    radial-gradient(1200px 600px at 12% -10%, rgba(75, 111, 255, 0.18), transparent 55%),
    radial-gradient(900px 500px at 88% 0%, rgba(255, 203, 5, 0.1), transparent 50%),
    radial-gradient(700px 420px at 50% 110%, rgba(75, 111, 255, 0.1), transparent 55%),
    linear-gradient(180deg, #0d1120 0%, var(--navy) 40%, #090c16 100%);
}

.bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  max-width: 960px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  text-decoration: none;
}

.brand img {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 203, 5, 0.25);
}

.brand span {
  font-family: Syne, Manrope, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
}

.login {
  color: #12121c;
  background: var(--yellow);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
}

.login:hover {
  filter: brightness(1.05);
}

main {
  min-height: calc(100dvh - 76px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.25rem 4rem;
}

.hero-logo {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 203, 5, 0.28);
}

h1 {
  font-family: Syne, Manrope, sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  margin: 1.1rem 0 0.35rem;
}

.soon {
  margin: 0;
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.tag {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 1rem;
}
