:root {
  color-scheme: dark;
  --bg: #03070c;
  --text: #f5fbff;
  --muted: #9aabb7;
  --mint: #14f1c8;
  --cyan: #49d8ff;
  --pink: #ff4fd8;
}

* { box-sizing: border-box; }

html { background: var(--bg); }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(20, 241, 200, .16), transparent 28rem),
    radial-gradient(circle at 88% 34%, rgba(255, 79, 216, .13), transparent 30rem),
    linear-gradient(180deg, #061016 0%, #020509 66%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.card {
  width: min(420px, 100%);
  text-align: center;
  padding: 40px 32px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(13, 22, 31, .72);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
}

.logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
  margin-bottom: 18px;
}

.eyebrow {
  display: inline-block;
  color: var(--mint);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
  margin-bottom: 10px;
}

h1 {
  font-size: 24px;
  line-height: 1.3;
  margin: 0 0 12px;
  letter-spacing: -.01em;
}

p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 26px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px 20px;
  border-radius: 16px;
  background: linear-gradient(90deg, var(--mint), var(--cyan));
  color: #02110e;
  font-weight: 900;
  font-size: 14px;
  text-decoration: none;
  border: none;
}

.note {
  margin-top: 18px;
  font-size: 12px;
  color: rgba(154, 171, 183, .8);
}

.note a { color: var(--cyan); text-decoration: underline; }
