:root {
  color-scheme: dark;
  --bg: #09111f;
  --bg-soft: #0f1c31;
  --surface: rgba(11, 20, 35, 0.72);
  --surface-border: rgba(255, 255, 255, 0.1);
  --text: #f3f7fb;
  --muted: #a8b6ca;
  --accent: #7ce0c3;
  --accent-strong: #b8ffe6;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(124, 224, 195, 0.16), transparent 32%),
    radial-gradient(circle at 85% 20%, rgba(105, 156, 255, 0.2), transparent 28%),
    linear-gradient(160deg, #07101d 0%, #0a1424 45%, #0e1e31 100%);
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 24px;
  overflow: hidden;
}

.hero__ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(24px);
  opacity: 0.7;
}

.hero__ambient--left {
  width: 240px;
  height: 240px;
  top: 12%;
  left: -40px;
  background: rgba(124, 224, 195, 0.18);
}

.hero__ambient--right {
  width: 320px;
  height: 320px;
  right: -90px;
  bottom: 8%;
  background: rgba(95, 131, 255, 0.18);
}

.card {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  padding: 40px;
  border: 1px solid var(--surface-border);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.lead {
  margin: 22px 0 0;
  max-width: 54ch;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(124, 224, 195, 0.22);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(124, 224, 195, 0.22), rgba(126, 170, 255, 0.2));
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(6, 12, 22, 0.26);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  border-color: rgba(184, 255, 230, 0.4);
  background: linear-gradient(135deg, rgba(124, 224, 195, 0.3), rgba(126, 170, 255, 0.26));
}

.button:focus-visible {
  outline: 2px solid rgba(184, 255, 230, 0.85);
  outline-offset: 3px;
}

.actions__note {
  margin: 0;
  font-size: 0.94rem;
  color: var(--muted);
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.status-pill {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(124, 224, 195, 0.18);
  border-radius: 999px;
  background: rgba(124, 224, 195, 0.08);
  font-size: 0.92rem;
  font-weight: 700;
}

.status-pill__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(124, 224, 195, 0.6);
}

.status-note {
  margin: 0;
  font-size: 0.94rem;
  color: var(--muted);
}

@media (max-width: 640px) {
  .card {
    padding: 28px;
    border-radius: 22px;
  }

  .lead {
    font-size: 0.98rem;
    line-height: 1.65;
  }
}
