* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto;
}

body {
  height: 100vh;
  background: #0B1120;
  color: #F8FAFC;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* BACKGROUND */
.bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(37,99,235,0.12), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(37,99,235,0.08), transparent 60%);
}

.bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 90px 90px;
  opacity: 0.12;
}

/* CONTAINER */
.container {
  text-align: center;
  max-width: 560px;
  padding: 30px;
  z-index: 2;
}

/* LOGO */
.logo {
  width: 300px;
  margin-bottom: 20px;
}

/* TITLE */
h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.north { color: #F8FAFC; }
.frame { color: #2563EB; }

/* TEXT */
p {
  font-size: 15px;
  color: #64748B;
  line-height: 1.6;
}

/* CTA */
.cta {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

a {
  text-decoration: none;
  width: 240px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  text-align: center;
  transition: 0.2s ease;
}

/* PRIMARY */
.primary {
  background: #2563EB;
  color: white;
}

.primary:hover {
  transform: scale(1.03);
}

/* SECONDARY */
.secondary {
  border: 1px solid rgba(37,99,235,0.3);
  color: #F8FAFC;
  background: rgba(255,255,255,0.02);
}

.secondary:hover {
  transform: scale(1.03);
}