:root {
  --bg: #f5f7ff;
  --ink: #111827;
  --muted: #475569;
  --panel: #ffffff;
  --line: #dbe5ff;
  --primary: #1e3a8a;
  --primary-2: #1d4ed8;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 10% 15%, #ffffff 0%, var(--bg) 42%, #eef2ff 100%);
  color: var(--ink);
}

.page {
  width: min(920px, 92vw);
  margin: 0 auto;
  padding: 2.6rem 0 2.4rem;
  position: relative;
  z-index: 2;
}

.brand-shell {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  padding: 0.35rem 0.55rem;
}

.brand-logo {
  width: clamp(180px, 28vw, 280px);
  height: auto;
  display: block;
}

.hero {
  margin-top: 2.1rem;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.74rem;
  font-weight: 700;
  color: #2563eb;
}

h1 {
  margin: 0.7rem 0 0;
  font-size: clamp(2rem, 7vw, 3.5rem);
  line-height: 1.05;
}

.hero-copy {
  margin: 1.1rem 0 0;
  color: var(--muted);
  max-width: 62ch;
  font-size: 1.03rem;
  line-height: 1.6;
}

.cta-row {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.1rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(130deg, var(--primary) 0%, var(--primary-2) 100%);
  box-shadow: 0 9px 24px rgba(30, 58, 138, 0.24);
}

.btn-secondary {
  color: var(--primary);
  background: #e6eeff;
  border: 1px solid #c6d6ff;
}

.status-card {
  margin-top: 1.8rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.1rem;
}

.status-card h2 {
  margin: 0;
  font-size: 1.02rem;
}

.status-card ul {
  margin: 0.7rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  margin-top: 1.8rem;
  color: #64748b;
  font-size: 0.83rem;
}

.background-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(35px);
  z-index: 1;
}

.orb-one {
  width: 260px;
  height: 260px;
  left: -70px;
  top: -70px;
  background: rgba(59, 130, 246, 0.22);
}

.orb-two {
  width: 300px;
  height: 300px;
  right: -100px;
  bottom: -90px;
  background: rgba(14, 165, 233, 0.2);
}

@media (max-width: 640px) {
  .page {
    width: 92vw;
    padding-top: 1.5rem;
  }

  .hero {
    margin-top: 1.3rem;
  }

  .status-card {
    padding: 0.9rem;
  }
}
