:root {
  --bg-top: #315da9;
  --bg-bottom: #1e4488;
  --ink: #f7fbff;
  --muted: rgba(247, 251, 255, 0.78);
  --panel: rgba(11, 29, 67, 0.38);
  --line: rgba(214, 229, 255, 0.16);
  --accent: #a9c7ff;
  --shadow: 0 28px 80px rgba(4, 13, 33, 0.32);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.8), transparent 36%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(8px);
}

body::before {
  width: 18rem;
  height: 18rem;
  top: 8%;
  left: -4rem;
  background: rgba(255, 255, 255, 0.12);
}

body::after {
  width: 26rem;
  height: 26rem;
  right: -8rem;
  bottom: -8rem;
  background: rgba(169, 199, 255, 0.14);
}

.shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.hero-card {
  width: min(100%, 68rem);
  display: grid;
  gap: 2rem;
  align-items: end;
  padding: clamp(2rem, 4vw, 4rem);
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: var(--panel);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  animation: rise 700ms ease-out both;
}

.hero-copy {
  max-width: 34rem;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
}

.logo {
  display: block;
  width: min(7rem, 28vw);
  height: auto;
  margin-bottom: 1.75rem;
}

h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.4rem, 8vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

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

.status-panel {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.95rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(214, 229, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  color: var(--muted);
}

.status-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(169, 199, 255, 0.45);
  animation: pulse 1.8s infinite;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(169, 199, 255, 0.45);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(169, 199, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(156, 107, 50, 0);
  }
}

@media (min-width: 900px) {
  .hero-card {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .status-panel {
    justify-self: end;
  }
}

@media (max-width: 640px) {
  .shell {
    padding: 1rem;
  }

  .hero-card {
    padding: 1.5rem;
    border-radius: 1.5rem;
  }

  .lead {
    line-height: 1.65;
  }
}