:root {
  --bg0: #071820;
  --bg1: #0b3d4a;
  --bg2: #125666;
  --ink: #f4efe6;
  --muted: #b7c9c6;
  --accent: #7de2c7;
  --line: rgba(244, 239, 230, 0.14);
  --shadow: rgba(0, 0, 0, 0.35);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 700px at 12% -10%, rgba(125, 226, 199, 0.18), transparent 55%),
    radial-gradient(900px 600px at 90% 10%, rgba(18, 86, 102, 0.55), transparent 50%),
    linear-gradient(165deg, var(--bg0), var(--bg1) 48%, #0a2c36 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(244,239,230,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,239,230,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 35%, transparent 80%);
  animation: drift 28s linear infinite;
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-48px, -48px, 0); }
}

.shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 56px);
  position: relative;
  z-index: 1;
}

.brand {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin: 0 0 18px;
}

.brand span {
  color: var(--accent);
}

.lead {
  margin: 0;
  max-width: 34ch;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  line-height: 1.45;
  color: var(--muted);
}

.status {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 0.95rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(125, 226, 199, 0.55);
  animation: pulse 2.2s ease-out infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(125, 226, 199, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(125, 226, 199, 0); }
  100% { box-shadow: 0 0 0 0 rgba(125, 226, 199, 0); }
}

.meta {
  margin-top: 10px;
  color: rgba(183, 201, 198, 0.75);
  font-size: 0.85rem;
}

.glow {
  position: absolute;
  width: min(52vw, 420px);
  height: min(52vw, 420px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125,226,199,0.16), transparent 68%);
  filter: blur(8px);
  z-index: 0;
  animation: floaty 9s ease-in-out infinite;
}
.glow-a { top: 12%; right: 8%; }
.glow-b { bottom: 8%; left: 10%; animation-delay: -3s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@media (max-width: 640px) {
  .lead { max-width: 28ch; }
}
