:root {
  --bg-1: #090713;
  --bg-2: #170d2d;
  --card: rgba(21, 15, 38, 0.72);
  --text: #f7f0ff;
  --muted: #c9b8e8;
  --accent: #b68cff;
  --accent-2: #72f6d1;
  --border: rgba(255, 255, 255, 0.16);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(182, 140, 255, 0.28), transparent 30%),
    radial-gradient(circle at 80% 85%, rgba(114, 246, 209, 0.16), transparent 34%),
    linear-gradient(135deg, var(--bg-1), var(--bg-2));
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.hero-card {
  width: min(100%, 720px);
  padding: clamp(32px, 7vw, 72px);
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 31px;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(255,255,255,.18), transparent 36%, rgba(114,246,209,.12));
  opacity: .8;
}

.sigil {
  width: 112px;
  height: 112px;
  margin: 0 auto 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: radial-gradient(circle, rgba(182,140,255,.38), rgba(114,246,209,.08) 62%, transparent 64%);
  position: relative;
  z-index: 1;
}

.sigil span {
  width: 56px;
  height: 56px;
  display: block;
  transform: rotate(45deg);
  border: 2px solid var(--accent);
  border-radius: 12px;
  box-shadow: 0 0 32px rgba(182, 140, 255, .58);
}

.sigil::before,
.sigil::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(114,246,209,.46);
}

.sigil::before {
  width: 78px;
  height: 78px;
}

.sigil::after {
  width: 18px;
  height: 18px;
  background: var(--accent-2);
  box-shadow: 0 0 26px var(--accent-2);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 10vw, 6.8rem);
  line-height: .9;
  letter-spacing: -0.08em;
  position: relative;
  z-index: 1;
}

.intro {
  margin: 26px auto 0;
  max-width: 520px;
  color: var(--muted);
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.status-panel {
  margin: 34px auto 0;
  max-width: 420px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  text-align: left;
  position: relative;
  z-index: 1;
}

.status-panel strong,
.status-panel span {
  display: block;
}

.status-panel strong {
  font-size: .95rem;
}

.status-panel span {
  margin-top: 2px;
  color: var(--muted);
  font-size: .86rem;
}

.pulse {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--accent-2);
  box-shadow: 0 0 0 0 rgba(114, 246, 209, .7);
  animation: pulse 1.8s infinite;
}

.email-link {
  display: inline-block;
  margin-top: 28px;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.4);
  position: relative;
  z-index: 1;
}

.email-link:hover {
  color: var(--accent-2);
  border-color: var(--accent-2);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(114, 246, 209, .7); }
  70% { box-shadow: 0 0 0 18px rgba(114, 246, 209, 0); }
  100% { box-shadow: 0 0 0 0 rgba(114, 246, 209, 0); }
}

@media (max-width: 520px) {
  .page-shell {
    padding: 18px;
  }

  .hero-card {
    border-radius: 24px;
  }

  .status-panel {
    border-radius: 22px;
  }
}
